I hereby claim:
- I am clarkeash on github.
- I am clarkeash (https://keybase.io/clarkeash) on keybase.
- I have a public key whose fingerprint is 27AC 45CC 3588 C999 69F3 A3A8 5727 16D2 B57C C18F
To claim this, I am signing this object:
{ | |
"events": { | |
"start": "clear", | |
"restart": "clear" | |
}, | |
"exec": "php artisan test", | |
"ext": "*", | |
"ignore": [ | |
"vendor/" | |
] |
<?php | |
class TestCase extends Illuminate\Foundation\Testing\TestCase | |
{ | |
/** | |
* The base URL to use while testing the application. | |
* | |
* @var string | |
*/ | |
protected $baseUrl = 'http://localhost'; |
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="vendor/autoload.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false"> |
<?php | |
echo "hey, there!"; | |
?> |
I hereby claim:
To claim this, I am signing this object:
<?php | |
class This { | |
protected $this; | |
public function __construct () | |
{ | |
$this->this = $this; | |
} |
/* | |
|-------------------------------------------------------------------------- | |
| Basic Setup/Config | |
|-------------------------------------------------------------------------- | |
*/ | |
@setup | |
$directory = '/home/vagrant/laravel-apps/stubb-project'; | |
@endsetup | |
/* |
Config: | |
- Change scrolling direction | |
- Hide dock | |
- Create SSH key | |
- Pull in bash profile from github | |
Apps: | |
- Chrome | |
- Dropbox | |
- Alfred App |
function Object(){ | |
} | |
Object.prototype.func = function(){ | |
//code | |
}; |
<?php | |
function splitAndStrip($str, $del = ',') | |
{ | |
$str = explode($del, $str); | |
for ($i=0; $i < count($str); $i++) | |
{ | |
$str[$i] = trim($str[$i]); | |
} | |
return $str; | |
} |