Earlier quoted context omitted.
I know a linker developer, I'm going to send this to him :) Not sure about heresy according to computer science. Sure, it's not intended, but it's a very clever thing to be able to do.
Technology like this will create huge selection pressures against desktop apps if it becomes easy for people to reverse engineer, remove payment mechanisms, and then freely distribute. Wouldn’t you think?
Ask HN: Is there any software you only made for your own use but nobody else?
441–450 of 484 posts
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#442My most used (by me) software is my social media posting tool (twitter/x). It's public but I've disabled signups (due to free tier posting limits since Elon's acquisition)
> How did you make it?
It's written in Django and hosted on DO
> How often do you use it?
Almost everyday :)
Others are used intermittently and they include image generator, screenshot tools for iOS and macOS, etc.
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#443Re: Ask HN: Is there any software you only made for your own use but nobody else?
#444Yes. 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…
This would be useful to me as well. If you do end up making it, could you reference it on your existingGithub
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#445- Split the mp4 up into pngs (better quality than jpgs) with ffmpeg.
- Process each png, filling the white caption areas with data from the nearest non-caption pixels.
- Join the pngs back to an mp4 (ffmpeg).
- Get the original audio with ffmpeg and merge it into the mp4, ffmpeg again.
The actual processing was with C# on Windows because that's home turf for me.
Lessons:
1) You need a lot of space for 200,000 decent quality .pngs
2) You need to be prepared to wait a few hours for the process to run
3) ffmpeg is blooming marvelous. https://ffmpeg.org.
I probably spent 20 hours on it, maybe more. I don't use it at all now, it was a one-off solution, but I occasionally see a video and think "I could run my app on that ... "
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#446Re: Ask HN: Is there any software you only made for your own use but nobody else?
#447- Note taking app that stores all data as markdown on Dropbox
- When I was getting married I created a photo upload site with a flickr backend where people could bulk upload all of the photos they took of our wedding, and as a result we got thousands of photos without needing to chase people up for memory cards etc.
- Every year I organise Secret Santa for all of my family and my wife's family through a PHP web app I wrote.
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#448Re: Ask HN: Is there any software you only made for your own use but nobody else?
#449Re: Ask HN: Is there any software you only made for your own use but nobody else?
#450I made a data takeout tool for the SaaS kindergarten communication platform used by my child's daycare. On it's own the software is really simple and could have been a few hundred lines of Python, but at some point I changed my mind and wanted to share this with other parents in case they find it, the things that make a project fit for publishing took 95% of actual work since you want it general and robust enough som…