Live data from Hacker News

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

news.ycombinator.com

421–430 of 793 posts

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

#421

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…

Great example of a pet project :)

Well played!

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

#422
post #38

I created several. The most recent: an Android app that lets you navigate any map, e.g. the one you just make a picture of: https://play.google.com/store/apps/details?id=nl.vanderplank... I use this one myself: we like to take walks, and not always are the routes marked that clearly. Still only a handful of users, but usefull I guess for anyone that wished that e.g. Google maps made it possible to upload a picture to…

Edit: found a YouTube video, seems like it does what I think it does. Although the video could be a lot better, it's currently Boomer PowerPoint (sorry). LetsDoThis, is that an app for a group of people? It'd be interesting if say a group of 5 people want to decide on where to go for lunch, dinner; or where to sightsee on a travel day... I guess the choices need to be granular too, e.g. a steak restaurant would be "H…

Yes, for a group. The ‘leader’ needs the app, others can use web, but app is preferred. Info is stored for two weeks on my server, under a uuid filename.

Leader anyone who voted can see best voted result. You can add arbitrary urls, any texts, and select netflix movies and restaurants.

Communication between leader and others is via your own solution: whatsapp, signal or other social app (you essentially share the uuid between you). My server stores the solutions and votes for two weeks, and then deletes the results.

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

#423

Earlier quoted context omitted.

Honest question: I was looking at Wednesday and it said: Cook dinner, Dishes, Trash out. What is the usefulness of tracking this in the app since just entering the kitchen gives you instant status to each of them?

I put some generic defaults, but it works well for tasks that happen only on certain days. Taking trash to the curb once a week, packing bags for kids after school activities, etc. We liked checking things off the list, so we put obvious stuff too, but it's easy to forget infrequent tasks.

Got it. Makes sense. Gonna try this although another thing we were planning to solve was balancing the chores between us to fix the paradox where both of us think they do more than the other. So this would be an iPad fixed on a wall or in a very visible position?

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

#425

I have a litany of scripts and programs but those that reached moderate complexity are: 1. A script to canonicalize the name of PDF statements from financial institutions and sort them into a directory structure 2. A CLI (not TUI, actual CLI with custom command syntax and read line integration) for a 3rd party todo service with 2 way sync that gets synchronized with the app on ny iPhone. 3. A web app that I self host…

How does 3 work?

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

#426
Made a command line app in Go that recursively reads comic book files in a directory and serves them as a Opds spec[0] api so I can read comic books from my iPad using the Panels app[1].

There are more apps like this, but they all weigh too heavy on me because I simply want a directory three representation of my files and not be managing a library. Also it’s super low memory.

There is a similar Go project on GitHub, but that does not support directories mixed with files, and I don’t think it supports streaming comic book pages.

[0] https://specs.opds.io

[1] https://panels.app

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

#427
I've written many over the years. Not all were published and some of them I don't use anymore. Anyway, here are a few examples:

* `inlinehashes`[1] - To help build the CSP of websites that I don't control the source/development.

* `worker-ddns` [2] - simple DDNS solution using cloudflare workers

* `kinspect` [3] - a web tool to quickly inspect PGP keys without importing them to my keyring.

[1] https://github.com/dethos/inlinehashes

[2] https://github.com/dethos/worker-ddns

[3] https://kinspect.ovalerio.net/

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

#428
https://sourcemap.tools/

It helps decipher JS error stack traces by applying source maps to them. In my previous company, we struggled to configure Sentry to work with source maps, and every error message was cryptic due to minification. First, I created a little command line utility and later made it a web app.

https://github.com/rmuratov/hledger-tools

Just some charts to summarize my monthly finance activity based on hldger journal.

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

#430

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…

This a great example on the usefulness of data availability via JSON API.

If the data is read only it's a GOOD thing especially for non-confidential data that are meant to be public, every government agency should open their public data like this.

Post reply on HN