@AmanMulani
Software Engineer @ Clari
Nothing here yet.
Nothing here yet.
Jun 15, 2025 · 3 min read · Lately, I've been diving deep into one of computer science's most fundamental unsolvable problems. Yes, you read that right, unsolvable! Not just difficult, not just complex, but mathematically proven to be impossible to solve in the general case. Wh...
Join discussion
May 26, 2025 · 5 min read · Introduction Resolving conflicting dependencies can be a real headache in python applications. Different parts of the codebase might require different versions of the same package, creating a seemingly impossible situation. While virtual environments...
Join discussion
May 21, 2025 · 5 min read · Introduction Ever wondered why you are always told that numpy performs better than python lists? Well, it circles back to dynamic + reference based arrays vs static arrays. In this article, we will understand it by exploring how Python's implementati...
Join discussion
May 17, 2025 · 5 min read · Introduction Computers use a hierarchy of memory systems to balance speed and capacity. The fastest memory (cache) sits closest to the CPU but is limited in size. When data isn't found in cache, it must be fetched from slower memory, creating a "cach...
Join discussion