I hereby claim:
- I am kerihenare on github.
- I am kerihenare (https://keybase.io/kerihenare) on keybase.
- I have a public key whose fingerprint is 8A6C 28F6 7328 234D E2F2 D865 F50F B84C 1083 8D75
To claim this, I am signing this object:
| export default const Wrapper = props => props.children; |
| version: '3' | |
| services: | |
| wordpress: | |
| depends_on: | |
| - db | |
| image: wordpress:latest | |
| volumes: | |
| - $PWD:/var/www/html/wp-content |
| version: '2' | |
| services: | |
| web: | |
| image: php:apache | |
| restart: unless-stopped | |
| volumes: | |
| - $PWD:/var/www | |
| ports: | |
| - 80:80 |
| /** | |
| * Reference "this" | |
| */ | |
| var self = this; | |
| self.someOtherMethod = function (result) { | |
| var self = this; | |
| return new Promise(function (resolve, reject) { | |
| self.callbackMethod(result, function (error, result) { |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * | |
| * @param string $moreLinkText | |
| * @param integer $stripteaser | |
| */ | |
| function the_content_readmore($moreLinkText = null, $stripteaser = 0) | |
| { | |
| $content = apply_filters('the_content', get_the_content($moreLinkText, $stripteaser)); |
| <?php | |
| namespace Symfony\Tests\Component\HttpFoundation; | |
| use Symfony\Component\HttpFoundation\Request; | |
| class SplitHttpAcceptHeaderTest extends \PHPUnit_Framework_TestCase | |
| { | |
| public function testHttpAcceptHeaders() |
| var arrayToString = function(items) { | |
| var lastItem = items.pop(); | |
| return items.join(', ') + ' and ' + lastItem; | |
| }; |
| var tests = [ | |
| '*.local', | |
| '*.local.nz', | |
| '*.local.au', | |
| '*.fws' | |
| ], | |
| direct = 'DIRECT', | |
| proxy = 'PROXY webserver:80'; | |
| var FindProxyForURL = function (url, host) { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Example</title> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
| <script> | |
| // http://www.selfcontained.us/2009/09/16/getting-keycode-values-in-javascript/ | |
| keycode = { | |
| getKeyCode : function(e) { |