Bite sized development
Monday, July 26th, 2010http://www.pomodorotechnique.com/Dev time broken into chucks of time — 25 min with 5 min breaks. And every 4th break is longer. Task Oriented Development.
http://www.pomodorotechnique.com/Dev time broken into chucks of time — 25 min with 5 min breaks. And every 4th break is longer. Task Oriented Development.
“Featuring the best daily NoSQL news, articles and links covering all major NoSQL projects and following closely all things related to NoSQL ecosystem. Everything you need and want to know about NoSQL.”
I was lead down some interesting paths figuring out this simple flow. So I thought I’d post it to save some time…and hopefully someone else’s.
Also, here’s a nice cheetsheet: http://cheat.errtheblog.com/s/git
# Sets up a local branch
git branch my_test
# Creates the remote branch
git push origin my_test
# Deletes a remote branch
git push origin :my_test
# Delete branch locally
git branch -d my_test
UPDATE: (5/27/2009)
Get a remote branch that exists on the server but not locally (tracking is set by default)
git checkout -b my_test_prod origin/my_test_prod
Great packaged installer for Postgres. http://www.postgresqlformac.com/
ALSO
Edit Global Bash ProfileYou need to edit the global bash profile as follows:
export PATH=/Library/PostgreSQL8/bin:$PATHexport PGDATA=/Library/PostgreSQL8/dataPostgreSQL8 in the above text might be something different depending on the version you installed. Check on your computer in the HardDrive/Library/ folder to verify the name of your installed PostgreSQL folder.
Copied from: http://www.studiotips.net/docs/tips_sql/postgresql/installingpostgresqlonmac.html