Browsing Tag
backend
67 posts
Rust Concurrency: A Beginner’s Exploration
Concurrency and Parallelism Many people cannot distinguish between the concepts of concurrency and parallelism, so before diving into…
Rust Async Programming: Parallelism with join! vs select!
When executing only one Future, you can directly use .await inside an async function async fn or an…
How I Stopped Restarting My Go Server Every Time I Changed a Config
You know that feeling when you’re debugging something small, and suddenly, it turns into a whole production issue?…
How Not to Build a Ledger
So you’re an engineer, and you’ve been tasked with building a ledger to record funds movements across your…
Understanding Network Interfaces: Loopback, Local IPs, and Public IPs
Many computer users have likely encountered scenarios where they use localhost, 127.0.0.1, or directly input the local machine’s…
Mastering RESTful API Design: A Practical Guide
RESTful API (Representational State Transfer API) is a network interface design style used for interactions between network applications.…
SQL Injection – In Just 5 Minutes!
In today’s interconnected world, data security is a top priority. However, despite advancements in technology, one old vulnerability…
My Study Schedule for 2025
Welcome back, today I will share with you my personal schedule for this 2025 for learning and practicing…
Unlocking the Power of Elixir Phoenix and Rust: A Match Made for High-Performance Web Applications
As developers, we’re always on the lookout for tools and technologies that enable us to build faster, more…
Backend Red Flags – What NOT to do
Standarts are there for us to maintain. By doing so, you stand a high chance of getting a…