Keybase proof
I hereby claim:
- I am mattsches on github.
- I am mattsches (https://keybase.io/mattsches) on keybase.
- I have a public key whose fingerprint is F4D4 C888 055A 44C3 A5C3 33AB A8E6 AF25 C59F 4A27
To claim this, I am signing this object:
<?php | |
if (extension_loaded('xdebug')) { | |
echo "WARNING: xdebug is enabled\n"; | |
} | |
function _count() | |
{ | |
$array = array(1, 5, 8, 'Michael', 5, 4, 9, 'Martin', 18, 12, 'Michael', 4, 12); |
/* ... */ | |
public function buildForm(FormBuilder $builder, array $options) | |
{ | |
$builder->addEventListener(FormEvents::PRE_SET_DATA, | |
function (DataEvent $event) use ($builder) | |
{ | |
$form = $event->getForm(); | |
/* @var \Sperrobjekt\Sf2ttBundle\Entity\Category $data */ | |
$data = $event->getData(); |
<?php | |
/** | |
* Converts Roman numbers to integers | |
*/ | |
class Roman | |
{ | |
/** | |
* @var array | |
*/ |
<?php | |
use Zend\Db\Sql\Sql; | |
use Zend\Db\Sql\Select; | |
use Zend\Db\Adapter\Adapter; | |
$result = null; | |
/** | |
* Tells the DB Layer to start a DB transaction. | |
* | |
* @access public |
vpncfg { | |
connections { | |
enabled = yes; | |
conn_type = conntype_user; | |
name = "MEINVPN"; | |
always_renew = no; | |
reject_not_encrypted = no; | |
dont_filter_netbios = yes; | |
localip = 0.0.0.0; | |
local_virtualip = 0.0.0.0; |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ | |
"function":"zend_version", | |
"frequency":151465 | |
}, | |
{ | |
"function":"func_num_args", | |
"frequency":779391 | |
}, | |
{ |
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>OwnCloud Calendar+ CORS Test</title> | |
<script type="text/javascript"> | |
var calendarICS = "###CALENDARICSURL###", | |
request = new XMLHttpRequest(); | |
request.open('GET', calendarICS, true); | |
request.onload = function() { | |
if (request.status >= 200 && request.status < 400) { |
data/config.php | |
php/define.php | |
php/autoload.php | |
php/modules/Album.php | |
php/modules/Database.php | |
php/modules/Import.php | |
php/modules/Log.php | |
php/modules/Module.php | |
php/modules/Photo.php | |
php/modules/Plugins.php |
<?php | |
namespace AppBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* This annotation marks the class as managed entity: | |
* | |
* @ORM\Entity |