My Personal Note Taking Journey
31–40 of 89 posts
Re: My Personal Note Taking Journey
#32There was always _something_ missing from those apps. If you have time and inclination, Emacs can be customised to behave almost exactly like you want it.
Re: My Personal Note Taking Journey
#33Re: My Personal Note Taking Journey
#34Well where 2 hours into this and no-one mentioned org / org-roam, so I feel a begrudging responsibility to do so. Org-mode is a combination of note taking, todolist, jupyter notebook, & calendar major-mode for Emacs. It is wonderful and terrible in a lot of the ways emacs itself is. It is incredibly configurable and extendable, and feature rich to the degree that discovering spreadsheet support after using it for 6 m…
If I have no connectivity, the last thing I want is to be editing my org files on yet another device and introducing conflicts. I use something like beorg (ios) for background-sync offline read-only access but don't use it to write offline.
Re: My Personal Note Taking Journey
#35Just what I need. Another subscription service. Happy New Year
People seem to prefer subscriptions to expensive one-time purchases... What's a developer to do?
For example, people complained very loudly about not being able to buy photoshop anymore. Any time office365 is discussed, again people complain. People seem to hate subscriptions.
What is true instead is that people are forced into subscriptions because one-time purchases are just not offered anymore.
Re: My Personal Note Taking Journey
#36Earlier quoted context omitted.
You can easily set up sync using SyncThing or Dropbox or any other tool that syncs directories between devices. I did pay $25 because I enjoy using Obsidian - but I don't think there is anything missing in the free version. The best part is that everything including themes, plugins and themes are synced perfectly between desktop and mobile.
> You can easily set up sync using SyncThing Unless you're on iOS/iPadOS, as far as I know.
Re: My Personal Note Taking Journey
#37Just start using #OneBigTextFile already. All roads lead there.
Re: My Personal Note Taking Journey
#38Earlier quoted context omitted.
What? Where's the evidence? My 0.02: people feel the exact opposite. People hate subscriptions, people hate not having control over something that they feel has been "purchased".
The evidence is all the companies moving to subscriptions and not back. It’s searching app stores and seeing all the non subscription prices being <$20.
Doesn't mean this is what users prefer – it just means this is what the companies behind the apps (and thus making the $) prefer.
Re: My Personal Note Taking Journey
#39The obvious solution is to keep files in dropbox or google drive. This handles sync but not backup. I'm not sure about dropbox, but I know google drive is a nightmare to backup. You can use a few paid services to backup google drive, but you then need some kind of alerting to know when it's not running. Having to rely on a cloud storage service and a cloud backup storage does not give me long term confidence. I want something that works on most devices, is as future proof as possible and keep me in control of my data as much as possible.
Another option would be to use git to store notes, but I ran into problems when I tried to set up an auto commit and auto push. I couldn't get it working reliably. Some kind of auto pull would also be needed. Git just isn't designed to work like this so it seems like any setup would be janky at best.
Some options I've considered:
- Evernote: cloud based. rigid structure. Bad performance. I'm not in control of my data.
- emacs: I don't use emacs any more, so it's not already part of my workflow. Bad mobile experience. Same local syncing issues.
- Trilium: Really complex for someone who does not want to work with javascript. It might be too flexible for me.
- Roam: no web app last time i looked. No self hosted version.
- Logseq: Same issues as roam. Not server based / self hosted. The FAQ did mention a future option to maybe self host the optional server sync config, but it looks like it's not even on the roadmap.
My ultimate solution would be this: - Web based. This will give the ultimate flexibility for me. Day to day I either live in a browser or VSCode. An optional app would be great, but not required.
- Ideally it would save files in simple, directory based, markdown files. This would be optimal for longevity. A second best would be storing it in a Postgres database.
- Easy to backup. Flat files or a database can be easily dumped and pushed off site with a cron. I use an easy dead mans switch / healthchecks.io alert if a job has not been fired off recently. The cron does some simple checks to make sure the data is a reasonable size (above 1MB). In an ideal world, if I used a DB I would dump the contents, restore it in docker somewhere and query a test entry before pushing it off site (encrypted s3, backblaze, or both).
- The right mix of simple, but feature rich. This will be different for everyone, but for me, the key things I want are: tags, search, task lists/todo lists, directory based structure and an auto daily notes template. I'd love a button that I could click to auto generate todays notes, with some pre-set todo tasks at the top, all in a specific format. Trilium could do this, but I'm not a javascript developer, so it was a non-starter for me.
- Docker based would be ideal. I run everything I personally self host in docker. It's not a deal breaker, but I would try to implement it my self in docker if I needed to.
I know my needs are different to most. My ideal setup is based on my deep understanding of tech, containerization, cloud and the cloud. The reason my ideal setup does not exist is likely because throwing a few docker containers up on a server is a non-trivial task for most people, and a desirable thing to maintain for even less people.I'm still looking for my golden tool. Right now, I've actually gone back to evernote. It's "good enough" at its core task of note taking, but for someone with an eye to build a personal knowledge base over the rest of my career (20 years left), I'm still looking for the ideal tool.
Re: My Personal Note Taking Journey
#40Is it just me, but using local files just gives me an uneasy feeling when it comes to robust backups. How do I make sure my local files are backed up somewhere? What happens when I want to revert? How do I really know I didn't accidentally just wipe out all my notes locally with a bad command. How do I 100% know that changes I made on my desktop are reflected on other devices? The obvious solution is to keep files in…