I hereby claim:
- I am jbenoit2011 on github.
- I am jbenoit (https://keybase.io/jbenoit) on keybase.
- I have a public key whose fingerprint is CB2C 319D D85D E2DF FFB6 4AD5 7A12 A623 009B 7B83
To claim this, I am signing this object:
| in DiactorosFactory.php line 36 | |
| at DiactorosFactory->__construct() in appDevDebugProjectContainer.php line 5789 | |
| at appDevDebugProjectContainer->getSensioFrameworkExtra_Psr7_Converter_ServerRequestService() in bootstrap.php.cache line 2187 | |
| at Container->get('sensio_framework_extra.psr7.converter.server_request') in appDevDebugProjectContainer.php line 5773 | |
| at appDevDebugProjectContainer->getSensioFrameworkExtra_Converter_ManagerService() in bootstrap.php.cache line 2187 | |
| at Container->get('sensio_framework_extra.converter.manager') in appDevDebugProjectContainer.php line 5755 | |
| at appDevDebugProjectContainer->getSensioFrameworkExtra_Converter_ListenerService() in bootstrap.php.cache line 2187 | |
| at Container->get('sensio_framework_extra.converter.listener') in ContainerAwareEventDispatcher.php line 183 | |
| at ContainerAwareEventDispatcher->lazyLoad('kernel.controller') in ContainerAwareEventDispatcher.php line 128 | |
| at ContainerAwareEventDispatcher->getListeners('kernel.controller') in TraceableEventDispatcher.php line 23 |
| #!/bin/bash | |
| echo "This script will switch your master with your develop. Only in your local repository." | |
| echo "Develop will be created from master, then master will be destroyed, finally a new empty master will be created" | |
| echo | |
| read -p "Press [Enter] key to start ..." | |
| git checkout master &&\ | |
| git checkout -b develop && \ # Create develop |
| var lodash = require('lodash'); | |
| function printMemUsage() { | |
| console.log(lodash.values(lodash.mapValues(process.memoryUsage(), function (v) { | |
| return (v/(Math.pow(1024, 2))).toFixed(0); | |
| })).join()); | |
| } |
| perl -i.bak -pe 's/(\$|\->)([a-z]+)_(([a-z])([a-z]+)_)*([a-z])([a-z]+)+(;|\s)/$1$2\U$4\L$5\U$6\L$7$8/g' |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Create a web friendly URL slug from a string. | |
| * | |
| * Although supported, transliteration is discouraged because | |
| * 1) most web browsers support UTF-8 characters in URLs | |
| * 2) transliteration causes a loss of information | |
| * | |
| * @author Sean Murphy <[email protected]> | |
| * @copyright Copyright 2012 Sean Murphy. All rights reserved. |