https://speakerdeck.com/benjam1/adoptez-le-tdd-sur-vos-projets-symfony2-existants
http://davidbu.ch/slides/20130404-sflive_phpcr.html
https://dl.dropboxusercontent.com/u/581816/sflive_Paris_2013_DIC_-_Thomas_Rabaix.pdf
| <snippet> | |
| <content><![CDATA[ | |
| /** | |
| * Get $1 | |
| * | |
| * @return ${2:[type]} \$$1 | |
| */ | |
| public function get${1/(.*)/\u$1/}() | |
| { | |
| return \$this->${1:$SELECTION}; |
| #!/bin/bash | |
| # Sync Homebrew installations between Macs via Dropbox | |
| # | |
| BREW="/usr/local/bin/brew" | |
| # first get local settings | |
| echo "Reading local settings ..." | |
| rm -f /tmp/brew-sync.* |
| #!/bin/bash | |
| # Put this file at: .git/hooks/post-checkout | |
| # and make it executable | |
| # You can install it system wide too, see http://stackoverflow.com/a/2293578/685587 | |
| PREV_COMMIT=$1 | |
| POST_COMMIT=$2 | |
| NOCOLOR='\e[0m' |
| debootstrap --arch=i386 --include=rrdtool stable /tmp/rrdtool-i386 && | |
| mount --bind /var /tmp/rrdtool-i386/var && | |
| find /var -mount -type f -name \*.rrd | | |
| while read rrd; do | |
| td=$(mktemp -d) | |
| linux32 chroot /tmp/rrdtool-i386 rrdtool dump "$rrd" > $td/xml && | |
| rrdtool restore $td/xml $td/rrd && | |
| cp $td/rrd "$rrd" | |
| rm $td/{xml,rrd} | |
| rmdir $td |
| <?php | |
| namespace MFB\Behat\Subcontext; | |
| use Behat\Gherkin\Node\PyStringNode; | |
| use Behat\MinkExtension\Context\RawMinkContext; | |
| use Symfony\Component\Console\Tester\CommandTester; | |
| use Symfony\Component\EventDispatcher\EventDispatcher; | |
| /** |
| #!/usr/bin/php | |
| <?php | |
| $repos = array(); | |
| exec('find -type d -name .git | sed -e "s/\.git//"', $repos); | |
| foreach ($repos as $repo) { | |
| $status = shell_exec("cd $repo && git status"); | |
| if (false == strpos($status, 'nothing to commit, working directory clean')) { | |
| echo "$repo\n" . str_repeat('-', strlen($repo)) . "\n$status\n\n"; | |
| } | |
| } |
These packages are obsolete! Please use the official packages from http://www.Graylog2.org
=================================================
| [ | |
| { "keys": ["super+)"], "command": "indent" }, | |
| { "keys": ["super+("], "command": "unindent" } | |
| ] |
| # The MIT License (MIT) | |
| # Copyright (c) 2014 Dave Clark | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is | |
| # furnished to do so, subject to the following conditions: |