Earlier quoted context omitted.
What about mobile? Or don't you take notes there?
For me, this is always the gap that feels missing. - I want to take and view notes on various devices: mobile, personal computer, work computer, randomly logged in ad-hoc machine. - I want notes to not require me to be online all the time while writing (I work a lot on plans, or in remote locations without reliable internet) - I want notes to make reasonable assumptions about syncing, biasing on the side of avoiding…
Lowercase – A simple way to take and share notes
81–90 of 183 posts
Re: Lowercase – A simple way to take and share notes
#82Earlier quoted context omitted.
Meaning that we'd be limiting users that don't use the provider(s) that we'd support. At that time, we felt that username/password was the lowest friction at the time. We're happy to re-eval if needed though!
Please leave username-password authentication. I never use oauth and absolutely hate it.
Re: Lowercase – A simple way to take and share notes
#83Nit Pick feedback: it should read: “the right _number_ of features”, not “_amount_ of features”. Other than that, love the look of the site :)
Counterpoint: I know grammatically it isn't the most correct, but I don't see anything non-idiomatic about "amount of features". Reason: "Just the right amount" is a set, idiomatic expression. "Just the right amount of ___" is just extending the expression. IMO extending idiomatic expressions exempts it from a lot of the formal word-pairing conventions in English. But I'm no linguist.
Re: Lowercase – A simple way to take and share notes
#84I 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?
All it would take to be awesome would be to find a mobile git app that required fewer button presses, so I'm hopeful.
Re: Lowercase – A simple way to take and share notes
#85I 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
Why the two single quotes before the subshells?
https://git.sr.ht/~pkulak/nix/tree/main/item/home/default.ni...
https://git.sr.ht/~pkulak/nix/tree/main/item/home/default.ni...
Re: Lowercase – A simple way to take and share notes
#86Earlier quoted context omitted.
Counterpoint: I know grammatically it isn't the most correct, but I don't see anything non-idiomatic about "amount of features". Reason: "Just the right amount" is a set, idiomatic expression. "Just the right amount of ___" is just extending the expression. IMO extending idiomatic expressions exempts it from a lot of the formal word-pairing conventions in English. But I'm no linguist.
I think amount of is usually used for 'continuous' (I'm not sure on the word) substances like flour, water, or salt, rather than multiples of discreet objects.
Just the right amount of cats Just the right amount of internet points Just the right amount of chutzpah
Re: Lowercase – A simple way to take and share notes
#87I 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
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
#88I 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
Re: Lowercase – A simple way to take and share notes
#89That, to me at least, is the most important part of a note-taking app.
Re: Lowercase – A simple way to take and share notes
#90some feedback: as a first time visitor, the pricing page is really confusing. if its free why is there a stripe faq immediately below? i am still confused whether this product is free or paid without signing up. the pricing page requires some rework imo