mirror of
https://github.com/ada-dmitry/ada-dmitry.github.io.git
synced 2026-09-24 01:10:35 +00:00
- 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.
770 B
770 B
layout, title, permalink
| layout | title | permalink |
|---|---|---|
| single | Все заметки | /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 }})
-
{%- assign items = g.items | sort: "basename" -%}
{%- for n in items -%}
- {{ n.title }} {%- endfor -%}