<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Wikia Search Blog</title>
	
	<link>http://search.wikia.com/blog</link>
	<description>thoughts and rumblings from the Wikia Search team</description>
	<pubDate>Wed, 08 Oct 2008 17:53:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Wikiasearchblog" type="application/rss+xml" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>How to Turn Your Blog Posts Into a Wikia Search Application</title>
		<link>http://search.wikia.com/blog/2008/10/08/how-to-turn-your-blog-posts-into-a-wikia-search-application/</link>
		<comments>http://search.wikia.com/blog/2008/10/08/how-to-turn-your-blog-posts-into-a-wikia-search-application/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 17:53:39 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=79</guid>
		<description><![CDATA[Last night, we released WISE &#8212; Wikia Intelligent Search Extensions &#8212; into the wild.  WISE is our application framework; anyone can build an application (a &#34;WISEApp&#34;) which can be executed on Wikia Search.  If you&#8217;re a developer, you can read the documentation and start building a &#34;WISEApp&#34; immediately .  If you, like me, are [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, we released WISE &#8212; <a href="http://search.wikia.com/wiki/Wikia_Intelligent_Search_Extensions" >Wikia Intelligent Search Extensions</a> &#8212; into the wild.  WISE is our application framework; anyone can build an application (a &quot;WISEApp&quot;) which can be executed on Wikia Search.  If you&#8217;re a developer, you can <a href="http://search.wikia.com/wiki/Creating_a_WISE_Application" >read the documentation and start building a &quot;WISEApp&quot; immediately</a> .  If you, like me, are not, no worries.  Here&#8217;s how to turn your blog posts into a WISEApp.</p>
<p><strong>My Blog&#8217;s Application</strong></p>
<p>I have a rarely updated blog at my personal site, DLewis.net.  But hey, it&#8217;s so easy to build an application, why not!  Here&#8217;s the code for mine.  I highlighted the stuff you need to change in red text.  All you need to do is confirm that <a href="http://blogsearch.google.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blogsearch.google.com/');">Google&#8217;s blog search</a> indexes your blog, and make the changes below.</p>
<p>WISE.apps.<span style="color: #ff0000;">dlewisnet</span> ={<br />
&quot;categories&quot;:[ &quot;Blogs&quot; ],<br />
&quot;id&quot;: &quot;<span style="color: #ff0000;">dlewisnet</span> &quot;,<br />
&quot;name&quot;: &quot;<span style="color: #ff0000;">DLewis.net</span> &quot;,<br />
&quot;author&quot;: &quot;<span style="color: #ff0000;">Dan Lewis, User:DNL on Wikia Search</span> &quot;,<br />
&quot;description&quot;: &quot;<span style="color: #ff0000;">Returns blog posts from www.dlewis.net</span> &quot;,<br />
&quot;regex&quot;: /(?:(.*) (?:<span style="color: #ff0000;">dlewisnet|dlewis|dan lewis</span> )|(?:<span style="color: #ff0000;">dlewisnet|dlewis|dan lewis</span> ) (.*))/i,<br />
&quot;apptitle&quot;: &quot;Posts about $1 on <span style="color: #ff0000;">DLewis.net</span> &quot;,<br />
&quot;appurl&quot;: &quot;<span style="color: #ff0000;">http://www.dlewis.net</span> &quot;,<br />
&quot;gen_obj&quot;: {&quot;request&quot;: {&quot;url&quot;: &quot;http://ajax.googleapis.com/ajax/services/search/blogs?v=1.0&amp;callback=WISE.generic.processApiResult&quot;, &quot;search&quot;: &quot;q&quot;, &quot;q_append&quot;: &quot; site:<span style="color: #ff0000;">dlewis.net</span> &quot;}, &quot;response&quot;: {&quot;styles&quot;: {&quot;item_style&quot;: &quot;&quot;, &quot;last_item_style&quot;: &quot;&quot;, &quot;image_style&quot;: &quot;&quot;, &quot;url_style&quot;: &quot;&quot;}, &quot;size&quot;: &quot;3&quot;, &quot;rootelement&quot;: &quot;responseData&quot;, &quot;containerElement&quot;: &quot;results&quot;, &quot;titleField&quot;: &quot;titleNoFormatting&quot;, &quot;url&quot;: {&quot;field&quot;: &quot;postUrl&quot;}, &quot;contentFields&quot;: [{&quot;prefix&quot;: &quot;&quot;, &quot;field&quot;: &quot;content&quot;, &quot;suffix&quot;: &quot;&quot;, &quot;limit&quot;: &quot;100&quot;, &quot;type&quot;: &quot;&quot;}]}}};</p>
<p>You&#8217;ll note that almost all the red stuff is references to me or my blog.  The short version: Change that stuff over to you and your blog.</p>
<p><strong>The Specifics</strong></p>
<p>You have to change a total of nine things.  The first line is easy &#8212; just pick a unique identifier for your WISEApp.  I chose &quot;WISE.apps.dlewisnet&quot; because I&#8217;m nearly 100% sure that no one else has any claim on &quot;dlewisnet&quot;.</p>
<p>Next is the id line.  Just echo what you did above.</p>
<p>After that, give your app a name.  I chose DLewis.net &#8230; for obvious reasons!  Then sign your app on the author line, and in the description line, give a description.  Something short and to the point is perfect.</p>
<p>The regex line is the key part, and the hardest &#8212; but it, too, is really easy!  Pick some key terms which should trigger your application.  Separate them with pipes (that&#8217;s the | symbol.  It&#8217;s shift-backslash, near your enter/return key).   Yes, you need to have it twice &#8212; this way, the application will trigger on any search which starts <em>or </em> ends with one of your triggers.  Just remember to keep your triggers specific to your blog.  If you go too broadly, we&#8217;re going to have to reject your application.   Me?  I chose &quot;dlewis&quot;, &quot;dlewisnet&quot;, and &quot;dan lewis&quot;.</p>
<p>One other rule for the &quot;regex&quot; field: If you choose multiple triggers, and one of them contains another (e.g. &quot;dlewisnet&quot; contains &quot;dlewis&quot;), put the one that contains the other first.  So I have to have dlewisnet|dlewis and not the other way around.</p>
<p>The &quot;apptitle&quot; field is next.   This is going to display on the search result itself.  The $1 is the query the searcher types in, so leave that in there!  Change the &quot;DLewis.net&quot; to your blog&#8217;s name.  In my example, if a searcher enters for &quot;dan lewis copyright&quot;, the apptitle will display &quot;Posts about copyright on DLewis.net&quot;.</p>
<p>The &quot;appurl&quot; field is the link to your blog.  I chose to send the link to my blog, itself, because I don&#8217;t have a good internal search.  You could change it to include the search term &#8212; just replace the term with &quot;$1&quot; (no quotes) in whatever URL you provide.</p>
<p>The final change is in the &quot;gen_obj&quot; area.  Change &quot;dlewis.net&quot; to your blog&#8217;s domain.  Don&#8217;t get creative here or the application won&#8217;t work.  We&#8217;re piggy-backing of Google&#8217;s Blog Search API to get your data, remember.</p>
<p><strong>You Can Build Them For Your Favorite Blogs, Too!</strong></p>
<p>I&#8217;m a big baseball fans, and David Pinto&#8217;s <a href="http://www.baseballmusings.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.baseballmusings.com');">Baseball Musings</a> is an every-day visit.  There&#8217;s no internal search, though, so I built this &#8230; in about 90 seconds:</p>
<p><span style="color: #000000;">WISE.apps.baseballmusings ={<br />
&quot;categories&quot;:[ &quot;Blogs&quot; ],<br />
&quot;id&quot;: &quot;baseballmusings&quot;,<br />
&quot;name&quot;: &quot;Baseball Musings&quot;,<br />
&quot;author&quot;: &quot; Dan Lewis, User:DNL on Wikia Search &quot;,<br />
&quot;description&quot;: &quot; Returns blog posts from www.baseballmusings.com &quot;,<br />
&quot;regex&quot;: /(?:(.*) (?: baseballmusings|baseball musings|david pinto )|(?: baseballmusings|baseball musings|david pinto ) (.*))/i,<br />
&quot;apptitle&quot;: &quot;Posts about $1 on Baseball Musings &quot;,<br />
&quot;appurl&quot;: &quot; http://www.baseballmusings.com &quot;,<br />
&quot;gen_obj&quot;: {&quot;request&quot;: {&quot;url&quot;: &quot;http://ajax.googleapis.com/ajax/services/search/blogs?v=1.0&amp;callback=WISE.generic.processApiResult&quot;, &quot;search&quot;: &quot;q&quot;, &quot;q_append&quot;: &quot; site:baseballmusings.com&quot;}, &quot;response&quot;: {&quot;styles&quot;: {&quot;item_style&quot;: &quot;&quot;, &quot;last_item_style&quot;: &quot;&quot;, &quot;image_style&quot;: &quot;&quot;, &quot;url_style&quot;: &quot;&quot;}, &quot;size&quot;: &quot;3&quot;, &quot;rootelement&quot;: &quot;responseData&quot;, &quot;containerElement&quot;: &quot;results&quot;, &quot;titleField&quot;: &quot;titleNoFormatting&quot;, &quot;url&quot;: {&quot;field&quot;: &quot;postUrl&quot;}, &quot;contentFields&quot;: [{&quot;prefix&quot;: &quot;&quot;, &quot;field&quot;: &quot;content&quot;, &quot;suffix&quot;: &quot;&quot;, &quot;limit&quot;: &quot;100&quot;, &quot;type&quot;: &quot;&quot;}]}}};</span></p>
<p><strong>Test Your WISEApp</strong></p>
<p>This step is optional, but a good idea.  Go to <a href="http://re.search.wikia.com/wise/playground.html" >our Application Testing Grounds</a> and do three things:</p>
<ol>
<li>In the first box, &quot;Query&quot;, type in a query which uses one of your triggers &#8212; something like &quot;dan lewis copyright&quot; for my first one.  Test for all of your triggers &#8212; in my case, I&#8217;d also do &quot;dlewis copyright&quot; and &quot;dlewisnet copyright&quot;.</li>
<li>Paste that entire block of code into the box labeled &quot;Application Definition Object&quot;.  <strong>Leave the third box blank.</strong> We&#8217;re making this easy!</li>
<li>Hit that &quot;Test Your Application&quot; button and watch as your preview appears.  If it does not work, make sure you replaced the right things with valid info.</li>
</ol>
<p><strong>Last Step: Submit Your WISEApp to the WISEGuys!</strong></p>
<p>Just email that block of code to <a href="mailto:wiseguys@wikia.com">wiseguys@wikia.com</a> , and we&#8217;ll review it post-haste!</p>
<p>In fact, both of the ones above were built this morning and are already live:</p>
<ul>
<li>&quot;<a href="http://re.search.wikia.com/search.html#dan%20lewis%20copyright" >dan lewis copyright</a> &quot;</li>
<li>&quot;<a href="http://re.search.wikia.com/search.html#david%20wright%20baseball%20musings" >david wright baseball musings</a> &quot;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/10/08/how-to-turn-your-blog-posts-into-a-wikia-search-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Search Team Update: September 22, 2008</title>
		<link>http://search.wikia.com/blog/2008/09/22/search-team-update-september-22-2008/</link>
		<comments>http://search.wikia.com/blog/2008/09/22/search-team-update-september-22-2008/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 18:10:01 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Weekly Updates]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=78</guid>
		<description><![CDATA[Here&#8217;s what the Search team did last week:
•    Continued work on application framework, including adding tools to show available applications
•    Put up new KT which has admin tools.  Keywords can now be protected &#8211;  admin-only,  registered users only, or everyone.
•    Working on fixing encoding problem
•    Performed emergency fixes required by MediaWiki upgrade
•    Deployed version two [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s what the Search team did last week:</p>
<p>•    Continued work on application framework, including adding tools to show available applications<br />
•    Put up new KT which has admin tools.  Keywords can now be protected &#8211;  admin-only,  registered users only, or everyone.<br />
•    Working on fixing encoding problem<br />
•    Performed emergency fixes required by MediaWiki upgrade<br />
•    Deployed version two of the API at ISC<br />
•    Integrating toolbar translations for 9 languages.<br />
•    Continuing work on refactoring toolbar.<br />
•    Working on getting hadoop streaming active.  Will allow us to write MapReduce jobs in perl/python/php/shell, etc.<br />
•    Working on shard prototype.<br />
•    Planning around index expansion<br />
•    UI tweaks<br />
•    Testing alternative UI formats<br />
•    Finished construction and testing of our new protoshard</p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/09/22/search-team-update-september-22-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>It’s Time To Figure Out That Last 10% — Together</title>
		<link>http://search.wikia.com/blog/2008/09/11/last-ten-percen/</link>
		<comments>http://search.wikia.com/blog/2008/09/11/last-ten-percen/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 02:05:27 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=77</guid>
		<description><![CDATA[Michael Arrington has an excellent post up today relaying the words of Google&#8217;s Marissa Mayer:
Search is a 90-10 problem. Today, we have a 90% solution: I could answer all of my unanswered Saturday questions, not ideally or easily, but I could get it done with today’s search tool. [. . .] However, that remaining 10% [...]]]></description>
			<content:encoded><![CDATA[<p>Michael Arrington has <a href="http://www.techcrunch.com/2008/09/10/marissa-mayer-clarifies-search-is-only-10-done-not-90/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.techcrunch.com/2008/09/10/marissa-mayer-clarifies-search-is-only-10-done-not-90/');">an excellent post</a> up today relaying the words of Google&#8217;s Marissa Mayer:</p>
<blockquote><p>Search is a 90-10 problem. Today, we have a 90% solution: I could answer all of my unanswered Saturday questions, not ideally or easily, but I could get it done with today’s search tool. [. . .] However, that remaining 10% of the problem really represents 90% (in fact, more than 90%) of the work.</p></blockquote>
<p>She&#8217;s entirely right &#8212; although unintetionally humble, as the yeoman&#8217;s effort and execution by Google in search cannot be understated.</p>
<p>In building anything, the first barrier is the fundamental one.   Arrington equates search to man&#8217;s efforts to fly, and that&#8217;s apt.  The Wright Brothers had to figure out the fundamental question: How do we get off the ground?   After that, everything else was gloss &#8212; but gloss is, often, incredibly important.   Getting across the Atlantic, those little vaccuum-sealed meals, movies on board, not losing your luggage, in-air WiFi, etc. are all exceptional improvements in flying,  but flying <em>itself</em> had to come first.  That was 90% of the problem, and we should recognize that. The other 10%?  Well, no one wants to fly on a propeller plane.</p>
<p>Google&#8217;s search product is (obviously) much better than the propeller plane was an air travel method, but the foundational structure Google created, along with precedessors such as AltaVista, are similarly the first, big step on a path toward much greater things.  Google&#8217;s ability to index the web is the gold standard in building a usable, useful search product.  Their algorithm proved that machines can provide, as Mayer noted, an effective &#8212; albeit neither ideal nor truly easy &#8212; method of finding important information.</p>
<p>The 10% is a different problem.  It&#8217;s about improving the experience and quality of search.  That&#8217;s evidenced by two things: first, the volume of startups trying very different things, but all in the search sphere and aimed at those goals; and second, the fact that the big guys &#8212; Google with their Wikia-like tools, Yahoo with their new bells and whistles, and Microsoft with it&#8217;s ever-changing Live product &#8212; are diverging from each other.   The question is no longer &#8220;who can index/sort it all&#8221; &#8212; that&#8217;s becoming a commodity.  The question is morphing, and we&#8217;re not exactly sure what its actual words are.</p>
<p>That&#8217;s part of the reason Wikia Search started with four organizational principles &#8212; Transparency, Community, Privacy, and Quality &#8212; which you can read more about <a href="http://re.search.wikia.com/about/about.html" >here</a>.  We do not know, nor claim some hidden insight, into how search will mature over the next year, five years, and so on.  We do, however, know that there&#8217;s a right way to go about things, and that way will lead to a superior product.   The right way allows everyone to participate in the process and benefit from its fruits.  Let&#8217;s get there together.</p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/09/11/last-ten-percen/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Wikia Search as a Group Bookmarking Tool — An Accidental How-To</title>
		<link>http://search.wikia.com/blog/2008/09/09/using-wikia-search-as-a-group-bookmarking-tool-an-accidental-how-to/</link>
		<comments>http://search.wikia.com/blog/2008/09/09/using-wikia-search-as-a-group-bookmarking-tool-an-accidental-how-to/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 15:41:52 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=75</guid>
		<description><![CDATA[A week or so ago, my wife caught wind of a car seat recall for the Britax Marathon &#8212; which our son uses.   She asked that I look into it, to see if we needed a replacement car seat.
I tossed &#8220;marathon recall&#8221; into Wikia Search and the second result, under a now-deleted link to an [...]]]></description>
			<content:encoded><![CDATA[<p>A week or so ago, my wife caught wind of a car seat recall for the Britax Marathon &#8212; which our son uses.   She asked that I look into it, to see if we needed a replacement car seat.</p>
<p>I tossed &#8220;<a href="http://re.search.wikia.com/search.html#marathon%20recall" >marathon recall</a>&#8221; into Wikia Search and the second result, under a now-deleted link to an irrelevant wWikipedia article, was to <a href="http://babyproducts.about.com/b/2007/10/21/britax-marathon-recall.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://babyproducts.about.com/b/2007/10/21/britax-marathon-recall.htm');">About.com&#8217;s Heather&#8217;s Baby Products Blog</a> about the recall.  Browsing around, I came to Britax&#8217;s recall-specific website, at http://marathonrecall.com.  I added the page to the &#8220;marathon recall&#8221; query using the Wikia Toolbar (URL).  We checked the car seat and, good news, the car seat was not part of the recall.</p>
<p>A few days later, a friend asked me about the recall again, and this time, Wikia Search pointed me to the right answer &#8212; the Marathon Recall site I entered in before.  I had to visit the site anyway, so I used our <a href="http://re.search.wikia.com/help/help.html#Annotate" >Annotation tool</a> to add the step-by-step instructions into the search result itself.    Here&#8217;s what it looked like:</p>
<p><a href="http://search.wikia.com/blog/wp-content/uploads/2008/09/marathon-recall.jpg" ><img class="aligncenter size-full wp-image-76" title="marathon-recall" src="http://search.wikia.com/blog/wp-content/uploads/2008/09/marathon-recall.jpg" alt="" width="500" height="320" /></a></p>
<p>On Sunday night, my wife and I were looking at a new car seat &#8212; don&#8217;t ask &#8212; and the new car seat maker claimed that the Marathon only held children up to 48 pounds.   Neither my wife or I believed that, and more importantly, I remembered reading something, somewhere, which said it could hold more.   And for some reason, I thought to check the &#8220;marathon recall&#8221; entry.  The answer was right there.  So dutifully, I emailed the link to my wife.</p>
<p>What I realized today is that I, entirely accidentally, used Wikia Search as a group/social bookmarking tool.   I built a search result which, for me, has lasting effect; and in going so, I had efficiently created a bookmark that my wife and our friends could use with the same efficacy.    Here&#8217;s a step-by-step guide for those who want to do the same:</p>
<p><strong>Step one (optional): Register for a Wikia account. </strong>(Click <a href="http://re.search.wikia.com/register.html" >here</a> to register.)</p>
<p>When you add or modify your search result, we&#8217;ll record it for you on your profile.    Check out my profile and scroll to &#8220;<a href="http://re.search.wikia.com/profile.html?user=DNL" >Recent Activity</a>&#8221; to see what I mean.</p>
<p>At Wikia Search, Transparency is a core principle.  Search results can come from a lot of places &#8212; an algorithm, a user contribution, and more to come &#8212; and we pride ourselves in letting the world know where a result came from, and why.  Therefore, when you add to or modify on Wikia Search, we let the world know.  If you do not have a Wikia account or are logged out, your contribution will be attributed to your IP address.  So you are probably best off logging in!</p>
<p><strong>Step two: Add/Edit the URL</strong>.   (Hint: <a href="https://addons.mozilla.org/en-US/firefox/addon/8267" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://addons.mozilla.org/en-US/firefox/addon/8267');">Download the Wikia toolbar</a> to make this step incredibly easy.)</p>
<p>If you&#8217;re using our toolbar, just click the &#8220;Add URL to Keyword&#8221; button and enter in a relevant search term.  Rate the URL five stars.  Then hit that &#8220;Edit&#8221; button and clean up the result.  Finally, use the &#8220;Annotate URL&#8221; and/or &#8220;Comment&#8221; tool to explain what parts of the page are specifically important.</p>
<p>Not using the toolbar?  Don&#8217;t worry.   Copy the URL you want to add, then go to <a href="http://search.wikia.com/" >Wikia Search</a> and search for whatever relevant term you want to add that URL to.  Use the on-page tool to add the URL to that search result.  Mouse over your result and the other tools &#8212; edit, comment, annotate, etc. &#8212; will be there for you to use.</p>
<p><strong>Step three:  Tell the other person/people what keywords you used, and to try that query on Wikia Search. </strong>(Another hint?  If you signed up in Step 1, you can send your friend the URL of your profile page &#8212; with your contributions right there.)</p>
<p>That one is self explanatory, but if you want to show me what you&#8217;ve built, feel free to email it over to me at dan at wikia dot com.  Maybe I&#8217;ll show it off here!</p>
<p>And with that, you&#8217;re done!   You&#8217;ve created a hyper-relevant, robust search result &#8212; and you&#8217;ve also created a great bookmark you and your friends can share as easily as you&#8217;d share a URL.</p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/09/09/using-wikia-search-as-a-group-bookmarking-tool-an-accidental-how-to/feed/</wfw:commentRss>
		</item>
		<item>
		<title>1.14 Something is Not Enough to Show I Care</title>
		<link>http://search.wikia.com/blog/2008/09/05/114-something-is-not-enough-to-show-i-care/</link>
		<comments>http://search.wikia.com/blog/2008/09/05/114-something-is-not-enough-to-show-i-care/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 18:59:43 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=74</guid>
		<description><![CDATA[
Oops.
And no delete button in sight.
Good thing we have one.
(For what it&#8217;s worth, Google fixed that query &#8212; the math doesn&#8217;t appear.  But the similarly worthless &#8220;math&#8221; appears for things like &#8220;seven days a week&#8220;. )
Image via the excellent Google Blogoscoped
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://blogoscoped.com/files/google-calculator-eight-days-a-week.png" alt="oops" /></p>
<p>Oops.</p>
<p>And no delete button in sight.</p>
<p><a href="http://re.search.wikia.com/search.html#eight%20days%20a%20week" >Good thing we have one</a>.</p>
<p>(For what it&#8217;s worth, Google fixed that query &#8212; the math doesn&#8217;t appear.  But the similarly worthless &#8220;math&#8221; appears for things like &#8220;<a href="http://www.google.com/search?hl=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=seven+days+a+week&amp;spell=1" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.google.com/search?hl=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=seven+days+a+week&amp;spell=1');">seven days a week</a>&#8220;. )</p>
<p><em>Image via the excellent <a href="http://blogoscoped.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blogoscoped.com/');">Google Blogoscoped</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/09/05/114-something-is-not-enough-to-show-i-care/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Search Team Update, September 4, 2008</title>
		<link>http://search.wikia.com/blog/2008/09/04/search-team-update-september-4-2008/</link>
		<comments>http://search.wikia.com/blog/2008/09/04/search-team-update-september-4-2008/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 18:41:33 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Weekly Updates]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=73</guid>
		<description><![CDATA[Here&#8217;s what we did last week:
User Interface

The new translate tool is up and running at http://re.search.wikia.com/translate.html.  You can translate the interface into around 100 different languages.
We&#8217;re working steadily on the search application framework.
In progress, a re-workof the core main.js file and its logic flow &#8212; cleaning it up an streamlining it.

Operations

Over half the team was [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s what we did last week:</p>
<p><strong>User Interface</strong></p>
<ul>
<li>The new translate tool is up and running at <a href="http://re.search.wikia.com/translate.html" >http://re.search.wikia.com/translate.html</a>.  You can translate the interface into around 100 different languages.</li>
<li>We&#8217;re working steadily on the search application framework.</li>
<li>In progress, a re-workof the core main.js file and its logic flow &#8212; cleaning it up an streamlining it.</li>
</ul>
<p><strong>Operations</strong></p>
<ul>
<li>Over half the team was out in San Francisco, adding more hardware to the setup over at <a href="http://www.isc.org/index.pl?/ops/lists/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.isc.org/index.pl?/ops/lists/');">ISC</a>.  Once we get more power there, we will have more than doubled our amount of used hardware.</li>
</ul>
<p><strong>Toolbar</strong></p>
<ul>
<li>Added Wikia Search as homepage</li>
<li>Added Wikia Search to default engine list and as default search engine</li>
<li>Opened Wikia Search help on first run</li>
<li>Made bar resizable</li>
<li>Working on code refactoring, adding new functionality, and integration of other languages</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/09/04/search-team-update-september-4-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Repeats Itself: Give Us Your Data, But We Won’t Tell You How Google Works or Give You Control</title>
		<link>http://search.wikia.com/blog/2008/08/29/google-repeats-itself-give-us-your-data-but-we-wont-tell-you-how-google-works-or-give-you-control/</link>
		<comments>http://search.wikia.com/blog/2008/08/29/google-repeats-itself-give-us-your-data-but-we-wont-tell-you-how-google-works-or-give-you-control/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 16:26:25 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=72</guid>
		<description><![CDATA[In a battle between two search engines, Google and Wikia Search are letting users rank search results. While Google&#8217;s experiment is random, Wikipedia and Wikia Founder Jimmy Wales says Wikia Search is about building a community using simple Web services tools such as ranking and tagging to let users influence search results. Google has no [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>In a battle between two search engines, Google and Wikia Search are letting users rank search results. While Google&#8217;s experiment is random, Wikipedia and Wikia Founder Jimmy Wales says Wikia Search is about building a community using simple Web services tools such as ranking and tagging to let users influence search results. Google has no timetable for its search ranking feature and <strong>isn&#8217;t saying how it works</strong>.</p></blockquote>
<p>That&#8217;s from yesterday&#8217;s eWeek article by Clint Boulton, titled &#8220;<a href="http://www.eweek.com/c/a/Search-Engines/Google-Search-Ranking-Feature-Threatens-Wikia-Search/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.eweek.com/c/a/Search-Engines/Google-Search-Ranking-Feature-Threatens-Wikia-Search/');">Google Search Ranking Feature Threatens Wikia Search</a>&#8220;.   I bolded the last five words, but first, I want to say that I absolutely love eWeek&#8217;s headline.  They&#8217;re mostly right &#8212; <a href="http://search.wikia.com/blog/2008/07/17/google-tries-to-copy-wikia-search-but-misses-the-point/" >Google likes to copy what we do</a>.  We&#8217;re flattered, honestly.</p>
<p>That said, flattered, yes.  Threatened?  Not really.  Why?  Because their culture endures.</p>
<p>Ben Gomes, a Google engineer, <a href="http://googleblog.blogspot.com/2008/08/search-experiments-large-and-small.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://googleblog.blogspot.com/2008/08/search-experiments-large-and-small.html');">blogged lightly about the &#8220;experiment</a>&#8221; on Tuesday.  Here is the entirety of his comments on the experiment:</p>
<blockquote><p>&#8220;At this point, I can&#8217;t say what we expect from this feature; we&#8217;re just curious to see how it will be used.&#8221;</p></blockquote>
<p>In an 850-plus word post, it&#8217;s good to know that Google will spend 22 to tell us that (a) they&#8217;re collecting data and (b) they aren&#8217;t going to share it with us.   That is, they don&#8217;t value your <a href="http://re.search.wikia.com/about/about.html" >privacy</a> &#8212; everything you do, they&#8217;re watching; and they don&#8217;t value <a href="http://re.search.wikia.com/about/about.html" >transparency</a> &#8212; they&#8217;re going to keep all that information, all their code, and all their algorithms under lock and key.</p>
<p>Jimmy, in the eWeek article, shows that Google does not value the <a href="http://re.search.wikia.com/about/about.html" >community</a> aspect that Wikia Search holds dear, either.</p>
<blockquote><p><span class="Article_Date"><span class="Article_Date"><span class="txt">I always draw a distinction between things that I would consider to be crowdsourcing—and I consider that to be a very negative term—that aren&#8217;t really thinking about a community of people getting together to discuss thoughtfully and work together to build something, but rather it&#8217;s atomistic. [. . .]  [Google's experiment is]</span></span></span><span class="Article_Date"><span class="Article_Date"><span class="txt"> very different from what we&#8217;re doing, which is trying to build all of the tools for a community to come together and take editorial control of the search engine altogether.</span></span></span></p></blockquote>
<p>Yesterday, I argued that <a href="http://search.wikia.com/blog/2008/08/28/the-web-is-readwrite-so-why-isnt-search/" >Search needs to be read/write</a>, and that <a href="http://re.search.wikia.com/about/about.html" >quality</a> demands that users and others be able to explicitly modify search results.   We are, and should be happy to again hear that Google may drop their paternalism down by a marginal amount.  But it&#8217;s a baby step toward adopting one &#8212; just one &#8212; of Wikia Search&#8217;s <a href="http://re.search.wikia.com/about/about.html" >four organizational principles</a>.  And as always, Google&#8217;s minor, experimental (!) improvement is made at the permanent cost of the other three.</p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/08/29/google-repeats-itself-give-us-your-data-but-we-wont-tell-you-how-google-works-or-give-you-control/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Web is Read/Write.  So Why Isn’t Search?</title>
		<link>http://search.wikia.com/blog/2008/08/28/the-web-is-readwrite-so-why-isnt-search/</link>
		<comments>http://search.wikia.com/blog/2008/08/28/the-web-is-readwrite-so-why-isnt-search/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 19:55:10 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=71</guid>
		<description><![CDATA[&#8220;The Internet, legally, is uncharted waters, but it&#8217;s not impossible to navigate. By analogy, almost all websites can be treated like billboards.&#8221;
That&#8217;s a quote from an old notepad I found recently.  It&#8217;s not verbatim, but close enough  And it&#8217;s about nine years old.
In 1995, I entered college.  The Web was, relatively speaking, new.  The first [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;The Internet, legally, is uncharted waters, but it&#8217;s not impossible to navigate. By analogy, almost all websites can be treated like billboards.&#8221;</p>
<p>That&#8217;s a quote from an old notepad I found recently.  It&#8217;s not verbatim, but close enough  And it&#8217;s about nine years old.</p>
<p>In 1995, I entered college.  The Web was, relatively speaking, new.  The first dot-com era was in its pre-manic upswing; broadband access was available but by no means ubiquitous.  As a freshma, I saw the difficulties my university had in wiring the residential buildings for high speed Internet access, going room to room doing things obsolete by today&#8217;s best practices: explaining the difference between a CAT-5 cable and a telephone wire, installing ethernet cards, registering each ethernet card&#8217;s MAC address with the DHCP server, and poo-pooing irate students who found out that Windowns 95 was not yet supported by the University &#8212; it was a Windows 3.1 world!  Students checked email by telnetting into the school&#8217;s UNIX shell and issuing what to the unenlightened were archaic commands such as &#8220;pine&#8221; or &#8220;elm&#8221;, and sending an attachment was, to most, impossible.  Those who were well-versed in the ways of 1s and 0s used arguably better tools: WS-FTP or, if you were *really* a hacker-type, Eudora.</p>
<p>By the time I graduated in 1999, the process had gotten better: Windows 95 was a supported OS, and a student could self-register with the DHCP server.  So, too, had the experience: Eudora and MS Outlook were common, and Napster was all the rage.  Excite, HotBot, DirectHit, Lycos, and Altavista were making it easy to find interesting information on the web; Yahoo was making it even easier.  Online shopping was also a new revelation &#8212; eBay, Amazon, and the neer-do-well Pets.com.  So when I signed up for a Computer Law class, I expected cutting-edge discussions of what the future would bring.  In four years, the Web had grown up.  So, I figured, should have the law.</p>
<p>Nope:  &#8220;[A]lmost all websites can be treated like billboards.&#8221;</p>
<p>The rational for such a silly sentence &#8212; uttered by my professor &#8212; was neither ignorance not malice.   It was, rather, correct &#8212; at least insofar as the law was concerned.  The Internet posed many new problems, and attorneys and judges alike clung to brick-and-mortor exemplars.  When a car company&#8217;s website acted as a big advertisement which offered some additional information about their line of automobiles, it was, indeed, a high-tech billboard.  And when one speaks of websites from the late 1990s of brick-and-mortor companies, that&#8217;s probably the norm.  Defenestrating our &#8220;the Internet is new!&#8221; problem was both efficient and arguably appropriate &#8212; as a stop-gap.</p>
<p>But as we know now, and as many of us knew then, the analogy is inapt. The Internet is not read-only. It is not a billboard; not a magazine; not the side of a blimp.  We can interact with it, create our own content, etc.  It is read/write.</p>
<p>Wikia Search believes that the read-only Web, to put it bluntly, sucks.  Quality &#8212; one of the core principles of Wikia Search &#8212; demands that the Web be read/write.  The Internet is too powerful a medium, the Web too powerful a platform, to relegate ourselves to being glorified billboards.</p>
<p>Search is an integral part of the Web, and it, too, must therefore be read/write.  Google, Yahoo, MS, and Ask are just glorified card catalogs, akin to those found at your local public library.  They are brick-and-mortar solutions to a very new problems, and are necessarily lacking.   We&#8217;re changing that.</p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/08/28/the-web-is-readwrite-so-why-isnt-search/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Search Team Update: August 13, 2008</title>
		<link>http://search.wikia.com/blog/2008/08/13/search-team-update-august-13-2008/</link>
		<comments>http://search.wikia.com/blog/2008/08/13/search-team-update-august-13-2008/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 20:12:38 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Weekly Updates]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=69</guid>
		<description><![CDATA[Here&#8217;s the update from the last week (or so) of Search Team goodness:
Toolbar
* Wikia Evolution, the search toolbar launched.  Download it at http://re.search.wikia.com/toolbar/download.html
* Want to tinker with the code?  Grab it via the SVN at http://svn.swlabs.org/re.search/cool/toolbar/ - there&#8217;s no documentation yet, but we&#8217;re working on it.  The test .xpi (evolution.test.xpi) can be unzipped as per [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the update from the last week (or so) of Search Team goodness:</p>
<p><strong>Toolbar</strong><br />
* Wikia Evolution, the search toolbar launched.  Download it at <a href="http://re.search.wikia.com/toolbar/download.html" >http://re.search.wikia.com/toolbar/download.html</a><br />
* Want to tinker with the code?  Grab it via the SVN at <a href="http://svn.swlabs.org/re.search/cool/toolbar/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://svn.swlabs.org/re.search/cool/toolbar/');">http://svn.swlabs.org/re.search/cool/toolbar/</a> - there&#8217;s no documentation yet, but we&#8217;re working on it.  The test .xpi (evolution.test.xpi) can be unzipped as per typical for a .zip file.</p>
<p><strong>UI Stuff</strong><br />
(If you&#8217;re not on the search-ui miling list, that&#8217;s at <a href="http://lists.wikia.com/mailman/listinfo/search-ui" >http://lists.wikia.com/mailman/listinfo/search-ui</a>)<br />
* More work on widget/application framework<br />
* Working on a search engine comparison tool<br />
* Started on a &#8220;light&#8221; fork to the results UI.</p>
<p><strong>Atlas</strong><br />
(There&#8217;s a distribution list for Atlas at <a href="http://lists.wikia.com/mailman/listinfo/atlas-l" >http://lists.wikia.com/mailman/listinfo/atlas-l</a> and a wiki page about the project at <a href="http://search.wikia.com/wiki/Atlas" >http://search.wikia.com/wiki/Atlas</a>.  Check out both)<br />
* Updated the Atlas protocol spec for &#8220;knuggets&#8221;<br />
* A lot of the prototypes are starting to come together.  Atlas-l has a discussion starting at <a href="http://lists.wikia.com/pipermail/atlas-l/2008-July/000092.html" >http://lists.wikia.com/pipermail/atlas-l/2008-July/000092.html</a> and the SVN is at <a href="http://svn.swlabs.org/atlas/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://svn.swlabs.org/atlas/');">http://svn.swlabs.org/atlas/</a>.</p>
<p><strong>Operations</strong><br />
* Assisted with Nutch re-index<br />
* Started a new crawl<br />
* Fixes to KT importer, added the ability to load/populate the new location table<br />
* Built a new 0.1.3 Hbase cluster, loaded with production data snapshot, populated the new location table, setup new KT code (with new features) pointed to the new cluster with new data (kt.search.isc.org/ktdev/)<br />
* Tweaked lots of system monitoring<br />
* Lots of work with the crawler, trying to find the source of very high fetch failure rates<br />
* Deploy-redploy KT /ktdev/, started review of code<br />
* Determining new hardware requirements<br />
* Bind updates<br />
* More work on Grub</p>
<p><strong>Nutch</strong><br />
* Finished test rollout of new indexing and scoring systems.<br />
* Started working on shard management servers.<br />
* Started work on pornography and bad content identification.<br />
* Started integration of kt input into analysis algorithms.<br />
* Documentation, bug fixes, and unit tests for new scoring and indexing frameworks for Nutch.  Working to get final patches submitted and committed into the Nutch core.<br />
* Finished new crawl, working on deployment and roll-out of new indexing and scoring systems to test<br />
* Finished all patches and code documentation for new scoring and indexing systems.  Everything has been submitted to Nutch for inclusion in the Nutch code distribution.<br />
* Finished modifications to FieldIndexer including field filter extension point, and field-basic, field-boost plugins that integration in the arbitrary boosting with the new indexing framework.</p>
<p><strong>Other Stuff</strong><br />
* Improved contact importer for the social tools<br />
* Working on a Facebook application</p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/08/13/search-team-update-august-13-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>With Great Power Comes Great Responsibility</title>
		<link>http://search.wikia.com/blog/2008/08/12/with-great-power-comes-great-responsibility/</link>
		<comments>http://search.wikia.com/blog/2008/08/12/with-great-power-comes-great-responsibility/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 18:50:54 +0000</pubDate>
		<dc:creator>Dan Lewis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://search.wikia.com/blog/?p=68</guid>
		<description><![CDATA[James Grimmelmann is an adjuct professor of law at New York Law School here in Manhattan.  His recent paper, &#8220;The Google Dilemma&#8221; (available via SSRN) tells five stories about the power Google currently wields, and why Google &#8212; or whomever &#8220;controls&#8221; search &#8212; needs to wield that power with great responsibility.
The paper is a quick [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://re.search.wikia.com/search.html#james%20grimmelmann" >James Grimmelmann</a> is an adjuct professor of law at New York Law School here in Manhattan.  His recent paper, &#8220;<a href="http://re.search.wikia.com/search.html#the%20google%20dilemma" >The Google Dilemma</a>&#8221; (available <a href="http://papers.ssrn.com/sol3/Papers.cfm?abstract_id=1160320" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://papers.ssrn.com/sol3/Papers.cfm?abstract_id=1160320');">via SSRN</a>) tells five stories about the power Google currently wields, and why Google &#8212; or whomever &#8220;controls&#8221; search &#8212; needs to wield that power with great responsibility.</p>
<p>The paper is a quick read &#8212; even with footnotes, it&#8217;s a mere 11 pages &#8212; so it&#8217;s not fair of me to republish it here.  I&#8217;ll certainly have more thoughts on it later on, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://search.wikia.com/blog/2008/08/12/with-great-power-comes-great-responsibility/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
