Another recent thing (this one is open source, search for "5hay/notionbackup"): I wanted regular backups of my Notion workspace, so wrote a little program in Go that does that. I'm doing weekly backups and pushing it to my Google Suite with rclone (encrypted).
Ask HN: Have you created programs for only your personal use?
161–170 of 671 posts
Re: Ask HN: Have you created programs for only your personal use?
#162Earlier quoted context omitted.
Sure! It’s not really bulletproof yet and could use some more features, but I’d love to get your feedback and bug reports. I’m thinking about turning it into real product… https://headlamptest.com
> Headlamp is like having a second manager on the team. I'm not sure I would use that endorsement...
Re: Ask HN: Have you created programs for only your personal use?
#163I've written about the motivations and the architecture here: https://lucasdicioccio.github.io/how-this-blog-works.html .
Re: Ask HN: Have you created programs for only your personal use?
#164Earlier quoted context omitted.
Sure! It’s not really bulletproof yet and could use some more features, but I’d love to get your feedback and bug reports. I’m thinking about turning it into real product… https://headlamptest.com
Cool product, it's something I'd personally be interested in if free or one-off license, but as someone who just dabbles now and then (but including sometimes for business stuff) it's nowhere near worth the monthly cost for me. $50 one-off would frankly be possibly more than the value I'd get, but I'd definitely buy it in the hope it would be useful. (Appreciate, I'm not everybody and just because that's where I fit…
It’s free to use for now. I’d like to bill heavy corporate users someday. Not sure what the criteria will be for that.
Re: Ask HN: Have you created programs for only your personal use?
#165I've spent https://golden-rune-calc.vercel.app/
Re: Ask HN: Have you created programs for only your personal use?
#166This was wrapped in a MacOS Automator workflow, which in turn was wrapped by a keyboard trigger in BetterTouchTool. So now, when I hit Cmd Shift M, a Google Meeting link is created and pasted wherever my cursor happens to be!
It makes a little boing noise too when it pastes the URL which never ceases to please me.
Re: Ask HN: Have you created programs for only your personal use?
#167Re: Ask HN: Have you created programs for only your personal use?
#168Re: Ask HN: Have you created programs for only your personal use?
#169Hundreds! 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…
> Hundreds! Doesn't everyone? I certainly have. Interestingly, one was the same "sanity check" program for my internet connection, because of the same ISP you mention. Amazing coincidence...I don't think. :-)
Comcast "service" has probably driven the creation of more trivial internet connection test programs than any college course in the world.
Re: Ask HN: Have you created programs for only your personal use?
#170Most recently, I wrote a "wgrep" program that scans an input of 5-letter words and extracts those that could be a Wordle solution, given a guess and its result on the command line; and another program that determines the best Wordle guess from a list of remaining words (where "best" means "minimizes sum of squares of counts of words with the same outcome").