Ask HN: What apps have you created for your own use?
111–120 of 793 posts
Re: Ask HN: What apps have you created for your own use?
#112Re: Ask HN: What apps have you created for your own use?
#113It supports company shares, real state funds, BDRs (Brazilian Depository Receipts) and day-trade with future contracts.
The main motivation was the taxes management (annual income taxes and 'darfs') as this things can be complicated considering the rules of swing-trade, day-trade, profit, losses and excemptions around here.
It was also a personal learning experience in Android development(Kotlin and Jetpack Compose) and Supabase (big fan of it).
In the end, it took me 2 years doing it on my spare time and as I was kept adding features, I decided to published it as well, since I don't know good alternatives (most people don't know how to do taxes in Brazil).
Any feedbacks are much appreciated.
Re: Ask HN: What apps have you created for your own use?
#114I'm currently working on it, and I use it myself for all tab management.
I use it in all my firefox profiles since it can be used as a sidebar and as a popup for smaller windows.
Re: Ask HN: What apps have you created for your own use?
#115Re: Ask HN: What apps have you created for your own use?
#116https://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…
I also use a QWERTY keyboard and I use a custom keyboard layout that maps alt-a to ä, alt-u to ü, alt-o to ö, alt-s to ß (plus the same for uppercase for the first 3). That works well for me without the need to post-process. On macOS it's relatively easy to create using a tool called Ukulele ( https://software.sil.org/ukelele/ ). You can also download my layout here: https://alex.kirk.at/USUmlaut.keylayout
Re: Ask HN: What apps have you created for your own use?
#117- No account needed
- Importing `My Clippings.txt` from your Kindle, exporting as json or markdown
- Browsing highlights from books, bookmarking highlights
You can check the demo here: https://karlosos.github.io/kindle_clippings_webapp/#/demo
Re: Ask HN: What apps have you created for your own use?
#118Re: Ask HN: What apps have you created for your own use?
#119Another project I worked on for my own use was a network isolated, lightweight video monitoring system. Around 5 years ago, I was looking to install a camera in our living room. I couldn't find anything I trusted that worked completely offline without some companion app pinging their servers. So I bought a basic IP camera on Amazon that supports rtsp and a raspberry pi. Created a fenced wifi network and added the camera to it.
Had an FFmpeg process read camera stream on demand and write to local buffers. Wrote a simple python server to listen for incoming connections on a different interface and stream the video on API requests. Then built an android app that talks to the python server to stream video on demand.
Also installed motion (https://github.com/Motion-Project/motion) on raspberry pi to detect motion in the video and store those snippets to local storage. With motion running, the adapter I was using wasn't delivering enough power resulting in storage occasionally unmounting and raspberry pi restarting taking the camera system offline. With motion detection disabled, the entire setup ran reliably for many years.
Re: Ask HN: What apps have you created for your own use?
#120I 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 and upsert the cat data into the database. Any new records would get posted to a twitter account (a free way to get notifications on my phone).
It worked beautifully, and when a black cat called "Fluff" popped up, we both knew he was the right one, and we were able to phone them and arrange a meeting before anyone else. Fast forward five years, and he's sitting next to me on the sofa right now, purring away.