This is very cool thank you, How about an option that when you are editing the note, on the lower part of it, it show the note taken from the same day a year ago, Or a random past note… I also think the home page (calendar view) can be improved, but i am not sure how, Anyway amazing app, thank you cheers
Show HN: Ichinichi – One note per day, E2E encrypted, local-first
61–68 of 68 posts
Re: Show HN: Ichinichi – One note per day, E2E encrypted, local-first
#62Re: Show HN: Ichinichi – One note per day, E2E encrypted, local-first
#63Earlier quoted context omitted.
On my to do list! Thank you!
Blogged a lot on my phone during the day, then decided to sign up for the account. Stuff synched. A little later Logged in from chrome on my computer, got a blank page for the day. Checked back on my phone, and everything gone here also. Did I mess up? Can I get the day back somehow? Could it happen again?
Re: Show HN: Ichinichi – One note per day, E2E encrypted, local-first
#64Nice. I do that in my (iCloud) calendar. Have been doing it for 8+ years now, can recommend :)
Re: Show HN: Ichinichi – One note per day, E2E encrypted, local-first
#65Re: Show HN: Ichinichi – One note per day, E2E encrypted, local-first
#66Earlier quoted context omitted.
It installs easily under Linux.
How?
cd ~/Applications
git clone https://github.com/katspaugh/ichinichi.git
cd ichinichi
yarn install # build it or
yarn build # build it or production
yarn dev # launch it.
Now open a web browser to http://localhost:5173/
Re: Show HN: Ichinichi – One note per day, E2E encrypted, local-first
#67Earlier quoted context omitted.
How?
npm install corepack # installs yarn cd ~/Applications git clone https://github.com/katspaugh/ichinichi.git cd ichinichi yarn install # build it or yarn build # build it or production yarn dev # launch it. Now open a web browser to http://localhost:5173/
Re: Show HN: Ichinichi – One note per day, E2E encrypted, local-first
#68Very cool! I'm curious as to why you removed ProseMirror after trying it out. I've been building my own writing app for a different purpose over the last month and have been pretty happy with PM, but I'd be curious to know what you're using instead.
I tried ProseMirror and Tiptap but typing in both felt slower than a vanilla contenteditable. Maybe it’s just a placebo effect. Also I’m trying out various experimental enhancements like if you type “+meditation” and press Enter, it will create a labeled section for you. Perhaps I should try CodeMirror as elxr suggested.