Home Blog Projects Games About Contact

Dev Blog

All Posts | Tech | Life | Dev

Posts tagged with dev

Async Iterators: A Deep Dive

20 Aug 2025 • 7 min read

Async iterators let you loop over streams that arrive over time. This post walks you through the syntax, best practices, and pitfalls to avoid.

Code animation

Vue 3: Setup Compiler and Build

18 Aug 2025 • 5 min read

Want to bundle a Vue 3 app with Vite? Learn how the new vite-plugin-vue2 and the new setup compiler work together.

Vue glitch

React Query: Advanced Patterns

15 Aug 2025 • 6 min read

Beyond basic queries, this article explores caching strategies, background updates, and mutation batching for production apps.

React query

Kotlin Coroutines in Android (KT‑X)

12 Aug 2025 • 8 min read

KT‑X brings extension functions to Kotlin coroutines. See how to use runCatching and retryWhen for resilient networking.

Kotlin Android

Docker Compose: 5E for DevOps

09 Aug 2025 • 4 min read

Use Docker Compose’s extended YAML features to orchestrate multi‑service stacks without writing a single line of Bash.

Docker Compose

SvelteKit Routing: File‑Based or API‑First?

07 Aug 2025 • 5 min read

Explore how SvelteKit’s routing can be driven by the file system or by a headless CMS, and when to pick each strategy.

SvelteKit

TypeScript Interfaces: A Practical Guide

02 Aug 2025 • 9 min read

Learn how to design robust interfaces that evolve with your codebase and prevent runtime errors.

TypeScript icons