I wanted a way to keep track of my expenses so I built a mobile app in Flutter to do just that. App data is stored on device, no cloud, no tracking, no third parties, and I use SQLite files for storage and export. I made it available for free: - for Android ( https://play.google.com/store/apps/details?id=ro.lansator.ba... ) - iOS ( https://apps.apple.com/us/app/banii-mei/id1436417739 ) Great experience learning Flutt…
Ask HN: Tools you have made for yourself?
81–90 of 458 posts
Re: Ask HN: Tools you have made for yourself?
#82It takes a folder of webp files and remembers your page on local storage. It's not perfect but it's ok. It also prefetches the next 10 or so pages which is fine for reading on a train.
Another, tool that sends wake-on-lan packets and shutdown packets to a windows machine that allowed me to steam stream from a dedicated windows machine: https://github.com/gravypod/SteamStreamScripts
Re: Ask HN: Tools you have made for yourself?
#83https://github.com/zdwolfe/zstat
https://pypi.org/project/zstat-cli/
$ cat nums.txt
456
366
695
773
...
$ cat nums.txt | zstat
p0 = 56
p50 = 366
p90 = 773
p95 = 773
p99 = 826
p99.9 = 826
p100 = 826Re: Ask HN: Tools you have made for yourself?
#842. I use markdown files to keep notes. So i made a couple of scripts to keep that organized. It can quick add new notes and create indexes.
https://ognjen.io/markdown-notes-improvements/
3. No longer live: I made a printable forms builder. In a previous company we had to make custom paper forms for registration for every client so I made a thing that made nice printable forms.
4. A thing for estimating Trello cards. You would import a board. Then invite people. Then everyone could estimate all the cards without seeing other estimates. The owner would then see everyone's estimates and could accept an average and automatically tag all the cards with something like "effort: 3".
If you're interested in 3 or 4 email me and I can dig them out.
5. I made a few customizations to Jekyll including being able to publish posts from external folders.
Re: Ask HN: Tools you have made for yourself?
#85It started as a single script and has grown into a little suite of related scripts that function a bit like a pipeline, each operating on the same list of transaction data one after the other. All told I've probably spent a week coding and improving them, and they've certainly saved me several months of manual work in the last couple years.
Re: Ask HN: Tools you have made for yourself?
#86Re: Ask HN: Tools you have made for yourself?
#87My IT guys at work somehow keep disabling the show hidden files and folders feature in windows 10. So I wrote a program that checks every 5minutes and turns it back on lol
You could update it to report when it had to actually switch it back, and perhaps find the source of the problem.
Re: Ask HN: Tools you have made for yourself?
#88- The Simple Password Manager (https://www.tspm.ch), a "password manager" that generates a password from an easy to remember passphrase. I created that for myself and to make my friends stop using the same password everywhere.
- Pokerplan (https://www.pokerplan.ch/), a scrum Poker tool that I made for me and my co-workers for our scrum pokers during the pandemic.
Re: Ask HN: Tools you have made for yourself?
#89I am currently learning SQL/Python, I often just wanted to know the headers and how many rows are in a CSV file, so I just wrote a small Python script for it. import csv import readline readline.set_completer_delims(' \t\n=') readline.parse_and_bind("tab: complete") def csvOpen(file): with open(file, "r", newline='', encoding='utf-8-sig') as csvfile: reader = csv.reader(csvfile) i = next(reader) dRows = sum(1 for lin…