Joined the Mailout Interactive team!

Over the Christmas holidays I was asked if I would be interested in being interviewed for a web developer position at a local company called Mailout Interactive. Most noted for their email communication tools.
It was one of those opportunities that I was not expecting, I had seen the job posting and figured I was under qualified. Lucky for me my personal contacts at MI thought differently about me.
I am just about through week three here and have had a great time. It’s nice to be appreciated and have a good team of people behind me.
I am really glad to have made the move professionally and personally.
Regular Expression for URLs using ereg_replace
Ever needed a Regular Expression to parse URLs in a body of text. The beauty with this expression is its flexibility, it will handle a http or https url with or without www and it’s fine with tinyurls.
// $message contains a body of text with non html URLs
$text = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", "<a href=\"\\0\">\\0</a>", $message);
$subject will be the body of text containing flat text urls. $text will now contain our information.
// Output New formatted content with links. echo $text;
Now our content is parsed with URLs.
Done!
Appcelerator Acquires Aptana

Well Aptana 3 has been in beta for a long time with little happening in the past 6 months or more. Today Appcelerator has acquired Aptana and expects to have something out by Q1 of this year.
What does this mean?
Appcelerator®, the leading platform for rapidly developing native mobile, desktop, and tablet applications using Web technologies announced today that it has acquired Aptana®, the leading integrated development environment (IDE) for building web applications. The acquisition sets the stage for a new standard in next-generation application development by providing Web developers with a best-in-class, enterprise-grade development platform to rapidly build rich native applications that integrate easily with the cloud. The acquisition also brings together two of the world’s largest web development communities, Appcelerator’s and Aptana’s, to create a huge application development base of over 1,500,000 application developers.
HTML5 To Save The Day!

HTML5 takes one more step towards completion with a snazzy new logo, Read more at the W3 Site.
PHP’s Memory Usage
This is a handy little Snippet that goes well with PHP Microtime. Not only are we concerned with our scripts execution time but we also want to make sure we are not using an exorbitant amount of memory in the process.
At the top of your script lets place the code that will start PHP’s Micro time.
$time_start = microtime(true);
At the bottom of your page, just before the “