As a heads up, this seems to break completely if any of a couple of different Chrome extensions I have are enabled (for example, Simplify - https://chromewebstore.google.com/detail/simplify-copilot-au... ). Also, maybe it's just me, but I feel like the sqlite-based thing is, if anything, kind of a downside. Use it for caching and calculation, sure, but I want the source of truth to be just plain markdown files I can…
I know many note-taking users like the concept of markdown and plain text. So do I. However, I think plain text has its limitations. There are many other types of structured data in life. Just like Word and Excel, they have different responsibilities. No one worries that Excel will not work in a few decades because it's just an offline software. Similarly, no one worries that SQLite will be unable to open or view bec…
Show HN: Eidos – Offline alternative to Notion
51–60 of 95 posts
Re: Show HN: Eidos – Offline alternative to Notion
#52Wait a second. Do you mean there is no sync possibility? Because the browser storage is far from reliable. I don't see this as "safe" if the data is not synced or backed up somewhere else.
You can make some adjustments in the settings[1] to store data in a local folder. Then, use iCloud, Git, or your preferred service to back up your data. Just like the web version of VSCode[2], it can handle local files. The web is just an app and doesn't hold any data. 1. https://eidos.space/settings/storage 2. https://developer.chrome.com/blog/persistent-permissions-for...
Re: Show HN: Eidos – Offline alternative to Notion
#53Re: Show HN: Eidos – Offline alternative to Notion
#54Earlier quoted context omitted.
I know many note-taking users like the concept of markdown and plain text. So do I. However, I think plain text has its limitations. There are many other types of structured data in life. Just like Word and Excel, they have different responsibilities. No one worries that Excel will not work in a few decades because it's just an offline software. Similarly, no one worries that SQLite will be unable to open or view bec…
What logseq is going to do is just dump documents to markdown (right now they use markdown),I think something along these lines is the way to go, store in sqlite and have a constant background process creating markdown files for everything
Re: Show HN: Eidos – Offline alternative to Notion
#55Earlier quoted context omitted.
I know many note-taking users like the concept of markdown and plain text. So do I. However, I think plain text has its limitations. There are many other types of structured data in life. Just like Word and Excel, they have different responsibilities. No one worries that Excel will not work in a few decades because it's just an offline software. Similarly, no one worries that SQLite will be unable to open or view bec…
SQLite won't stop working but your format is proprietary. A markdown can be understood even without rendering to HTML but your tables are useless for an user without your app.
Re: Show HN: Eidos – Offline alternative to Notion
#56Earlier quoted context omitted.
Thanks for the reminder. I know this makes SEO more challenging, and it also reminds people of a certain game company, but I really love this concept, which originates from the Plato's theory of forms, and it pairs perfectly with the eidos.space domain name. While it may not be a great business name, the concept itself is exciting. Eidos is deployed on Cloudflare Pages. it's a purely frontend project and the web is o…
Sorry I’m a bit confused. You describe this as an offline alternative to Notion, but there are also some optional components that run on serverless?
Re: Show HN: Eidos – Offline alternative to Notion
#57Earlier quoted context omitted.
I know many note-taking users like the concept of markdown and plain text. So do I. However, I think plain text has its limitations. There are many other types of structured data in life. Just like Word and Excel, they have different responsibilities. No one worries that Excel will not work in a few decades because it's just an offline software. Similarly, no one worries that SQLite will be unable to open or view bec…
SQLite won't stop working but your format is proprietary. A markdown can be understood even without rendering to HTML but your tables are useless for an user without your app.
Re: Show HN: Eidos – Offline alternative to Notion
#58Please provide a feature to load data from notion export
Re: Show HN: Eidos – Offline alternative to Notion
#59Is there a brief blurb about how this differs from Obsidian? Just curious mostly.
Re: Show HN: Eidos – Offline alternative to Notion
#60Earlier quoted context omitted.
I know many note-taking users like the concept of markdown and plain text. So do I. However, I think plain text has its limitations. There are many other types of structured data in life. Just like Word and Excel, they have different responsibilities. No one worries that Excel will not work in a few decades because it's just an offline software. Similarly, no one worries that SQLite will be unable to open or view bec…
My general answer to this is to make sure whatever thing I'm building understands Pg COPY TSV syntax - specified by https://www.postgresql.org/docs/current/sql-copy.html under 'text format' - and export to/import from that. It's nice to have something that plays nicely with awk/cut/diff/etc. and can be committed into a git (or elsevcs) repo. (I'm not specifically wed to COPY as the form, but given it's well known and…