I hereby claim:
- I am claylo on github.
- I am claylo (https://keybase.io/claylo) on keybase.
- I have a public key ASDwYDs9hW-SaOgepLdts04yxxVpFXYHklI21IjF9GHhzQo
To claim this, I am signing this object:
${TM_CURRENT_LINE/(.*\*\/$)|.*?(\/\*(?!.*\*\/)).*|.*/(?1: | |
: | |
(?2: )* )/} |
I hereby claim:
To claim this, I am signing this object:
Homebrew build logs for hhvm/hhvm/hhvm on macOS 10.11.6 | |
Build date: 2016-10-09 20:03:18 |
Verifying that +claylo is my blockchain ID. https://onename.com/claylo |
<?php | |
/** | |
* Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"). | |
* You may not use this file except in compliance with the License. | |
* A copy of the License is located at | |
* | |
* http://aws.amazon.com/apache2.0 | |
* |
#!/bin/bash | |
# The author releases this code into the public domain. | |
# requires 'say' command. OS X is your friend | |
RANGE=90 | |
LOOPS=10 | |
count=0 | |
# Thanks, interwebs! | |
# http://rosettacode.org/wiki/Pick_random_element#Bash | |
rand() { |
clay:test clay$ cat composer.json | |
{ | |
"name": "test/test", | |
"require": { | |
"phpunit/phpunit": "3.6.*" | |
}, | |
"repositories": [ | |
{ "type": "pear", "url": "http://pear.symfony-project.com" }, | |
{ "type": "git", "url": "http://github.com/claylo/phpunit.git" }, | |
{ "type": "git", "url": "http://github.com/claylo/dbunit.git" }, |
<?php | |
// Wow, we know what controller to use! | |
require_once 'MyApp/Controllers/Foo.php'; | |
// handle your HTTP Methods inside your controller | |
$app = new MyApp_Controllers_Foo(); | |
$app->run(); |
# for you mod_php5 fans | |
<VirtualHost *:80> | |
# ... | |
<LocationMatch "^/(foo|bar|baz)/.*$"> | |
ForceType application/x-httpd-php | |
</LocationMatch> | |
</VirtualHost> | |
# for the PHP-FPM lovers | |
<VirtualHost *:80> |
<?php | |
function hello_world() { | |
// a world subset | |
$countries = array('USA', 'Germany', 'Spain', 'Austraila'); | |
print_r($countries); | |
} |