Posts

Image
THE TECH PRAXIS where buzzwords go to get cross-examined Cybersecurity / Mythbusting Not All Ransomware Is a Worm Somewhere, right now, a LinkedIn post is calling a phishing email "basically a worm." This is an intervention. Here's a magic trick: say the word "ransomware" in a room full of IT people, and watch at least one of them say "you mean like that worm thing?" It's not their fault, exactly — cybersecurity vocabulary has been marinating in sloppy journalism for two decades. But it's time someone said the quiet part loudly: propagation and payload are not the same axis , and confusing them is like confusing a delivery van with the pizza inside it. 01 The Classification Error Malware doesn't have one identity. It has two, filed under completely different departments: ...
Image
THE TECH PRAXIS Clear-eyed tradeoffs, not vendor cheerleading Cybersecurity / Cryptography The Perfect Double: Why Encryption Is Both Our Shield and Our Kryptonite The same mathematics that protects your data protects the attacker holding it hostage — and in 2026, backups have stopped being the easy answer they once were. Let us dispense with the comforting binary: encryption is not good or evil. It is mathematics. And mathematics, as we are brutally reminded, has no loyalties. There's a particular kind of dread every security practitioner knows — the moment you realize your most elegant defensive invention is, in the wrong hands, the very mechanism that undoes you. We built a vault, and then watched the burglar use the same blueprint to lock us out. 01 The Symmetry That Bites Defensive encryption operates on a simple promise: without the correct key,...
Image
  The Recursion Mystery: Where Did -1 Go? There is a number that, by every measure of logic, should appear. Every recursive call seems to bring the program one step closer to it. The sequence unfolds exactly as expected—until it suddenly doesn't. The journey ends before the destination is ever reached. Why? The answer has nothing to do with arithmetic and everything to do with a single line of code that quietly governs the flow of execution. This is the subtle beauty of recursion: what appears inevitable is often an illusion. In this article, we unravel a deceptively simple recursive puzzle that has puzzled countless new C programmers and, in doing so, uncover one of recursion's most elegant lessons.. if (n > 0) { solve(n - 1); printf("%d ", n); } Someone stares at this, and the question rises like a challenge thrown across a battlefield: "If n reaches 0, doesn't n − 1 become −1? Doesn't the machine have to go there?" By pure arithmetic — ...
Image
The CLI Vs The Dashboard: Why Raw Syscalls Still Win in Distributed Debugging The Tech Praxis — 21 July 2026 In the golden age of observability, we find ourselves drowning in data yet starving for insight. Platforms like Datadog, Grafana, and New Relic paint beautiful, real-time pictures of our distributed systems—but somewhere between the metrics exporter and the rendered dashboard, a subtle lie takes hold. Aggregations smooth over micro-spikes; sampling rates miss the one anomalous request; and opinionated UIs simply refuse to show you the raw, unfiltered conversation between your application and the Linux kernel. This tension forces a critical question upon every engineer who has ever spent a sleepless night chasing a phantom latency spike: have our high-level abstractions made us less capable of true root-cause analysis? The answer, as many veteran systems engineers will argue, lies not in discarding the dashboards, but in knowing...
Image
The Tech Praxis Purpose-Built Engineering Q. For Netflix, when Linux was the better choice for their scalable, cloud-based backend, why did they also take the help of FreeBSD to squeeze every last bit of speed out of their video-serving appliances—a critical factor for handling ~15% of the world's internet traffic? Ans. Netflix's architectural dichotomy  —Linux for the cloud control plane and FreeBSD for the data plane—is not a contradiction but a masterclass in purpose-built engineering. This strategic bifurcation acknowledges a fundamental truth: the optimal operating system for orchestration is rarely the optimal one for raw throughput. The Cloud-Linux Symbiosis Linux dominates the public cloud ecosystem for compelling reasons: Ecosystem Maturity : AWS, Netflix's primary cloud provider, is deeply optimized for Linux. Services like EC2, S3, and VPC are engineered with Linux kernel interfaces in mind. Containerization : Kubernete...
Image
Beyond the Tyranny of Place: Integrating Hierarchy, Git, and Metadata in Modern Knowledge Work In the architecture of any serious project—whether academic research, long-form writing, or complex technical development—the folder hierarchy remains the foundational structure. It assigns every file a definitive location, a clear "home address" within the project. Yet this strength is also its limitation: a hierarchy is inherently static, single-dimensional, and increasingly brittle under the pressures of collaboration, evolving ideas, and the need for fluid retrieval. True mastery emerges when we treat the folder structure not as the final system, but as one layer within a richer information ecosystem. By thoughtfully integrating Version Control Systems (such as Git) and metadata indexing , we transcend the constraints of physical location and create a multi-dimensional environment for knowledge. The Metaphor of the House Imagine your project as a house. The folder hierarchy...
Image
Agentic AI: From Tools to Autonomous Partners By The Praxis Team | June 2026 When algorithms stop waiting for prompts and start pursuing goals autonomously, the entire enterprise transforms into a self-driving entity. This is Agentic AI — intelligent systems that perceive, reason, act, and learn to achieve objectives with minimal human intervention. In 2026, India is not merely adopting this technology; it is poised to lead a practical revolution in autonomous enterprises. The Global Momentum Meets India’s Ambition Globally, the agentic AI market is estimated at around $40 billion in 2026, with projections soaring toward $140 billion by 2030 as enterprises shift from AI-assisted decision-making to full decision-autonomy. Workflows that once dragged on for hours now collapse into seconds. Organizations evolve into agile, proactive entities capable of negotiating trade-offs and executing complex multi-step processes independently. India is ent...