TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What products other than Obsidian share the file over app philosophy?

26 pointsby heycesrabout 1 year ago
Hi all!<p>I read about file over app (https:&#x2F;&#x2F;stephango.com&#x2F;file-over-app) a while ago and I think it makes a lot of sense.<p>I&#x27;m looking for more products—apart from Obsidian, the company founded by the author of the post—that implement this philosophy.

10 comments

aosaighabout 1 year ago
Recently I&#x27;ve been using iAPresenter [1], which lets you build presentations using Markdown. I actually use it to create branded PDF proposals for clients and it makes life much easier than having to use Google Slides, Keynote or Powerpoint. The philosophy of iAPresenter (and iAWriter) is more about minimizing distractions, but the side effect is that you end up in control of your files too.<p>Another tangential example is Dropshare [2], a Mac app for sharing files. You can plug in your own backend (S3, Backblaze etc.) and domain and have your own branded file sharing service, while &quot;controlling&quot; your files (although they are obviously still hosted on a 3rd party server)<p>[1] <a href="https:&#x2F;&#x2F;ia.net&#x2F;presenter" rel="nofollow">https:&#x2F;&#x2F;ia.net&#x2F;presenter</a><p>[2] <a href="https:&#x2F;&#x2F;dropshare.app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;dropshare.app&#x2F;</a>
评论 #39968519 未加载
评论 #39954745 未加载
zzo38computerabout 1 year ago
I always insist to use plain ASCII text format to write the specification of any file format, since otherwise it will be difficult to read the specification in order to be able to implement it, so that you can read it. So, using file formats that are easy to retrieve and to read is especially important if the file contains the specification of another file format (I dislike that many formats unfortunately don&#x27;t). This is also true of the protocols for accessing the file; a simple explanation should be possible in only a few sentences which is sufficient for accessing the specification file itself, even if the actual protocol is more complicated than that. However, in any case, there will be complexity in the other parts to support them (e.g. ASCII, MS-DOS, TCP&#x2F;IP, etc), but hopefully you can use what is simpler than the alternative.
huesatbriabout 1 year ago
The idea of ”local first” is sort of related: <a href="https:&#x2F;&#x2F;www.inkandswitch.com&#x2F;local-first&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.inkandswitch.com&#x2F;local-first&#x2F;</a><p>I think tldraw is an application that does this well in the browser. When you open it up you can start working right away, your work is automatically saved in localstorage or similar, but you can always save to a file. And you can also click share and get live collaboration on the document. Saving to a file still works the same.<p>It’s best of both worlds I think. I get the convenience of a web application with sync&#x2F;collaboration, and I have control of the files if I want to. The format is plain JSON and if the original application goes away I could put together a renderer so that I can view the file.
al_borlandabout 1 year ago
FSNotes for macOS and iOS is one I used for a little while.<p><a href="https:&#x2F;&#x2F;fsnot.es&#x2F;" rel="nofollow">https:&#x2F;&#x2F;fsnot.es&#x2F;</a><p>todo.txt is another thing that comes to mind.<p><a href="http:&#x2F;&#x2F;todotxt.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;todotxt.org&#x2F;</a><p>And of course pretty much all of *nix.
sandisabout 1 year ago
NotePlan (<a href="https:&#x2F;&#x2F;noteplan.co" rel="nofollow">https:&#x2F;&#x2F;noteplan.co</a>) stores everything in Markdown files with a directory structure mirroring that created in the UI
评论 #39938459 未加载
cpachabout 1 year ago
I guess many of the static site generators would qualify. Hugo does. Haven’t used any others but I think that’s also true for Jekyll, Zola etc etc.
vladsanchezabout 1 year ago
<a href="http:&#x2F;&#x2F;dendron.so&#x2F;" rel="nofollow">http:&#x2F;&#x2F;dendron.so&#x2F;</a>
bonniesimonabout 1 year ago
Logseq is a good example of this
solardevabout 1 year ago
There are flat-file CMSes (content management systems) like Grav: <a href="https:&#x2F;&#x2F;getgrav.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;getgrav.org&#x2F;</a><p>Ironically, old-fashioned desktop office apps (Microsoft&#x27;s or otherwise) save their outputs in a relatively parseable, self-contained XML format, but that&#x27;s so rare to see in today&#x27;s world when everything is like fifty JSONs and YAMLs and build artifacts spread across disparate systems and CDNs and such.<p>There are some interesting file formats that encode temporal elements alongside content, like video subtitles (SRT), chess game recordings (PGN), some simpler video game save files, etc. They&#x27;re different from binary video&#x2F;audio blobs in that they&#x27;re entirely human-readable too.<p>In code, there are some rules engines that attempt to declaratively encode logic into flat JSON instead of conditional operators: <a href="https:&#x2F;&#x2F;github.com&#x2F;CacheControl&#x2F;json-rules-engine">https:&#x2F;&#x2F;github.com&#x2F;CacheControl&#x2F;json-rules-engine</a><p>I guess, in some vague&#x2F;broad sense, maybe config-as-code systems also implement a similar philosophy? Maybe even OpenAPI schemas could count to some degree...?<p>In the old days, the &quot;semantic web&quot; movement was an attempt to make more webpages both human- and machine-readable indefinitely by tagging them with proper schema: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Resource_Description_Framework" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Resource_Description_Framework</a>. Even Google was on board for a while, but I guess it never saw much uptake. As far as I can tell it&#x27;s basically dead now, both because of non-semantic HTML (everything as a React div), general laziness, and LLMs being able to parse things loosely.<p>Maybe a continuation of that effort is the Wikidata movement, which is trying to add schema and semantic data to other MediaWiki projects whenever they can: <a href="https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Wikidata:Introduction" rel="nofollow">https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Wikidata:Introduction</a><p>-------------<p>Side thoughts...<p>Philosophically, I don&#x27;t know that capturing raw data alone as files is really sufficient to capture the nuances of any particular experience, or the overall zeitgeist of an era. You can archive Geocities pages, but that doesn&#x27;t really capture the novelty and indie-ness of that era. Similarly, you can save TikTok videos, but absent the cultural environment that created them (and a faithful recreation of the recommendation algorithm), they wouldn&#x27;t really show future archaeologists how teenagers today lived.<p>I worked for a natural history museum for a while, and one of the interesting side questions (well, to me anyway) was whether our web content was in and of itself worth preserving as a cultural artifact -- both so that future generations can see what exhibits were interesting&#x2F;apropos for the cultures of our times, but also so they could see how our generation found out about those exhibitions to begin with (who knows what the Web will morph into 50 years later). It wasn&#x27;t enough to simply save the HTML of our web pages, both because they tie into various other APIs and databases (like zoological collections) and because some were interactive experiences, like games designed to be played with a mouse (before phones were popular), or phone chatbots with some of our specimens. To really capture the experience authentically would&#x27;ve required emulating not just files but also our tech stacks and devices, among other things. And that doesn&#x27;t even begin to address the cultural aspects. (Ultimately, this was important to nobody else, and it all just disappeared forever, lol.)<p>Like for the earlier Geocities example, sure you could just save the old HTML and render it with a modern browser, but that&#x27;s not the same as something like <a href="https:&#x2F;&#x2F;oldweb.today&#x2F;?browser=ns3-mac#http:&#x2F;&#x2F;geocities.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;oldweb.today&#x2F;?browser=ns3-mac#http:&#x2F;&#x2F;geocities.com&#x2F;</a> , which emulates the whole OS and browser too (<a href="https:&#x2F;&#x2F;github.com&#x2F;oldweb-today&#x2F;oldweb-today?tab=readme-ov-file#how-it-works">https:&#x2F;&#x2F;github.com&#x2F;oldweb-today&#x2F;oldweb-today?tab=readme-ov-f...</a>). And that still isn&#x27;t the same as having to sit in front of a tiny CRT and wait minutes for the 386 to boot and everything to download over a 14.4k modem, only to be interrupted when mom had to make a call.<p>I guess that&#x27;s a longwinded way of critiquing &quot;file over app&quot;: It only makes sense for things that are originally files&#x2F;documents to begin with. Much of our lives now are not flat docs but &quot;experiences&quot; that take much more thought and effort to archive. If the goal is truly to preserve those for posterity, it&#x27;s not enough to just archive their raw data, but to also develop ways to record and later emulate entire experiences, both technological and cultural. It ain&#x27;t easy!
pcranawayabout 1 year ago
Anki!