Remix.run Logo
Copyparty, the FOSS file server [video](youtube.com)
41 points by franczesko 7 days ago | 7 comments
kanemcgrath 2 minutes ago | parent | next [-]

I have been using copyparty since the last hn thread on it months ago. It is a masterpiece of "Just Works" Technology.

cwillu an hour ago | parent | prev | next [-]

https://github.com/9001/copyparty/

rtyu1120 2 hours ago | parent | prev | next [-]

Previous discussion: https://news.ycombinator.com/item?id=44711519

N-Krause 2 hours ago | parent [-]

I knew I've already seen this. Seemed like a great tool then as well as now. Will definitively deploy it on for my personal file server. Just haven gotten around it.

surfingdino an hour ago | parent | prev [-]

Brilliant. This reminds me of (but is way more advanced) a single-file Python NoSQL key-value DB that used pickling to store data. It was FAST. Can't remember what happened to it. Anybody?

john01dav 3 minutes ago | parent | next [-]

I wrote something similiar (minimal nosql key-value DB) and it was less fast than (specifically lower throughput, I did not measure other metrics) Redis, despite some passing attempts to make it fast (like using async/await for all IO).

tekknolagi 27 minutes ago | parent | prev [-]

sqlitedict? Or shelve/dbm?