Live data from Hacker News

Ask HN: What apps have you created for your own use?

news.ycombinator.com

121–130 of 793 posts

Re: Ask HN: What apps have you created for your own use?

#121
A lot of the YouTube channels I watch fit perfectly into the audio-only podcast format.

So I made a little script using youtube-dl that turns YouTube channels or playlists into RSS feeds for consumption in podcast apps. It gets rid of so much of the noise that makes consuming media on the platform itself a pain.

It's more or less deliberately crappy because I spent just enough work on it for it to be useful to me and intentionally avoided over-engineering so that I'd just get it done. The plan is to make it nicer, but I haven't gotten around to it so far.

https://github.com/solarkraft/ytdl-podcast

Re: Ask HN: What apps have you created for your own use?

#122

https://github.com/alexpovel/srgn It grew out of a niche, almost historical need: using a QWERTY keyboard, but needing access to German Umlauts (ä, ö, ü, as well as ß). Switching keyboard layouts is possible but exhausting (it's much more pleasant sticking to one); using modifier keys is similarly tedious, and custom setups break and aren't portable. So this tool can do: $ echo 'Gruess Gott, Poeten und Abenteuergruet…

This is why I stick to layouts with separate keys for " and the dead-key ¨ Plenty of european layouts with qwerty and the necessary dead keys, that work on every OS.

Re: Ask HN: What apps have you created for your own use?

#124
I mostly code my own games with a target group of 1, my favourites are

http://lalo.li/lsd/

https://updownredgreenetc.franzai.com/

https://spinner.franzai.com/

https://dance.franzai.com/ (basically a lava lamp you can interact with)

from the app side i like

https://qrpwd.franzai.com/

coded to save my 2 factor backup codes qr encoded and encrypted in my photo stream

and

https://github.com/franzenzenhofer/thisismy

a command line trim&copy&paste tool for files and webpages

Re: Ask HN: What apps have you created for your own use?

#125

A few years ago, my wife and I decided to adopt a rescue cat from battersea.org.uk. However, it was a frustrating experience as the staff didn't always update the website regularly, and we'd find that any suitable cats would be snapped up before we'd even seen them. I spotted that the website served its data to the frontend via an unsecured internal JSON API, so I built an Elixir app that would poll the API endpoint…

That’s super heartwarming to read. Congrats on your success!

Re: Ask HN: What apps have you created for your own use?

#126

I started to learn to swim and one of my main issue is breathing. Well it is easy for everyone who learned it as a kid, but for me that was the hardest part. So I wrote an app to practice breathing daily. Actually, it is not finished, but still WIP. I write a daily log about it: [0] If you want to try it out or are in the same boat: [1] [0] https://kiru.io/blog/posts/2023/advent-of-app/ [1] https://testflight.apple.c…

That's a neat idea! As an adult who also recently learned to swim, I have the exact same issue as you! It's surprisingly hard to do long distances and the biggest challenge is breathing. Might check out the app

Re: Ask HN: What apps have you created for your own use?

#128
Fun topic! These days I build everything for myself, then publish and see if someone else is interested (mostly not :-)

First thing I built, when I started doing full-stack stuff: https://pushdata.io It's a super simple time series data storage. You don't even have to register an account, just do "curl -X POST https://pushdata.io/youremail@yourdomain.com/temperature/47" and you've stored your first value. I use it a lot to log various stats about all the things I've built, like user signups or whatnot.

Then I wanted to create simple crosswords with image clues to help my kids learn to read. That resulted in a crossword generator backend and a simple game: https://puzzlepirate.net

Puzzle pirate is great, but I wanted to print the crosswords on paper also, so I slapped together https://crosswordcomputer.com. The UI is rather ugly (like Pushdata) but you can create pretty cool crosswords for kids with it.

Then I wanted to create more flexible shields.io so I created https://supershields.io - basically a shields.io but with programmable (in Lua) logic for the shields you create. I'm not using it myself anymore though so not maintaining it very well and it seems there is something funny with the Lua execution right now. It is using AWS Lambda servers to run Lua scripts, perhaps they're not firing as they should or something. If someone wants to use it, get in touch and I'll see if I can get the Lua execution operational again :)

I also wanted to backup private photos and videos from household phones to a USB memory on a local storage server (Raspberry Pi) and then have that server automatically back everything to the public cloud but encrypted (as I don't trust public cloud providers to keep my data safe forever). I couldn't find a good solution for this, so I wrote some shell scripts that do the trick: https://github.com/ragnarlonn/savethepictures

My daughter was playing Minecraft too much, on our own server, and I created a small Python program to enforce "screen time" in Minecraft: https://github.com/ragnarlonn/mctimer

I once needed to simulate broken DHCP clients and couldn't find a good tool to do so, so I wrote "dhcptool": https://github.com/ragnarlonn/dhcptool

All of these taught me a lot, especially the later forays into full-stack development after having been pretty much clueless about frontend stuff for a long time (still clueless but at least I can create ugly UIs now).

Re: Ask HN: What apps have you created for your own use?

#129
PyCmd: wrapper for Windows' CMD.exe to provide a modern, dramatically improved interactive experience while maintaining ~complete compatibility: https://github.com/horeah/PyCmd

I started it many years ago for my own use, but it is an open source project and has aquired some public "audience" in the meanwhile.

It has a recent Linux port (beta quality) which brings the same interactive improvements when working with bash.

Post reply on HN