I've considered putting a little bit more elbow grease and turning into a packaged product but I'm not sure if there's demand for it out there.
Ask HN: Is there any software you only made for your own use but nobody else?
121–130 of 484 posts
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#122One of the biggest and most useful of those tools is a Django web interface that accepts JPG/PNG/PDF file uploads of scanned documents and in case of images (JPG/PNG) it will run "tesseract" to OCR extract text from the images (in case of PDF it will pdf2txt). The extracted text is stored in an SQLite database which enables keyword search in the uploaded documents.
I use this as my (digital) archive of important documents, e.g. mortgage, bank statements, insurance, medical files, etc. I just checked and I now have 1129 documents in there ranging all the way back to 2006 .
It's super useful to be able to go back in time digitally, without having to dive into the collection of physical binders with the real documents (ordered by year and month but nothing beyond that, given that there are usually only a handful of documents per month, and I can use the web interface as an index into the physical archive, if I ever need it).
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#123I found downloading podcasts manually a bit of a faff. So I wrote a bash/curl/xsd script to rattle through a list of RSS feeds, download new episodes and create a playlist. It ran on my laptop at home or work and plonked the result on my MP3 player via USB.
Now, years later, the script is essentially the same. Except it runs under termux on my phone, and VLC broadcasts the playlist direct to my car or home stereo via bluetooth.
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#124I once ripped the corner of my windows install code sticker. I was missing the last 2 characters. I wrote a script in SikuliX to bruteforce the remaining 2 characters. It took about 4 hours to run but in the end, I got the full valid code.
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#125For example: p will do cat (or hexdump or ...) or ls depending on file (type) or directory. Let me show you shebang which is just a memory aid:
$ show shebang
.../bin/shebang
#!/usr/bin/env sh
head -n1 "$0"Re: Ask HN: Is there any software you only made for your own use but nobody else?
#126I'm building a streetable rock crawler out of a 78 F150 with a custom radius-arm suspension in the front. I needed to measure the deflection of the drag-link & track-bar as the front axle cycled up and down while changing a few variables: mounting locations, drag-link/track-bar angles, and drag-link/track-bar lengths. I used plain Javascript to display a graph, lines representing the drag-link and track-bar, enabled…
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#127Turns out that JBL thought it's a good idea to completely cut sound when there's nothing playing and ramp it back up in a perceptible fraction of second so that you miss some part of whatever you're listening to. This is especially annoying when watching anything with people talking.
Here's the code for anyone interested, it also contains a more thorough rant in the README.md. https://github.com/silvanocerza/orpheus
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#128I'm building a streetable rock crawler out of a 78 F150 with a custom radius-arm suspension in the front. I needed to measure the deflection of the drag-link & track-bar as the front axle cycled up and down while changing a few variables: mounting locations, drag-link/track-bar angles, and drag-link/track-bar lengths. I used plain Javascript to display a graph, lines representing the drag-link and track-bar, enabled…
Re: Ask HN: Is there any software you only made for your own use but nobody else?
#129Re: Ask HN: Is there any software you only made for your own use but nobody else?
#130That would inform my “I’m willing to go as low as” selling price.
So I built myself an app to scrape the current tax from the government’s online calculator and assemble a dozen what-if scenarios, given the current exchange rate.
When I found one that would let me break even, cash in hand after all fees and taxes, that became my price floor.
It worked. Now I don’t need my app anymore.