<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JiveBay &#187; simplepie</title>
	<atom:link href="http://jivebay.com/tag/simplepie/feed/" rel="self" type="application/rss+xml" />
	<link>http://jivebay.com</link>
	<description>Web Development, Code Snippets, Technology, Reviews and Random Stuff Blog</description>
	<lastBuildDate>Thu, 29 Jul 2010 13:39:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Class Based on Date</title>
		<link>http://jivebay.com/2007/08/01/css-class-based-on-date/</link>
		<comments>http://jivebay.com/2007/08/01/css-class-based-on-date/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 00:57:22 +0000</pubDate>
		<dc:creator>blogger</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[simplepie]]></category>

		<guid isPermaLink="false">http://jivebay.com/2007/08/01/css-class-based-on-date/</guid>
		<description><![CDATA[I recently saw a tutorial on SimplePie&#8217;s site about using relative dates and I modified the function to output a CSS class rather than text. That way you can make newer stories bold, brighter, or bigger and older stories dimmed out or smaller. Use your imagination with CSS.  
Here is the function

//CREATE CSS BASED [...]]]></description>
			<content:encoded><![CDATA[<p>I recently saw a <a href="http://simplepie.org/wiki/tutorial/use_relative_dates">tutorial on SimplePie&#8217;s site about using relative dates</a> and I modified the function to output a CSS class rather than text. That way you can make newer stories bold, brighter, or bigger and older stories dimmed out or smaller. Use your imagination with CSS. <img src='http://jivebay.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Here is the function</strong><br />
<code><br />
//CREATE CSS BASED ON DATE<br />
function create_age_css_class($date_sent)<br />
{<br />
	/**<br />
	$date_sent should be in the following format: YYYYMMDDHHMMSS<br />
	Based on doRelativeDate() By Garrett Murray, http://graveyard.maniacalrage.net/etc/relative/<br />
	**/<br />
	$in_seconds = strtotime(substr($date_sent,0,8).&#039; &#039;.<br />
							substr($date_sent,8,2).&#039;:&#039;.<br />
							substr($date_sent,10,2).&#039;:&#039;.<br />
							substr($date_sent,12,2));<br />
	$diff = time()-$in_seconds;<br />
	if ($diff &lt; 86400)<br />
		$css_class = &#039;age_today&#039;;<br />
	else if ($diff &lt; 604800)<br />
		$css_class = &#039;age_days&#039;;<br />
	else if ($diff &lt; 1209600)<br />
		$css_class = &#039;age_week&#039;;<br />
	else if ($diff &lt; 2630880)<br />
		$css_class = &#039;age_weeks&#039;;<br />
	else<br />
		$css_class = &#039;age_month&#039;;<br />
	return $css_class;<br />
}<br />
</code></p>
<p><strong>Here is how I call it</strong><br />
<code><br />
$data .= &#039;&lt;li&gt;&lt;a href=&quot;&#039;. $item-&gt;get_permalink();<br />
//SET CLASS BASED ON DATE/AGE<br />
$data .= &#039; class=&quot;&#039; . create_age_css_class($item-&gt;get_date(&#039;YmdHis&#039;)) . &#039;&quot;&#039;;<br />
$data .= &#039;&gt;&#039;;<br />
</code></p>
<p>You don&#8217;t have to use <a href="http://simplepie.org">SimplePie</a> for this function, but it&#8217;s what inspired me to modify it.</p>
<p>Now for an screenshot<br />
<img src="http://jivebay.com/wp-content/uploads/css_classbased_date.png" alt="" title="css_classbased_date" width="451" height="158" class="alignnone size-full wp-image-346" /></p>
<p>Here is the HTML I used for that<br />
<code><br />
&lt;ul id=&quot;type3&quot;&gt;<br />
&lt;li class=&quot;age_today&quot;&gt;Lorem ipsum dolor sit amet&lt;/li&gt;<br />
&lt;li class=&quot;age_days&quot;&gt;Etiam iaculis nulla iaculis mauris&lt;/li&gt;<br />
&lt;li class=&quot;age_week&quot;&gt;Suspendisse at odio&lt;/li&gt;<br />
&lt;li class=&quot;age_week&quot;&gt;Nullam volutpat aliquam lacus&lt;/li&gt;<br />
&lt;li class=&quot;age_weeks&quot;&gt;Nunc dapibus eros vitae mauris rutrum laoreet&lt;/li&gt;<br />
&lt;li class=&quot;age_weeks&quot;&gt;Suspendisse sed nisl&lt;/li&gt;<br />
&lt;li class=&quot;age_month&quot;&gt;Nulla scelerisque gravida neque&lt;/li&gt;<br />
&lt;li class=&quot;age_month&quot;&gt;Leo imperdiet metus, ut adipiscing nisi lacus et pede&lt;/li&gt;<br />
&lt;/ul&gt;<br />
</code></p>
<p>And here is the CSS used<br />
<code><br />
&lt;style type=&quot;text/css&quot;&gt;<br />
body {font-family:Verdana, Arial, Helvetica, sans-serif; color:#000; background-color:#fff;}<br />
ul {list-style:none;}<br />
#type3 .age_days {font-size:150%; color:#555;}<br />
#type3 .age_week {font-size:100%; color:#777;}<br />
#type3 .age_weeks {font-size:80%; color:#999;}<br />
#type3 .age_month {font-size:60%; color:#ccc;}<br />
&lt;/style&gt;<br />
</code></p>
<p><ins datetime="2008-10-07T14:47:25+00:00">Added screenshot and sample CSS</ins></p>
<img src="http://jivebay.com/?ak_action=api_record_view&id=158&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://jivebay.com/2007/08/01/css-class-based-on-date/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SimplePie and Digg&#8217;s RSS Feeds</title>
		<link>http://jivebay.com/2007/07/26/simplepie-and-diggs-rss-feeds/</link>
		<comments>http://jivebay.com/2007/07/26/simplepie-and-diggs-rss-feeds/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 03:41:33 +0000</pubDate>
		<dc:creator>blogger</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[simplepie]]></category>

		<guid isPermaLink="false">http://jivebay.com/2007/07/26/simplepie-and-diggs-rss-feeds/</guid>
		<description><![CDATA[Been playing with SimplePie some more and here is some code for dealing with Digg&#8217;s RSS feed. I included some stuff in comments that just shows how their namespaces look.

/*
&#60;digg:diggCount&#62;95&#60;/digg:diggCount&#62;
&#60;digg:submitter&#62;
	&#60;digg:username&#62;kilooneniner&#60;/digg:username&#62;
	&#60;digg:userimage&#62;http://digg.com/userimages/k/i/l/kilooneniner/medium9515.jpg&#60;/digg:userimage&#62;
&#60;/digg:submitter&#62;
&#60;digg:category&#62;Political News&#60;/digg:category&#62;
&#60;digg:commentCount&#62;9&#60;/digg:commentCount&#62;
*/
//DIGG NAMESPACES
$digg_count = $item-&#62;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;diggCount&#039;);
$digg_comments = $item-&#62;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;commentCount&#039;);
$digg_category = $item-&#62;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;category&#039;);
$digg_submitter = $item-&#62;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;submitter&#039;);
$digg_username = $digg_submitter[0][&#039;child&#039;][&#039;http://digg.com/docs/diggrss/&#039;][&#039;username&#039;];
$digg_userimage = $digg_submitter[0][&#039;child&#039;][&#039;http://digg.com/docs/diggrss/&#039;][&#039;userimage&#039;];
if (!empty($digg_count[0][&#039;data&#039;]))
	$data .= &#039;&#60;br /&#62;&#60;span class=&#34;minor&#34;&#62;&#039; . $digg_count[0][&#039;data&#039;] [...]]]></description>
			<content:encoded><![CDATA[<p>Been playing with <a href="http://simplepie.org">SimplePie</a> some more and here is some code for dealing with Digg&#8217;s RSS feed. I included some stuff in comments that just shows how their namespaces look.</p>
<p><code><br />
/*<br />
&lt;digg:diggCount&gt;95&lt;/digg:diggCount&gt;<br />
&lt;digg:submitter&gt;<br />
	&lt;digg:username&gt;kilooneniner&lt;/digg:username&gt;<br />
	&lt;digg:userimage&gt;http://digg.com/userimages/k/i/l/kilooneniner/medium9515.jpg&lt;/digg:userimage&gt;<br />
&lt;/digg:submitter&gt;<br />
&lt;digg:category&gt;Political News&lt;/digg:category&gt;<br />
&lt;digg:commentCount&gt;9&lt;/digg:commentCount&gt;<br />
*/<br />
//DIGG NAMESPACES<br />
$digg_count = $item-&gt;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;diggCount&#039;);<br />
$digg_comments = $item-&gt;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;commentCount&#039;);<br />
$digg_category = $item-&gt;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;category&#039;);<br />
$digg_submitter = $item-&gt;get_item_tags(&#039;http://digg.com/docs/diggrss/&#039;, &#039;submitter&#039;);<br />
$digg_username = $digg_submitter[0][&#039;child&#039;][&#039;http://digg.com/docs/diggrss/&#039;][&#039;username&#039;];<br />
$digg_userimage = $digg_submitter[0][&#039;child&#039;][&#039;http://digg.com/docs/diggrss/&#039;][&#039;userimage&#039;];<br />
if (!empty($digg_count[0][&#039;data&#039;]))<br />
	$data .= &#039;&lt;br /&gt;&lt;span class=&quot;minor&quot;&gt;&#039; . $digg_count[0][&#039;data&#039;] . &#039; diggs &amp;middot; &#039; . $digg_comments[0][&#039;data&#039;] . &#039; comments &amp;middot; &#039; . $digg_category[0][&#039;data&#039;] . &#039; &amp;middot; &#039; . $digg_username[0][&#039;data&#039;] . &#039; &amp;middot; &#039; . $digg_userimage[0][&#039;data&#039;] . &#039;&lt;/span&gt;&#039;;<br />
</code></p>
<p>Using something like the following helps traverse the arrays to figure out how to get the data.<br />
<code><br />
print_r($digg_submitter);//will show array to parse to get stuff<br />
</code></p>
<img src="http://jivebay.com/?ak_action=api_record_view&id=156&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://jivebay.com/2007/07/26/simplepie-and-diggs-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Yahoo Weather with SimplePie</title>
		<link>http://jivebay.com/2007/07/25/get-yahoo-weather-with-simplepie/</link>
		<comments>http://jivebay.com/2007/07/25/get-yahoo-weather-with-simplepie/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 04:29:22 +0000</pubDate>
		<dc:creator>blogger</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[simplepie]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://jivebay.com/2007/07/25/get-yahoo-weather-with-simplepie/</guid>
		<description><![CDATA[SimplePie is a new PHP library made to make parsing RSS feeds easy and fun. Yes I said fun, because its very easy and the docs are well written. RSS is more than just news, it can be images, video and podcasts. Mash up the data however you want, I&#8217;ve seen some innovative and unique [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://simplepie.org/">SimplePie</a> is a new PHP library made to make parsing RSS feeds easy and fun. Yes I said fun, because its very easy and the docs are well written. RSS is more than just news, it can be images, video and podcasts. Mash up the data however you want, I&#8217;ve seen some innovative and unique things done so far. They also offer sample code on making a site like <a href="http://popurls.com/">popurls</a>/<a href="http://www.originalsignal.com/">Original Signal</a>.</p>
<p>Figure I&#8217;d share some code I used with SimplePie and a <a href="http://weather.yahoo.com/">Yahoo Weather</a> RSS feed. I can&#8217;t post it all on the homepage as its really long. It does transform and output the data nicely (not any CSS styling but I do calculate the wind direction and some other things). Please note that Yahoo only permits you to use their Weather RSS feed on non-commercial sites.</p>
<p><span id="more-154"></span><br />
<code><br />
//location<br />
$weather_location = $feed-&gt;get_channel_tags(&#039;http://xml.weather.yahoo.com/ns/rss/1.0&#039;, &#039;location&#039;);<br />
$location_city = $weather_location[0][&#039;attribs&#039;][&#039;&#039;][&#039;city&#039;];<br />
$location_region = $weather_location[0][&#039;attribs&#039;][&#039;&#039;][&#039;region&#039;];<br />
//units<br />
$weather_units = $feed-&gt;get_channel_tags(&#039;http://xml.weather.yahoo.com/ns/rss/1.0&#039;, &#039;units&#039;);<br />
$units_temperature = $weather_units[0][&#039;attribs&#039;][&#039;&#039;][&#039;temperature&#039;];<br />
$units_distance = $weather_units[0][&#039;attribs&#039;][&#039;&#039;][&#039;distance&#039;];<br />
$units_pressure = $weather_units[0][&#039;attribs&#039;][&#039;&#039;][&#039;pressure&#039;];<br />
$units_speed = $weather_units[0][&#039;attribs&#039;][&#039;&#039;][&#039;speed&#039;];<br />
//wind<br />
$weather_wind = $feed-&gt;get_channel_tags(&#039;http://xml.weather.yahoo.com/ns/rss/1.0&#039;, &#039;wind&#039;);<br />
$wind_chill = $weather_wind[0][&#039;attribs&#039;][&#039;&#039;][&#039;chill&#039;];<br />
$wind_direction = $weather_wind[0][&#039;attribs&#039;][&#039;&#039;][&#039;direction&#039;];<br />
$wind_speed = $weather_wind[0][&#039;attribs&#039;][&#039;&#039;][&#039;speed&#039;];<br />
//atmosphere<br />
$weather_atmosphere = $feed-&gt;get_channel_tags(&#039;http://xml.weather.yahoo.com/ns/rss/1.0&#039;, &#039;atmosphere&#039;);<br />
$atmosphere_humidity = $weather_atmosphere[0][&#039;attribs&#039;][&#039;&#039;][&#039;humidity&#039;];<br />
$atmosphere_visibility = $weather_atmosphere[0][&#039;attribs&#039;][&#039;&#039;][&#039;visibility&#039;];<br />
$atmosphere_pressure = $weather_atmosphere[0][&#039;attribs&#039;][&#039;&#039;][&#039;pressure&#039;];<br />
$atmosphere_rising = $weather_atmosphere[0][&#039;attribs&#039;][&#039;&#039;][&#039;rising&#039;];<br />
//astronomy<br />
$weather_astronomy = $feed-&gt;get_channel_tags(&#039;http://xml.weather.yahoo.com/ns/rss/1.0&#039;, &#039;astronomy&#039;);<br />
$astronomy_sunrise = $weather_astronomy[0][&#039;attribs&#039;][&#039;&#039;][&#039;sunrise&#039;];<br />
$astronomy_sunset = $weather_astronomy[0][&#039;attribs&#039;][&#039;&#039;][&#039;sunset&#039;];<br />
//condition<br />
$weather_condition = $item-&gt;get_item_tags(&#039;http://xml.weather.yahoo.com/ns/rss/1.0&#039;, &#039;condition&#039;);<br />
$condition_text = $weather_condition[0][&#039;attribs&#039;][&#039;&#039;][&#039;text&#039;];<br />
$condition_code = $weather_condition[0][&#039;attribs&#039;][&#039;&#039;][&#039;code&#039;];<br />
$condition_temp = $weather_condition[0][&#039;attribs&#039;][&#039;&#039;][&#039;temp&#039;];<br />
$condition_date = $weather_condition[0][&#039;attribs&#039;][&#039;&#039;][&#039;date&#039;];<br />
//condition<br />
$weather_forecast = $item-&gt;get_item_tags(&#039;http://xml.weather.yahoo.com/ns/rss/1.0&#039;, &#039;forecast&#039;);<br />
//figure out wind direction<br />
if ($wind_direction &gt;= 348.75 || $wind_direction &lt; 11.25)<br />
	$wind_direction_converted = &quot;N&quot;;//N<br />
else if ($wind_direction &gt;= 11.25 &amp;&amp; $wind_direction &lt; 33.75)<br />
	$wind_direction_converted = &quot;NNE&quot;;//NNE<br />
else if ($wind_direction &gt;= 33.75 &amp;&amp; $wind_direction &lt; 56.25)<br />
	$wind_direction_converted = &quot;NE&quot;;//NE<br />
else if ($wind_direction &gt;= 56.25 &amp;&amp; $wind_direction &lt; 78.75)<br />
	$wind_direction_converted = &quot;ENE&quot;;//ENE<br />
else if ($wind_direction &gt;= 78.75 &amp;&amp; $wind_direction &lt; 101.25)<br />
	$wind_direction_converted = &quot;E&quot;;//E<br />
else if ($wind_direction &gt;= 101.25 &amp;&amp; $wind_direction &lt; 123.75)<br />
	$wind_direction_converted = &quot;ESE&quot;;//ESE<br />
else if ($wind_direction &gt;= 123.75 &amp;&amp; $wind_direction &lt; 146.25)<br />
	$wind_direction_converted = &quot;SE&quot;;//SE<br />
else if ($wind_direction &gt;= 146.25 &amp;&amp; $wind_direction &lt; 168.75)<br />
	$wind_direction_converted = &quot;SSE&quot;;//SSE<br />
else if ($wind_direction &gt;= 168.75 &amp;&amp; $wind_direction &lt; 191.25)<br />
	$wind_direction_converted = &quot;S&quot;;//S<br />
else if ($wind_direction &gt;= 191.25 &amp;&amp; $wind_direction &lt; 213.75)<br />
	$wind_direction_converted = &quot;SSW&quot;;//SSW<br />
else if ($wind_direction &gt;= 213.75 &amp;&amp; $wind_direction &lt; 236.25)<br />
	$wind_direction_converted = &quot;SW&quot;;//SW<br />
else if ($wind_direction &gt;= 236.25 &amp;&amp; $wind_direction &lt; 258.75)<br />
	$wind_direction_converted = &quot;WSW&quot;;//WSW<br />
else if ($wind_direction &gt;= 258.75 &amp;&amp; $wind_direction &lt; 281.25)<br />
	$wind_direction_converted = &quot;W&quot;;//W<br />
else if ($wind_direction &gt;= 281.25 &amp;&amp; $wind_direction &lt; 303.75)<br />
	$wind_direction_converted = &quot;WNW&quot;;//WNW<br />
else if ($wind_direction &gt;= 303.75 &amp;&amp; $wind_direction &lt; 326.25)<br />
	$wind_direction_converted = &quot;NW&quot;;//NW<br />
else if ($wind_direction &gt;= 326.25 &amp;&amp; $wind_direction &lt; 348.75)<br />
	$wind_direction_converted = &quot;NNW&quot;;//NNW<br />
else<br />
	$wind_direction_converted = &quot;?&quot;;<br />
$data .= &#039;&lt;h3&gt;Current Conditions&lt;/h3&gt;&#039;;<br />
$data .= &#039;&lt;br /&gt;&lt;img src=&quot;http://l.yimg.com/us.yimg.com/i/us/we/52/&#039;.$condition_code.&#039;.gif&quot; alt=&quot;&#039;.$condition_text.&#039;&quot; /&gt;&#039;;//icon<br />
$data .= &quot;&lt;br /&gt;$condition_text&quot;;//weather<br />
$data .= &quot;&lt;br /&gt;$condition_temp&amp;deg;&quot;;//temp<br />
$total_forecast_days = count($weather_forecast);//get how many days of forecast do we have<br />
for ($x = 0; $x &lt; $total_forecast_days; $x++)<br />
{<br />
	if ($x == 0)<br />
		$data .= &#039;&lt;h4&gt;Today&lt;/h4&gt;&#039;;//day<br />
	else if ($x == 1)<br />
		$data .= &#039;&lt;h4&gt;Tommorrow&lt;/h4&gt;&#039;;//day<br />
	else<br />
		$data .= &#039;&lt;h4&gt;&#039; . $weather_forecast[$x][&#039;attribs&#039;][&#039;&#039;][&#039;day&#039;] . &#039;&lt;/h4&gt;&#039;;//day<br />
	$data .= &#039;&lt;img src=&quot;http://l.yimg.com/us.yimg.com/i/us/we/52/&#039;.$weather_forecast[$x][&#039;attribs&#039;][&#039;&#039;][&#039;code&#039;].&#039;.gif&quot; alt=&quot;&#039;.$weather_forecast[$x][&#039;attribs&#039;][&#039;&#039;][&#039;text&#039;].&#039;&quot; /&gt;&#039;;//icon<br />
	$data .= &quot;&lt;br /&gt;&quot;.$weather_forecast[$x][&#039;attribs&#039;][&#039;&#039;][&#039;text&#039;];//weather<br />
	$data .= &quot;&lt;br /&gt;&quot;.$weather_forecast[$x][&#039;attribs&#039;][&#039;&#039;][&#039;high&#039;].&#039;&amp;deg; / &#039;.$weather_forecast[$x][&#039;attribs&#039;][&#039;&#039;][&#039;low&#039;].&#039;&amp;deg;&#039;;//high - low<br />
}<br />
//OUTPUT OTHER STUFF<br />
$data .= &quot;$location_city, $location_region&quot;;<br />
$data .= &quot;&lt;br /&gt;&lt;br /&gt;sunrise: $astronomy_sunrise&lt;br /&gt;sunset: $astronomy_sunset&quot;;<br />
if ($wind_chill &lt; 60)<br />
	$data .= &quot;&lt;br /&gt;wind chill: $wind_chill&quot;;<br />
if ($wind_speed != 0)<br />
	$data .= &quot;&lt;br/&gt;wind: $wind_speed $units_speed $wind_direction_converted&quot;;<br />
if ($atmosphere_visibility != 0)<br />
	$atmosphere_visibility = ($atmosphere_visibility / 100);<br />
$data .= &quot;&lt;br /&gt;visibility: $atmosphere_visibility $units_distance&quot;;<br />
$data .= &quot;&lt;br /&gt;barometer: $atmosphere_pressure $units_pressure and &quot;;<br />
//steady (0), rising (1), or falling (2)<br />
if ($atmosphere_rising == 0)<br />
	$data .= &#039;steady&#039;;<br />
else if ($atmosphere_rising == 1)<br />
	$data .= &#039;rising&#039;;<br />
else<br />
	$data .= &#039;falling&#039;;<br />
$data .= &quot;&lt;br /&gt;humidity: $atmosphere_humidity%&quot;;<br />
$data .= &#039;&lt;br /&gt;&#039;.$item-&gt;get_date(&#039;l, F j, Y g:i a&#039;);<br />
$data .= &#039;&lt;br /&gt;&lt;br /&gt;&#039;.$condition_date;<br />
$data .= &#039;&lt;br /&gt;&lt;a href=&quot;&#039; . $feed-&gt;get_link() .&#039;&quot;&gt;&#039;;<br />
$data .= $feed-&gt;get_title();<br />
$data .= &#039;&lt;/a&gt;&#039;;<br />
</code></p>
<p><ins datetime="2007-10-06T13:37:01+00:00">Fixed the wind detection code</ins></p>
<img src="http://jivebay.com/?ak_action=api_record_view&id=154&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://jivebay.com/2007/07/25/get-yahoo-weather-with-simplepie/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Web Based OSS RSS Feed Aggregators</title>
		<link>http://jivebay.com/2007/05/24/web-based-oss-rss-feed-aggregators/</link>
		<comments>http://jivebay.com/2007/05/24/web-based-oss-rss-feed-aggregators/#comments</comments>
		<pubDate>Thu, 24 May 2007 13:26:42 +0000</pubDate>
		<dc:creator>blogger</dc:creator>
				<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[simplepie]]></category>

		<guid isPermaLink="false">http://jivebay.com/2007/05/24/web-based-oss-rss-feed-aggregators/</guid>
		<description><![CDATA[MonkeyChow &#8211; based on feedonfeeds, this one is updated quite a bit, you might visit the developer&#8217;s blog for current updates
Tiny Tiny RSS &#8211; This one is in active development also, it looks very good also, similar to how a offline Feed Aggregator might look, they have a online demo also
FoFRedux (feed on feeds &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sourceforge.net/projects/monkeychow/">MonkeyChow</a> &#8211; based on feedonfeeds, this one is updated quite a bit, you might visit the <a href="http://www.shokk.com/blog/">developer&#8217;s blog</a> for current updates</p>
<p><a href="http://tt-rss.spb.ru/trac/">Tiny Tiny RSS</a> &#8211; This one is in active development also, it looks very good also, similar to how a offline Feed Aggregator might look, they have a online demo also</p>
<p><a href="http://sourceforge.net/projects/fofredux">FoFRedux (feed on feeds &#8211; redux)</a> &#8211; based on feedonfeeds, even though they have like 7 developers they haven&#8217;t released a new verison in a long time</p>
<p><a href="http://feedonfeeds.com/">feed on feeds</a> &#8211; pretty much dead, despite the fact the developer stated he was <a href="http://feedonfeeds.com/weblog/">bringing it back</a></p>
<p>Of course nowdays you can use <a href="http://magpierss.sourceforge.net/">Magpie</a>, <a href="http://simplepie.org/">SimplePie</a> to build your own <a href="http://popurls.com/">popurls</a> / <a href="http://www.originalsignal.com/">Original Signal</a> clone or use <a href="http://www.pageflakes.com/">Pageflakes</a>, <a href="http://www.netvibes.com/">Netvibes</a> or <a href="http://www.google.com/reader">Google Reader</a> if you don&#8217;t want to build it and host it yourself.</p>
<img src="http://jivebay.com/?ak_action=api_record_view&id=104&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://jivebay.com/2007/05/24/web-based-oss-rss-feed-aggregators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
