Live data from Hacker News

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

news.ycombinator.com

51–60 of 793 posts

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

#51

I got fed up with using loads of different apps to keep track of my flights while doing long term traveling trips so made a simple site to track them using the AirLabs free API. GitHub: https://github.com/PaulSinghDev/personal-flight-tracker Public site: https://personal-flight-tracker.vercel.app/no-key

Very interesting! How does AirLab coverage compare to FlightStats? Does it know about delays and gate changes even for international flights?

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

#57
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 Abenteuergruetze!' | srgn --german
    Grüß Gott, Poeten und Abenteuergrütze!
meaning it not only replaces Umlauts and Eszett, it also knows when not to (Poeten), and handles arbitrary compound words. Write your text, slap it all into the tool, it spits out results instantly. The original text can use alternative spellings (ou, ae, ue, ss), which is ergonomic. Combined with tools like AutohotKey, GUI integration through a single keyboard shortcut is possible. See [0] for a similar example.

A niche need I haven't yet come across someone else having as well! (just the amount of text explaining what it's all about is saying a lot in terms of specificity...)

The tool now grew into a tree-sitter based (== language grammar-aware) text manipulation thing, mostly for fun. The bizarre German core is still there however.

[0]: https://github.com/alexpovel/betterletter/blob/c19245bf90589...

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

#58
The one that the most other people found useful: Remote Control Collection. It's an app that allows you to control your PC or Mac from your Android or iOS smartphone while connected to the same network. It also was available for Windows Phone and BB10 back in the days.

I've built it about 10 years ago for myself because I was too lazy to get up from the couch to control my media PC and the existing apps were all terrible to use. Turns out many people found good use for it, over 10 million across platforms by now.

https://play.google.com/store/apps/details?id=com.steppschuh...

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

#59
post #26

Earlier quoted context omitted.

For retirement calculators monte carlo simulations seem like the best way to model risk, but all existing implementations are several orders of magnitude slower than they should be. I made https://james.darpinian.com/money/ to prove that it's possible to simulate a million scenarios in a few milliseconds. You can drag sliders and see simulation results update in real time. Even on phones. Because I made it for my own…

That's cool! I'm planning to add Monte Carlo simulations into my app.

Do it on the GPU and you will be so far ahead of everyone else it's not even funny.

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

#60
I wanted to create a beer-rating app for my circle of friends, like Untapped and BeerBuddy, since they're quite commercial and have an outdated look. We currently use an Excel file.

The project is on hold though, after the wife complained about it being a time sink.

Post reply on HN