MySQL tutorial - IT technology blog

Rust + MySQL + sqlx: Async Queries, Connection Pooling, and Type-safe Migrations for High-performance Microservices

sqlx is a Rust library for connecting to MySQL with type-safe SQL that the compiler validates at build time, completely eliminating runtime errors from wrong column names or mismatched data types. This post covers how to set up a proper connection pool, write async queries, run automated migrations, and avoid common production pitfalls based on real-world experience.
Linux tutorial - IT technology blog

Zellij: Install and Use This Rust-Based Terminal Multiplexer as a tmux Alternative on Linux

Zellij is a terminal multiplexer written in Rust, offering a more intuitive alternative to tmux — every keybinding is displayed right on the statusbar, so there's nothing to memorize or look up. This guide covers installation on common Linux distributions, configuring layouts, floating panes, and session persistence for everyday server administration workflows.