Ask HN: Most interesting tech you built for just yourself?
31–40 of 1001 posts
Re: Ask HN: Most interesting tech you built for just yourself?
#32I used yt-dlp to download the metadata for over 6,000 videos on the SNL Youtube channel. I put it into a database, parsing out season/episode into fields where possible. Then I wrote a small Flask app to search or browse seasons/episodes, from which I could flag for download the sketches I wanted.
Re: Ask HN: Most interesting tech you built for just yourself?
#33https://nvartolomei.com/omniverse/
Maybe, one day, after I’m satisfied with its functionality I’ll make it open(-source). For now, in the interest of keeping friction low, moving fast and breaking things, it’s pretty private.
Re: Ask HN: Most interesting tech you built for just yourself?
#34To keep reading top of mind I built a Chrome "newtab" extension to show my "Currently Reading" list, and excites me about books I've put as "to-read". It has worked wonders on my reading! And it is pretty small and polished - no tracking, no credentials, just bare-bones.
https://chrome.google.com/webstore/detail/currently-reading/...
Re: Ask HN: Most interesting tech you built for just yourself?
#35Re: Ask HN: Most interesting tech you built for just yourself?
#36It leverages containers and Docker Compose, mainly for it's tooling that makes it easy to deploy. I made a tool that correctly selects the right node based on the directory I'm in using Docker Profiles. The networking is both internal and external; I share some APIs externally, like to share photos or to run video game servers, while other services are entirely privileged. It, for the most part, implements mTLS, and has both public and private DNS. I have a single ingress node in my cloud provider that is connected to my home servers via Tailscale. It's been instrumental in building out things at my house and making my life easier and cheaper.
Re: Ask HN: Most interesting tech you built for just yourself?
#37Re: Ask HN: Most interesting tech you built for just yourself?
#38Like other sys admins and devs, I had used email notifications for years to notify me whenever *stuff happens* on a server (like a job ran/completed, some storage device is low, etc.). But when matrix came out several years ago, i really liked the concept, became a bit of a matrix fanboy, and built a little script to leverage - nowadays, all of - my server notifications. Again, pretty basic/not sophisticated, but it scratches my itches.
Re: Ask HN: Most interesting tech you built for just yourself?
#39A tool called "diff modulo base": https://git.sr.ht/~nhaehnle/diff-modulo-base Given two version (old and new) of a Git change (i.e., individual commit or patch series from a pull request) it produces a diff that is actually useful for reviewing purposes, assuming you've already reviewed the old version of the change. It's sort of like `git range-diff`, but where `git range-diff` produces a "diff of diffs" that is ve…
Re: Ask HN: Most interesting tech you built for just yourself?
#40* In one of my former workplaces I wrote (alongside another person) a gamified shared playlist app that allowed everyone to participate in being a DJ for our company hackathon (people getting more upvotes getting more playtime, songs getting many downvoted being skipped in the middle, etc). That was a lot of fun and surprisingly a very emotionally engaging experience for everyone.