<?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 on: A little Flickr hacking (in a good way)</title>
	<atom:link href="http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: Dave</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257586</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 23 Oct 2007 10:07:31 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257586</guid>
		<description>Isn&#039;t this the same as http://docs.jquery.com/Ajax/jQuery.getJSON ?
Nice article though.</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t this the same as <a href="http://docs.jquery.com/Ajax/jQuery.getJSON" rel="nofollow">http://docs.jquery.com/Ajax/jQuery.getJSON</a> ?<br />
Nice article though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Heilmann</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257554</link>
		<dc:creator>Chris Heilmann</dc:creator>
		<pubDate>Mon, 22 Oct 2007 19:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257554</guid>
		<description>Jared exactly this is explained at the end of the original post.</description>
		<content:encoded><![CDATA[<p>Jared exactly this is explained at the end of the original post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257552</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Mon, 22 Oct 2007 19:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257552</guid>
		<description>It would be a real &quot;hack&quot; to get other sizes without having to authenticate. To my knowledge you have to have an API key to do that. But you could get another size by doing something like:

&lt;code&gt;
&quot;http://farm3.static.flickr.com/2116/1552753330_d4c40d1132_m.jpg&quot;.substring(0, &quot;http://farm3.static.flickr.com/2116/1552753330_d4c40d1132_m.jpg&quot;.length-6) + &quot;.jpg&quot;
&lt;/code&gt;

The default is to return the &quot;m&quot; size, you can just remove that and add the .jpg back on. I&#039;m sure there is a sexier method to do it, but that works.

I think the big uproar is seeing &quot;flickr&quot; and &quot;hack&quot; in the same title and having an alarm immediately raise (for me at least), then finding out it&#039;s really nothing, let alone something already documented.</description>
		<content:encoded><![CDATA[<p>It would be a real &#8220;hack&#8221; to get other sizes without having to authenticate. To my knowledge you have to have an API key to do that. But you could get another size by doing something like:</p>
<p><code><br />
"http://farm3.static.flickr.com/2116/1552753330_d4c40d1132_m.jpg".substring(0, "http://farm3.static.flickr.com/2116/1552753330_d4c40d1132_m.jpg".length-6) + ".jpg"<br />
</code></p>
<p>The default is to return the &#8220;m&#8221; size, you can just remove that and add the .jpg back on. I&#8217;m sure there is a sexier method to do it, but that works.</p>
<p>I think the big uproar is seeing &#8220;flickr&#8221; and &#8220;hack&#8221; in the same title and having an alarm immediately raise (for me at least), then finding out it&#8217;s really nothing, let alone something already documented.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257550</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 22 Oct 2007 18:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257550</guid>
		<description>Isn&#039;t anything that uses api.flickr.com &quot;using the flickr API&quot;?</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t anything that uses api.flickr.com &#8220;using the flickr API&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Heilmann</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257549</link>
		<dc:creator>Chris Heilmann</dc:creator>
		<pubDate>Mon, 22 Oct 2007 18:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257549</guid>
		<description>Ok, for all the people repeating the obvious, please read the back story to my blog post. This was a talk at the Open Hack Day in India explaining for the &quot;hackers&quot; how to quickly get flickr photos in JavaScript without needing to resort to a backend authentication and other normal measures. 

Yes it is not a hack, yes it is (almost) documented (show me a working example ON the flickr site that explains how to use and how to get the other sizes of the pictures). Well done. However, I was asked after the talk to quickly write something together and I did. I also admitted in my blog post that I had talked about that before. Shall I stop doing that?</description>
		<content:encoded><![CDATA[<p>Ok, for all the people repeating the obvious, please read the back story to my blog post. This was a talk at the Open Hack Day in India explaining for the &#8220;hackers&#8221; how to quickly get flickr photos in JavaScript without needing to resort to a backend authentication and other normal measures. </p>
<p>Yes it is not a hack, yes it is (almost) documented (show me a working example ON the flickr site that explains how to use and how to get the other sizes of the pictures). Well done. However, I was asked after the talk to quickly write something together and I did. I also admitted in my blog post that I had talked about that before. Shall I stop doing that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257545</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Mon, 22 Oct 2007 17:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257545</guid>
		<description>I&#039;m with Mortimer, this isn&#039;t a hack, it&#039;s a feature. A documented one at that. And not the &quot;it&#039;s a feature&quot; joke when it&#039;s really a bug.</description>
		<content:encoded><![CDATA[<p>I&#8217;m with Mortimer, this isn&#8217;t a hack, it&#8217;s a feature. A documented one at that. And not the &#8220;it&#8217;s a feature&#8221; joke when it&#8217;s really a bug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rey Bango</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257528</link>
		<dc:creator>Rey Bango</dc:creator>
		<pubDate>Mon, 22 Oct 2007 15:44:15 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257528</guid>
		<description>@Christian: Sorry about the code. I&#039;ve fixed it.</description>
		<content:encoded><![CDATA[<p>@Christian: Sorry about the code. I&#8217;ve fixed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mortimer</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257518</link>
		<dc:creator>Mortimer</dc:creator>
		<pubDate>Mon, 22 Oct 2007 14:51:28 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257518</guid>
		<description>Hum, this hardly a hack as it&#039;s documented at:
http://www.flickr.com/services/feeds/

you also have other formats, like php, sql or yaml and other feeds than the public photos like someone&#039;s contact photos, comments on your shots, etc...

You can see examples of this being used in the greasemonkeys and other hacks from &lt;a href=&quot;http://www.flickr.com/groups/flickrhacks/&quot; rel=&quot;nofollow&quot;&gt;Flickr Hacks&lt;/a&gt; and &lt;a href=&quot;http://www.flickr.com/groups/flickrpipes/&quot; rel=&quot;nofollow&quot;&gt;Flickr Pipes&lt;/a&gt; (the later using Yahoo pipes to make the most of the feeds).

These feeds are still pretty limited and you will soon want to use an API authenticated access ;)</description>
		<content:encoded><![CDATA[<p>Hum, this hardly a hack as it&#8217;s documented at:<br />
<a href="http://www.flickr.com/services/feeds/" rel="nofollow">http://www.flickr.com/services/feeds/</a></p>
<p>you also have other formats, like php, sql or yaml and other feeds than the public photos like someone&#8217;s contact photos, comments on your shots, etc&#8230;</p>
<p>You can see examples of this being used in the greasemonkeys and other hacks from <a href="http://www.flickr.com/groups/flickrhacks/" rel="nofollow">Flickr Hacks</a> and <a href="http://www.flickr.com/groups/flickrpipes/" rel="nofollow">Flickr Pipes</a> (the later using Yahoo pipes to make the most of the feeds).</p>
<p>These feeds are still pretty limited and you will soon want to use an API authenticated access ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Heilmann</title>
		<link>http://ajaxian.com/archives/a-little-flickr-hacking-in-a-good-way/comment-page-1#comment-257517</link>
		<dc:creator>Chris Heilmann</dc:creator>
		<pubDate>Mon, 22 Oct 2007 14:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2924#comment-257517</guid>
		<description>That code example is mangled :) 

Hey, there is never too much fun.</description>
		<content:encoded><![CDATA[<p>That code example is mangled :) </p>
<p>Hey, there is never too much fun.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

