- PHP and friends devroom (FOSDEM 2015)
- PHP & Friends @ FOSDEM 2015 (http://joind.in/)
- Wikimedia adopts Phabricator, deprecates seven infrastructure tools First hand experiences from a big free software project on a complex migration
- Video recordings 2015
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Example: Decode an Input Stream with PHP filters | |
* | |
* decode-input-stream-example.php | |
* | |
* @link https://gist.github.com/hakre/d34239bb237c50e728fd | |
* @link http://stackoverflow.com/q/25051578/367456 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Class CurlDebug | |
* | |
* drop-in class to add verbose information to curl requests and to display trouble-shooting information | |
* | |
* @author hakre <http://hakre.wordpress.com/> | |
* @link http://stackoverflow.com/a/14436877/367456 | |
*/ | |
class CurlDebug |
Moved to github.com/andreyvit/OCISL.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* DOMBLAZE II is just with XMLNS support | |
* | |
* @link http://stackoverflow.com/a/26327033/367456 | |
*/ | |
/* DOMBLAZE II XMLNS */ $doc->registerNodeClass("DOMElement", "DOMBLAZE"); | |
class DOMBLAZE extends DOMElement |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Example: SimpleXML tell apart a single element and a list of elements with a single element | |
* | |
* @link https://hakre.wordpress.com/2013/02/12/simplexml-type-cheatsheet/ | |
* @libk http://stackoverflow.com/a/14829309/367456 | |
*/ | |
$buffer = <<<XML | |
<root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Special Background Wordpress Plugin | |
* | |
* @-wp-header Plugin Name: Special Background | |
* @-wp-header Plugin URI: http://wordpress.stackexchange.com/questions/972/ | |
* @-wp-header Description: Example to show how to add a special background using exiting background admin page in core. | |
* @-wp-header Version: 0.2 | |
* @-wp-header Author: Mike Schinkel, hakre | |
* @-wp-header Author URI: http://mikeschinkel.com/custom-wordpress-plugins/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Register an Admin Page - Example | |
* | |
* NOTE: MU Plugin. | |
* | |
* @author hakre <http://hakre.wordpress.com/> | |
* @link http://wordpress.stackexchange.com/questions/1778/admin-config-screen-without-menu | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This program is free software. It comes without any warranty, to | |
* the extent permitted by applicable law. You can redistribute it | |
* and/or modify it under the terms of the Do What The Fuck You Want | |
* To Public License, Version 2, as published by Sam Hocevar. See | |
* http://sam.zoy.org/wtfpl/COPYING for more details. | |
*/ | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Theme Napkin Wordpress Plugin | |
* | |
* Safeguard unintended output generated by theme bootstrap code (functions.php). | |
* | |
* Copyright 2011 by hakre <http::/hakre.wordpress.com>, some rights reserved. | |
* | |
* This program is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU General Public License |
OlderNewer