mostly deterministic

Joined January 2018
906 Photos and videos
Pinned Tweet
got claude certified!๐Ÿ…
2
4
468
One Python feature I love is how easy it is to create custom context managers. They let you wrap setup and cleanup logic into a clean, reusable abstraction. Useful for things like database connections, transactions, file handling, locks, temporary resources, and more.
2
248
Not sure why, but building ML models was more exciting to me than building agents.
5
2
48
5,297
Scalability! Observability! Evaluation! The three most important things I can think of right now! While five years back I used to lose my shi* while trying out any new fancy ML concept worrying that how would I write code for it.
Is system design becoming the new LeetCode?
5
650
Joined @TigerAnalytics as Senior Lead!
2
12
619
What happened to mojo? It was an emerging competitor to python.
2
383
Everyone working in AI should read this awesome book by @chipro!
5
353
Now you can make an agent that makes an app that makes money while you sleep at night, arguably.
Well one thing is for sure Now you cannot make an app and sleep at night while it makes money for you
1
2
322
I had multiple problems until I had a health problem. Now I just have one problem.
2
3
242
Computers are just 0 and 1
AI is just if-else conditions
2
249
I used to be big on type-hinting in Python. Over time I realized: Mostly I end up reading types instead of logic. If a function needs a magnifying glass to understand, readability already lost. Types should support code โ€” not drown it. So I use them much less in projects.
3
237
The fact that I don't have to copy paste anything from the browser to ask questions about it is enough for me to use AI browsers (like Atlas). Such a time saver.
1
1
156
Linkedin is crazy, I am getting referral requests in DM for the company I donโ€™t even work for.
1
186
So I just resigned from the job I had been hating, after only eight months. I never thought Iโ€™d leave so soon, but despite my best efforts, the combination of unfulfilling work, a toxic client, and declining health made it impossible to stay. Looking for better roles.
3
8
950
sunday cooking! </>
3
164
slow weekend! โ˜€๏ธ ๐Ÿ“• ๐Ÿฅ—
1
198
Looking for solid open-source LLM-based OCR tools that actually work. Any recommendations?
2
156
27 Dec 2025
If you can't distinguish between multithreading and multiprocessing, then keep in mind that: Multithreading is like a chef with four pans on one stove sharing ingredients and tools. Multiprocessing is having four chefs in four separate kitchens working in parallel. โ†“
1
10
219
27 Dec 2025
The "Burning Dish" in multi-threading refers to Race Conditions. Since threads share the same memory, they can trip over each other and overwrite the same variable at the exact same millisecond. You have to use Locks to keep things orderly, or your data gets corrupted.
1
2
200
27 Dec 2025
The "Phone Call" in multi-processing is Inter-Process Communication (IPC). Because processes are totally isolated, they canโ€™t just "see" each other's work. You have to package up your data and ship it over a boundary, which adds a performance overhead.
2
163