Directory: root / resources /

Code

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

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

Dark abstract code lines
0x1F4 Systems Design

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

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

Source Code Included
Laptop with complex algorithm terminal display
0x2A1 DevOps / Docker

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

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

Documentation
Abstract glowing network of lines
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]

View Script chevron_right