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
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}`);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, 2024CI/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, 2024Go vs Spring Boot
Real comparison between Go and Spring Boot. No hype, just experience from using both in production microservices.
January 1, 2024