Directory: root / resources /

Code

Technical documentation, algorithm analysis, and software engineering insights. Focused on clean implementation and system architecture.

Python / Architecture 2023.10.24

IDE для разработки на Python: Полный обзор профессионального окружения

Глубокое погружение в настройку VS Code, PyCharm и Neovim для высоконагруженной разработки. От линтеров до дебаггеров в контейнерах.

Execute Read arrow_forward
data_object quick_sort.py
def quicksort(arr):
  if len(arr) <= 1: return arr
  pivot = arr[len(arr) // 2]
  left = [x for x in arr if x < pivot]
  ...
Latest Snippet

Optimized Recursive Partitioning

0x1F4 Systems Design

Масштабируемые API на Go: Паттерны и анти-паттерны

Разбираем конкурентную модель Go при построении микросервисов. Как избежать race conditions и эффективно использовать gRPC.

Source Code Included
0x2A1 DevOps / Docker

CI/CD пайплайны для монорепозиториев

Оптимизация сборки в GitLab CI. Кеширование слоев, параллельное тестирование и деплой только измененных модулей.

Documentation
0x3B2 Rust / Memory

Rust Borrow Checker: Друг или враг?

Понимание управления памятью без GC. Практические примеры владения, заимствования и времен жизни (lifetimes).

Core Concepts
terminal

Automating Post-Install Scripts

$ curl -sS https://zhdanoff.net/setup.sh | bash
> Checking dependencies...
> Installing docker-compose... [OK]
> Configuring zsh... [OK]