Live data from Hacker News

Ask HN: Is there any software you only made for your own use but nobody else?

news.ycombinator.com

211–220 of 484 posts

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#211
I wrote a script that looks at C++ files, figures out the dependencies (by looking at what headers they include) and automatically compiles and links out of date files. It makes programming in C++ sort of like programming in a modern language like Go. It took me a couple of days to implement and I use it any time I am working on my own C++ projects. I eventually want to add package management features to allow integration with external libraries, but this isn't a priority for me currently.

I have also worked on trading algorithms that used publicly available info about crypto order books to make profitable trades, which will obviously not be published since then they would stop working.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#212

I made a small tool that takes a screenshot all 5 minutes and stores it in a password protected zip file, but only if something has changed on screen. Sometimes I go through the old screenshots and get nostalgic as the oldest are 10 years already. I spend so much time of my life on my computer, so why not take photos of it?

Hmm.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#213
There are many tiny scripts I use at work to manage things. Mostly bookkeeping stuff like utilities to manage Jira, scripts that create text files as per a predefined template for meetings etc.

I'm the only one who uses it because these are tailored for my own specific use case, but if anybody from work asks I'm willing to share.

If I knew how to use Emacs, then maybe I wouldn't have needed some of these scripts.

-----

I have a huge list of movies I want to watch or have watched, and I like keeping track of those.

For the longest time I used Google Keep, but that couldn't keep track of dates when I added to the list or watched something off the list. And I liked my list to be sorted alphabetically and have it show the counts of watched and total etc.

Tonnes of apps and websites already do this. Or I could have probably built a spreadsheet file that does this. But I felt like rolling my own.

I built a simple webapp using Laravel and a little bit of Bootstrap to make the site look decent. Did it in one day during the less than a week of gap between resigning one job and joining another. Building it was therapeutic. I even bought a domain and hosted it on a DigitalOcean droplet. It's been up for over two years now.

There's nothing fancy about it. It really is just a glorified todo list. But I like the simplicity of it and I've been using it to keep track of movies to watch over the past two years.

I never had any intention of trying to promote it or anything. Initially I planned to share it with a few friends, but then I didn't. No reason.

So it's just out there in the web. In broad daylight. Anybody can sign up for it. Nobody has. Nobody knows. Hidden in plain sight. Just like me ;)

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#214

I built a hydroponic garden as a covid hobby. I wrote software to maintain the garden, water it on schedule, apply ph changes to the water, turn lights on / off, humidify, as well as monitor statistics (temperature, humidity, water temperature, water ph, water conductivity). Rough guess would be that I spent 50 hours actually working on the software. There's a handful of raspberry pis involved. I wrote everything in…

What do you use for valve automation? Is it a commercial or custom part? I've been wanting to do the same myself, but I hear there's all sorts of quality issues with automatic valves.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#215

I have a 3-letter domain that I use as my personal playground (think "xyz.com"). It features: - One-click anonymous upload of text, clipboard, and files. So from any computer, I can visit xyz.com + ctrl+v to upload the clipboard, write notes to myself, drag and drop a file, etc. It's a risky feature, but there's nothing to attract attention and you don't even get a URL back. - Authenticated sessions see a list of upl…

> ..., along with audio extractor and pitch+speed correction for songs

What do you mean with pitch+speed correction? Have songs on youtube false pitch or speed?

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#216
I've written a fully functional emulator for the Philips P2000T, my first true love [1].

As I still haven't found a way to legally ship it with a ROM (partially copyrighted by Microsoft), I'll keep it to myself. If anyone happens to know someone who knows someone at Microsoft willing to help me with this, please let me know.

[1] https://en.wikipedia.org/wiki/Philips_P2000

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#217
My blog (devnull.land) — I stood it up in a day or two, could run on a potato, and uses GitHub Gists as its data store. (More info: https://devnull.land/github-gist-blog)

My VoIP provider supports SMS, and exposes an API. The community-made app wasn't performant enough, so I cobbled together my own interface in a couple evenings. Then one day some dependencies shifted and it wouldn't start on the latest Node :\ Oh well.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#218

I have a 3-letter domain that I use as my personal playground (think "xyz.com"). It features: - One-click anonymous upload of text, clipboard, and files. So from any computer, I can visit xyz.com + ctrl+v to upload the clipboard, write notes to myself, drag and drop a file, etc. It's a risky feature, but there's nothing to attract attention and you don't even get a URL back. - Authenticated sessions see a list of upl…

> ..., along with audio extractor and pitch+speed correction for songs What do you mean with pitch+speed correction? Have songs on youtube false pitch or speed?

I often have to download songs for children to sing, but they have trouble with fast or low-pitched songs. It destroys the audio quality, but they don't seem to mind.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#220
I wrote a series of scripts that parse song names from my music blog RSS feeds, match them against my music service of choice, and then build 200-track playlists for me to consume. It's a great way for me to eliminate some of the drudgery of music discovery, especially in niche fields.

It's a series of Python scripts backed by SQLite and reverse-engineered API clients for various music services. Over the years I've switched the backends from Google Play Music/Youtube Music, to Apple Music, to Tidal.

Post reply on HN