<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Akedar's Weblog</title>
	<atom:link href="http://akedar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://akedar.wordpress.com</link>
	<description>Random thoughts</description>
	<lastBuildDate>Tue, 12 Oct 2010 13:58:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='akedar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Akedar's Weblog</title>
		<link>http://akedar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://akedar.wordpress.com/osd.xml" title="Akedar&#039;s Weblog" />
	<atom:link rel='hub' href='http://akedar.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Getting Nutch 1.2 to index file system</title>
		<link>http://akedar.wordpress.com/2010/10/12/getting-nutch-1-2-to-index-file-system/</link>
		<comments>http://akedar.wordpress.com/2010/10/12/getting-nutch-1-2-to-index-file-system/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 13:50:42 +0000</pubDate>
		<dc:creator>akedar</dc:creator>
				<category><![CDATA[Lucene/Nutch/Solr]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Nutch]]></category>

		<guid isPermaLink="false">http://akedar.wordpress.com/?p=205</guid>
		<description><![CDATA[1 &#8211; Changes to conf/nutch-site.xml &#8211; add protocol for file &#8211; remove protocol for http if no web spidering is required old line    &#60;value&#62;protocol-file&#124;protocol-http&#124;urlfilter-regex&#124;       parse-(text&#124;html&#124;js&#124;tika)&#124;index-(basic&#124;anchor)&#124;       query-(basic&#124;site&#124;url)&#124;response-(json&#124;xml)&#124;       summary-basic&#124;scoring-opic&#124;urlnormalizer-(pass&#124;regex&#124;basic)&#60;/value&#62; new line     &#60;value&#62;protocol-file&#124;urlfilter-regex&#124;parse-(text&#124;html&#124;js&#124;tika)&#124;       index-(basic&#124;anchor)&#124;query-(basic&#124;site&#124;url)&#124;response-(json&#124;xml)&#124;       summary-basic&#124;scoring-opic&#124;urlnormalizer-(pass&#124;regex&#124;basic)&#60;/value&#62; Add a line to stop the root from being indexed    &#60;property&#62;       &#60;name&#62;file.crawl.parent&#60;/name&#62;       &#60;value&#62;false&#60;/value&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=205&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>1 &#8211; Changes to conf/nutch-site.xml</strong></p>
<ul>
<li> &#8211; add protocol for file</li>
<li> &#8211; remove protocol for http if no web spidering is required</li>
</ul>
<pre>old line
   &lt;value&gt;protocol-file|protocol-http|urlfilter-regex|
      parse-(text|html|js|tika)|index-(basic|anchor)|
      query-(basic|site|url)|response-(json|xml)|
      summary-basic|scoring-opic|urlnormalizer-(pass|regex|basic)&lt;/value&gt;
new line
    &lt;value&gt;protocol-file|urlfilter-regex|parse-(text|html|js|tika)|
      index-(basic|anchor)|query-(basic|site|url)|response-(json|xml)|
      summary-basic|scoring-opic|urlnormalizer-(pass|regex|basic)&lt;/value&gt;</pre>
<p>Add a line to stop the root from being indexed</p>
<pre>   &lt;property&gt;
      &lt;name&gt;file.crawl.parent&lt;/name&gt;
      &lt;value&gt;false&lt;/value&gt;
   &lt;/property&gt;</pre>
<p><strong>2. Create Seed file. This contains a list of URI&#8217;s that will be starting point for crawler</strong></p>
<ul>
<li> in Nutch home directory, create seedURLs</li>
</ul>
<pre>     &gt; cat SeedUrls/url
     file://d:/Sandbox</pre>
<p><strong>3. Update conf/regex-urlfilter.txt </strong></p>
<p>update line to allow file</p>
<pre> # skip file: ftp: and mailto: urls 
 #-^(file|ftp|mailto):  
 # accept anything else</pre>
<p>+.</p>
<p><strong>4. Clean data from previous runs</strong></p>
<p>This step is important as every time you run nutch saves the crawled links in database and will start, indexing the saved links, irrespective of the new seed uri&#8217;s have the old link.</p>
<p>&gt; rm -r $NUTCH_HOME/indexDir</p>
<p><strong>5. Run Nutch</strong></p>
<p>&gt;  cd $NUTCH_HOME</p>
<p>&gt;  bin/nutch crawl seedUrl/urls  -dir indexDir</p>
<p><strong><br />
</strong></p>
<br /> Tagged: <a href='http://akedar.wordpress.com/tag/lucene/'>Lucene</a>, <a href='http://akedar.wordpress.com/tag/nutch/'>Nutch</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akedar.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akedar.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akedar.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akedar.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akedar.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akedar.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akedar.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akedar.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akedar.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akedar.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akedar.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akedar.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akedar.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akedar.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=205&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akedar.wordpress.com/2010/10/12/getting-nutch-1-2-to-index-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">akedar</media:title>
		</media:content>
	</item>
		<item>
		<title>YES to NoSQL</title>
		<link>http://akedar.wordpress.com/2010/08/13/nosql-mongodb-or-couchdb/</link>
		<comments>http://akedar.wordpress.com/2010/08/13/nosql-mongodb-or-couchdb/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 15:42:04 +0000</pubDate>
		<dc:creator>akedar</dc:creator>
				<category><![CDATA[noSQL]]></category>
		<category><![CDATA[mongoDb]]></category>

		<guid isPermaLink="false">http://akedar.wordpress.com/?p=75</guid>
		<description><![CDATA[What problem are noSQL databases solving? Ease of use, installation and maintenance Schema free &#8211; yet support searching, indexing, CRUD operations Support storing or multiple data formats, including large binary data Small footprint Scalability Cost High performance by way of lesser functionality and dropping noSQL is to databases what RISC architecture are to CPU architecture. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=75&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>What problem are noSQL databases solving?</h2>
<ul>
<li>Ease of use, installation and maintenance</li>
<li>Schema free &#8211; yet support searching, indexing, CRUD operations</li>
<li>Support storing or multiple data formats, including large binary data</li>
<li>Small footprint</li>
<li>Scalability</li>
<li>Cost</li>
<li>High performance by way of lesser functionality and dropping</li>
</ul>
<p>noSQL is to databases what RISC architecture are to CPU architecture. Performance and simplicity over complexity.</p>
<p>NoSQL style databases has often been termed non-relational databases, not surprisingly noSQL databases support relationships.  If they did not support relationships they would be of no use.  noSQL databases is a movement towards schema free databases.  They do not support implicitly support JOIN, this operation is done within application  using iteration or hookups.</p>
<h2><span style="color:#000000;">Whats wrong with Relational Databases</span></h2>
<ul>
<li>Cost</li>
<li>Setup and configuration effort</li>
<li>Supervision and periodic tuning</li>
<li>Overkill for small applications and medium sized apps</li>
<li>Rigid schema, applications grow and schema soon starts getting less cleaner</li>
<li>Modifying schema is hard</li>
<li>Harder to scale</li>
<li>Most web applications geared towards search/insert</li>
<li>Normalizing data:
<ul>
<li>was important when storage was costly</li>
<li>Joins are costly</li>
<li>Supports data integrity where rules are strictly enforced and data is consistent</li>
<li>hard to maintain multiple levels of truth</li>
<li>Not suited for fuzzy search or non-indexed search</li>
<li>De-normalized data is better manipulated by application where rules can be customized depending upon the situation</li>
<li>De-normalized data is better approach if application only does inserts and searches</li>
</ul>
</li>
<li>noSQL databases need atomicity on a single record level only</li>
</ul>
<h2><span style="color:#000000;">Drawbacks of noSQL databases</span></h2>
<ul>
<li>Data Integrity needs to be enforced in application</li>
<li>Duplicate and inconsistent data</li>
</ul>
<h2><span style="color:#000000;">Advantages</span></h2>
<ul>
<li>Small footprint &#8211; mobile devices, web based apps</li>
<li>Suited for JSON/Rest based interfaces</li>
<li>Scalability</li>
<li>Performance</li>
<li>Availability</li>
<li>Infrastructure &#8211; supported in clouds, any OS</li>
<li>Fluid schema</li>
</ul>
<p>Both these DB are disk based and document oriented Open-Source databases.  They have a rich text based administration interface</p>
<p>Useful Links</p>
<p><a class="wp-caption" title="MongoDb Admin" href="http://www.mongodb.org/display/DOCS/DBA+Operations+from+the+Shell" target="_blank">MongoDB Admin</a></p>
<p><a class="wp-caption" title="MongoDb interactive shell" href="http://www.mongodb.org/display/DOCS/Overview+-+The+MongoDB+Interactive+Shell" target="_blank">MongoDB interactive shell</a></p>
<p><a class="wp-caption" title="NoSql Landscape" href="http://www.vineetgupta.com/2010/01/nosql-databases-part-1-landscape.html" target="_blank">NoSQL Landscape</a></p>
<h3><strong><span style="color:#888888;"><span style="color:#000000;"><a title="MongoDb" href="http://akedar.wordpress.com/2010/08/13/mongodb/" target="_self">MongoDb</a></span><br />
</span></strong></h3>
<br /> Tagged: <a href='http://akedar.wordpress.com/tag/mongodb/'>mongoDb</a>, <a href='http://akedar.wordpress.com/tag/nosql/'>noSQL</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akedar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akedar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akedar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akedar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akedar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akedar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akedar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akedar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akedar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akedar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akedar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akedar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akedar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akedar.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=75&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akedar.wordpress.com/2010/08/13/nosql-mongodb-or-couchdb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">akedar</media:title>
		</media:content>
	</item>
		<item>
		<title>MongoDb</title>
		<link>http://akedar.wordpress.com/2010/08/13/mongodb/</link>
		<comments>http://akedar.wordpress.com/2010/08/13/mongodb/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 15:38:35 +0000</pubDate>
		<dc:creator>akedar</dc:creator>
				<category><![CDATA[mongoDB]]></category>
		<category><![CDATA[noSQL]]></category>
		<category><![CDATA[mongoDb]]></category>

		<guid isPermaLink="false">http://akedar.wordpress.com/?p=88</guid>
		<description><![CDATA[Scalable Indexing Geo-spatial indexing, finding objects by location, proximity Auto Sharding (version 1.7 onwards) &#8211; scaling by division Queries can be run in parallel across all shards Storage &#8211; disk based, using BSON (Binary serialized JSON) Supports binary large objects, images, videos Database replication support of replication clusters Automatic fail-over Master slave(s) configuration Concepts/Terms MongoDB==Relational [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=88&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>Scalable</li>
<li>Indexing</li>
<li>Geo-spatial indexing, finding objects by location, proximity</li>
<li>Auto Sharding (version 1.7 onwards) &#8211; scaling by division
<ul>
<li>Queries can be run in parallel across all shards</li>
</ul>
</li>
<li>Storage &#8211; disk based, using BSON (Binary serialized JSON)</li>
<li>Supports binary large objects, images, videos</li>
<li>Database replication
<ul>
<li>support of replication clusters</li>
<li>Automatic fail-over</li>
<li>Master slave(s) configuration</li>
</ul>
</li>
</ul>
<h3>Concepts/Terms MongoDB==Relational DB</h3>
<li>Documents == records/objects</li>
<li>Collections == tables</li>
<ul>
<li>A collection may have heterogeneous set of documents</li>
<li>No need to pre-define columns or fields within a collection</li>
</ul>
<li>query == cursor</li>
<li>Index == indexes</li>
<li>embedding and linking == Join</li>
<li>Queries return cursor not collections (for performance reasons)</li>
<h4>Drawbacks</h4>
<li>No Transaction support</li>
<li>No data integrity</li>
<h4><a title="MongoDb Installation" href="/installing-and-setting-mongodb/ " target="_self">MongoDB &#8211; Installation and First Steps</a></h4>
<h4><a title="MongoDb Interactive shell" href="/mongodb-interactive-shell/" target="_self">MongoDb Interactive shell &#8211; basic commands</a></h4>
<h4><a title="MongoDb Interactive shell - searching" href="/mongodb-interactive-shell-searching-records/" target="_self">MongoDb Interactive shell &#8211; searching records</a></h4>
<br /> Tagged: <a href='http://akedar.wordpress.com/tag/mongodb/'>mongoDb</a>, <a href='http://akedar.wordpress.com/tag/nosql/'>noSQL</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akedar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akedar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akedar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akedar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akedar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akedar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akedar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akedar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akedar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akedar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akedar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akedar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akedar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akedar.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=88&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akedar.wordpress.com/2010/08/13/mongodb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">akedar</media:title>
		</media:content>
	</item>
		<item>
		<title>Web 3.0 and Semantic Web</title>
		<link>http://akedar.wordpress.com/2008/10/01/web-30-and-semantic-web/</link>
		<comments>http://akedar.wordpress.com/2008/10/01/web-30-and-semantic-web/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 18:20:32 +0000</pubDate>
		<dc:creator>akedar</dc:creator>
				<category><![CDATA[SemanticWeb]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 3.0]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[microformats]]></category>
		<category><![CDATA[rdf]]></category>
		<category><![CDATA[rdfa]]></category>

		<guid isPermaLink="false">http://akedar.wordpress.com/?p=28</guid>
		<description><![CDATA[Imagine searching for something on web and finding it in the first page of search results, how often does this happen ?  if you happen to be looking for some product then one sees results after results selling the product.  Anyway Semantic Web or Web 3.0 could change all this,  as web sites start marking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=28&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Imagine searching for something on web and finding it in the first page of search results, how often does this happen ?  if you happen to be looking for some product then one sees results after results selling the product.  Anyway Semantic Web or Web 3.0 could change all this,  as web sites start marking their content one is more likely to find search results to be relevant.  As the content ( include bad and misleading content) grows exponentially finding relevant content will grow more and more difficult.  <a title="Web 3.0 / SemanticWeb" href="http://technology.avenuea-razorfish.com/2008/09/30/ready-for-web-30semantic-web/" target="_blank">Read what Semantic web</a> is all about and how it will change our web experience.</p>
<p>Searching is just one of the areas where we will see the influence  of Web 3.0, changes will also affect on how we are able to mashup information from different sites to get relevant answers.  For example a query &#8216;list all US Presidents that studied in ivy league ?&#8217; .  looking at the query we instinctively know what we are looking for, search engines will parse it for keywords and list out all web pages that have the words US president, ivy league.  and since the term ivy league applies to certain universities the results would be all over the place.  The above scenario is a bit simplistic because most search engines understand that &#8216;US Presidents&#8217; as a single keyword and not two, anyway I hope you get my drift on what we can expect from Web 3.0.</p>
<p>Semantic web article is also posted at <a title="Web 3.0" href="http://www.informationzen.org/profiles/blog/show?id=2043787%3ABlogPost%3A15874" target="_blank">informationzen.org</a>.</p>
<br /> Tagged: CMS, microformats, rdf, rdfa, SemanticWeb, Web 3.0 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akedar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akedar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akedar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akedar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akedar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akedar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akedar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akedar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akedar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akedar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akedar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akedar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akedar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akedar.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=28&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akedar.wordpress.com/2008/10/01/web-30-and-semantic-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">akedar</media:title>
		</media:content>
	</item>
		<item>
		<title>Is wordpress a CMS/ECM killer!!</title>
		<link>http://akedar.wordpress.com/2008/09/26/is-wordpress-a-cmsecm-killer/</link>
		<comments>http://akedar.wordpress.com/2008/09/26/is-wordpress-a-cmsecm-killer/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 15:21:29 +0000</pubDate>
		<dc:creator>akedar</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[wcm]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://akedar.wordpress.com/?p=3</guid>
		<description><![CDATA[With 1.7 million WordPress downloads of vers 2.6 and loads of plugins for everything imaginable, is WordPress going to replace traditional CMS/WCM/ECM applications ? Drupal and Joomla are qually impressive.  Read more at informationzen.org Tagged: CMS, drupal, wcm, wordpress<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=3&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<dl class="ifield display editable twine prop-description">
<dd>
<div class="formatted-content">
<p>With 1.7 million WordPress downloads of vers 2.6 and loads of plugins for everything imaginable, is WordPress going to replace traditional CMS/WCM/ECM applications ? Drupal and Joomla are qually impressive.  Read more at i<a title="Wordpress a CMS/ECM killer" href="http://www.informationzen.org/profiles/blog/show?id=2043787%3ABlogPost%3A15222" target="_blank">nformationzen.org</a></div>
</dd>
</dl>
<dl class="ifield display editable twine prop-url">
<dd>
<div class="formatted-content"><a rel="nofollow" href="http://www.informationzen.org/profiles/blog/show?id=2043787%3ABlogPost%3A15222" target="_blank"><br />
</a></div>
</dd>
</dl>
<br /> Tagged: CMS, drupal, wcm, wordpress <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akedar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akedar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akedar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akedar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akedar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akedar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akedar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akedar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akedar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akedar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akedar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akedar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akedar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akedar.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=3&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akedar.wordpress.com/2008/09/26/is-wordpress-a-cmsecm-killer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">akedar</media:title>
		</media:content>
	</item>
		<item>
		<title>Microformats &#8211; first step towards semantic web</title>
		<link>http://akedar.wordpress.com/2008/09/26/microformats_n_cms/</link>
		<comments>http://akedar.wordpress.com/2008/09/26/microformats_n_cms/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 14:57:42 +0000</pubDate>
		<dc:creator>akedar</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[SemanticWeb]]></category>
		<category><![CDATA[Web 3.0]]></category>
		<category><![CDATA[microformat]]></category>
		<category><![CDATA[rdfa]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Semantic web will have a tough time relying solely on natural language processing to extract semantic knowledge from content.  Microformats are not only useful for annotating data on web pages but their format specifications are a good starting point for designing content entry forms for commonly used entities.  Some of commonly used microformats are hCard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=1&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Semantic web will have a tough time relying solely on natural language processing to extract semantic knowledge from content.  <a title="Microformats" href="http://microformats.org/wiki/Main_Page" target="_blank">Microformats</a> are not only useful for annotating data on web pages but their format specifications are a good starting point for designing content entry forms for commonly used entities.  Some of commonly used microformats are</p>
<ul>
<li>hCard for user profile</li>
<li>hCalendar for calendar or events</li>
<li>hReview &#8211; for product/recipe reviews</li>
<li>geo &#8211; geographical location</li>
<li>hatom &#8211; rss entry/blogs/web pages</li>
<li>XFN &#8211; human relationships</li>
</ul>
<p>Using microformats is not just useful for semantic web, which is not expected until year 2010, but embedding microformats is more likely to increase your rankings in search listings.  With the amount of data on web growing exponentially, keyword based search is becoming less of a solution.  Yahoo has already <a title="Yahoo support for semantic data" href="http://www.ysearchblog.com/archives/000527.html" target="_blank">announced</a> that it will be processing web content for semantic data and its support for microformats.</p>
<br /> Tagged: CMS, microformat, rdfa, SemanticWeb, yahoo <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akedar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akedar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akedar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akedar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akedar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akedar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akedar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akedar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akedar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akedar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akedar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akedar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akedar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akedar.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akedar.wordpress.com&amp;blog=4988879&amp;post=1&amp;subd=akedar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akedar.wordpress.com/2008/09/26/microformats_n_cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">akedar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
