Reminds me a bit of Typora. https://typora.io/
MedleyText
11–20 of 73 posts
Re: MedleyText
#12Re: MedleyText
#13Re: MedleyText
#14Re: MedleyText
#15Re: MedleyText
#16Re: MedleyText
#17A tip if you're designing something like this. Be fast, responsible and keyboard first. The time to take a note (flush your brain) shouldn't interrupt your current task and should be as mechanical as possible.
I've been using the same note take system for the last two years. It just works as expected. It's as fast as my terminal can be and I can use org or MD if needed.
postit@workstation:~# cat bin/logbook
#!/bin/sh
TS=$(date +'%H:%M:%S')
DS=$(date +'%Y-%m-%d')
cd ~/txt/logbook/
joe $DS.md && git add . && git commit -am "Updating $DS entry on $TS" && git push
exit
I have the bin on my path and a keyboard shortcut that fires up a terminal and opens the script. If I need to find something I can ag/grep the folder, and if I'm away from my computer, everything is available on GitHub.ps: I decided to use joe in the script because it's the fastest text editor by far to start on my system, you can stick to your own solution.
Re: MedleyText
#18Friendly note that this is an Electron app.
Re: MedleyText
#19Re: MedleyText
#20Reminds me a bit of Typora. https://typora.io/
- Less cluttered UI
- Allows both a file tree, or a more TOC-style tree, in the left pane
- A lot faster startup
etc.
Great with more options for pure-markdown wysiwyg editing/note-taking though.