econophysics and community currency

I’ve recently been introduced to the field of econophysics and I’ve read an interesting the review paper on the field. My thoughts on this paper is that it’s very good news for the community currency movement, if understood properly. For a long time when talking about cc, I’ve been using the little thought experiment of asking people to imaging the Buddha, Jesus and Mother Theresa sitting down to play monopoly and to see if the game will have a different outcome. The answer is obviously no, not if they play by the rules. It doesn’t matter how good or evil you are, the rules of monopoly simply require that all the cash end up in one player’s hands, i.e 100% inequity. The econophysics work on the Statistical Mechanics modeling of money takes this intuitive analogy and “proves” quite definitively the fundamental inequity of our current system if you assume that the rules of the game are that money behaves like energy. The good news for community currency arises out of the basic flaw of the paper which is it seems to imply that money is natural system, rather than a created one. If money were an inevitable natural system, then the paper could be seen as an justification of that structural inequity. But since it is a created one, rather it’s an explanation of the the inequity, and thus can point us very clearly in directions of how the monetary system should instead be re-designed. What are those directions? Well, we see in the paper the very careful arguments to show how money is conserved. This is crucial to the model because in the model money is energy, and statistical mechanics is built on the law of the conservation of energy. But more importantly their model is about statistical equilibrium of energy states in closed systems. So this gives us a clear indication of where to go: change the monetary paradigm to one where the fundamental model is based on non-equilibrium state energy systemics. Well, we know what non-equilibrium state energy systems are, they are living systems. In living systems what matters fundamentally is not how much energy is accumulated but rather, whether energy can be made to flow in particular complex patterns that themselves are self-sustaining. Even more crucially, life is not about what happens if energy is allowed to dissipate to equilibrium. The name for that process is death! So I think we could even argue that that the modeling they have done is of the death of an economy! Life is not about accumulation of the energy itself, but instead it is about the accumulation of the complex patterns of energy flows. The word for a such patterns is “ecosystem”. In their model money is seen as energy, or the capacity to do work. This actually makes sense for an early stage in the evolution of money. When the main issue is the scarcity of the capacity to get work done, then finding ways to accumulate it is key, and building an economic structure to generate that accumulation makes sense. We now live in a world where our capacity to do work is not at all scarce, it’s over abundant. The big problem is the waste human capacity (think of the structural unemployment) and also the squandering of all that massive capacity in ways that are blatantly destructive (military expenditures) or systemically destructive (climate change). So our task is now to re-gear the fundamental system to not simply accumulate of the capacity to do work, but mostly to accumulate particular patterns of that capacity that are what we call “healthy”. So, how do we do that!? I use a completely different model for money that I think fits the bill, namely that money is a form of language, or more precisely a writing system that encodes information about wealth events. This model transcends and includes the model of money as energy, because in its simplest form, the rules of the writing system can be made to follow the rules of conservation of energy. What I have been calling for and working on with open money (as well as collaborting with Art Brock on his OS-Earth platform) is a meta-currency system that is precisely about making it easy to create these many different writing system (currencies) and their rule-sets, or another way to put that, that precisely enables a the creation of pattern sets for economic flows.

git me some solutions

Well, git definitely takes some gitting used to.

My situation is using git with three team members and a private shared repository that we all pull from and push too.  Additionally our project has a submodule that lives on a public git-hub repository (metaform).

So here are some things I’ve learned:

  • Use rebase. Here’s how:
    1. Rebase doesn’t work on “dirty” working tree. So you must, either:
      1. Add and commit all you changes.git commit -a -m 'all my changes' (assuming that your ok committing them in a single batch). or
      2. Stash your changes awaygit stash (But don’t use stash if you have made changes in your submodule ! It’ll stash the changes away, but it gets very grumpy when unstashing later.)
    2. Fetch the changes:git fetch this should copy the changes from the remote branch (I assume your tracking the defaults here from the clone origin)
    3. Now to rebase: git rebase origin/master If you do a git log you should now see your checked in changes at the top of the tree, not somewhere near the bottom where they would be if you had just done a pull.
    4. If you stashed above, then you need to unstash with git stash apply
  • Submodules that are in active development can be a pain. Here’s a gotcha that gotme: When you have made a change to a submodule, checked it in and pushed it, you still need to add this change into your containing repository and commit that, and then do a git submodule update This is all well documented, but lets take a concrete example. My submodule is a rails plugin. So just after committing the change in my submodlue git status shows that vendor/plugins/myplugin is modified. So I use my shell’s file completion to add that folder. This gets me: git add vendor/plugins/myplugin/ notice the trailing slash. This is the gotcha. That causes git add to add all of the contents of the directory as if you wanted to track them directly instead of through the submodule. Erase that trailing slash!

git bandwagon

Well, I’ve officially joined the git bandwagon.  I’ve put metaform up on github (the open money projects will come soon, but I think probably on gitorious); I’ve been reading tons of articles about git; I installed it on Tiger (use MacPorts) and Leopard (install from source with these instructions but use 1.5.5); and now I’m blogging about it.  The most interesting article so far on git, has made me realize how closely related it is to the mesh and churn…  Quite interesting!

mexico

I’m in mexico, and it’s the start of the third day of the open money intensive.  This is an incredible experience of the expansion of the open money vision that’s been in gestation for so long and is now being  birthed.  More soon!

spam hacking this blog

I’m very grumpy because some spammers have been hacking this blog!  I’ve updated to the latest version of WordPress, and it still seems to be occuring, so if you see nasty stuff here, please notify me.  Thanks.