Live data from Hacker News

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

news.ycombinator.com

471–480 of 793 posts

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

#471
I created a Postman/Insomnia and a note app for my own use because I do not trust third-party cloud solutions.

I also created a music player because I dislike the shuffle algorithm in Spotify.

And I have created a travel app for my family to provide public transport route suggestions, offline maps and reminders.

My Postman/Insomnia alternative is open-source for the public now: https://github.com/sunny-chung/hello-http

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

#472
I made my own reverse proxy server that is auto configured by clients calling the API instead of editing a config file. I guess I didn't feel like learning nginx configs.

It's cool I've been using it a couple years now and one of my friends uses it too https://github.com/fsmv/daemon

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

#474
I built on top of the in-browser PDF document-reading app to help me curate, visualize, and recall personal knowledge as I read and annotate research papers; the app extracts data from documents such as URLs and references and makes it readily available to view or download - https://www.knowledgegarden.io

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

#475

I was annoyed by Wikipedia's noisy design choices, so I built a very scaled down read-friendly mirror of Wikipedia that presents the text as though it was a book, doing away with inline links. It's desktop-first as I don't really use mobile browsers, my fingers are too big. https://encyclopedia.marginalia.nu/article/Hacker_News

I like this. How does this work? Is there an api you use to obtain the text from the wiki articles?

From the footer:

>The wikipedia contents are from OpenZIM dumps, which typically lag behind the main Wikipedia project by up to a year.

That being said, while it wouldn't be a good fit for that project, Wikipedia, et al., have a fairly robust API: https://www.mediawiki.org/wiki/API>

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

#476
Built Pgweb (Postgres GUI) some time ago since I could not find a good minimalistic database explorer.

https://github.com/sosedoff/pgweb

The app is super simple, made with Go + jQuery and I still use it almost every day, and has brought it to every single company I've been with.

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

#478

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…

Same sort of thing but this one is ongoing.

Standard, website bad and hard to use but there is a secret json feed of the useful data so hack up an alternative view. ( they have changed its format slightly once so far )

This one is cinema, local cinema ( https://thelight.co.uk/ 5 minute walk) has a monthly membership with unlimited films, but, hard to keep track of whats on time wise. EG planing to watch one film as another one ends, and also hard to tell what is the last showing of a film or even what is on right now.

So simple table view sorted by time.

https://notshi.github.io/dump/ the source is on github but as it is just a single html page with javascript embedded then the source is also the page :)

Kinda nice that it is such a simple hack.

Post reply on HN