←back to thread

1901 points l2silver | 2 comments | | HN request time: 0.001s | source

Maybe you've created your own AR program for wearables that shows the definition of a word when you highlight it IRL, or you've built a personal calendar app for your family to display on a monitor in the kitchen. Whatever it is, I'd love to hear it.
Show context
mieubrisse ◴[] No.35739977[source]
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!

replies(1): >>35744628 #
1. freeplay ◴[] No.35744628[source]
Seems really cool. I love Vim + Markdown as well.

If you haven't heard of vimwiki yet, check it out. Right in line with what you're working on.

https://github.com/vimwiki/vimwiki

replies(1): >>35759141 #
2. mieubrisse ◴[] No.35759141[source]
Thanks - will check it out!