Snap a picture of yourself on every commit.
Probably Mac OS X only, I haven't looked into others.
$ brew install imagesnap
$ git config --global init.templatedir '~/.git_template'
$ chmod +x post-commit| # See a video of this at: http://www.youtube.com/watch?v=jlKt2Ed-Y04&feature=youtu.be | |
| require 'ardrone' | |
| drone = ARDrone::Drone.new | |
| drone.start | |
| drone.take_off | |
| sleep 5 | |
| drone.turn_right(1.0) |
| # See video at: http://www.youtube.com/watch?v=3NlYGn3QY4U&feature=youtu.be | |
| require 'socket' | |
| class ATCommand | |
| def initialize(socket, host=nil) | |
| @host = host || '192.168.1.1' | |
| @socket = socket | |
| @tick = 0 | |
| @buffer = "" |
| #!/usr/bin/env bash | |
| uninstall() { | |
| list=`gem list --no-versions` | |
| for gem in $list; do | |
| gem uninstall $gem -aIx | |
| done | |
| gem list | |
| gem install bundler | |
| } |