Skip to content
datarekha
Blog Production AI · GATE DA · how concepts actually work · Page 8 of 12

From theory to the systems that demand real understanding.

Long-form pieces on how production-AI teams orchestrate agents, serve models, and build the stack, plus GATE DA essays that turn probability, linear algebra, DBMS, ML, and AI into durable concepts.

281 posts · 20 categories
Patterns Jun 2, 2026

Two pointers: the trick that turns O(n squared) into O(n)

Most array pair problems feel like they need a nested loop until you notice that sorting gives you a monotonic structure you can exploit to skip the entire inner loop.

8 min read Read
Python Jun 2, 2026

Type hints are documentation that can't go stale

A docstring lies without consequence, but a type hint that disagrees with the code is caught by your editor before you even save the file.

9 min read Read
Business Analytics Jun 2, 2026

Unit economics is the only growth math that matters

Whether pouring money into growth is brilliant or fatal comes down to one ratio — and most people compute it wrong.

9 min read Read
Career Jun 2, 2026

The weekly review: the habit that compounds

Most people run their week reactively and never look up — a 30-minute weekly review is the only place where strategy actually meets the calendar.

7 min read Read
Career Jun 2, 2026

Does wellbeing spending actually work? The case against wellbeing-washing

Companies pour tens of billions into mindfulness apps and resilience courses, but in controlled trials most wellbeing programs show no benefit.

9 min read Read
Statistics Jun 2, 2026

Why everything looks normal: the central limit theorem

The bell curve colonizes measurement not because the world is Gaussian but because averaging destroys the shape of almost any distribution.

8 min read Read
ML Jun 2, 2026

Why neural networks need activation functions

Without a nonlinear activation, stacking a thousand layers is mathematically identical to stacking one — and every straight-line model in history could have told you that.

9 min read Read
Python Jun 2, 2026

Why Python is slow — and the times it actually matters

A tight Python loop over a million numbers can be 100x slower than C, but that rarely matters — until it suddenly, catastrophically does.

9 min read Read
ML Jun 2, 2026

Why we normalize: batch norm, intuitively

Internal covariate shift is not a subtle bug — it is the reason deep networks used to need weeks of careful babysitting, and batch norm is why that era quietly ended.

9 min read Read
SQL Jun 2, 2026

Window functions changed how I write SQL

The leap from GROUP BY to window functions is the single biggest level-up an analyst makes — and the intuition behind OVER, PARTITION BY, and LAG is simpler than most tutorials admit.

10 min read Read
Career Jun 1, 2026

'40% fear AI will take their job': what the data actually says

Four in ten workers fear AI will take their job, and some cuts are real — but they rarely pay off, and the forecast still points to a net job gain.

9 min read Read
Career Jun 1, 2026

The $8.9 trillion problem: inside the global engagement crisis

Only a fifth of the world's workers are engaged, and the lost productivity runs to $8.9 trillion — but the headline hides what engaged even means.

9 min read Read
Career Jun 1, 2026

The four-day week, backed by the biggest trial yet

The largest four-day-week trial found burnout falling sharply and output holding — but only because firms redesigned the work first. The evidence.

9 min read Read
Career May 31, 2026

The thinning bottom rung: AI and the vanishing entry-level job

AI is best at the repetitive work juniors once learned the craft on, so the entry-level rung is wearing thin. What the data shows and how to stay hireable.

9 min read Read
Career May 31, 2026

The collapsing middle: why managers are cracking first

The clearest signal in 2025 workplace data is not that employees are struggling — it is that managers are cracking faster, and the damage flows downhill.

9 min read Read
Career May 30, 2026

The two-minute interruption: focus, surveillance, and always-on work

For coding and data work, focus is the scarce resource — yet the workday shreds it every two minutes with pings, overtime, and monitoring.

9 min read Read
Career May 30, 2026

Money on the brain: how financial stress steals focus at work

Financial stress is the quiet undercurrent beneath much of what we call burnout, following people to work as distraction and lost sleep. What helps, in order.

9 min read Read
Career May 29, 2026

Boreout: the burnout that comes from too little

Boreout is burnout's overlooked twin — chronic under-stimulation that breeds the same fatigue and cynicism, and quietly hits skilled people hardest.

9 min read Read
Career May 29, 2026

The lonely org chart: workplace loneliness in the hybrid era

Workplace loneliness carries real health and retention costs, and remote work dismantled the job's social fabric — hitting early-career staff hardest.

9 min read Read
Agents May 28, 2026

The agent harness — the code around the model that actually makes an agent

The LLM is the engine, but the harness is the car. Most of an agent product's real value lives in the scaffolding wrapped around the model — the loop runner, tool dispatcher, context manager, permission gate, and the dozen other things that turn a stateless completion API into something that can work for twenty minutes unsupervised.

15 min read Read
Career May 28, 2026

Conscious unbossing: why Gen Z is turning down the promotion

Gen Z is declining the step into management, and the data says conscious unbossing is less a failure of ambition than a rational read of a quietly broken job.

9 min read Read
Infrastructure May 28, 2026

Denial of wallet: the attack that bankrupts your AI app

Classic DoS tries to take you down. Denial-of-wallet keeps you up and runs your token bill to five figures by lunch. Why request limits don't save you.

8 min read Read
Career May 28, 2026

Sleep: the performance lever nobody optimizes

For coding, analysis, and exam prep, sleep quietly sets the ceiling on everything else — yet always-on work erodes it first, and the fix is workload design.

9 min read Read
Agents May 28, 2026

The supervisor-worker pattern: when one agent isn't enough

Anthropic's orchestrator-worker pattern is the only multi-agent topology that consistently ships. Here's how to recognise when you actually need it, what the LangGraph supervisor implementation looks like in practice, and the failure modes nobody warns you about.

13 min read Read