I hereby claim:
- I am asgrim on github.
- I am asgrim (https://keybase.io/asgrim) on keybase.
- I have a public key whose fingerprint is 9561 1CC3 ABF3 B80A 0646 9529 A9FA 0974 0C21 7917
To claim this, I am signing this object:
vendor |
SELECT | |
/* user */ users.id AS user_id, first_name, last_name, email, company, twitter, airport, url, transportation, hotel, info, bio, | |
/* talk */ talks.id AS talk_id, title, description, other, type, level, category, slides, desired, sponsor | |
FROM `talks`, `users` | |
WHERE talks.user_id = users.id |
{ | |
"EnableDeprecatedWebPlatformFeatures": ["ShowModalDialog_EffectiveUntil20150430"] | |
} |
<?php | |
$flockHandle = fopen('/tmp/blah.lock', 'w'); | |
if (!flock($flockHandle, LOCK_EX | LOCK_NB)) | |
{ | |
echo "Cannot get lock."; | |
die(); | |
} | |
// do something |
@media (min-width: 1100px) { | |
.site-header { | |
min-width: 230px; | |
min-width: 23rem; | |
width: 30%; | |
padding-left: 5%; | |
padding-top: 3rem; | |
position: fixed; | |
float: left; | |
max-width: 520px; /* <--- this should do the job :) */ |
update-deps: | |
[echo] Composer update | |
[exec] Warning: This development build of composer is over 30 days old. It is recommended to update it by running "/usr/local/bin/composer self-update" to get the latest version. | |
[exec] Loading composer repositories with package information | |
[exec] Updating dependencies (including require-dev) | |
[exec] e) | |
[exec] { | |
[exec] $this->addReason($rule->getId(), array( | |
[exec] 'rule' => $rule, | |
[exec] 'job' => $rule->getJob(), |
<?php | |
// gumf at the top | |
class Foo extends AbstractActionController | |
{ | |
public function someCommonLogic() | |
{ | |
if ($something) { | |
return $this->redirect()->toRoute('someRoute'); | |
} |
I hereby claim:
To claim this, I am signing this object:
275ms (opcache + stat off + super) | |
280ms (opcache + stat off) | |
280ms (opcache + stat on + super) | |
295ms (opcache + stat on) | |
380ms (super) | |
410ms (nothing) |
<?php | |
namespace My\Form; | |
use Zend\Form\Form as ZendForm; | |
use Zend\InputFilter\InputFilterProviderInterface; | |
use Zend\ServiceManager\ServiceLocatorAwareInterface; | |
use Zend\ServiceManager\ServiceLocatorAwareTrait; | |
abstract class AbstractForm |