I hereby claim:
- I am cjsaylor on github.
- I am cjsaylor (https://keybase.io/cjsaylor) on keybase.
- I have a public key whose fingerprint is F626 B810 0C5D 5A96 294A E24E 9F35 46F7 FA81 2DC5
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' | |
green='\033[0;32m' |
#!/bin/sh | |
PROJECT=`php -r "echo dirname(dirname(dirname(realpath('$0'))));"` | |
STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep \\\\.php` | |
# Determine if a file list is passed | |
if [ "$#" -eq 1 ] | |
then | |
oIFS=$IFS | |
IFS=' |
// Find a flyer that's at the maximum range | |
var flyer = _.find(roundInfo.getMobs(), function(mob) { | |
return mob.type === 'flyer' && mob.position === 5; | |
}); | |
if (flyer) { | |
commander.target(flyer.id); | |
commander.attackMode('ranged'); | |
return; | |
} |
var getTopCategory = function(category, callback) { | |
var sorter = {}; | |
sorter[category] = -1; | |
this.collection('results').aggregate([ | |
{ $sort: sorter }, | |
{ $project: { | |
_id: 0, | |
name: 1, | |
category_value: '$' + category | |
}}, |
<?php | |
use \Zumba\PHPUnit\Extensions\Mongo\TestTrait as MongoTest; | |
class DatabaseTestCase extends \PHPUnit_Extensions_Database_TestCase { | |
use MongoTest { | |
MongoTest::setUp as mongoSetUp; | |
MongoTest::tearDown as mongoTearDown; | |
} | |
<?php | |
$data = array( | |
'labels' => array( | |
array('string' => 'Sample'), | |
array('number' => 'Piston 1'), | |
array('number' => 'Piston 2') | |
), | |
'data' => array( | |
array('S1', 74.01, 74.03), |
<?php | |
protected function loadDataAndLabels($data, $graph_type) { | |
$o = ''; | |
foreach($data['labels'] as $label) { | |
foreach($label as $type => $label_name) { | |
$o.= "data.addColumn('$type', '$label_name');\n"; | |
} | |
} | |
$data_count = count($data['data']); |
<script src="/user/emails" type="text/javascript"></script> |
db.posts.aggregate( [ { $project : { 'comments.author': 1 } }, { $unwind : "$comments" }, { $group : { _id : { comments : "$comments" }, n : { $sum : 1 } } }, { $sort: {"n": -1} } ] ) |