RSSAmplifier

Blog

Graham's Code Blog

Here Because Being an Instagram Influencer Didn t Work Out

duncangh.comRSS feed ↗10 posts

Latest posts

To save america we must end elections

At present, running for office is a task that would almost entirely yield candidates with extroverted personalities with high degrees of self confidence. This elected body was intended to be a deeply thoughtful, intellectual and humble group of citizens that represent the people of their district and work soberly and selflessly to further their interests [ ]

The Algorithmic Accretion Disk: Elon Musk, Twitter, and the Singularity’s Event Horizon

Prompted and Edited by Graham. Drafted and Refined by Grok In the dim glow of a late February evening in 2025, a curious post flickered across the digital expanse of X, the platform formerly known as Twitter. Paul, a user with the handle @paulkingmorris, shared a theory that felt both audacious and oddly plausible, a [ ]

Hats

I ve had a lot of hats in my life and always seem to have one on my head when I m out and about. But I ve only had a few favorite hats. It s funny how the masses of hats in my collection distills down to a few treasured favorites. You never know that a hat will [ ]

Hanging with Jackie and Hank

Click here for the full Google Photos Album: https://photos.app.goo.gl/J8r7kbvmn8Mk2K9d7

escaping pd.set_option hell

How I broke free from pd.set_option (and probably some best practices, too) in my python pandas code.

Port Already In Use

# find the PID of the process on your port lsof -i :3000 # kill it bang bang kill -9 Thank me later

Nike Run Club Data Export

I love the Nike Run Club app and use it for every run I go on. The interface is incredible and provides a lot of cool summary / overview data of each run, including mile splits, and various permutations of visualizations showing combinations of your elevation / pace / total distance / GPS location throughout [ ]

words

Finding the beauty of language through words -- why I keep a vocabulary list in adulthood

Todo: Self Host Blog

At some point, I really hope to migrate this blog from WordPress to a fully self hosted, designed and written implementation of this humble blog. My ambition to accomplish this is probably just a manifestation of my OCD and desire to have more control over the content and how it s presented. If you ve ever done [ ]

Ordinary Data Structures: Python3’s deque to Store Recent Emojis

Recent Emojis if the implementation is simply the most recently used 30 emojis, then some sort of ordered iterable array-like structure would be best suited to the problem. Since 0 index insertions are an important requirement, Python s built in deque data structure would be a good candidate to use here. deque is found in the [ ]