• 1 Post
  • 2 Comments
Joined 1 year ago
cake
Cake day: June 27th, 2023

help-circle
  • Anarchists develop structures and agreements that discourage concentration of power

    MLMs believe that they must use the state, capitalism, and by extension coercive control

    Are these not different words for the same fundamental concepts?

    I fail to see how “the state” and “capitalism” aren’t just a more developed form of “structures” and “agreements”. And if the community decides punishment is an appropriate response to breaking an “agreement”, how is that any different from “coercive control”?

    And if you’re community gets large enough (say even like a couple hundred people), how are any decisions gonna get made even remotely efficiently?

    Feel like you’re a hop skip and a jump from a representative democracy. And as soon as bartering becomes too inconvenient, I’m sure a new “agreement” still be made to use some proxy as a form of current and boom now you’ve got capitalism too.


  • I try to structure my commits in a way that minimizes their blast radius, which usually likes trying to reduce the number of files In touch per commit.

    For example, my commit history would look like this:

    • Add new method to service class
    • Use new service class method in worker

    And then as I continue working, all changes will be git commit --fixuped to one of those two commit’s hashes depending on where they occur.

    And when it’s time to rebase in full, I can do a git rebase master --interactive --autosquash.