One of our developers is going to be a dad real soon. His waiting stirred the creative juices among the other developers. Brett came up with the following “from conception to birth” scenario à la version control system (used with permission):
mkdir baby cd baby git init . awk 'BEGIN { s="ACGT"; genes=""; srand(); for (i=1;i<=1024;i++) {genes = genes""substr(s,int(rand()*4)+1,1)} print genes}' > seed git add seed git commit -m 'conception' git remote add mother mother git push -u mother baby sleep 23667694.5 git pull mother baby
git is a very popular open source version control system that we use for I guess all our proejcts. I also started using it for reviewing Mahara code and for writing the Mahara user manual.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.