Live data from Hacker News

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

news.ycombinator.com

141–150 of 484 posts

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

#141
Does not strictly match the "will never see the light of the day for anyone else."

But forked an ActivityPub server (GoToSocial) to proxy Rss feeds (https://github.com/Timshel/RssTooter).

Spent a couple of days on it initially (but had made something similar for Nitter before). Mainly use it to track Xkcd and software release outside of Github.

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

#142
post #81

Almost all of the software I make in my free time is for my own use. My most used tool I have is a note taking web app that automatically saves markdown files to S3. The most important feature I added was a little button that would automatically make a note for the current day, and put it in the daily notes folder, all sorted and organized. I also have full text search which is very helpful for finding old notes. I a…

> Using the Spotify API you can find random music, then find random instrumental music from that random music.

For this, I made a Spotify playlist with 41 hours of instrumental soundtrack music that helps me focus. It's not random like yours, but with that many hours, there's enough variation if you put it on shuffle.

It's mostly epic and uplifting movie scores. Or suspenseful and building up to something... none of that 8-bit video game beep boop shrill stuff.

https://open.spotify.com/playlist/31buZEaVGW9f5Y4cEcKtbt?si=...

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

#143

I pretty much stopped writing code for myself/as a hobby when I started writing code as my day job. There really is something about losing passion for a hobby once it becomes work, at least in my case.

Sadly, I did the exact same.

I went from writing my own tricked out Web 2.0 blog, writing my own 6502 NES games, writing myriad utilities and scripts to… remodeling my home, learning how to operate and maintain a pool, work on vehicles, garden and homestead.

I think in hindsight my hobby isn’t programming, it’s learning and I just enjoyed learning programming and kicked out into a good career.

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

#144

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…

This is like 90% of what I need to setup on a server for my personal usage. Issue is I don't do front dev at all so I never really start working on it. Any chance you've open sourced it ? (Or if not opensourced but you're willing to privately share the code, you can reach me at hn [at] manoz [dot] co)

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

#145
I run a small Dwarf Fortress podcast, and I didn't like the transcription options when we started a few years ago, so I wrote some python glue to do diarization (separate out speakers) and transcription using a torchaudio project, and either whisper or openai depending on how I'm feeling that day. Works surprisingly well, with timestamps and clean-up:

https://github.com/drewbuschhorn/a_strange_mood_podcast_tran...

vs

https://astrangemoodpodcast.com/2023/01/17/episode-1-is-dwar...

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

#146
Yeah, since I retired four years ago the only things I've worked on have been like that.

(1) A script to solve a resource-allocation problem in Grim Dawn (ARPG).

(2) A tiny bit of code added to Garmin's developer kit, to pick apart their .fit files and show me some running metrics that were hard to get at otherwise.

I do have one other thing I've been wanting to do recently, which might even be worth putting out there if/when I finish it. Then again, maybe not. Having been a maintainer for a project with hundreds of contributors before, I can say that coding for oneself feels very liberating. Only as much infrastructure and process as necessary to get the job done. No need to deal with feature requests or bug reports. No commit races, or battles in code-review comments. You know the requirements perfectly (or have a perfectly compliant customer who is willing to change) so if you want to take a short cut you can. I was often a stickler for doing things "the right way" when I was working, but part of the reason I left is that my work seemed to be all about shepherding the process and not the joy of making code grow and do new things. Having total freedom on a project, even a small one, is good balm for a jaded programmer's soul.

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

#147
I would add videos I liked to the "Liked Videos" or other playlist areas on my YouTube account. I'd return to find the video months or years later, only to see that it may have been removed (usually due to copyright or other channel closure). This video removal issue also extended to other platforms. I found this annoying.

To avoid this, I made an extremely simple video platform. I save all my videos there instead. It's still my hobby project that I use the most.

The code is at https://github.com/AlbinoDrought/creamy-videos

There's an optional youtube-dl importer UI at https://github.com/AlbinoDrought/creamy-videos-importer (separated for easier updates)

The importer repo also contains a Firefox extension so any target can be right-clicked -> Import to Creamy Videos -> Select a set of tags -> sent to the importer UI, youtube-dl, and then eventually video storage: https://github.com/AlbinoDrought/creamy-videos-importer/tree...

Post reply on HN