January 1, 2010
January 2, 2010
January 3, 2010
Back to school. Looks like it's going to be a full ferry (@ Tsawwassen Ferry Terminal) http://4sq.com/5kpDw0
January 4, 2010
Changed whoisnick.com from sweetcron ( http://bit.ly/8CnYKx ) to storyltr ( http://bit.ly/7qCBn2 ). Is this a good switch?
RT @Riesetheseries: The conclusion of Chapter One, Episode 5 - DAWN - Online Now! http://bit.ly/90IfMp Spread the word!
@RobYnG3 I thought when you said "stretching your ears" it was slang like "long in the tooth"..but no, you mean stretching... ow is right.
January 5, 2010
Google is animating everything this year. I saw the apple first, and now click "I'm feeling lucky" without a search http://bit.ly/5Qn3cu
When I looked at Storytlr, the key was that I could make my own plugins. Which, I've done with my vi.sualize.us and dailybooth add on's (I'll share them later). But, I had to make some changes.
First, storytlr uses the zend framework, something that's still a little foreign to me. So I needed to add a library that I could work with.
Enter SimplePie
It's relatively easy to impliment. But there were a couple hiccups along the way.
- Download SimplePie 1.1.3
note: don't install 1.2 because for some reason, it will end up repeating the same posts over and over and over. - Rename simplepie.inc to SimplePie.php
note: some servers are case sensitive so make sure of naming - Drop SimplePie.php into ./protected/library
- Edit ./protected/application/Bootstrap.php
113: error_reporting(E_ALL & ~E_STRICT);
note: if you don't then your log file will be bombarded with php strict errors that are just clutter - Edit ./protected/config/config.ini
31: debug = 0
note: your could keep debug on (debug = 1) but then others will see all the little errors on your site when something goes wrong.
Now SimplePie is a free for all to use
private function loadFeed($url) {
$feed = new SimplePie();
$feed->set_feed_url($url);
$feed->enable_cache(false);
$feed->init();
$feed->handle_content_type();
return $feed;
}
January 6, 2010
Woohoo! RT @mattyouens: If I win $40 mill in this week's lotto, I will buy every #RRUBAPC who RTs this an #iTablet.
January 7, 2010
January 9, 2010
January 11, 2010
January 12, 2010
January 13, 2010


