Home

Backend & Systems Engineering

Deep dives into what nobody tells you: sockets under the hood, real CI/CD, Go vs Spring Boot, and other adventures in the world of systems.

Select your language
whoami.ts — RuntimeRants
EXPLORER
runtime-rants
TSwhoami.ts
{}package.json
TStsconfig.json
#README.md
src
TSwhoami.ts
1// whoami
2const dev = {
3  focus: ["backend", "systems", "devops"],
4  current: "deep diving into distributed systems",
5  philosophy: "understand the 'why' before the 'how'"
6};
7
8console.log(`> building: ${dev.current}`);
main
UTF-8TypeScript

Latest Posts

Sockets Under the Hood

Deep dive into TCP sockets: from syscall to kernel. Understanding what happens when your code calls connect().

January 15, 2024

CI/CD Real World

A real CI/CD pipeline has secrets, caching, rollbacks, and debugging. Let's see how to set it up without dying in the attempt.

January 8, 2024

Go vs Spring Boot

Real comparison between Go and Spring Boot. No hype, just experience from using both in production microservices.

January 1, 2024
View all posts

Topics