Keybase proof
I hereby claim:
- I am kenguest on github.
- I am kenguest (https://keybase.io/kenguest) on keybase.
- I have a public key whose fingerprint is 4239 391C A197 0AA3 70AC 9ED5 8A07 4D4C 3F7E E1F2
To claim this, I am signing this object:
{ | |
"basics": { | |
"name": "Ken Guest", | |
"label": "Software Developer", | |
"picture": "", | |
"email": "kguest@php.net", | |
"phone": "086 8252 141", | |
"website": "http://about.me/kenguest/", | |
"summary": "I've worked on developing leading HR solutions, e-banking software, distributed applications, network management tools and diagnostic tools, collaborating closely with my team members, project owners and managers. I'm an advocate of using the best suited tool or technology for the job - even to the extent of developing those required tools or enhancing existing Open Source tools to add the functionality required. For that reason, I have contributed significantly to phing - a PHP based build tool; to PEAR - the original repository of reusable PHP code packages. I have also contributed to best-practice oriented sites such as http://www.phptherightway.com/ and https://magentotherightway.com/.", | |
"profiles": [ |
#!/bin/bash | |
# @Revision: 0.3 | |
x=$(pwd); | |
rev=$1; | |
if [ ! -d "$x/.hg" ] ; then | |
while [ "$x" != "/" ] ; | |
do x=$(dirname "$x"); | |
test -e "$x/.hg" && break; | |
done | |
fi |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
for i in $* | |
do | |
date=`hg log -l 1 $i --template '{date|isodate}\n'` | |
if [ "$date" != "" ] ; then | |
touch -m --date="$date" $i | |
else | |
echo "$i not in hg" > /dev/stderr | |
fi | |
done |
<?php | |
/** | |
* ArrayAsAcsiiTable.php | |
* 31-Jul-2013 | |
* | |
* Ordinarily, I would suggest use of PEAR's Console_Table package, this | |
* is just an example solution for the first test suggested at | |
* http://phpixie.com/blog/test-tasks-for-php-interviews-that-developers-will-enjoy-solving/ | |
* | |
* PHP Version 5 |
// Check if certain PEAR packages of a specific version are installed. | |
// Originally posted as a comment to http://xn--9bi.net/2007/10/13/pear-list/ | |
<?php | |
require 'PEAR/Registry.php'; | |
$reg = new PEAR_Registry; | |
define("NAME", 0); | |
define("VERSION", 1); |
#!/usr/bin/php | |
<?php | |
/** | |
* twinklesync.php | |
* Synchronise twinkle's Do-Not-Disturb toggle with whichever status Skype has. | |
* 13-Apr-2011 | |
* | |
* PHP Version 5 | |
* | |
*/ |