
the-internetz=money



You want the truth, right? All right. I got up at 12, yah, 12. My masseuse brought me nuggets, of course. I'm serious, though, he brought me nuggets. I didn't really want to go to the cafeteria so he brought me nuggets. And I came straight to the track, and my masseuse again brought me more nuggets. I just had two, though, because my coach was saying I shouldn't eat so much nuggets before the race.


And the earth gave birth to pipes

establishedDate = Established Date
John_hancock = John Hancock
etc
function formatKey($str) {
$str = str_replace("_", " ", $str);
$new_str = array();
foreach (str_split($str) as $c => $a) {
if ($c != 0 && strtoupper($a)==$a) {
$new_str[] = " ";
}
$new_str[] = $a;
}
return ucwords(implode("", $new_str));
}