<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 

	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" 

	xmlns:content="http://purl.org/rss/1.0/modules/content/"

	xmlns:wfw="http://wellformedweb.org/CommentAPI/">
   <channel>
      <title>simplexml_load_file | Croncast - From Cool to Cul De Sac</title>
	  <itunes:author>Kris and Betsy Smith</itunes:author>
      <link>http://www.croncast.com</link>
      <description>This is the keyword feed for simplexml_load_file. Once cool, Kris and Betsy are now living on a cul de sac and breeding. Betsy really should be on the road making mad cash but that would interfere with breastfeeding. Podcasting for Download every M-W-F by 3:00 P.M. CST.</description>
      <language>en-us</language>
	  <copyright>Palegroove Studios 2004-2008</copyright>
	  		<itunes:explicit>No</itunes:explicit>

		<itunes:keywords>Croncast, Kris, Betsy, Comedy, Parenting, Funny, Palegroove, Croncast, eBay, Goodwill</itunes:keywords>

		<itunes:subtitle>This is the keyword feed for simplexml_load_file. Once cool, Kris and Betsy are now living on a cul de sac and breeding. Betsy really should be on the road making mad cash but that would interfere with breastfeeding. Podcasting for Download every M-W-F by 3:00 P.M. CST.</itunes:subtitle>

 	<itunes:summary>This is the keyword feed for simplexml_load_file. Once cool, Kris and Betsy are now living on a cul de sac and breeding. Betsy really should be on the road making mad cash but that would interfere with breastfeeding. Podcasting for Download every M-W-F by 3:00 P.M. CST.</itunes:summary>

 	<image> 

		<url>http://www.croncast.com/images/croncast_itunes.jpg</url>
 		<title>simplexml_load_file | Croncast - From Cool to Cul De Sac</title>
 		<link>http://www.croncast.com</link>
 		<description>This is the keyword feed for simplexml_load_file. Once cool, Kris and Betsy are now living on a cul de sac and breeding. Betsy really should be on the road making mad cash but that would interfere with breastfeeding. Podcasting for Download every M-W-F by 3:00 P.M. CST.</description>
 	</image> 	
	<itunes:image href="http://www.croncast.com/images/croncast_itunes.jpg" />
