About five weeks ago I started my new job. So far I’ve been given a opportunity to travel later in the year, get certified, and do what I feel is important on the job. Its incredible to work for a company with set values which dictate every decision made in the company. A company that is dedicated to the customer, employee, and results. It is a great feeling. It reminded me so much of the company I used to work for before Chris died. I hope things continue the way they have so far. That would be so awesome. Take for instance last week. We had an entire day dedicated to the values of the company. Events, activities, social interactions, and food all supported and paid for by the company.
Mar 28
Jan 13
Every web programmer has their own way of dealing with XSS but here is an interestingly simple way to deal with XSS attacks.
function filter_xss($oValue, $sValidCharacters = "1234567890!@%-_=+:,./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
{
for($iCounter = strspn($oValue,$sValidCharacters); $iCounter < strlen($oValue); $iCounter = strspn($oValue,$sValidCharacters))
{
$oValue[$iCounter] = '_';
}
return $oValue;
}
Dec 24
What is the world? That which you make it. What you make it, is it beautiful?
Christopher MacDougald
Dec 19
It’s interesting to see a different look on how OS X impact could change persectives on which operating system becomes common place.
LXer: Linux News says Mac OS X could destroy Microsoft

