I hereby claim:
- I am rskuipers on github.
- I am rskuipers (https://keybase.io/rskuipers) on keybase.
- I have a public key ASAqk47ZAhpir43WwCtIKMyr6HtAtn5ZCSXF8jtJ5ovTAwo
To claim this, I am signing this object:
<?php | |
$headers = getallheaders(); | |
$contents = $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . ' ' . $_SERVER['SERVER_PROTOCOL'] . PHP_EOL; | |
foreach ($headers as $key => $value) { | |
$contents .= $key . ': ' . $value . PHP_EOL; | |
} | |
$contents .= PHP_EOL . file_get_contents('php://input'); |
Verifying that +rskuipers is my blockchain ID. https://onename.com/rskuipers |
# Add this to your .zshrc and adjust the paths | |
scratch() { | |
php ~/Library/Preferences/WebIde90/scratches/$1 | |
} | |
compdef '_files -W ~/Library/Preferences/WebIde90/scratches' scratch |
# Add this to your .bashrc and adjust the paths | |
scratch() { | |
php ~/Library/Preferences/WebIde90/scratches/$1 | |
} | |
_scratch() { | |
local cur=${COMP_WORDS[COMP_CWORD]} | |
COMPREPLY=( $(compgen -W "$(ls ~/Library/Preferences/WebIde90/scratches/)" -- $cur) ) | |
} |
{% set params = app.request.attributes.get('_route_params')|merge(app.request.query.all()) %} | |
{{ path((app.request.get('_route') == "" ? 'homepage' : app.request.get('_route')), (parameters|merge({'_locale': 'nl'}))) }} | |
{{ path((app.request.get('_route') == "" ? 'homepage' : app.request.get('_route')), (parameters|merge({'_locale': 'en'}))) }} |
<?php | |
namespace My\Traits; | |
use Symfony\Component\Console\Output\OutputInterface; | |
trait OutputTrait | |
{ | |
/** | |
* @param string $message |
<?php | |
require_once 'abstract.php'; | |
class RSKuipers_Shell_Packager extends Mage_Shell_Abstract | |
{ | |
public function run() | |
{ | |
$package = $this->getArg('package'); | |
$outputDir = $this->getArg('output'); |
I hereby claim:
To claim this, I am signing this object:
<?php | |
namespace Application\Service; | |
use Doctrine\ORM\EntityManagerInterface; | |
/** | |
* Class AbstractService | |
* @package Application\Service | |
*/ |