Crafting memory allocators
It’s hard to overstate the importance of memory allocators. Without them, programs simply wouldn’t work. One essential step in optimizing code is using custom memory allocators. There are many dif...
It’s hard to overstate the importance of memory allocators. Without them, programs simply wouldn’t work. One essential step in optimizing code is using custom memory allocators. There are many dif...
We all have a treasure trove of old photos passed down from our parents, grandparents, and so on. Often, these photos are in black and white, and sometimes we wish to bring them to life in color. T...
While working on Kotlin/JS, I’ve come across quite a few new things for myself. The Kotlin compiler itself runs on the JVM, launching either within the Gradle daemon or its own Kotlin daemon (which...
Working with LLDB, I often come across new things like commands, additional tools, and more. I’d like to use this post as a sort of notebook where I can jot down important things and notes about LL...