I went through a bunch of note-taking apps before I settled on a git directory that's auto-synced once an hour. This bash script is all it takes. cd ~/notes if [[ ''$(git status --porcelain) ]]; then git stash save git pull --rebase git stash pop || true git add . git -c "user.name=Phil Kulak" -c "user.email=nope@kulak.us" commit -m "''$(date)" git push origin main else git pull fi
But what do you use to actually take the notes? After trying a bunch of apps I settled on VS Code with a custom Profile that has all the settings, extensions and UI states that I need for taking markdown notes. I realised that I already spend at minimum 8-10 hours a day in VS Code, why learn another app with all the different quirks, UI and key bindings...
Lowercase – A simple way to take and share notes
111–120 of 183 posts
Re: Lowercase – A simple way to take and share notes
#112Earlier quoted context omitted.
Two questions: 1. Doesn't seem like there's support for latex-style math? (Or, at least couldn't find it in the documentation and putting an equation between $$ doesn't seem to work). Is this planned? 2. Is there a way to export your notes?
other co-founder here: 1. Currently there isn't support, but not opposed if there is a need. 2. Also, there isn't a way to export (or self host) as of now. Just some background - We originally built this out as a standalone desktop app (~4 years ago) and then re-worked it for the web around the same time. We were planning to eventually rewrite the desktop app for just that reason - to have the offline syncing and cle…
Re: Lowercase – A simple way to take and share notes
#113I went through a bunch of note-taking apps before I settled on a git directory that's auto-synced once an hour. This bash script is all it takes. cd ~/notes if [[ ''$(git status --porcelain) ]]; then git stash save git pull --rebase git stash pop || true git add . git -c "user.name=Phil Kulak" -c "user.email=nope@kulak.us" commit -m "''$(date)" git push origin main else git pull fi
What about mobile? Or don't you take notes there?
Re: Lowercase – A simple way to take and share notes
#114I went through a bunch of note-taking apps before I settled on a git directory that's auto-synced once an hour. This bash script is all it takes. cd ~/notes if [[ ''$(git status --porcelain) ]]; then git stash save git pull --rebase git stash pop || true git add . git -c "user.name=Phil Kulak" -c "user.email=nope@kulak.us" commit -m "''$(date)" git push origin main else git pull fi
But what do you use to actually take the notes? After trying a bunch of apps I settled on VS Code with a custom Profile that has all the settings, extensions and UI states that I need for taking markdown notes. I realised that I already spend at minimum 8-10 hours a day in VS Code, why learn another app with all the different quirks, UI and key bindings...
Re: Lowercase – A simple way to take and share notes
#115I went through a bunch of note-taking apps before I settled on a git directory that's auto-synced once an hour. This bash script is all it takes. cd ~/notes if [[ ''$(git status --porcelain) ]]; then git stash save git pull --rebase git stash pop || true git add . git -c "user.name=Phil Kulak" -c "user.email=nope@kulak.us" commit -m "''$(date)" git push origin main else git pull fi
> if [[ ''$(git status --porcelain) ]]; then > ... "''$(date)" What is the purpose of the '' syntax?
Re: Lowercase – A simple way to take and share notes
#116Earlier quoted context omitted.
> if [[ ''$(git status --porcelain) ]]; then > ... "''$(date)" What is the purpose of the '' syntax?
Sorry. Nix. And it’s too late to edit.
Re: Lowercase – A simple way to take and share notes
#117Earlier quoted context omitted.
other co-founder here: 1. Currently there isn't support, but not opposed if there is a need. 2. Also, there isn't a way to export (or self host) as of now. Just some background - We originally built this out as a standalone desktop app (~4 years ago) and then re-worked it for the web around the same time. We were planning to eventually rewrite the desktop app for just that reason - to have the offline syncing and cle…
If this had TeX I'd be interested immediately. There's no great way at the moment to mathematical notes, it's a big pain point.
Re: Lowercase – A simple way to take and share notes
#118co-founder here: feel free to ask any questions!
Two questions: 1. Doesn't seem like there's support for latex-style math? (Or, at least couldn't find it in the documentation and putting an equation between $$ doesn't seem to work). Is this planned? 2. Is there a way to export your notes?
So far, I find Obsidian to be the best for us.
Re: Lowercase – A simple way to take and share notes
#119The sign up process is not very fluid to me. First off, I don't really like password signups in general, but on Android I was able to get auto generated password for the password field but was stuck because the Google password manager didn't recognize the other field as a password confirmation. So I couldn't copy between them and going to a different app to write a long password and going back and copy paste just see…
Re: Lowercase – A simple way to take and share notes
#120This seems amazing, except for the fact that it's not open source and can't be self-hosted. That, to me at least, is the most important part of a note-taking app.
How do you suppose they protect their IP and what they’ve built from someone just stealing the code?