All posts

TypeScript Advanced #3: Conditional types and infer
4 min read

TypeScript Advanced #3: Conditional types and infer

The if statement of the type level — the distributive behavior of T extends U ? X : Y and the patterns that pull values out of a type with infer. Build ReturnType and Awaited yourself.

Angular Advanced #4 RxJS in depth — custom operators and Schedulers
10 min read

Angular Advanced #4 RxJS in depth — custom operators and Schedulers

On top of the RxJS basics from Intermediate, we cover the advanced topics that actually make a difference in practice. Higher-order Observables, concurrency-control operators, custom operators, Schedulers, and marble testing.

AWS Advanced #5: EventBridge / SQS / SNS
10 min read

AWS Advanced #5: EventBridge / SQS / SNS

The three side by side, SNS topic / SQS queue / EventBridge bus,rule, fan-out patterns, FIFO vs Standard, DLQ and idempotency, how it all wires up to Lambda / ECS — AWS messaging infrastructure.

Django Advanced #4: Caching — per-view / template fragment / low-level
9 min read

Django Advanced #4: Caching — per-view / template fragment / low-level

From Redis backend setup to cache_page, template fragments, low-level cache.set/get, ETag, and stampede — every layer of Django caching.

Docker in Practice #5 Pushing to Registries and Tag Strategy — The :latest Trap
9 min read

Docker in Practice #5 Pushing to Registries and Tag Strategy — The :latest Trap

Picking a registry (GHCR vs Docker Hub vs ECR) and tag strategy. Why :latest is dangerous in production, where semver and SHA tags belong, immutable tags, retention policies, and image size management — sorting out what comes after the push.

K8s Advanced #1: CNI in Depth — Calico / Cilium / eBPF
14 min read

K8s Advanced #1: CNI in Depth — Calico / Cilium / eBPF

The first post in the K8s Advanced series. In [Intermediate #7](/en/posts/k8s-intermediate-7), one line was left while covering NetworkPolicy: "the manifest is K8s standard, but actually blocking traffic is the CNI plugin's job." This post unfolds that one line. What CNI is, how the same K8s manifest runs differently on Calico vs Cilium, and how eBPF redraws the data plane — all in one cycle.

Modern Python Advanced #6: Advanced typing — Variance, ParamSpec, Self, overload
4 min read

Modern Python Advanced #6: Advanced typing — Variance, ParamSpec, Self, overload

Next step from intermediate typing — covariance/contravariance, ParamSpec and Concatenate, Self, TypeGuard/TypeIs, and @overload.

RHEL Advanced #4: SELinux Advanced — Writing Policy and audit2allow
10 min read

RHEL Advanced #4: SELinux Advanced — Writing Policy and audit2allow

Going one level higher than the intermediate post: the structure of .te/.fc/.if policy files, the flow and limits of generating modules with audit2allow, the procedure to compile and install with checkmodule / semodule_package / semodule by hand, plus booleans and interfaces — all in one cycle. The goal is to follow an AVC denial all the way through to a permanent policy module.

TypeScript Advanced #2: Mapped types
7 min read

TypeScript Advanced #2: Mapped types

Mapped types that transform an entire object type — how Partial/Required/Readonly are built, plus key remapping (as) and modifiers (+/-).

Angular Advanced #3 Dynamic components and ViewContainerRef
10 min read

Angular Advanced #3 Dynamic components and ViewContainerRef

A walk-through of patterns for creating components dynamically at runtime. From ViewContainerRef and createComponent to @defer, ngComponentOutlet, CDK Portal, dynamic injectors, and memory management — all in one go.

AWS Advanced #4: API Gateway + Lambda
10 min read

AWS Advanced #4: API Gateway + Lambda

REST API vs HTTP API differences, Lambda integrations (proxy / non-proxy), routes / methods, authorization (IAM / Cognito / Lambda authorizer), stages / deployments / usage plans — the standard pattern for exposing Lambda over HTTP.

Django Advanced #3: Query optimization — N+1, select_related, EXPLAIN, indexes
9 min read

Django Advanced #3: Query optimization — N+1, select_related, EXPLAIN, indexes

From the anatomy of N+1 to select_related/prefetch_related, only/defer, EXPLAIN, indexes, bulk_*, and select_for_update — the performance toolbox of Django ORM.