RSSAmplifier

Blog

aneesh durg

exploring the world with 1s and 0s

aneeshdurg.github.ioRSS feed ↗10 posts

Latest posts

A Tale of Two DTVs

It was the best of times, it was the worst of times, it was the age of elegant solutions, it was the age of cursed hacks.

Juggling Threads

Psst. Hey you, wanna see something cool? Let’s juggle some threads.

How does joining a thread actually work?

As part of my research I’ve been playing around with something similar to dynamic linking. In particular, part of my work has led me to having programs that may need multiple copies of libc in the same address space (yes, it’s not safe, I know). I noticed that this would sometimes cause multithreaded programs to hang while calling pthread_join. Join (pun intended) me to understand a bit about how…

One Decade of Programming Later…

It’s been a decade since I started really thinking of myself as a programmer. Here’s some thoughts and reflections about my journey.

Making a Tilde Server

In the spirit of a new year, I’ve decided to finish up some old in-progress blog posts. Here’s some work I did early last year to set up a multi-user home server that provides some basic webhosting for Moontower Computer Club.

Things I’ve learned from my first semester as a PhD student

In Fall of 2025 I began my PhD journey at UT Austin! Here’s some stuff I’ve learned so far.

Transactional Shell Scripts

Many shell scripts in the wild are not transactional, leading to broken systems and unintended system states. In this post I’ll describe the issue and present a possible method for making shell scripts transactional with respect to the filesystem level to cover a wide variety of possible failures.

There’s a CoW holding up my HugePages

Hugepages can lead to performance issues when mapped in Copy-on-Write (CoW) mode. In this post, I’ll describe the problem with some benchmarks.

How fair is the lobste.rs’ community regarding self-promo?

Getting involved in petty internet drama is totally not a waste of my time - not if it means I can write some Rust.

My first contribution to cPython!

Getting cProfile to handle scripts that import __main__.