Remix.run Logo
pbronez 7 hours ago

Seems pretty useful in an enterprise context to me. I see it as an alternative to 10 million vibe coded apps to dockerize and manage. You can put the runtime on everyone’s machine and provide a web version for really collaborative stuff.

Bonus points for an intelligent way to manage these stored in OneDrive and other cloud folders. Easy to get corruption on SQLite files stored there.

crab_galaxy 6 hours ago | parent | next [-]

It could be useful for us with home labs for the same reasons. Kind of annoying to deploy docker containers for all the services I build that amount to personalized/skinned trello boards.

dizzard 4 hours ago | parent [-]

Not trying to plug myself, but I’ve been working on a similar project for this exact reason. It doesn’t use special file types. Just HTML and localStorage proxies to sync devices.

It’s self-hostable too. I’ve got a bunch of super niche todo lists and personal apps running on my home server with it.

https://github.com/momja/Exhibit

bashtian 5 hours ago | parent | prev [-]

There are a few things in Capsule to avoid corruptions of the file during syncing. The DELETE journal mode is used and writes are batched into transactions so that updates are always complete changes. And if there is a copy created because of a conflict merging two capsule files is supported.