• 0 Posts
  • 8 Comments
Joined 8 months ago
cake
Cake day: June 10th, 2024

help-circle
  • Federated browsers

    That’s literally just regular browsers, you can interact with any one of billions of webservers

    Federated github

    Git is federated by nature, you can add as many remotes as you wish and push/pull to all of them. Add in a mailing list for issue tracking and “pull requests” (patch submissions) and you’re golden. You can look up sourcehut to self-host a well-integrated combination of the two.

    Federated hosting providers

    Not sure what exactly you mean by this but maybe take a look at IPFS, although it’s more P2P then federation.

    Federated internet

    Internet is already fairly federated by nature - most commonly used protocols in the OSI stack are open and you can host your own components of critical infrastructure. Getting others to interact with them might be difficult due to security & privacy issues.




  • balsoft@lemmy.mltoProgrammer Humor@lemmy.mlChecks out
    link
    fedilink
    arrow-up
    4
    arrow-down
    2
    ·
    2 days ago

    If you look closesly there’s a lot of nonsensical details, like the quite high water tower in the top right, window layout on the side of the building facing us, different lengths and angles of fire escape stairs, a weird semi-reflective “thing” (scaffolding?) on the left of the image (and if it is indeed reflective, the reflection doesn’t match the original), extremely weird-looking humans on the hoist and artifacts on the hoist railing. None of these are a dead giveaway, but the general vibe is off.




  • What I find annoying is when some talking head says all code should be a certain way,

    It’s quite useful to have “all code be a certain way” within a language ecosystem. E.g. Haskell requiring all pure functions be actually pure is amazing because you know that any function from any library doesn’t perform some stupid side effect when you call it, and just processes its inputs into an output. Of course, functional programming tools can be useful even outside purely functional languages, but having those important properties be ecosystem-wide makes you feel much more comfortable, and produces much better, safer and more reliable code in the end.