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.
Lowercase – A simple way to take and share notes
91–100 of 183 posts
Re: Lowercase – A simple way to take and share notes
#92co-founder here: feel free to ask any questions!
... works very well (good monospace block style), but I have to inspect and edit the source.With this, we could be able to use it for code!
THANKS!
Re: Lowercase – A simple way to take and share notes
#93Low-key I have been looking for something like Obsidian-but-freeish to try since a while - I think this is exactly what I searched for. Going to give it a go during the weekend definitely. On a different note, what's the long term sustainability plan? Relying on donations rarely works... I guess it's not very expensive to host text, but still, its cost is not 0. "Unlimited free forever" is either not free, doesn't la…
> Low-key I have been looking for something like Obsidian-but-freeish to try since a while Have you tried LogSeq? I think there are a couple other FOSS similar notes apps
Re: Lowercase – A simple way to take and share notes
#94Re: Lowercase – A simple way to take and share notes
#95Low-key I have been looking for something like Obsidian-but-freeish to try since a while - I think this is exactly what I searched for. Going to give it a go during the weekend definitely. On a different note, what's the long term sustainability plan? Relying on donations rarely works... I guess it's not very expensive to host text, but still, its cost is not 0. "Unlimited free forever" is either not free, doesn't la…
(co-founder) Thanks for the comment and very valid points. When we initially started building we had subscription plans and more of a general revenue model. Over time we transitioned to the donation-based approach. We are open to revisiting the former if there is interest (and feedback) in the existing functionality or newer updates. I definitely understand the concern of "free forever" and open to input.
Re: Lowercase – A simple way to take and share notes
#96Earlier 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…
It’s paid, your notes are in a database (easily exportable as .txt), but I’ve used it for years and years and it’s one of those rare apps that ‘just works’.
And it’s something like $25 a year. Utterly reasonable.
Re: Lowercase – A simple way to take and share notes
#97Earlier 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…
My thought here is it that the app is going to be saving simple text files either plaintext or richtext (markdown/html), so it should be able to provide this for you, but I haven't even considered that as a feature so I would want to test it to see if there were any rough edges to polish. Any suggestions you have would be appreciated!
Re: Lowercase – A simple way to take and share notes
#98Earlier quoted context omitted.
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…
Bear is the app you need. It’s paid, your notes are in a database (easily exportable as .txt), but I’ve used it for years and years and it’s one of those rare apps that ‘just works’. And it’s something like $25 a year. Utterly reasonable.
Re: Lowercase – A simple way to take and share notes
#99Earlier quoted context omitted.
> Low-key I have been looking for something like Obsidian-but-freeish to try since a while Have you tried LogSeq? I think there are a couple other FOSS similar notes apps
Silverbullet.md is another pretty good one which allows a lot of customization. I was able to recreate my (admittedly very basic) Obsidian workflow fairly quickly.
Re: Lowercase – A simple way to take and share notes
#100I 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
> ... "''$(date)"
What is the purpose of the '' syntax?