<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments for Adam Oliver's Blog</title>
	<atom:link href="http://blog.adamoliver.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.adamoliver.net</link>
	<description>Adam Oliver's blog, portfolio and web tutorials and labs</description>
	<pubDate>Wed, 10 Mar 2010 03:59:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on JSON: A Real World Example: Fill A Drop Down List by johnnyM</title>
		<link>http://blog.adamoliver.net/javascript/json-a-real-world-example-fill-a-drop-down-list/comment-page-1/#comment-1367</link>
		<dc:creator>johnnyM</dc:creator>
		<pubDate>Mon, 08 Mar 2010 22:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=595#comment-1367</guid>
		<description>Hey! This is not that simple! In fact it's quite complicated.

Here is another complicated json/php tutorial
http://codediaries.blogspot.com/2010/02/complete-php-curl-and-json-and-google.html</description>
		<content:encoded><![CDATA[<p>Hey! This is not that simple! In fact it&#8217;s quite complicated.</p>
<p>Here is another complicated json/php tutorial<br />
<a href="http://codediaries.blogspot.com/2010/02/complete-php-curl-and-json-and-google.html" rel="nofollow">http://codediaries.blogspot.com/2010/02/complete-php-curl-and-json-and-google.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on View more or less content with jQuery by Chris</title>
		<link>http://blog.adamoliver.net/jquery/view-more-or-less-content-with-jquery/comment-page-1/#comment-1366</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 08 Mar 2010 16:59:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=527#comment-1366</guid>
		<description>Thanks Adam, it's funny that I assumed it would be complicated, when it's actually really easy. Awesome!</description>
		<content:encoded><![CDATA[<p>Thanks Adam, it&#8217;s funny that I assumed it would be complicated, when it&#8217;s actually really easy. Awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using The Twitter API With PHP and SimpleXML by Christiaan</title>
		<link>http://blog.adamoliver.net/tutorials/using-the-twitter-api-with-php-and-simplexml/comment-page-1/#comment-1364</link>
		<dc:creator>Christiaan</dc:creator>
		<pubDate>Mon, 08 Mar 2010 08:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=717#comment-1364</guid>
		<description>Instead of $thedom-&#62;loadXML(file_get_contents('http://search.twitter.com/search.atom?q=%23'.$searchterm));
You could as well do $thedom-&#62;load('http://search.twitter.com/search.atom?q=%23'.$searchterm);

And instead of loading it in DOMDocument first and then in SimpleXML you can also load it straight in SimpleXML using
$thes = simplexml_load_file('http://search.twitter.com/search.atom?q=%23'.$searchterm);</description>
		<content:encoded><![CDATA[<p>Instead of $thedom-&gt;loadXML(file_get_contents(&#8217;http://search.twitter.com/search.atom?q=%23&#8242;.$searchterm));<br />
You could as well do $thedom-&gt;load(&#8217;http://search.twitter.com/search.atom?q=%23&#8242;.$searchterm);</p>
<p>And instead of loading it in DOMDocument first and then in SimpleXML you can also load it straight in SimpleXML using<br />
$thes = simplexml_load_file(&#8217;http://search.twitter.com/search.atom?q=%23&#8242;.$searchterm);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Evolution Of Website Design by Sunny Singh</title>
		<link>http://blog.adamoliver.net/design/the-evolution-of-website-design/comment-page-1/#comment-1362</link>
		<dc:creator>Sunny Singh</dc:creator>
		<pubDate>Mon, 08 Mar 2010 02:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=703#comment-1362</guid>
		<description>Hmm, Google barely changed, only links and such moved. I don't think it should've been included here.</description>
		<content:encoded><![CDATA[<p>Hmm, Google barely changed, only links and such moved. I don&#8217;t think it should&#8217;ve been included here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using The Twitter API With PHP and SimpleXML by Jonathan Hedrén</title>
		<link>http://blog.adamoliver.net/tutorials/using-the-twitter-api-with-php-and-simplexml/comment-page-1/#comment-1361</link>
		<dc:creator>Jonathan Hedrén</dc:creator>
		<pubDate>Sun, 07 Mar 2010 21:38:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=717#comment-1361</guid>
		<description>Or you could retrieve the tweets as JSON:

$tweets = json_decode(file_get_contents('http://search.twitter.com/search.json?q=%23'.$searchterm));
foreach ($tweets as $tweet) {
  echo $tweet-&#62;text;
}</description>
		<content:encoded><![CDATA[<p>Or you could retrieve the tweets as JSON:</p>
<p>$tweets = json_decode(file_get_contents(&#8217;http://search.twitter.com/search.json?q=%23&#8242;.$searchterm));<br />
foreach ($tweets as $tweet) {<br />
  echo $tweet-&gt;text;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on View more or less content with jQuery by admin</title>
		<link>http://blog.adamoliver.net/jquery/view-more-or-less-content-with-jquery/comment-page-1/#comment-1349</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 06 Mar 2010 22:29:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=527#comment-1349</guid>
		<description>@Chris There is no need to change the script to achieve that functionality.  The jQuery looks for the previous .moretext from the link which is clicked. Therefore as long as you keep the associated more link after the text then it should work fine for you.  Try it out :)</description>
		<content:encoded><![CDATA[<p>@Chris There is no need to change the script to achieve that functionality.  The jQuery looks for the previous .moretext from the link which is clicked. Therefore as long as you keep the associated more link after the text then it should work fine for you.  Try it out <img src='http://blog.adamoliver.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on View more or less content with jQuery by Chris</title>
		<link>http://blog.adamoliver.net/jquery/view-more-or-less-content-with-jquery/comment-page-1/#comment-1348</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 06 Mar 2010 22:19:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=527#comment-1348</guid>
		<description>Very nice and easy.

Would there be a way to make the script repeatable for many instances on the same page? For example, could you name all of the divs .moretext1, .moretext2, .moretext3 ... .moretext20 and have the script apply itself to any div starting with ".moretext" rather than having to rewrite the script for each one?</description>
		<content:encoded><![CDATA[<p>Very nice and easy.</p>
<p>Would there be a way to make the script repeatable for many instances on the same page? For example, could you name all of the divs .moretext1, .moretext2, .moretext3 &#8230; .moretext20 and have the script apply itself to any div starting with &#8220;.moretext&#8221; rather than having to rewrite the script for each one?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON: A Real World Example: Fill A Drop Down List by Arlette Asselta</title>
		<link>http://blog.adamoliver.net/javascript/json-a-real-world-example-fill-a-drop-down-list/comment-page-1/#comment-1283</link>
		<dc:creator>Arlette Asselta</dc:creator>
		<pubDate>Tue, 02 Feb 2010 19:26:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=595#comment-1283</guid>
		<description>Hi. Very interesting site. I found it on Bing. I will definately recommend it to my friends. Please keep up the great work.</description>
		<content:encoded><![CDATA[<p>Hi. Very interesting site. I found it on Bing. I will definately recommend it to my friends. Please keep up the great work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Quick Selection of CSS Tips by Marie J</title>
		<link>http://blog.adamoliver.net/tutorials/a-quick-selection-of-css-tips/comment-page-1/#comment-1251</link>
		<dc:creator>Marie J</dc:creator>
		<pubDate>Wed, 27 Jan 2010 21:04:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=409#comment-1251</guid>
		<description>Well, the blog post is really the freshest on this topic. I agree with what you have written and look forward to more of such updates. A big for the phenomenal lucidity in your writing. I will definitely grab your rss feed to stay tuned of your updates.</description>
		<content:encoded><![CDATA[<p>Well, the blog post is really the freshest on this topic. I agree with what you have written and look forward to more of such updates. A big for the phenomenal lucidity in your writing. I will definitely grab your rss feed to stay tuned of your updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Theme Switcher With PHP Variables In CSS by Cambiare temi con php e css!</title>
		<link>http://blog.adamoliver.net/tutorials/theme-switcher-with-php-variables-in-css/comment-page-1/#comment-1205</link>
		<dc:creator>Cambiare temi con php e css!</dc:creator>
		<pubDate>Sat, 23 Jan 2010 01:10:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adamoliver.net/?p=611#comment-1205</guid>
		<description>[...] Link: http://blog.adamoliver.net/tutorials/theme-switcher-with-php-variables-in-css/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Link: <a href="http://blog.adamoliver.net/tutorials/theme-switcher-with-php-variables-in-css/" rel="nofollow">http://blog.adamoliver.net/tutorials/theme-switcher-with-php-variables-in-css/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