<itunes:category text="Comedy"/>
<itunes:category text="Society &amp; Culture">
</itunes:category>
<itunes:owner> 
			<itunes:name>Croncast - Kris and Betsy Smith</itunes:name>
	        <itunes:email>info@palegroove.com</itunes:email>
 </itunes:owner>
      <docs>http://www.croncast.com</docs>
      <generator>Palegroove</generator>
      <item>
         <title>Make the Flickr PHP API not so ugly and easier to use</title>
         <link>http://www.croncast.com/rssk/1329/Make-the-Flickr-PHP-API-not-so-ugly-and-easier-to-use_photo-frame_digital.php</link>
		 <category>Blog</category>
			<description><![CDATA[For months I have been bypassing the <a href=http://flickr.com/services/api/">Flickr API</a> and using RSS 2.0 feeds instead. The reason? They come with all the photo stream data that you need in a nice little package. Things like title, description, tags, date taken, date uploaded, image dimensions, etc.
<br><br>
What is missing from the RSS feed the ability to load comments with a photo and choose how many items are returned in the feed. The API, however, will let you load hundreds of images and load comments for each photo.
<br><br>
There is a catch though. The API is broken up into about a 75 different calls. Not one single call to the server can match the data that is returned in the RSS feed. To get the same data I need to make approximately 8 different calls to Flickr. Not good.
<br><br>
What use is the API?
<br><br>
It gives me the ability to create a historical back up of my photos in their most basic form with urls, date, descriptions (with html stripped) and tags. It also gives someone building an application a rich data source to do some of the things that Flickr isn't already doing - the purpose of an API.
<br><br>
After working with it for a few hours I became frustrated. PHP is my poison of choice and the PHP examples that Flickr uses all return serialized data. Which is great and easy to work with if you already know what the XML namespaces are but without them it is hard to access the data. And in some cases impossible without printing out the serialized array and looking at it because the returned serialized array's keys don't match the XML namespaces. Not to mention children are buried in deeper arrays that aren't as easy to access as say $title = $item->photo['title'].
<br><br>
Here's how I cleaned up the mess. If you are PHP guru then I am sure you could get this down to one script.
<br><br>
An 'include' script, sort of. View this script by URL on your server to see all name spaces:
<br><br>
1) Create a new PHP file declaring xml as file type - header("Content-Type: text/xml")<br>
2) Use the url that <a href="http://flickr.com/services/api/">Flickr supplies to return content in REST format</a><br>
3) Comment out the line for serialization<br>
4) Use PHP's file_get_contents() function<br>
5) echo the returned XML
<br><br>
<textarea cols="50" rows="7">
<?php
header("Content-Type: text/xml");
# call the API 
$flickr_url =  file_get_contents("http://api.flickr.com/services/rest/?api_key=YOUR-API-KEY&method=DATA-TO-RETURN);
echo $flickr_url;
?>
</textarea>
<br><br>
A loader script:
<br><br>
1) Create a loader script<br>
2) Call the include script - $resp = simplexml_load_file("YOUR INCLUDE SCRIPT URL");<br>
3) Get the data out by name space, the same ones that Flickr documents
<br><br>
<textarea cols="50" rows="10">
<?php
$resp = simplexml_load_file("INCLUDE-SCRIPT-URL");
// Check to see if the response was loaded, else print an error
if ($resp) {
	$results = '';  
    // If the response was loaded, parse it   
    foreach($resp->photo as $photo) {
	$title = $photo->title;
	echo $title;	
	}
}
?>
</textarea>
<br><br>
To view the name spaces that you will want to access simply open up the include script  by url in your browser.
<br><br>For now I will stick with the RSS 2.0 feeds for blog submissions but once I have some free time I will be using the API code above to create a cached archive for my own safe keeping.<br><br>Tags: <a href="http://www.croncast.com/key/photo frame">photo frame</a> <a href="http://www.technorati.com/tag/photo frame"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/photo frame.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/digital">digital</a> <a href="http://www.technorati.com/tag/digital"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/digital.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Flickr API">Flickr API</a> <a href="http://www.technorati.com/tag/Flickr API"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Flickr API.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/PHP">PHP</a> <a href="http://www.technorati.com/tag/PHP"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/PHP.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/simple">simple</a> <a href="http://www.technorati.com/tag/simple"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/simple.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/simplexml_load_file">simplexml_load_file</a> <a href="http://www.technorati.com/tag/simplexml_load_file"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/simplexml_load_file.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[For months I have been bypassing the <a href=http://flickr.com/services/api/">Flickr API</a> and using RSS 2.0 feeds instead. The reason? They come with all the photo stream data that you need in a nice little package. Things like title, description, tags, date taken, date uploaded, image dimensions, etc.
<br><br>
What is missing from the RSS feed the ability to load comments with a photo and choose how many items are returned in the feed. The API, however, will let you load hundreds of images and load comments for each photo.
<br><br>
There is a catch though. The API is broken up into about a 75 different calls. Not one single call to the server can match the data that is returned in the RSS feed. To get the same data I need to make approximately 8 different calls to Flickr. Not good.
<br><br>
What use is the API?
<br><br>
It gives me the ability to create a historical back up of my photos in their most basic form with urls, date, descriptions (with html stripped) and tags. It also gives someone building an application a rich data source to do some of the things that Flickr isn't already doing - the purpose of an API.
<br><br>
After working with it for a few hours I became frustrated. PHP is my poison of choice and the PHP examples that Flickr uses all return serialized data. Which is great and easy to work with if you already know what the XML namespaces are but without them it is hard to access the data. And in some cases impossible without printing out the serialized array and looking at it because the returned serialized array's keys don't match the XML namespaces. Not to mention children are buried in deeper arrays that aren't as easy to access as say $title = $item->photo['title'].
<br><br>
Here's how I cleaned up the mess. If you are PHP guru then I am sure you could get this down to one script.
<br><br>
An 'include' script, sort of. View this script by URL on your server to see all name spaces:
<br><br>
1) Create a new PHP file declaring xml as file type - header("Content-Type: text/xml")<br>
2) Use the url that <a href="http://flickr.com/services/api/">Flickr supplies to return content in REST format</a><br>
3) Comment out the line for serialization<br>
4) Use PHP's file_get_contents() function<br>
5) echo the returned XML
<br><br>
<textarea cols="50" rows="7">
<?php
header("Content-Type: text/xml");
# call the API 
$flickr_url =  file_get_contents("http://api.flickr.com/services/rest/?api_key=YOUR-API-KEY&method=DATA-TO-RETURN);
echo $flickr_url;
?>
</textarea>
<br><br>
A loader script:
<br><br>
1) Create a loader script<br>
2) Call the include script - $resp = simplexml_load_file("YOUR INCLUDE SCRIPT URL");<br>
3) Get the data out by name space, the same ones that Flickr documents
<br><br>
<textarea cols="50" rows="10">
<?php
$resp = simplexml_load_file("INCLUDE-SCRIPT-URL");
// Check to see if the response was loaded, else print an error
if ($resp) {
	$results = '';  
    // If the response was loaded, parse it   
    foreach($resp->photo as $photo) {
	$title = $photo->title;
	echo $title;	
	}
}
?>
</textarea>
<br><br>
To view the name spaces that you will want to access simply open up the include script  by url in your browser.
<br><br>For now I will stick with the RSS 2.0 feeds for blog submissions but once I have some free time I will be using the API code above to create a cached archive for my own safe keeping.<br><br>Tags: <a href="http://www.croncast.com/key/photo frame">photo frame</a> <a href="http://www.technorati.com/tag/photo frame"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/photo frame.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/digital">digital</a> <a href="http://www.technorati.com/tag/digital"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/digital.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Flickr API">Flickr API</a> <a href="http://www.technorati.com/tag/Flickr API"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Flickr API.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/PHP">PHP</a> <a href="http://www.technorati.com/tag/PHP"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/PHP.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/simple">simple</a> <a href="http://www.technorati.com/tag/simple"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/simple.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/simplexml_load_file">simplexml_load_file</a> <a href="http://www.technorati.com/tag/simplexml_load_file"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/simplexml_load_file.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 29 Jan 2008 10:11:15 -0600</pubDate>         <guid isPermaLink="false">tag:croncast.com,1329</guid>

			<itunes:subtitle/>
				<itunes:summary>For months I have been bypassing the title;
	echo $title;	
	}
}
?&gt;


