I hereby claim:
- I am omnicolor on github.
- I am omnicolor (https://keybase.io/omnicolor) on keybase.
- I have a public key whose fingerprint is EF78 5682 8AE3 D8FD B624 313B 3689 111F 424A 292A
To claim this, I am signing this object:
Verifying that "omnicolor.id" is my Blockstack ID. https://explorer.blockstack.org/name/omnicolor.id |
<?php | |
/** | |
* Class that tries to send a header. | |
*/ | |
class SendsHeaders { | |
/** | |
* Send a header to the user's browser. | |
*/ | |
public function sendHeader() { | |
header('This is a header', true, 400); |
I hereby claim:
To claim this, I am signing this object:
<?php | |
define('RUN_ITERATIONS', 100000); | |
function avg($array) { | |
return array_sum($array) / count($array); | |
} | |
function ifseta($arr, $k, $default = null) { | |
return isset($arr[$k]) ? $arr[$k] : $default; | |
} |
class Foo { | |
public function addAndSquare($bar, $baz) { | |
$tmp = $this->add($bar, $baz); | |
return $this->multiply($tmp, $tmp); | |
} | |
protected function add($foo, $bar) { | |
return Calculator::add($foo, $bar); | |
} |
class Foo { | |
public function addAndSquare($bar, $baz) { | |
$tmp = Calculator::add($bar, $baz); | |
return Calculator::multiply($tmp, $tmp); | |
} | |
} |
/** | |
* Static calculator class. | |
* | |
* There's no way to dependency inject this for | |
* mocking it out while testing. | |
*/ | |
class Calculator { | |
private function __construct() {} | |
public static function add($a, $b) { |
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script. | |
* | |
* @author Omni Adams <[email protected]> | |
*/ | |
/** |
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script. | |
* | |
* Forces the commit message to have a line like | |
* review: 42 | |
* and checks that the review has received a Ship It! from | |
* a peer. | |
* @author Omni Adams <[email protected]> |
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script. | |
* @author Omni Adams <[email protected]> | |
*/ | |
/** | |
* Path to the awk binary. |