Hundreds! Doesn't everyone? Most of them are just bash scripts, many of which have now reached a complexity so high that I wish I'd started writing them in a different language but it's too late now. The majority of the rest are Python. Off the top of my head, the most used ones are: * A replacement front-end for "tar" and various compressors * A script to synchronize my music library to a compressed version for play…
> * A replacement front-end for "ffmpeg", see above I have one of these too... It's kind of frightening how hard ffmpeg is to use without some kind of custom frontend. I have probably dozens of bash/python scripts to invoke ffmpeg for different common tasks. - One to extract audio - One to extract all the individual streams from a container - A couple different transcoding scripts - One specifically for gifs - One to…
Ask HN: Have you created programs for only your personal use?
241–250 of 671 posts
Re: Ask HN: Have you created programs for only your personal use?
#242Yes. And it’s a strange one. I made a program to gender swap any text you put into it and then got a book deal to rewrite and illustrate Fairy Tales. It’s been published around the world. https://genderswappedfairytales.com The idea is to shine a light on the original versions but it also creates a lot of never-written-before characters. A lot of brave princesses and lady-beasts, but also men desperately wanting chil…
Re: Ask HN: Have you created programs for only your personal use?
#243Hacker News is part of my daily life. I try to follow the top stories every day when I have the opportunity. In order not to miss important stories on my busy days, I prepared a notification service. It was a very simple, ~40-line PHP script that sends me notifications for stories with over 200 points. I have been using this service for 7 months and I no longer worry about missing important stories. Finally, I made t…
Re: Ask HN: Have you created programs for only your personal use?
#244Windows clipboard capture to file tool. Any new image placed on the clipboard is written to a sequentially-numbered file so that I can just hit various Print-Screen key combinations or I can right click an image in a browser and click Copy to capture it.
Python / PIL scripts to arrange directories of images into seamlessly connected wallpaper images.
Lots of email automation scripts, both sending and receiving. ( Pruning spam, marking all of my unread messages read, sending alerts for blog post updates. )
Scripts to convert filenames to all lowercase in a folder.
Startup scripts that forcibly turn off Windows options that I don't want because Windows update sometimes re-enables these.
Python/Bash + Cheese - Poor man's security system. I used an old netbook with the camera pointed at the inside door of a house I used to own take a picture of the door area and send it to me via email so that I could monitor to see if anyone had been inside while I was gone for an overnight trip.
Custom RSS aggregator scripts ... sends results to me in email so that I keep a record of the articles by day.
...etc., ...etc.
Re: Ask HN: Have you created programs for only your personal use?
#245I created a program that prints QR codes onto sheets of peel-and-stick labels. When someone scans the code, they are directed to a simple web app that manages food sharing with my four roommates. We noticed that we buy a lot of the same things (bananas, avocados, eggs, etc), so we implemented a system where anyone can stick a QR code onto something they want to share, and anyone else can scan it to record what they t…
It’s like Web 3.0 for your fridge… make a market for anything. A roommate taking 3 eggs from me doesn’t bother me. Firing off a text, “Hey, I took 3 eggs” is all I need. We really just don’t like to share these days. That’s the problem we are now solving it appears.
Re: Ask HN: Have you created programs for only your personal use?
#246Earlier quoted context omitted.
> A secure-but-readable password generator I love pronounceable passwords, but there's research indicating that such generators typically produce lower than expected entropy. Do you mind sharing what algorithm you use?
I gave up on readable. with open('/dev/urandom', 'rb') as f: return base64.urlsafe_b64encode(f.read(12))
Re: Ask HN: Have you created programs for only your personal use?
#247* A ransomware detector based on accessing my home network file server via an all-Linux chain that stores file hashes and watches for changes.
* Converting PayPal transaction history from PDF to the numbers needed for my tax return, and some similar tax related scripts.
* Anything involving measurement or data logging, such as temperature, etc. During one episode, I sorted out whether my home furnace was operating intermittently.
I won't count hobby related stuff, which is innumerable.
Re: Ask HN: Have you created programs for only your personal use?
#248I've built tons. Most of them don't stick for long. One that has is a file-cabinet organization tool - https://github.com/robacarp/place
- it moves files into place within my filing system - renames the file so that even if it's moved _from_ the filing system I can see where it came from (eg sent in an email) - uses a custom TUI engine I built for this specific task https://github.com/robacarp/keimeno
----------------------
Another is a clean, bare bones, web-extension mode "picture on a new tab" extension. When I came back to firefox a few years ago I couldn't find one amongst the clutter on AMO so I put together https://github.com/robacarp/photographic_start
Re: Ask HN: Have you created programs for only your personal use?
#249Re: Ask HN: Have you created programs for only your personal use?
#250-A script for downloading and organizing videos from my Youtube Playlists since videos tend to get randomly deleted
-An old Minecraft server plugin which generates custom made structures throughout the world based on .schematic files you provide it and configurable spawning criteria.