<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Software As She's Developed &#187; Feeds</title>
	<atom:link href="http://softwareas.com/tag/feeds/feed" rel="self" type="application/rss+xml" />
	<link>http://softwareas.com</link>
	<description>Mahemoff's Podcast/Blog - Web, Programming, Usability from the Author of 'Ajax Design Patterns' (AjaxPatterns.org)</description>
	<lastBuildDate>Mon, 26 Jul 2010 16:52:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>Copyright &amp;#xA9; Software As She's Developed 2010 </copyright>
		<managingEditor>michael@mahemoff.com (Software As She's Developed)</managingEditor>
		<webMaster>michael@mahemoff.com (Software As She's Developed)</webMaster>
		<category>posts</category>
		<ttl>1440</ttl>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Mahemoff's Podcast/Blog - Web, Programming, Usability from the Author of 'Ajax Design Patterns' (AjaxPatterns.org)</itunes:summary>
		<itunes:author>Software As She's Developed</itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name>Software As She's Developed</itunes:name>
			<itunes:email>michael@mahemoff.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://softwareas.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://softwareas.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Software As She's Developed</title>
			<link>http://softwareas.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Meta-Search with Ajax</title>
		<link>http://softwareas.com/meta-search-with-ajax</link>
		<comments>http://softwareas.com/meta-search-with-ajax#comments</comments>
		<pubDate>Sat, 13 Aug 2005 23:12:32 +0000</pubDate>
		<dc:creator>mahemoff</dc:creator>
				<category><![CDATA[SoftwareDev]]></category>
		<category><![CDATA[Aggregator]]></category>
		<category><![CDATA[Feeds]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Search]]></category>

		<guid isPermaLink="false">http://www.softwareas.com/meta-search-with-ajax</guid>
		<description><![CDATA[I just discovered a new feed meta-search: TalkDigger (via Data Mining).
It&#8217;s Ajax search all the way (buzzword overload!).

The site shows how ideal Ajax is for meta-search. Each time you enter a query, the browser fires off multiple queries &#8211; one for each engine it searches. That means the results all come back in parallel &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I just discovered a new feed meta-search: <a href="http://talkdigger.com/">TalkDigger</a></strong> (via <a href="http://datamining.typepad.com/data_mining/2005/08/rumour_mull.html">Data Mining</a>).
It&#8217;s Ajax search all the way (buzzword overload!).</p>

<p><strong>The site shows how ideal Ajax is for meta-search. Each time you enter a query, the browser fires off multiple queries &#8211; one for each engine it searches.</strong> That means the results all come back in parallel &#8211; no bottlenecks.</p>

<p>Back in the day, metacrawler and others were smart enough to start writing out the page straightaway, so users start seeing some results while others are still pending. <strong>The Ajax meta-search improves on the situation by directly morphing the result panels, so the page structure remains fixed even as all the results are populated.</strong> Each panel gets its own <a href="http://ajaxpatterns.org/Progress_Indicator">Progress Indicator</a>.</p>

<p><strong>This is an example of <a href="http://ajaxpatterns.org/Multi-Stage_Download">Multi-Stage Download</a> &#8211; set up a few empty blocks and populate them with separate queries.</strong> When I initially created the pattern, it was pure speculation, but TalkDigger now makes the third real example I know of. I recently created a <a href="http://ajaxify.com/run/portal/">Multi-Stage Download Demo</a>.</p>

<p>Another nice feature of TalkDigger, which fits well with meta-search, is the use of <a href="http://ajaxpatterns.org/Microlink">Microlinks</a>: <strong>You can click on the results to immediately expand out a summary.</strong></p>

<p>There&#8217;s some more features I&#8217;m hoping to see:</p>

<ul>
<li>The results page definitely needs work &#8211; it&#8217;s nice seeing a brief summary of all results and having them expandable, but it&#8217;s difficult to get an overall feel. An &#8220;Expand All&#8221; would help, or showing at least one posting for each search engine.</li>
<li>The results are broken up by an ad. To me, that&#8217;s counter-productive as they look like two separate panels. I think most users will mentally filter out the ad anyway and just see the results as broken into two.</li>
<li>[Sortable columns](http://ajaxpatterns.org/Query-Report Table] &#8211; so I could sort by engine name or feed count.</li>
<li><a href="http://ajaxpatterns.org/Unique_URLs">Unique URLs</a> Unique URLs are critical for a search engine. <a href="http://www.ajaxify.com/run/sum/uniqueURL/pollURL/">Unique URL Demo</a>. Jon Udell mentioned the issue recently, regarding MSN Virtual Earth, Google Maps, and others&#8217; lack thereof.  <a href="http://www.ajaxify.com/run/sum/uniqueURL/pollURL/">This demo</a>, based on <a href="http://www.contentwithstyle.co.uk/Articles/38/fixing-the-back-button-and-enabling-bookmarking-for-ajax-apps">Mike Stenhouse&#8217;s ideas</a> shows it&#8217;s actually fairly straightforward to emulate standard URLs.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://softwareas.com/meta-search-with-ajax/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