To view the name spaces that you will want to access simply open up the include script  by url in your browser.
For now I will stick with the RSS 2.0 feeds for blog submissions but once I have some free time I will be using the API code above to create a cached archive</itunes:summary>
				<itunes:explicit>no</itunes:explicit>
				<itunes:keywords>photo frame, digital, Flickr API, PHP, simple</itunes:keywords> 
      </item>
      <item>
         <title>Saturday code goodness means flickr, flafoo and twitter</title>
         <link>http://www.croncast.com/rssk/1056/Saturday-code-goodness-means-flickr-flafoo-and-twitter_TwitterGram_Dave-Winer.php</link>
		 <category>Blog</category>
			<description><![CDATA[So far I've got a new flickr + twitter script done and need to move on to flafoo while I have some daylight to burn.<br><br>The flickr + twitter code is why all of the pics have been showing up as posts and why all the people following me on twitter got blasted with 20 messages at once . . . sorry for that. I promptly setup a twitter account to test with.<br><br>For the last two months I have been sending photos from my phone to flickr and having them inserted as blog posts. Which has been pretty awesome and a ton of fun. But what I was missing was the twitter connection. Not anymore.<br><br>Now, thanks to <a href="http://www.scripting.com/stories/2007/10/04/integratingMultipleAppsAmp.html">this post</a> from Dave Winer and code that I had already written for <a href="http://tweetair.com">@tweetair</a> (coming very soon, I swear), <a href="http://www.flafoo.com">flafoo</a> and <a href="http://www.croncast.com">Croncast</a>, it took about ten minutes to get it up and running.<br><br>Dave's post was important because it turned the light for me. The "Ahaa" moment was when I realized I was already parsing my flickr feed every two minutes anyway looking for photos that I had marked to be blog posts. All I needed to do was differentiate what was to be a blog post from that of a twitter update.<br><br>It took about two seconds. <br><br>I make blog posts from flickr by starting a description of a photo with an asterisk, like so "*", and adding my content after that. For twitter I use "^" to tell the script to send a tweet. If I use them together "*^" then I get both.<br><br>Dave's setup with <a href="http://www.twittergram.com/flickrtotwitter">TwitterGram</a> is much cleaner, using only the tag portion to note that a flickr upload is meant to be a tweet, simple and clean. I  highly recommend it to anyone who wants to tweet their flickr photos with ease. My code is custom and considerably more messy for a guy that wants to have control over blog posts, blog posts and tweets or just tweets by uploading photos to flickr.<br><br>API's + the RSS 2.0 + curl + simplexml_load_file = ridiculously low threshold for a mediocre coder to join the integration party.<br><br>Speaking of API's, I will be updating <a href="http://flafoo.com">flafoo</a> today and possibly tomorrow with new categories that will henceforth be known as "flafoogeries" and the ability for anyone to add a "flafoogery" from the site.<br><br>Tags: <a href="http://www.croncast.com/key/TwitterGram">TwitterGram</a> <a href="http://www.technorati.com/tag/TwitterGram"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/TwitterGram.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Dave Winer">Dave Winer</a> <a href="http://www.technorati.com/tag/Dave Winer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Dave Winer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/twitter">twitter</a> <a href="http://www.technorati.com/tag/twitter"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/twitter.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/flickr">flickr</a> <a href="http://www.technorati.com/tag/flickr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/flickr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/flafoo">flafoo</a> <a href="http://www.technorati.com/tag/flafoo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/flafoo.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[So far I've got a new flickr + twitter script done and need to move on to flafoo while I have some daylight to burn.<br><br>The flickr + twitter code is why all of the pics have been showing up as posts and why all the people following me on twitter got blasted with 20 messages at once . . . sorry for that. I promptly setup a twitter account to test with.<br><br>For the last two months I have been sending photos from my phone to flickr and having them inserted as blog posts. Which has been pretty awesome and a ton of fun. But what I was missing was the twitter connection. Not anymore.<br><br>Now, thanks to <a href="http://www.scripting.com/stories/2007/10/04/integratingMultipleAppsAmp.html">this post</a> from Dave Winer and code that I had already written for <a href="http://tweetair.com">@tweetair</a> (coming very soon, I swear), <a href="http://www.flafoo.com">flafoo</a> and <a href="http://www.croncast.com">Croncast</a>, it took about ten minutes to get it up and running.<br><br>Dave's post was important because it turned the light for me. The "Ahaa" moment was when I realized I was already parsing my flickr feed every two minutes anyway looking for photos that I had marked to be blog posts. All I needed to do was differentiate what was to be a blog post from that of a twitter update.<br><br>It took about two seconds. <br><br>I make blog posts from flickr by starting a description of a photo with an asterisk, like so "*", and adding my content after that. For twitter I use "^" to tell the script to send a tweet. If I use them together "*^" then I get both.<br><br>Dave's setup with <a href="http://www.twittergram.com/flickrtotwitter">TwitterGram</a> is much cleaner, using only the tag portion to note that a flickr upload is meant to be a tweet, simple and clean. I  highly recommend it to anyone who wants to tweet their flickr photos with ease. My code is custom and considerably more messy for a guy that wants to have control over blog posts, blog posts and tweets or just tweets by uploading photos to flickr.<br><br>API's + the RSS 2.0 + curl + simplexml_load_file = ridiculously low threshold for a mediocre coder to join the integration party.<br><br>Speaking of API's, I will be updating <a href="http://flafoo.com">flafoo</a> today and possibly tomorrow with new categories that will henceforth be known as "flafoogeries" and the ability for anyone to add a "flafoogery" from the site.<br><br>Tags: <a href="http://www.croncast.com/key/TwitterGram">TwitterGram</a> <a href="http://www.technorati.com/tag/TwitterGram"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/TwitterGram.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Dave Winer">Dave Winer</a> <a href="http://www.technorati.com/tag/Dave Winer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Dave Winer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/twitter">twitter</a> <a href="http://www.technorati.com/tag/twitter"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/twitter.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/flickr">flickr</a> <a href="http://www.technorati.com/tag/flickr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/flickr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/flafoo">flafoo</a> <a href="http://www.technorati.com/tag/flafoo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/flafoo.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Sat, 13 Oct 2007 16:31:21 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,1056</guid>

			<itunes:subtitle/>
				<itunes:summary>So far I&#039;ve got a new flickr + twitter script done and need to move on to flafoo while I have some daylight to burn.The flickr + twitter code is why all of the pics have been showing up as posts and why all the people following me on twitter got blasted with 20 messages at once . . . sorry for that. I promptly setup a twitter account to test</itunes:summary>
				<itunes:explicit>no</itunes:explicit>
				<itunes:keywords>TwitterGram, Dave Winer, twitter, flickr, flafoo</itunes:keywords> 
      </item>
      <item>
         <title>What am I reading?</title>
         <link>http://www.croncast.com/rssk/823/What-am-I-reading_simplexml_load_file_Google-Reader-shared-feed.php</link>
		 <category>Blog</category>
			<description><![CDATA[New time killer for you as you can <a href="http://www.croncast.com/c4_reading.php">see what and who I am reading</a> in Google Reader during the day. <br><br>The link "<a href="http://www.croncast.com/c4_reading.php">kris is reading</a>" in the navigation will take you to the little nirvana that displays just what the hell I read during the day.<br><br>This new page is brought to you by my new best friends, simplexml_load_file and a feeling that I am falling behind.<br><br>Tags: <a href="http://www.croncast.com/key/simplexml_load_file">simplexml_load_file</a> <a href="http://www.technorati.com/tag/simplexml_load_file"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/simplexml_load_file.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Google Reader shared feed">Google Reader shared feed</a> <a href="http://www.technorati.com/tag/Google Reader shared feed"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Google Reader shared feed.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/kris is reading">kris is reading</a> <a href="http://www.technorati.com/tag/kris is reading"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/kris is reading.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Kris Smith">Kris Smith</a> <a href="http://www.technorati.com/tag/Kris Smith"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Kris Smith.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[New time killer for you as you can <a href="http://www.croncast.com/c4_reading.php">see what and who I am reading</a> in Google Reader during the day. <br><br>The link "<a href="http://www.croncast.com/c4_reading.php">kris is reading</a>" in the navigation will take you to the little nirvana that displays just what the hell I read during the day.<br><br>This new page is brought to you by my new best friends, simplexml_load_file and a feeling that I am falling behind.<br><br>Tags: <a href="http://www.croncast.com/key/simplexml_load_file">simplexml_load_file</a> <a href="http://www.technorati.com/tag/simplexml_load_file"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/simplexml_load_file.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Google Reader shared feed">Google Reader shared feed</a> <a href="http://www.technorati.com/tag/Google Reader shared feed"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Google Reader shared feed.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/kris is reading">kris is reading</a> <a href="http://www.technorati.com/tag/kris is reading"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/kris is reading.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/Kris Smith">Kris Smith</a> <a href="http://www.technorati.com/tag/Kris Smith"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/Kris Smith.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 05 Jul 2007 22:24:10 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,823</guid>

			<itunes:subtitle/>
				<itunes:summary>New time killer for you as you can see what and who I am reading in Google Reader during the day. The link &quot;kris is reading&quot; in the navigation will take you to the little nirvana that displays just what the hell I read during the day.This new page is brought to you by my new best friends, simplexml_load_file and a feeling that I am</itunes:summary>
				<itunes:explicit>no</itunes:explicit>
				<itunes:keywords>simplexml_load_file, Google Reader shared feed, kris is reading, Kris Smith, </itunes:keywords> 
      </item>
      <item>
         <title>Is your system working? I'll tell you for $75</title>
         <link>http://www.croncast.com/rssk/806/Is-your-system-working-Ill-tell-you-for-$75_eBay-affiliate_eBay-developer.php</link>
		 <category>Blog</category>
			<description><![CDATA[For $75 and one hours worth of time I can ask eBay if their developer XML API service is broken. It has been down now for over 6 hours and not a peep in any message board, service update or email regarding it's status. However, if I want to pay the money I could ask a live human being for a yes or no answer. I need a service like that!!!!<br><br>Though I can say from the developer perspective errors like this are really helpful:<br><br>
1) Http/1.1 Service Unavailable<br>
2) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.1 503 Service Unavailable<br><br>

Are these errors account related? Is the service really down? Oy vey.<br><br>Any of you XML wizards have an idea of what I am encountering?<br><br>Tags: <a href="http://www.croncast.com/key/eBay affiliate">eBay affiliate</a> <a href="http://www.technorati.com/tag/eBay affiliate"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay affiliate.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/eBay developer">eBay developer</a> <a href="http://www.technorati.com/tag/eBay developer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay developer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/eBay API">eBay API</a> <a href="http://www.technorati.com/tag/eBay API"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay API.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/eBay XML developer">eBay XML developer</a> <a href="http://www.technorati.com/tag/eBay XML developer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay XML developer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[For $75 and one hours worth of time I can ask eBay if their developer XML API service is broken. It has been down now for over 6 hours and not a peep in any message board, service update or email regarding it's status. However, if I want to pay the money I could ask a live human being for a yes or no answer. I need a service like that!!!!<br><br>Though I can say from the developer perspective errors like this are really helpful:<br><br>
1) Http/1.1 Service Unavailable<br>
2) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.1 503 Service Unavailable<br><br>

Are these errors account related? Is the service really down? Oy vey.<br><br>Any of you XML wizards have an idea of what I am encountering?<br><br>Tags: <a href="http://www.croncast.com/key/eBay affiliate">eBay affiliate</a> <a href="http://www.technorati.com/tag/eBay affiliate"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay affiliate.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/eBay developer">eBay developer</a> <a href="http://www.technorati.com/tag/eBay developer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay developer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/eBay API">eBay API</a> <a href="http://www.technorati.com/tag/eBay API"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay API.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/key/eBay XML developer">eBay XML developer</a> <a href="http://www.technorati.com/tag/eBay XML developer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrss/eBay XML developer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Fri, 22 Jun 2007 11:19:12 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,806</guid>

			<itunes:subtitle/>
				<itunes:summary>For $75 and one hours worth of time I can ask eBay if their developer XML API service is broken. It has been down now for over 6 hours and not a peep in any message board, service update or email regarding it&#039;s status. However, if I want to pay the money I could ask a live human being for a yes or no answer. I need a service like</itunes:summary>
				<itunes:explicit>no</itunes:explicit>
				<itunes:keywords>eBay affiliate, eBay developer, eBay API, eBay XML developer, </itunes:keywords> 
      </item>
   </channel>
</rss>