Files
ada-dmitry.github.io/_pages/notes.md
T
ada 2857076a88 Add notes for Home Server setup and IT School curriculum
- Created a new note on setting up a Home Server with Proxmox, detailing hardware choices, NAT, and remote access solutions.
- Added a comprehensive overview of the IT School curriculum, covering topics such as IT infrastructure, automation, virtualization, and more.
- Included detailed notes on various aspects of IT infrastructure, including hardware components, network storage, and cloud models.
- Documented the importance of automation in infrastructure management and introduced key tools and methodologies like DevOps and Infrastructure as Code.
- Explained virtualization concepts, including hypervisors, containers, and software-defined networking, along with practical scenarios and benefits.
2025-08-19 16:16:29 +03:00

27 lines
770 B
Markdown

---
layout: single
title: Все заметки
permalink: /notes/
---
{%- assign notes_with_project = "" | split: "" -%}
{%- for n in site.notes -%}
{%- assign parts = n.path | split: "/" -%}
{%- assign project_name = parts[1] -%} {# parts[0] = "_notes", parts[1] = подпапка #}
{%- assign n = n | merge: { "project": project_name } -%}
{%- assign notes_with_project = notes_with_project | push: n -%}
{%- endfor -%}
{%- assign groups = notes_with_project | group_by: "project" | sort: "name" -%}
{%- for g in groups -%}
### {{ g.name }} ({{ g.items | size }})
<ul>
{%- assign items = g.items | sort: "basename" -%}
{%- for n in items -%}
<li><a href="{{ n.url | relative_url }}">{{ n.title }}</a></li>
{%- endfor -%}
</ul>
{%- endfor -%}