this post was submitted on 05 Feb 2025
11 points (100.0% liked)

Programming

13463 readers
18 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
 

I am a jr. Dev, but not imaginative. I find most programming languages to be poorly advertised and explained. Usually they assume too much knowledge.

What would I use Web Assembly, like Goblin (https://spritely.institute/), for? Are there examples of Web Assembly programs?

It is for web pages, or online games? Can they be run offline?

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

The goal of Goblins is to be able to create regular programs that can be distributed across networked machines/servers/clients easily without having to architect your code explicitly to handle the details of communication across the network.

Ah! So a new MPI!

Any big packages, like AMBER or CHARMM, picking it up?

[–] [email protected] 4 points 1 week ago (1 children)

It's not really like MPI. It's more oriented towards writing social software that communicates over the Internet, as a next step beyond ActivityPub. You could use it for a lot of things, but one example is to write federated software like Lemmy where you have lots of instances communicating with each other. But it makes things more flexible, you can really make any sort of social app with it.

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

Ah, thank you!

I appreciate you efforts to both explain to me and contribute to open source.