Live data from Hacker News

Lowercase – A simple way to take and share notes

lowercase.app

111–120 of 183 posts

Re: Lowercase – A simple way to take and share notes

#111
post #55

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...

I'm on a similar path (VSCodium + FOAM plugin, and then using MkDocs & Roam-links plugin to export as HTML). Can you share some of the VSCode plugins / settings / color schemes / etc which have been working well for you?

Re: Lowercase – A simple way to take and share notes

#112
post #10
post #9

Earlier 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…

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

#113
post #75
post #55

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

What about mobile? Or don't you take notes there?

I use the Markor app from F-Droid. The notes are plain text or markdown files in a folder that is synced to my desktops using Syncthing. It felt incredibly liberating once I got this setup working.

Re: Lowercase – A simple way to take and share notes

#114
post #55

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...

Neovim

Re: Lowercase – A simple way to take and share notes

#115
post #100
post #55

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

> 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

#116
post #115
post #100

Earlier 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.

Thx, just wondering if that was an arcane bash idiom. Very tricky to get anything useful from the web about ''.

Re: Lowercase – A simple way to take and share notes

#117
post #112
post #10

Earlier 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.

Obsidian has LaTeX support out of the box. And there are some awesome plugins to make it even better, check out https://github.com/artisticat1/obsidian-latex-suite.

Re: Lowercase – A simple way to take and share notes

#118
post #9

co-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?

Also my points. I would like one of these apps to actually show some love for technical (math) people.

So far, I find Obsidian to be the best for us.

Re: Lowercase – A simple way to take and share notes

#119

The 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…

This is why I’m implementing email links in my chrome extension. No sign ups, just email and local storage once you’ve clicked the email link

Re: Lowercase – A simple way to take and share notes

#120
post #89

This 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.

It’s annoying when people pester developers to open source their hard work, and not at least give a justification as to why they should do it

How do you suppose they protect their IP and what they’ve built from someone just stealing the code?

Post reply on HN