<?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"
	>
<channel>
	<title>Comments on: A simple but useful application for Google Co-op On-the-fly Custom Search</title>
	<atom:link href="http://blog.pansapiens.com/2007/07/05/a-simple-but-useful-application-for-google-co-op-on-the-fly-custom-search/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pansapiens.com/2007/07/05/a-simple-but-useful-application-for-google-co-op-on-the-fly-custom-search/</link>
	<description></description>
	<pubDate>Fri, 21 Nov 2008 13:35:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Andrew Perry</title>
		<link>http://blog.pansapiens.com/2007/07/05/a-simple-but-useful-application-for-google-co-op-on-the-fly-custom-search/#comment-36</link>
		<dc:creator>Andrew Perry</dc:creator>
		<pubDate>Thu, 12 Jul 2007 07:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pansapiens.com/2007/07/05/a-simple-but-useful-application-for-google-co-op-on-the-fly-custom-search/#comment-36</guid>
		<description>Wow .. that was timely.&lt;br/&gt;&lt;br/&gt;Via Deepaks blog ( http://mndoci.com/blog/ ) I discovered Lijit ( http://www.lijit.com ) which does something pretty much like the Google Co-op / delicious mashup I described in this post, but with more services (eg Flickr, Digg, Youtube etc). I've added a Lijit search box to this blog, and I'll probably use that more often than my home-rolled approach from now on.</description>
		<content:encoded><![CDATA[<p>Wow .. that was timely.</p>
<p>Via Deepaks blog ( <a href="http://mndoci.com/blog/" rel="nofollow">http://mndoci.com/blog/</a> ) I discovered Lijit ( <a href="http://www.lijit.com" rel="nofollow">http://www.lijit.com</a> ) which does something pretty much like the Google Co-op / delicious mashup I described in this post, but with more services (eg Flickr, Digg, Youtube etc). I&#8217;ve added a Lijit search box to this blog, and I&#8217;ll probably use that more often than my home-rolled approach from now on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Perry</title>
		<link>http://blog.pansapiens.com/2007/07/05/a-simple-but-useful-application-for-google-co-op-on-the-fly-custom-search/#comment-35</link>
		<dc:creator>Andrew Perry</dc:creator>
		<pubDate>Thu, 05 Jul 2007 04:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pansapiens.com/2007/07/05/a-simple-but-useful-application-for-google-co-op-on-the-fly-custom-search/#comment-35</guid>
		<description>This is the long version of how I got to the current solution, with the various hiccups and discoveries along the way.&lt;br/&gt;&lt;br/&gt;All I wanted to do is point Google Co-op at an html page containing all my delicious links ever. The delicious docs helped out here. Using the &lt;a HREF="http://del.icio.us/help/html" REL="nofollow"&gt;delicious API interface for html output&lt;/a&gt;, I can try to get the page of links I want:&lt;br/&gt;&lt;br/&gt;&lt;a HREF="http://del.icio.us/html/pansapiens?count=100000" REL="nofollow"&gt;http://del.icio.us/html/pansapiens?count=100000&lt;/a&gt; &lt;br/&gt;&lt;br/&gt;The &lt;i&gt;count=100000&lt;/i&gt; is an attempt to get delicious to return &lt;i&gt;all&lt;/i&gt; my bookmarks ... but it doesn't work and only gives me 100 links. In addition to that limitation, even if I do use this URL with the Google Co-op 'on-the-fly' search, I get no results and an error &lt;i&gt;"Yahoo! - 999 Unable to process request at this time -- error 999"&lt;/i&gt;. That sucks ... not sure if it's a temporary outage, or some other conspiracy at play (like others have already done this and Google Co-op has been hammering delicious ?).&lt;br/&gt;&lt;br/&gt;So, I need to find another way to fetch a simple page of &lt;i&gt;all&lt;/i&gt; my delicious links with a single URL. There is a way I can &lt;a HREF="http://del.icio.us/help/api/posts" REL="nofollow"&gt;get all posts with the delicious API&lt;/a&gt;, but it requires authentication over https. My testing suggests that Google Co-Op can't handle this, using the (probably insecure) URL: https://&lt;i&gt;username:password&lt;/i&gt;@api.del.icio.us/v1/posts/all  .&lt;br/&gt;&lt;br/&gt;I tested out a few searches by simply pointing Google Co-op to a static page of my delicious links created with the delicious "export/backup" function, and it works nicely, but this solution would generally need to be manually updated (or left up to a curl/cron kludge, which requires a server to run it). Ultimately, I was forced to use the delicious API and the hosted PHP script to create and update the page of links I need to do this.</description>
		<content:encoded><![CDATA[<p>This is the long version of how I got to the current solution, with the various hiccups and discoveries along the way.</p>
<p>All I wanted to do is point Google Co-op at an html page containing all my delicious links ever. The delicious docs helped out here. Using the <a HREF="http://del.icio.us/help/html" REL="nofollow">delicious API interface for html output</a>, I can try to get the page of links I want:</p>
<p><a HREF="http://del.icio.us/html/pansapiens?count=100000" REL="nofollow">http://del.icio.us/html/pansapiens?count=100000</a> </p>
<p>The <i>count=100000</i> is an attempt to get delicious to return <i>all</i> my bookmarks &#8230; but it doesn&#8217;t work and only gives me 100 links. In addition to that limitation, even if I do use this URL with the Google Co-op &#8216;on-the-fly&#8217; search, I get no results and an error <i>&#8220;Yahoo! - 999 Unable to process request at this time &#8212; error 999&#8243;</i>. That sucks &#8230; not sure if it&#8217;s a temporary outage, or some other conspiracy at play (like others have already done this and Google Co-op has been hammering delicious ?).</p>
<p>So, I need to find another way to fetch a simple page of <i>all</i> my delicious links with a single URL. There is a way I can <a HREF="http://del.icio.us/help/api/posts" REL="nofollow">get all posts with the delicious API</a>, but it requires authentication over https. My testing suggests that Google Co-Op can&#8217;t handle this, using the (probably insecure) URL: <a href="https://" rel="nofollow">https://</a><i>username:password</i>@api.del.icio.us/v1/posts/all  .</p>
<p>I tested out a few searches by simply pointing Google Co-op to a static page of my delicious links created with the delicious &#8220;export/backup&#8221; function, and it works nicely, but this solution would generally need to be manually updated (or left up to a curl/cron kludge, which requires a server to run it). Ultimately, I was forced to use the delicious API and the hosted PHP script to create and update the page of links I need to do this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
