Backend

Articles tagged “Backend

13 articles

Before n8n: How Developers Automated Workflows Long Before Visual Tools Existed

Many developers discover automation through visual workflow builders and assume that's where automation begins. In reality, developers have been automating complex business processes for decades using tools most modern engineers have never needed to touch. Here's the full history — and why understanding it still matters.

Jun 1, 202622 min read

Clean Code Is Not a Personality

Some engineers can name every SOLID principle, write immaculate folder structures, lint every line, and apply DRY so aggressively the codebase has seventeen abstractions for sending an email. Their code looks impressive. Their products are often not. Aesthetic engineering and effective engineering are different disciplines, and confusing the one for the other is quietly capping a lot of careers.

Jun 1, 202613 min read

GraphQL Was the Wrong Lesson Learned From Facebook

Facebook built GraphQL to solve a real problem at genuine scale. The engineering community looked at the solution and adopted it without fully understanding the problem it was built for. Years later, many teams are maintaining schema complexity, DataLoader infrastructure, and N+1 query patterns that two well-designed REST endpoints would have prevented.

Jun 1, 202610 min read

Nobody Talks About On-Call Until the Engineer Has Already Left

On-call culture is the most normalized form of professional self-destruction in the software industry. Engineers accept it because everyone accepts it. Organizations celebrate it because it is cheaper than fixing the systems that require it. And the conversation about whether it is sustainable almost never happens until the engineer is already gone.

Jun 1, 202613 min read

Technical Debt Is a Lie We Tell Ourselves

Technical debt is the most overused, most misunderstood, and most conveniently abused concept in software engineering. It was invented to describe intentional trade-offs made with clear awareness. It has become the universal excuse for poor decisions, accumulated negligence, and the consequences of years of shipping without thinking. There is a difference between debt and damage, and most codebases have the second one.

Jun 1, 202612 min read

MVPs Don't Need Kubernetes: How Engineers Delay Products by Solving Problems They Don't Have

Many developers claim to be building an MVP. Their infrastructure tells a different story. After watching teams spend four months preparing to scale a product that had zero users, I want to make the case for something unfashionable: doing less on purpose.

May 14, 202614 min read

Will AI Replace Software Developers? A Practical Perspective

AI is more likely to become a force multiplier for capable engineers than a replacement for them. But 'capable' is doing real work in that sentence. Here's a practical perspective on what's actually changing, what isn't, and what it means for engineers building their careers right now.

Apr 16, 202612 min read

Why Programming Fundamentals Still Matter in the Age of Frameworks and AI

I've watched engineers who skipped fundamentals hit the same invisible walls — at scale, in production, in architecture discussions — where frameworks stop providing answers and the underlying mental models are all that's left. Technologies change. Fundamentals compound.

Apr 2, 202612 min read

AI in Production Software: Benefits, Risks, and Realistic Expectations

There's a wide gap between an AI demo and a production AI system. After integrating AI capabilities into real products, I want to offer an engineer's honest account of where AI provides genuine value, where it introduces serious risk, and what production-grade AI operations actually look like.

Mar 19, 202611 min read

Stop Choosing Technologies for Their Popularity

The right technology is the one that solves your problem with the lowest total cost of ownership — not the one dominating conference talks or LinkedIn posts. Technology decisions made for the wrong reasons have a way of revealing themselves in production at the worst possible time.

Jan 22, 202611 min read

The Hidden Cost of Overengineering

The most expensive code I've written isn't the code that was buggy. It's the code that was too clever. After years of building and maintaining systems, I've come to believe that overengineering is a more common failure mode than underengineering — and far more insidious.

Jan 8, 202611 min read

Type-Safe APIs at Scale: How tRPC Eliminated an Entire Class of Bugs in Our TypeScript Backend

After shipping REST APIs for two years, our team at Root Devs made a deliberate bet on tRPC. Here's what the production reality looked like — the wins, the sharp edges, and the architecture patterns that survived contact with real traffic.

Nov 14, 20258 min read

Message Queues in Production: RabbitMQ vs Kafka for Node.js Backends

RabbitMQ and Kafka are both message queues in the same way a scalpel and a cleaver are both kitchen tools. Here's the production playbook for when to use each and how to operate them without incident.

Sep 2, 20258 min read