How on earth does OpenAI (or Anthropic) answer 800 million people at once

Datacenter GPUs, NVLink fabrics, liquid cooling and serving software. This is how an LLM answers you in 2 seconds while 3 million other people are using it.

Honest Python: 15 Laws Against Mediocre Code

You cleared the beginner threshold. Your code runs. Congratulations, you just reached the level of functional mediocrity. These 15 laws will teach you to write honest code, the kind you won't have to apologise for.

The 7 things you should NOT use threads for in Python (that every programmer should know)

If you have been writing Python for more than 6 months and you still use threads to make your code faster, this article is going to hurt. Threads in Python do not work like they do in Java or C++.

Redis vs. KeyDB — My Performance Test and Conclusions

KeyDB is a fork of Redis. The KeyDB project claims that the Redis implementation approach is not correct and can be better, in terms of performance.

Efficient memory usage in Python with Zero-copy

Python has a lot of magic with memory under the hood and, in most cases, Inefficiently. Let's make it efficient with Zero-copy.