Typora! I just found it recently, but maan, I was searching for something like this for a long time! It is basically a Markdown editor but with an unique touch and extra features like outline, sidebar browser, built-in image viewer and stuff. It's very beautiful. https://typora.io/
Ask HN: Favorite note-taking software?
121–130 of 436 posts
Re: Ask HN: Favorite note-taking software?
#122I tend to use several machines/devices during my working week, so anything installed locally is a no-no. My solution was to knock up a web app in php (you can use the backend of your choice) that lets me create notes using markdown, these are auto saved to the server and browse-able via another php page. Like a poor-mans markdown notepad, but online.
Re: Ask HN: Favorite note-taking software?
#123Re: Ask HN: Favorite note-taking software?
#124plain text files and your favorite editor, whatever that is. things that should be encrypted are either gpg encrytped or put in my password manager. Bonus if you format your plain text with markdown or asciidoc or whatever your fav. plain text markup language is. Don't make it more complicated than it needs to be. Put it in a VCS for super double bonus points :) me personally: Vim, asciidoc and in a fossil repo.
I tried this solution as well, but I missed one core feature of Evernote, that you can search by tags or keywords, and it instantly list all related notes.
Re: Ask HN: Favorite note-taking software?
#125I take all my notes with Sublime Text 3. After having bought it and VS Code being more suitable for my programming needs I just use it as a snappy notes taking application. I can close it and everything I leave will be restored as is in a snap when I come back. Not sure if there's a way to sync this but if there is, that would defeat any other "note taking app" for me. Eventually I want to try using Microsoft Whitebo…
I've found myself doing this as well. I really appreciate the way Sublime Text persists unsaved files without having to give it any thought. I've kept a "scratch.txt" doc open with various notes and hints forever.
Re: Ask HN: Favorite note-taking software?
#126Typora! I just found it recently, but maan, I was searching for something like this for a long time! It is basically a Markdown editor but with an unique touch and extra features like outline, sidebar browser, built-in image viewer and stuff. It's very beautiful. https://typora.io/
windows installation is 42mb. i better stick to notepad.exe(245kb)
Re: Ask HN: Favorite note-taking software?
#127Any important letters (or something I may want to refer back to later) I scan and email to myself. I used Evernote previously, the nice part is it OCRs the PDF so I can search text within them, but the workflow isn't that nice (and I'd prefer something self-hosted).
When I've asked before I've received recommendations for full blown enterprise document management systems, but all I want is something with an interface like Gmail for PDFs (I'm suprised Google themselves don't do this within Gmail).
Re: Ask HN: Favorite note-taking software?
#128I've given up on using any sort of branded app for notetaking. At best it's open source and the maintainers will lose interest in a few years. When you write things down, you're investing in your future. It's silly to use software that isn't making that same investment. After trying Evernote, Workflowy, Notion, wikis, org-mode, and essentially everything else I could find, I gave up and tried building my own system f…
What is wrong with org-mode? It is plain text file. I see no major differences compared to markdown.
Re: Ask HN: Favorite note-taking software?
#129Standard Notes: https://standardnotes.org/ for plain text, encrypted notes. Everything is easily importable or exportable in .txt format. MS OneNote is great however they have stopped updating their desktop application (which allows offline notes) in favor of putting everything in the cloud (which will require a subscription to yet another cloud service if you exceed the OneDrive limits.)
Re: Ask HN: Favorite note-taking software?
#130plain text files and your favorite editor, whatever that is. things that should be encrypted are either gpg encrytped or put in my password manager. Bonus if you format your plain text with markdown or asciidoc or whatever your fav. plain text markup language is. Don't make it more complicated than it needs to be. Put it in a VCS for super double bonus points :) me personally: Vim, asciidoc and in a fossil repo.
Actually, I don't even understand why anyone would think that you need a dedicated app for note taking. - Markdown rendering can be done with pandoc - Structure and search can be done with a solid file structure and grep - Sync can be done with git or any other syncing solution out there. - Encryption can be done with gpg (vim-gnupg) Serious question: What feature is missing from this workflow (assuming the audience…