Live data from Hacker News

Ask HN: Most interesting tech you built for just yourself?

news.ycombinator.com

351–360 of 1001 posts

Re: Ask HN: Most interesting tech you built for just yourself?

#351
Not nearly as cool as all the other stuff here, but still my favorite piece of tech for myself:

IMO, Vim + Markdown is one of the best ways to take notes, brainstorm, or just explore ideas. However, I found the questions of "Where should I put the notes in my dir hierarchy?" and "How do I find the notes again?" and "How do I ensure I have my notes across all devices?" to be inhibiting.

I wrote a CLI "journal" tool that says "forget putting them into folders", dumps all the Markdowns into a single Google Drive folder, and instead focuses on providing really good search.

Now, in my day to day, I can do "journal new some-meeting-with-dan.md" and I get a fresh Markdown. I can also do "journal find" to search by name, date of creation, or tag, and then open notes in either Vim or as rendered HTML in Chrome (for copy-pasting). Behind the scenes all the information is just encoded in the filename (so it becomes "some-meeting-eith-dan~2023-04-23T22:10:23~tag1,tag2.md", with no extra DB needed).

I'm also now trying to rewrite the frontend as a Charm TUI, which is another whole fun growth path!

Re: Ask HN: Most interesting tech you built for just yourself?

#352

I built carefulwords.com simply because I wanted to type a word into the address bar and get a large list of synonyms and some historical quotes using the word quickly. For example: https://carefulwords.com/solitude https://carefulwords.com/think etc. Also unlike thesaurus.com, the search bar actually focuses so you can just start typing! It's not perfect, I need to do a lot of editing, but nonetheless I use it almos…

This is really cool! Could you please add a keyboard shortcut for focusing the input field? (perhaps a forward slash '/' like on Youtube or Github)

Re: Ask HN: Most interesting tech you built for just yourself?

#354
In highschool a friend and I build a multiplication circuit based on an AMV serving as clock frequency driver, pushing binary numbers A and B through an addition circuit and a latch producing the result A*B.

We freaked out when we were able to increase the frequency from 1Hz where we visually could see the calculation proceed via LEDs, to thousands of Hz and "instant" calculation.

We had to physically hit the manual begin-switch with great force, in order to prevent the switch from not going cleanly from 0 to control voltage, when we operated in the KHz clock frequencies.

Re: Ask HN: Most interesting tech you built for just yourself?

#355

My mom digitized many many old family videos, and wanted them online for sharing with family (including elderly & not-super-tech-savvy relatives). She asked me “should I just upload them all to a YouTube channel?” Thankfully it was a phone call so my mom didn’t see my aghast expression. I prefer that big tech not index this stuff! Better to keep “in the family” Seriously why does big tech deserve this free & super-pr…

I did a similar thing a while back. https://github.com/maxibenner/cardboard

The goal was to have a platform that ingests the commonly enormous video files from old tapes, automatically cuts them, tags them based on content to make them easily searchable. My focus was on discoverability of scenes hidden in those long video files. The search bar would also randomly suggest tags to search for.

At some point I tried to work with a large video digitization provider and the video splitting ended up being too expensive to be viable for the proposed business model. Now it just auto generates thumbnails and lets you tag videos manually.

The project includes a business dahsboard that allows digitization businesses to send videos directly to customer accounts (deliveries need to be accepted).

Currently, I only use it for my own videos as well as for my MIL.

Re: Ask HN: Most interesting tech you built for just yourself?

#356
I made a password manager in Rust. It just encrypts and decrypts a file from/to ~/passwords.txt ~/passwords.ryp (the encrypted form). Because the the file names are fixed it's easy to use. Just type:

ryp

If ~/passwords.txt is there, it will be encrypted. If ~/passwords.ryp is there, it will be decrypted.

The cool feature is that it checks to make sure that the password you typed in the nth time you encrypt it is the same as the 1st time. This protects you from inadvertently encrypting it with a typo if you check/update your passwords many times.

Re: Ask HN: Most interesting tech you built for just yourself?

#357

I like to play Factorio, but too often lose track of time while playing. There's no clock in the game's UI, and no way to access the system's time through the mod API. So I made a script that runs as a process on the host machine that every minute, sends commands to the game's process to build a clock in the center of the map out of concrete. Its pretty cool because you can also clearly see the time from the mini map…

> sends commands to the game's process

You can do that? Is there an API?

Re: Ask HN: Most interesting tech you built for just yourself?

#359
post #71

I don't know if it qualifies as the "most interesting" but as a travel bug I wrote a little airfare scraper that I got plenty of value out of. Basically it's a script that scrapes several places for flight deals and "mistake fares" and notifies my phone if it matches with my city. No searching like other flight apps, you basically just set it up and wait, and various places will pop up. Helps if you're in a hub city…

I know that you don't want when more competition for the flights, but that sounds very useful!
Post reply on HN