Live data from Hacker News

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

news.ycombinator.com

181–190 of 484 posts

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

#181

Earlier quoted context omitted.

[flagged]

Cancelling your ISP doesn't leave you surrounded by peers who default to solving problems from scratch.

This is the same problem that comes with my desire to give up a smartphone. Getting rid of my phone doesn't make other people know how to give me directions to their house without GPS (among other problems).

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

#182

As a freelancer I invoice in multiple currencies, and I couldn't find a program to generate them that wasn't an overly complex $100/mo SaaS. So I build a little cli to generate my invoices. 100 loc and super simple. I miss the 70s when programming was the default way to solve problems. Excessive abstractions and proprietary software often slow us down.

[flagged]

That's obviously not what they meant.

I think they're more referring to several decades ago when someone had a software need they wouldn't get some off the shelf proprietary tool that costs $$$$ and is crazy bloated and locks you in. Instead they'd hire someone and that person would work with them to deliver exactly what they need and that solution would last for decades and the eventual off the shelf software that replaces it is widely seen as inferior by the employees.

There are famous stories of this. A highschool once had a student write their entire automated HVAC system on a C64 for free. It has worked really well for 3 decades, but they struggle to find replacement parts. They asked for bids to replace it from several companies and were flabbergasted to learn it would costs them an insane amount of money. So instead, they call up the kid (now an adult who still lives nearby), to occasionally do maintenance. Which solution is better? The OP is just talking about how they miss the times when a lot more people were going for the custom in-house C64 option.

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

#183
I was upset with YouTube ads, so I made my own client. It is a Vue frontend that talks to a Supabase backend. The database has a list of channel IDs, and a serverless endpoint makes a request to the YouTube API to get a list of videos and returns them back to be displayed in a chronologically ordered list as embedded videos as to avoid ads. It could be configured for others to use, but I haven’t created a signup page, and I want to avoid YouTube API rate limiting, so I’m the only user now. It took me a day to make and I’ve used it daily for 3 years.

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

#184
The two that I still actively use

- Danish Swimming Water Quality App[1]: Native app for my iPhone that I use to check the water quality. The official one wasn't working for me, too slow and too buggy. Ultimately, it's just a JSON of public data spread on the map, very simple. - Artwork Framer[2]: Script using Blender that converts .png into a framed 3D model. You can even adjust the frame if you want and then export it as a model to be used in VR (works even in Apple Vision)

[1] https://github.com/bartaxyz/denmark-swimming [2] https://github.com/bartaxyz/artwork-framer

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

#185

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…

How does it automate ph changes to the water?

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

#186
Do scripts count? I own 100+ .id domains (generic names, like player.id, awesome.id, and sweet.id), and owning a lot of domains is expensive both in money (renewals) and time (maintenance). So, I became a registrar reseller to get better price and API access. I wrote some Frankenstein scripts that cobbled up together those APIs, GitLab's, and Netlify's to automate publishing through CI/CD to those 100+ domains.

At the end of the day, I gave up and just put everything in Dan. Apparently, it's more lucrative to just sell them.

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

#187

Yes. I made two recently. - TalkToYoutuber[1]: Download the transcripts from a youtube channel and hook it up to gtp4 with RAG to let me "talk" to youtubers. There's a bunch of youtubers who have useful knowledge to share, but no blog or wiki, so semantic searching their video transcripts is the next best thing. - YoutubeThumbnailSearch[2] - Embded all of a youtube channels thumbnails using CLIP and search them using…

Something like talktoyoutuber would also be very useful for certain discord servers. They'll have a lot of knowledge on something but will gatekeep it with "just use the search." and they'll refuse to build a wiki or really engage in any kind of organization.

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

#188
post #122

Over the years I've built lots of small and large tools for personal use, some of them I'm still planning to release as open source "one day", others I have no intention of ever releasing. One of the biggest and most useful of those tools is a Django web interface that accepts JPG/PNG/PDF file uploads of scanned documents and in case of images (JPG/PNG) it will run "tesseract" to OCR extract text from the images (in…

I use paperless-ngx but the concept is the same. It is hard to understand how much easier this makes dealing with all of the paper in your life until you have it.

Once a quarter, I scan all my accumulated paper with a similar setup and tag it all in Logseq. I almost never need the archived docs, but when I do, it's a breeze.

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

#189

As a freelancer I invoice in multiple currencies, and I couldn't find a program to generate them that wasn't an overly complex $100/mo SaaS. So I build a little cli to generate my invoices. 100 loc and super simple. I miss the 70s when programming was the default way to solve problems. Excessive abstractions and proprietary software often slow us down.

> I miss the 70s when programming was the default way to solve problems.

When you get deep enough into writing a custom tool it starts doing things a generic tool would never accomplish (or it would have to be bloated with features no one needs) Hard coding values and constraints for personal use makes such elegantly simple interfaces.

For example, my agenda is a beutiful boulderdash-like grid of icons. The data is a set of arrays [1,2,1,0,0,1,1] and an object for special days. There are no setting, it has zero buttons to press.

I've made countless silly things other people could use if only they knew it existed.

https://go-here.nl/real-salary-calculator.html

https://title-spider.go-here.nl

https://salamisushi.go-here.nl

endless things I've made for personal use. I think something like 60% needs one or two lines of love to work in 2024.

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

#190
I built a headless CMS to generate the static site, https://bestalbumsintheuniverse.com.

The key feature is that you can put in a Wikidata ID (https://www.wikidata.org/wiki/Q1536639) and it will auto populate the name, artist, release date, and Spotify ID. It will then grab covert art from https://coverartarchive.org/, which it resizes and mirrors to S3 (previous versions of this project used images manually uploaded to imgur, but broke when they changed their secret API).

So basically all I have to do is write the description and I've got a new entry on the site.

Post reply on HN