• toastal
    link
    fedilink
    arrow-up
    9
    arrow-down
    1
    ·
    3 days ago

    Programming never needed these sorts of social media features in the first place. Do you part by getting your projects off of Microsoft’s social media platform used to try to sell you Copilot AI & take a cut of your donations to projects with Sponsors.

        • David J. Shourabi Porcel@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          3 days ago

          Git is overrated.

          That’s interesting to read; I wasn’t even aware of the existence of Darcs — or any other alternative to git supposedly worth considering, for that matter. Would you elaborate on it?

          • toastal
            link
            fedilink
            arrow-up
            2
            ·
            edit-2
            2 days ago

            Pijul is also worth looking at.

            Fundamentally anything with a snapshot-based model is reliant on patch order mattering. As such you always end up with some centralized server. Pijul & Darcs are based on Patch Theory that says if Patch B is applied before or after Patch A assuming there is no conflict or dependence, it should not matter in a communicative way—that is to say the 1 + 2 ≡ 2 + 1. You can avoid a series of conflicts & better support a distibuted/decentralized development model if the order doesn’t matter.