Posts

Showing posts from June, 2026
Embarking on a new journey through Golang to warp my mind around the language and bring my thought to contorsions. The promise of a new language is always exciting given Sapir-Whorf hypothesis. Your language shapes how you see and think about the world as you are in the world. The new ways of thinking about concurrency is what I am excited about. Python is hamstringed by the global interpreter lock (GIL) which prevents it from being multithreaded in the sense of being able to use multiple cores in a multi-core processor. I found this super frustrating for some reason to implement concurrency in Python that I might find how Golang treats concurrency easier to understand. But to be honest it was a minor trifle because I never was performant in the language of Python merely playing with toy examples and toy problems without having any impact. Nevertheless Golang will bend my mind and morph it into understanding the system underneath the hood without hiding anything in its glory and explic...