this post was submitted on 02 Sep 2024
216 points (98.2% liked)

Programming

16975 readers
1288 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

There are a couple I have in mind. Like many techies, I am a huge fan of RSS for content distribution and XMPP for federated communication.

The really niche one I like is S-expressions as a data format and configuration in place of json, yaml, toml, etc.

I am a big fan of Plaintext formats, although I wish markdown had a few more features like tables.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 2 weeks ago (7 children)

Is ipfs usage growing? Stagnant? No idea... Diatributed serving of content seems great

[–] [email protected] 6 points 2 weeks ago (3 children)

I never really quite understood IPFS and why it gets used where I see it today. What problem is it solving?

[–] [email protected] 4 points 2 weeks ago

file sharing between planets, obviously /s

[–] [email protected] 3 points 2 weeks ago (1 children)

IPFS would replace Content Delivery Networks in present day.

It would also allow you to host software and other content from your own network again without the constraints modern Internet Service Providers pose on you to limit your self-hosting capabilities.

If applications are built for it, it could serve as live storage for your applications too.

We ran ipf-search. In one of the experiments we could show that a distributed search index on ipfs-search, accessible through JavaScript is likely feasible with the necessary research. Parts of the index would automatically be hosted by clients who used the index thus creating a fairly resilient system.

Too bad IPFS couldn't get over the technical hurdles of limiting connection setup time. We could get a fast (ElasticSearch based) index running and hosted over common web technologies, but fetching content from IPFS directly was generally rather slow.

[–] [email protected] 3 points 2 weeks ago (1 children)

Would you be interested in a similar protocol that supports more things (and is IMO easier to set up)?

[–] [email protected] 2 points 2 weeks ago (1 children)

I'm not actively looking but please do share references! Other people may read this and they may want to know too. Perhaps I'll jump back in the rabbit hole at some point too 😁

[–] [email protected] 1 points 1 week ago

Okay here it goes!

Tenfingers sharing protocol & python implementation (your python needs cryptodomex, or use the frozen executables).

http://tenfingers.org

You share theirs, they share yours (all encrypted)! So no benevolent nodes or crypto and it's 100% decentralised.

I'm working on a better documentation on how to set it up (just forward a port and run setup basically).

[–] [email protected] 1 points 2 weeks ago

Yeah it's basically a benevolent-store-static-data, where static is you cannot change it (or you have to upload new data and make a new link to it).

Cool name though.

load more comments (3 replies)