This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Redacted\Tests; | |
/** | |
* @author Marc Weistroff <[email protected]> | |
*/ | |
class FuckedUpTest extends \PHPUnit_Framework_TestCase | |
{ | |
public function testThatIsExpected() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"code.google.com/p/go.net/websocket" | |
) | |
type connection struct { | |
// The websocket connection. | |
ws *websocket.Conn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!env sh | |
# sudo gem install terminal-notifier beforehand. | |
# Install to /usr/local/bin/alarm | |
# Usage: alarm phpunit -c app | |
$@ | |
terminal-notifier -message "Return code: $?" -group "$1" -title $1 > /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bonjour %name%, | |
Votre email non-sollicite a obtenu un score de x/11 : | |
- Salutation de début de mail : 0 | |
- Personnalisation du mail : 0 | |
- Recherche préalable sur le destinataire du message : 0 | |
- Contextualisation de la prise de contact : 0 | |
- Formule de politesse en fin de mail : 0 | |
- Demande de CV dans un format acceptable : 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @ORM\Id | |
* @ORM\ManyToOne(targetEntity="Foo", inversedBy="inversedFoo") | |
* @ORM\JoinColumn(name="foo_id", referencedColumnName="id", onDelete="CASCADE") | |
* @Assert\NotNull() | |
*/ | |
private $foo; | |
/** | |
* @ORM\Id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Symfony\Component\HttpKernel\Kernel; | |
use Symfony\Component\Config\Loader\LoaderInterface; | |
class AppKernel extends Kernel | |
{ | |
static protected $databaseDefaultConnection; | |
public function registerBundles() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/tmp/joyent-node-016540c make distclean !10224 | |
rm -rf out | |
rm -f config.gypi | |
rm -f config.mk | |
/tmp/joyent-node-016540c ./configure !10225 | |
{ 'target_defaults': { 'cflags': [], | |
'defines': [], | |
'include_dirs': [], | |
'libraries': ['-lz']}, | |
'variables': { 'host_arch': 'x64', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/tmp/joyent-node-016540c ./configure !10195 | |
{ 'target_defaults': { 'cflags': [], | |
'defines': [], | |
'include_dirs': [], | |
'libraries': ['-lz']}, | |
'variables': { 'host_arch': 'x64', | |
'node_install_npm': 'true', | |
'node_install_waf': 'true', | |
'node_prefix': '', | |
'node_shared_cares': 'false', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/work/websites/test.local (master) brew install node !10157 | |
==> Downloading http://nodejs.org/dist/v0.6.11/node-v0.6.11.tar.gz | |
######################################################################## 100,0% | |
==> ./configure --prefix=/usr/local/Cellar/node/0.6.11 --without-npm | |
==> make install | |
Waf: Entering directory `/private/tmp/homebrew-node-0.6.11-Cln5/node-v0.6.11/out' | |
[ 1/35] copy: src/node_config.h.in -> out/Release/src/node_config.h | |
[ 2/35] cc: deps/http_parser/http_parser.c -> out/Release/deps/http_parser/http_parser_3.o | |
[ 3/35] src/node_natives.h: src/node.js lib/dgram.js lib/console.js lib/buffer.js lib/querystring.js lib/punycode.js lib/http.js lib/net.js lib/stream.js lib/events.js lib/util.js lib/module.js lib/_debugger.js lib/assert.js lib/fs.js lib/child_process.js lib/os.js lib/readline.js lib/vm.js lib/url.js lib/tls.js lib/crypto.js lib/sys.js lib/https.js lib/freelist.js lib/dns.js lib/_l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Symfony\Component\ClassLoader\DebugUniversalClassLoader; | |
use Symfony\Component\Config\Loader\LoaderInterface; | |
use Symfony\Component\HttpKernel\Debug\ErrorHandler; | |
use Symfony\Component\HttpKernel\Debug\ExceptionHandler; | |
use Symfony\Component\HttpKernel\Kernel; | |
class AppKernel extends Kernel | |
{ |