Ansible Coding Conventions

https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions

Adding Remote Repositories

http://git-scm.com/book/en/Git-Basics-Working-with-Remotes $ git remote add pb git://github.com/paulboone/ticgit.git $ git remote -v origin git://github.com/schacon/ticgit.git pb git://github.com/paulboone/ticgit.git $ git fetch pb

How to fix stale git branch -r (delete phantom git branches)?

When git remote branch is deleted, but still appears in ‘branch -a’, you should: git remote show origin git branch -d branch-name git remote prune origin git gc --prune=now

Using Satis for fast and reliable software deployment

http://labs.qandidate.com/blog/2013/12/05/using-satis-for-fast-and-reliable-software-deployment/

Adding Mockery to Symfony 2.3

http://blog.code4hire.com/2013/07/adding-mockery-to-symfony-2-dot-3/

Building a Menu in Symfony With Events and Ordering

http://blog.code4hire.com/2013/06/building-a-menu-in-symfony-with-events-and-ordering/

Fixed font issue with Midnight Commander in Terminal

If you have weird /interrupted/ lines around columns, you should set font for “Non-ASCII” chars as a Menlo, ie: 12pt Menlo Regular

How to set auto increment jumps by more than the number of rows inserted?

http://dev.mysql.com/doc/refman/5.6/en/replication-options-master.html#sysvar_auto_increment_increment auto_increment_increment and auto_increment_offset are intended for use with master-to-master replication, and can be used to control the operation of AUTO_INCREMENT columns.

Use dig to Perform Manual DNS Queries

https://library.linode.com/linux-tools/common-commands/dig dig @ns1.linode.com example.com

OAuth2 with Symfony2

http://blog.tankist.de/blog/2013/07/16/oauth2-explained-part-1-principles-and-terminology/ https://github.com/knpuniversity/oauth https://github.com/bshaffer/oauth2-demo-php https://github.com/bshaffer/oauth2-server-php-docs