<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>David Dehghan's blog : Social Computing</title><link>http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx</link><description>Tags: Social Computing</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Shortening URLs on MSWiki for better search engine ranking</title><link>http://blogs.msdn.com/daviddehghan/archive/2005/12/22/506830.aspx</link><pubDate>Thu, 22 Dec 2005 22:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:506830</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/506830.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=506830</wfw:commentRss><description>&lt;P&gt;There is extensive documentation on Mediawiki on how to shorten the urls from &lt;A href="http://www.yoursite.com/index.php?title=testpage"&gt;www.yoursite.com/index.php?title=testpage&lt;/A&gt; to &lt;A href="http://www.yoursite.com/testpage"&gt;www.yoursite.com/testpage&lt;/A&gt;. After a few hours of research I was able to do just that on my Windows Server 2003 and IIS. It is probably wise to follow the URL pattern of wikipedia exactly so that in future software updates of Mediawiki your site will not break your site accidentally. The more customization you do to your site the more likely is that the development team on Mediawiki will not be testing your specific settings and will not be taking your modifications in mind as they write new code. So it will be safer to mimic wikipedia url pattern: &lt;A href="http://www.yoursite.com/wiki/articlename"&gt;www.yoursite.com/wiki/articlename&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have put this text on MSWiki so that it can evolve: &lt;/SPAN&gt;&lt;A href="http://mswiki.com/wiki/Short_URLs_for_better_search_engine_ranking"&gt;&lt;SPAN&gt;http://mswiki.com/wiki/Short_URLs_for_better_search_engine_ranking&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step by step guide&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL type=1&gt;
&lt;LI value=1&gt;&lt;SPAN&gt;&lt;STRONG&gt;URL Rewite &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;UL type=disc&gt;
&lt;LI&gt;&lt;A href="http://www.iismods.com./url-rewrite/index.htm"&gt;&lt;SPAN&gt;Install URL rewite for IIS&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Download the zip file and unpack it somewhere on your server outside of wwwroot &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Give Network Service account write privileges to above directory. &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Configure the ISAPI ini file like below. Debug 1 will cause debug output to be written which will help you troubleshoot problems. Reload 5 means that the ini file will be reloaded at every 5 url redirection. This saves you from resrtting IIS every time you change this file. &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;Debug 1&lt;BR&gt;Reload 5&lt;BR&gt;#Browse LOT&lt;BR&gt;RewriteRule ^/wiki/(.*) /index.php?title=$1&lt;BR&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;UL type=disc&gt;
&lt;LI&gt;&lt;SPAN&gt;On the command prompt type iisreset +&amp;lt;enter&amp;gt;. Your re-director should be working now. Test it by navigating to &lt;/SPAN&gt;&lt;A href="http://www.yoursite/wiki/Main_Page"&gt;&lt;SPAN&gt;www.yoursite/wiki/Main_Page&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;. &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL type=1&gt;
&lt;LI value=2&gt;&lt;SPAN&gt;&lt;STRONG&gt;Mediawiki settings&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;UL type=disc&gt;
&lt;LI&gt;&lt;SPAN&gt;Modify MediaWiki localsettings.php to look like below. This will cause internal links on the page to also be shortened &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;$wgScriptPath &lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;= ""; &lt;BR&gt;$wgScript&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;= "$wgScriptPath/index.php"; &lt;BR&gt;$wgRedirectScript&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;= "$wgScriptPath/redirect.php"; &lt;BR&gt;$wgArticlePath&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;= "/wiki/$1"&lt;BR&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;UL type=disc&gt;
&lt;LI&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Security Step'&lt;/SPAN&gt;&lt;SPAN&gt; If everything is working now then revoke the write permission from Network Service where you saved your ISAPI filter. Then change the ISAPI ini to look like this &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;Debug 0&lt;BR&gt;Reload 5000&lt;BR&gt;#Browse LOT&lt;BR&gt;RewriteRule ^/wiki/(.*) /index.php?title=$1&lt;BR&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;UL type=disc&gt;
&lt;LI&gt;&lt;SPAN&gt;Some pages on your site will be cached by PHP or IIS and will still have the old style URLs. But eventually, with time or with editing of pages, the files in cache will be replaced. &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The old style URL will be present for non existing pages. I think this is a bug in MediaWiki software. Even wikipedia has this problem. &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=506830" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item><item><title>An interview with Jimmy Wales, Wikipedia Founder </title><link>http://blogs.msdn.com/daviddehghan/archive/2005/11/29/497813.aspx</link><pubDate>Tue, 29 Nov 2005 13:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:497813</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/497813.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=497813</wfw:commentRss><description>&lt;P&gt;&lt;A href="http://www.q-and-a.org/Program/?ProgramID=1042"&gt;The interview on C-span.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Some interesting points that I can very much relate to based on my experiences with &lt;A style="BORDER-BOTTOM-STYLE: groove" href="http://www.wsuswiki.com/"&gt;http://www.wsuswiki.com&lt;/A&gt; and &lt;A href="http://www.mswiki.com/"&gt;http://www.mswiki.com&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Contributors to Wikipedia:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;3000 authors that contribute more that 100 edits a month. 
&lt;LI&gt;There are set of even more active users that make 1000s of edits a month which bar far, contribute the majority of the content on the site. 
&lt;LI&gt;Wikipedia is ranked 40th on Alexa.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Who are the authors:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Smart friendly people with targeted knowledge. He really emphasized the idea of being a social person and&amp;nbsp;enjoying collaboration with other people to create new content. 
&lt;LI&gt;People who feel great for contributing to a great cause of documenting the human knowledge.&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=497813" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item><item><title>Amazon introduces Product Wiki</title><link>http://blogs.msdn.com/daviddehghan/archive/2005/11/29/497812.aspx</link><pubDate>Tue, 29 Nov 2005 13:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:497812</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/497812.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=497812</wfw:commentRss><description>&lt;P&gt;&lt;A href="http://customerevangelists.typepad.com/blog/2005/11/amazons_custome_1.html"&gt;A good move by amazon&lt;/A&gt;. They have created a wiki page for each of the items in their catalog. Research has shown that anything mentioned by independent sources about an item will increase customer confidence in that item. Even if the comment is negative. &lt;/P&gt;
&lt;P&gt;Items with user comments on Amazon simply sell more. Many people read negative comments about a product or a vendor and simply dismiss it because they don't relate to the author. So if you can get people to say something about your product, anything really, it will increase your sales.&lt;/P&gt;
&lt;P&gt;Customer comments are one way, wiki is another. They are complimentary.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=497812" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item><item><title>A cool way of extending google map</title><link>http://blogs.msdn.com/daviddehghan/archive/2005/07/31/445869.aspx</link><pubDate>Mon, 01 Aug 2005 05:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:445869</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>5</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/445869.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=445869</wfw:commentRss><description>&lt;P&gt;I was just listening to Tim OReilly's talk at MySQL conference. Here some cool sites he mentioned.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Google Map Craig's list&amp;nbsp;&amp;nbsp; &lt;A href="http://www.housingmaps.com/"&gt;http://www.housingmaps.com/&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;New visualization model Baby name: &lt;A href="http://babynamewizard.com/namevoyager/lnv0105.html"&gt;http://babynamewizard.com/namevoyager/lnv0105.html&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=445869" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item><item><title>Golden rules of building Wiki community trust</title><link>http://blogs.msdn.com/daviddehghan/archive/2005/07/31/445861.aspx</link><pubDate>Mon, 01 Aug 2005 05:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:445861</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/445861.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=445861</wfw:commentRss><description>Here are some of my key leanings from the past few years of working with wiki communities. I will write more about each of these points in the future posts. 
&lt;UL type=disc&gt;
&lt;LI&gt;&lt;SPAN&gt;Use a license that maximizes content use. Give copyrights of the content back to the user. &lt;/SPAN&gt;
&lt;LI&gt;&lt;SPAN&gt;Promote your active users to roles of greater and greater responsibility. Make them administrators, content police, editors, spellcheckers&amp;nbsp;etc.&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Create a space where all users can add value. Extract value form everyone: your readers, technical experts and language experts and the silent majority.&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Design for participation.&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;Simple interface, easy to use.&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Don't enforce social norms with software .&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Help the community define and evolve rules of cooperation.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=445861" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item><item><title>The Hole-In-The-Wall experiment</title><link>http://blogs.msdn.com/daviddehghan/archive/2004/06/30/170414.aspx</link><pubDate>Thu, 01 Jul 2004 01:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:170414</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>6</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/170414.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=170414</wfw:commentRss><description>&lt;p&gt;The Hole-In-The-Wall experiment is one of the most amazing studies that show the ingeniousness of children. In 1999, Dr Mitra setup a computer with internet connection in the slums of India and watched children&amp;acirc;&amp;euro;&amp;trade;s interaction with the computer. Only the monitor and the touch pad mouse was exposed to public though a hole in the wall in a public street. Dr Mitra then video taped people&amp;acirc;&amp;euro;&amp;trade;s interaction with the &amp;acirc;&amp;euro;thing&amp;acirc;&amp;euro;&amp;trade; through a camera mounted to a tree across the street. Soon enough children discovered the computers and started to play with it. Without any instructions whatsoever the kids were able to discover MSPaint and start drawing and coloring. Children&amp;acirc;&amp;euro;&amp;trade;s discoveries were astonishing, One day Dr. Mitra discovered that the kids had saved a document on the desktop that had the words &amp;acirc;&amp;euro;&amp;oelig;I LOVE INDIA&amp;acirc;&amp;euro; in it. He could not figure out how this document was created given the fact that the computer had no keyboard. Eventually one of the local boys showed him how it was done: The boy used the character map in Word to individually pick the letters and then increased the font size and colored the letters one by one. The kids had learn all this on their own. &lt;/p&gt; &lt;p&gt;They had no concept of files and programs. They had simply noticed that if they dragged and drop an mp3 icon on Windows Media Player icon music would start to play from the &amp;acirc;&amp;euro;thing&amp;acirc;&amp;euro;&amp;trade;. They had no idea that the &amp;acirc;&amp;euro;thing&amp;acirc;&amp;euro;&amp;trade;, as they called it, was a computer. They invented their own names for different things. They called mouse pointer sui, hindi for needle; they called the hourglass mouse pointer damru, hindi name for drums. &lt;/p&gt; &lt;p&gt;The fact that the computer interface was in English was not a hindrance to the kids at all. They were able to navigate internet and find and download hindi music mp3s. All this knowledge was passed through word of mouth between the kids.&lt;/p&gt; &lt;p&gt;The story of the Hole-In-The-Wall experiment has been out for a few years. You can find our more about it from here &lt;a href="http://www.niitholeinthewall.com"&gt;http://www.niitholeinthewall.com&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=170414" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/General/default.aspx">General</category></item><item><title>Influence vs popularity</title><link>http://blogs.msdn.com/daviddehghan/archive/2004/06/01/145321.aspx</link><pubDate>Tue, 01 Jun 2004 10:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:145321</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/145321.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=145321</wfw:commentRss><description>&lt;A href="http://www.overstated.net/04/05/24-weblogs-and-authority.asp"&gt;Weblogs and Authority&lt;/A&gt;&amp;nbsp; is an interesting way of deducing the influence that a blogger has on the blogging community versus his or her popularity. &lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=145321" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item><item><title>Unique traits of Wiki</title><link>http://blogs.msdn.com/daviddehghan/archive/2004/05/18/134755.aspx</link><pubDate>Wed, 19 May 2004 06:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:134755</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/134755.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=134755</wfw:commentRss><description>&lt;P&gt;Here are some interesting points from &lt;A href="http://murl.microsoft.com/LectureDetails.asp?1076"&gt;Ward Cunningham's talk&lt;/A&gt; at &lt;A href="http://research.microsoft.com/workshops/SCS2004/"&gt;Social Computing Symposium&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unique traits of Wiki:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;It establishes a community standard for acceptable quality. 
&lt;LI&gt;It is easier to clean up damage in Wiki than creating it thereby Wikis discourages vandalism.
&lt;LI&gt;In wikis you don't ask questions. You offer the information that you have and let people complete it and fill the gaps.&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=134755" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item><item><title>We are just data processing nodes</title><link>http://blogs.msdn.com/daviddehghan/archive/2004/05/17/133101.aspx</link><pubDate>Mon, 17 May 2004 09:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:133101</guid><dc:creator>DavidDehghan</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/daviddehghan/comments/133101.aspx</comments><wfw:commentRss>http://blogs.msdn.com/daviddehghan/commentrss.aspx?PostID=133101</wfw:commentRss><description>&lt;P&gt;Notes from &lt;A href="http://www.researchstudios.com/NEVILLE_home.html"&gt;Neville Brody&lt;/A&gt;'s talk at Microsoft. (He is a renowned&amp;nbsp;graphic and brand designer)&lt;/P&gt;
&lt;P&gt;The new information system [Internet, mail, blogs, etc] is forcing to act as&amp;nbsp;data processing nodes. We process information and forward it to other nodes. The trend is toward faster and faster information generation and processing. However this information processing is fairly exhausting for our body and mind. At the end of the day we go home and&amp;nbsp;we are exhausted. But then, when we look back at a day's worth of activity we don't see what we have accomplished with all the mental work.&lt;/P&gt;
&lt;P&gt;Personalization is all about making us into&amp;nbsp;more efficient information processing nodes.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=133101" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/daviddehghan/archive/tags/Social+Computing/default.aspx">Social Computing</category></item></channel></rss>