<?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>Harshit kumar&#039;s Weblog</title>
	<atom:link href="http://harshitkumar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://harshitkumar.wordpress.com</link>
	<description>Random Musings</description>
	<lastBuildDate>Tue, 10 Jan 2012 22:33:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='harshitkumar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Harshit kumar&#039;s Weblog</title>
		<link>http://harshitkumar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://harshitkumar.wordpress.com/osd.xml" title="Harshit kumar&#039;s Weblog" />
	<atom:link rel='hub' href='http://harshitkumar.wordpress.com/?pushpress=hub'/>
		<item>
		<title>R and Hierarchical Agglomerative Clustering</title>
		<link>http://harshitkumar.wordpress.com/2012/01/10/r-and-hierarchical-agglomerative-clustering/</link>
		<comments>http://harshitkumar.wordpress.com/2012/01/10/r-and-hierarchical-agglomerative-clustering/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 21:53:10 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Clustering]]></category>
		<category><![CDATA[clustering]]></category>
		<category><![CDATA[HAC]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[similarity matrix]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=91</guid>
		<description><![CDATA[Struggling for the past few hours to draw a dendrogram for a given similarity matrix. Having searched through various cluster analysis software, I finally decided to go ahead with R. Most of the cluster analysis software available on the web start with the initial data and generate either a similarity matrix or distance matrix which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=91&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Struggling for the past few hours to draw a dendrogram for a given similarity matrix. Having searched through various cluster analysis software, I finally decided to go ahead with R. Most of the cluster analysis software available on the web start with the initial data and generate either a similarity matrix or distance matrix which is stored as object in memory. Finally, they use the similarity matrix or distance matrix to generate clusters.</p>
<p>Since I am using a different method for calculating the similarity, the given similarity measures in cluster analysis software were of no use to me. FYI, I am trying to discover latent semantic structure between terms. For that, I am using SVD as a measure to generate similarity between terms.</p>
<p>I have a similarity matrix that consist of terms as rows and terms as columns, which looks like follows:</p>
<p>J    G   A   T   I<br />
J   1,-0.12,0.84,0,0.19<br />
G,-0.12,1,0.43,0,0.95<br />
A,0.84,0.43,1,0,0.69<br />
T,0,0,0,1,0<br />
I,0.19,0.95,0.69,0,1</p>
<p>R is an excellent tool that allows me to input a similarity matrix, then convert it into distance matrix. The distance matrix is further used for generating clusters which can be plotted using dendrogram, quick and easy. The following R script achieve the objective.</p>
<p>A&lt;-matrix(c(1,-0.12,0.84,0,0.19,-0.12,1,0.43,0,0.95,0.84,0.43,1,0,0.69,0,0,0,1,0,0.19,</p>
<p>0.95,0.69,0,1),nrow=5,ncol=5,byrow=TRUE)</p>
<p>dimnames(A)&lt;-list(c(&#8220;java&#8221;,&#8221;game&#8221;,&#8221;application&#8221;,&#8221;travel&#8221;,&#8221;iphone&#8221;),c(&#8220;java&#8221;,&#8221;game&#8221;,</p>
<p>&#8220;application&#8221;,&#8221;travel&#8221;,&#8221;iphone&#8221;))<br />
sim2dist &lt;- function(mx) as.dist(sqrt(outer(diag(mx), diag(mx), &#8220;+&#8221;) &#8211; 2*mx))<br />
D = sim2dist(A)<br />
hc = hclust(D)<br />
plot(hc)</p>
<p>The output looks like follows:</p>
<div id="attachment_93" class="wp-caption alignnone" style="width: 310px"><a href="http://harshitkumar.files.wordpress.com/2012/01/output.jpeg"><img class="size-medium wp-image-93" title="HAC Clustering output" src="http://harshitkumar.files.wordpress.com/2012/01/output.jpeg?w=300&#038;h=287" alt="" width="300" height="287" /></a><p class="wp-caption-text">HAC Clustering</p></div>
<p>We can also use agnes package for HAC and kmeans</p>
<p>A&lt;-matrix(c(1,-0.12,0.84,0,0.19,-<br />
0.12,1,0.43,0,0.95,0.84,0.43,1,0,0.69,0,0,0,1,0,0.19,</p>
<p>0.95,0.69,0,1),nrow=5,ncol=5,byrow=TRUE)<br />
dimnames(A)&lt;-list(c(&#8220;java&#8221;,&#8221;game&#8221;,&#8221;application&#8221;,&#8221;travel&#8221;,&#8221;iphone&#8221;),<br />
c(&#8220;java&#8221;,&#8221;game&#8221;,&#8221;application&#8221;,&#8221;travel&#8221;,&#8221;iphone&#8221;))<br />
#sim2dist &lt;- function(mx) as.dist(sqrt(outer(diag(mx), diag(mx), &#8220;+&#8221;) &#8211; 2*mx))<br />
#D = sim2dist(A)<br />
#Using hclus for HAC<br />
#hc = hclust(D)<br />
#plot(hc)</p>
<p>#using agnes for HAC<br />
#hc &lt;- agnes(A,diss=FALSE,metric=&#8221;euclidean&#8221;,stand=FALSE,method=&#8221;single&#8221;)<br />
#print(hc)<br />
#plot(hc,ask=FALSE,which.plots=NULL)</p>
<p>#using kmeans for clusering<br />
km&lt;-kmeans(A,3,15)<br />
print(km)<br />
plot(x, col=km$cluster)<br />
points(km$centers,col=1:2,pch=8)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=91&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2012/01/10/r-and-hierarchical-agglomerative-clustering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>

		<media:content url="http://harshitkumar.files.wordpress.com/2012/01/output.jpeg?w=300" medium="image">
			<media:title type="html">HAC Clustering output</media:title>
		</media:content>
	</item>
		<item>
		<title>Creativity in Kids</title>
		<link>http://harshitkumar.wordpress.com/2010/07/21/creativity-in-kids/</link>
		<comments>http://harshitkumar.wordpress.com/2010/07/21/creativity-in-kids/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 02:27:12 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[kids]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=88</guid>
		<description><![CDATA[Quite concerned unconsciously the way my dear son behaves by not focusing or concentrating whenever asked to do something related to studies other than eating icecreams or water melons. Today, I came across this interesting video [1] on Ted.com about how our education system kills creativity. An interesting snippet from the talk: Lynne had been [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=88&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quite concerned unconsciously the way my dear son behaves by not focusing or concentrating whenever asked to do something related to studies other than eating icecreams or water melons. </p>
<p>Today, I came across this interesting video [1] on Ted.com  about how our education system kills creativity.</p>
<p>An interesting snippet from the talk:</p>
<p><i>Lynne had been underperforming at school, so her mother took her to the doctor and explained about her fidgeting and lack of focus. After hearing everything her mother said, the doctor told Lynne that he needed to talk to her mother privately for a moment. He turned on the radio and walked out. He then encouraged her mother to look at Lynne, who was dancing to the radio. The doctor said, she is not sick, she is a dancer and encouraged Lynne&#8217;s mother to take her to dance school </i></p>
<p>I am sure most of the doctors will put her on medication.</p>
<p>So, what is he doing now? She is a ballerina, dancer, actor, theatre director, television director and choreographer noted for her popular theatre choreography associated with the iconic musicals Cats and the current longest running show in Broadway history, The Phantom of the Opera. She is a multi millionaire, has her own production company.</p>
<p>My take on all this, every child is born with a talent. parents job is to<br />
identify it<br />
encourage it<br />
support it<br />
leave rest to god&#8230;.. R U Listening???? am sure  you are<br />
Gillian Barbara Lynne [2]<br />
1. http://www.ted.com/talks/ken_robinson_says_schools_kill_creativity.html</p>
<p>2. http://en.wikipedia.org/wiki/Gillian_Lynne</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=88&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/07/21/creativity-in-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Punctuation</title>
		<link>http://harshitkumar.wordpress.com/2010/07/03/punctuation/</link>
		<comments>http://harshitkumar.wordpress.com/2010/07/03/punctuation/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 08:20:19 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[grammar]]></category>
		<category><![CDATA[punctuation]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=86</guid>
		<description><![CDATA[Now, this is an interesting post. It often goes unnoticed for me being not a native speaker. Now, here is a sentence which goes like this: A woman without her man is nothing. The above sentence can mean different with the punctuation; lets see Way1 A woman, without her man, is nothing. Way 2 A [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=86&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now, this is an interesting post.<br />
It often goes unnoticed for me being not a native speaker.<br />
Now, here is a sentence which goes like this:<br />
A woman without her man is nothing.</p>
<p>The above sentence can mean different with the punctuation; lets see</p>
<p>Way1<br />
 A woman, without her man, is nothing.</p>
<p>Way 2</p>
<p>A woman; without her, man is nothing.</p>
<p>Isn&#8217;t it interesting. </p>
<p>I remember the first research paper, that I wrote way back in 2006, received some comments from the reviewer that punctuation needs review especially a, the, an, and commas.</p>
<p>That time I wondered that we non native  english speaker can speak and understand but when it comes to writing,<br />
 we are not good. Believe me, it took me a lot of time to understand this and more time to accept it and much more to admit it. </p>
<p>This post is a copy of <a href="http://www.sheetalmakhan.com/2010/06/importance-of-punctuation.html">another post </a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=86&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/07/03/punctuation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>JOSEKI with SDB and MySQL</title>
		<link>http://harshitkumar.wordpress.com/2010/06/29/joseki-with-sdb-and-mysql/</link>
		<comments>http://harshitkumar.wordpress.com/2010/06/29/joseki-with-sdb-and-mysql/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 03:56:21 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SPARQL]]></category>
		<category><![CDATA[JOSEKI]]></category>
		<category><![CDATA[SDB]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=82</guid>
		<description><![CDATA[1. install JOSEKI 2. Install SDB from http://sourceforge.net/projects/jena/files/SDB/ Download the zip file, in my case, I stored the zip file sdb-1.3.1.zip in \usr\local\SDB_svn 3. unzip SDB-1.3.1.zip This will create a directory SDB-1.3.1 under \usr\local\SDB_svn All the SDB arsenal is located inside SDB-1.3.1 4. Install MySql 4.1 sudo apt-get install mysql-server 4.2 sudo apt-get install mysql-query-browser [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=82&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. <a href="http://harshitkumar.wordpress.com/2010/06/29/configure-joseki-on-ubuntu/">install JOSEKI</a></p>
<p>2. Install SDB from http://sourceforge.net/projects/jena/files/SDB/<br />
Download the zip file, in my case, I stored the zip file sdb-1.3.1.zip in  \usr\local\SDB_svn</p>
<p>3. unzip SDB-1.3.1.zip<br />
This will create a directory SDB-1.3.1 under \usr\local\SDB_svn<br />
All the SDB arsenal is located inside SDB-1.3.1</p>
<p>4. Install MySql<br />
	4.1 sudo apt-get install mysql-server<br />
	4.2 sudo apt-get install mysql-query-browser<br />
        4.3 mysql -u root -p<br />
you will be prompted to enter password.<br />
	4.5 create database rdf2wav CHARACTER SET UTF8</p>
<p>5. Create a file sdb.ttl under \usr\local\SDB_svn\SDB-1.3.1<br />
Write the following in sdb.ttl (dont include ##############)<br />
#######################################<br />
# See Store/ for example sdb files.</p>
<p>@prefix sdb:  .<br />
@prefix rdfs:  .<br />
@prefix rdf:  .<br />
@prefix ja:  .</p>
<p># MySQL &#8211; InnoDB<br />
 rdf:type sdb:Store ;<br />
sdb:layout &#8220;layout2&#8243; ;<br />
sdb:connection  ;<br />
sdb:engine &#8220;InnoDB&#8221; ; # MySQL specific<br />
.<br />
 rdf:type sdb:SDBConnection ;<br />
sdb:sdbType &#8220;MySQL&#8221; ; # Needed for JDBC URL<br />
sdb:sdbHost &#8220;localhost&#8221; ; # or the IP address of the database server<br />
sdb:sdbName &#8220;rdf2wav&#8221; ; # MySQL database name<br />
sdb:sdbUser &#8220;root&#8221;; #mysql user name<br />
sdb:sdbPassword &#8220;bike&#8221;; #mysql password<br />
sdb:driver &#8220;com.mysql.jdbc.Driver&#8221; ;<br />
.</p>
<p>########################################</p>
<p>6. Write the following in .bashrc of your home directory</p>
<p>#####################################<br />
export SDBROOT=/usr/local/SDB_svn/SDB-1.3.1<br />
export SDB_JDBC=/usr/local/SDB_svn/SDB-1.3.1/lib/mysql-connector-java-5.1.12-bin.jar<br />
export PATH=$PATH:$SDBROOT<br />
export CLASSPATH=/usr/local/SDB_svn/SDB-1.3.1/lib/sdb-1.3.1.jar<br />
#####################################</p>
<p>Note that, you need to download mysql-connector-java-5.1.12-bin.jar inorder to connect SDB with the SqlServer. If you dont have it, download it and store it in the lib forder of SDBROOT.</p>
<p>7. Restart the terminal and execute the following command, which will create 4 tables<br />
bin/sdbconfig &#8211;sdb-sdb.ttl &#8211;create</p>
<p>The four tables that were created are<br />
Nodes, Prefixes, Quads, and Triples.</p>
<p>8. format the tables<br />
bin/sdbconfig &#8211;sdb=sdb.ttl &#8211;format</p>
<p>9. Run the test suite<br />
bin/sdbconfig -v &#8211;time -sdb=sdb.ttl testing/manifest-sdb.ttl<br />
if this runs fine with no error, then everything is correct until now.</p>
<p>10. Load the RDF data<br />
bin/sdbload -v &#8211;time -sdb=sdb.ttl /path/to/your/rdffile<br />
ex:<br />
bin/sdbload -v &#8211;time -sdb=sdb.ttl /usr/local/hadoop/I0/University0_0.owl<br />
or<br />
bin/sdbload -v &#8211;time -sdb=sdb.ttl /usr/local/hadoop/I0/*</p>
<p>The last statement is useful if you have multiple RDF files.</p>
<p>The statement above will load the RDF data in the MySql tables.</p>
<p>11. Execute the query<br />
bin/sdbquery -v &#8211;time -sdb=sdb.ttl &#8216;select ?x ?y ?z where {?x ?y ?z} limit 10&#8242;</p>
<p>If you get results, then SDB is configured with MySql to execute SPARQL queries </p>
<p>12.  Next step is to configure JOSEKI with SDB and MySql<br />
modify the data section of joseki-config-sdb.ttl and rename it as joseki-config.ttl<br />
My joseki-config.ttl data section looks like this</p>
<p> rdf:type sdb:Store  ;</p>
<p>    rdfs:label &#8220;SDB&#8221; ;</p>
<p>    sdb:layout         &#8220;layout2&#8243; ;</p>
<p>    sdb:connection </p>
<p>    [ rdf:type sdb:SDBConnection ;</p>
<p>        sdb:sdbType	"MySql" ;</p>
<p>        sdb:sdbHost     "localhost" ;<br />
        sdb:sdbName     "rdf2wav" ;<br />
	sdb:sdbUser	"root";<br />
	sdb:sdbPassword	"bike";</p>
<p>    ]</p>
<p>    .</p>
<p>13. Start rdf server</p>
<p>bin/rdfserver</p>
<p>The above statement execute from the terminal. Start the terminal, go to the JOSEKI installation folder.</p>
<p>14. http://localhost:2020 for testing SPARQL query</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=82&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/06/29/joseki-with-sdb-and-mysql/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Configure Joseki on Ubuntu</title>
		<link>http://harshitkumar.wordpress.com/2010/06/29/configure-joseki-on-ubuntu/</link>
		<comments>http://harshitkumar.wordpress.com/2010/06/29/configure-joseki-on-ubuntu/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 03:40:38 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[SPARQL]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[JOSEKI]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=81</guid>
		<description><![CDATA[1. Download Joseki  &#8211; put it under /home/kumar/Documents/ 2. Unzip zip file, there will be a folder Joseki-3.4.1 3. In your favourite editor, open .bashrc under your home folder. in my case it is /home/kumar/.bashrc 4. At the end of .bashrc, add the following lines export PATH=$PATH:/home/kumar/Documents/Joseki-3.4.1 export JOSEKIROOT=/home/kumar/Documents/Joseki-3.4.1 OR export JOSEKIROOT=/home/kumar/Documents/Joseki-3.4.1 export PATH=$PATH:JOSEKIROOT You [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=81&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Download Joseki  &#8211; put it under /home/kumar/Documents/</p>
<p>2. Unzip zip file, there will be a folder Joseki-3.4.1</p>
<p>3. In your favourite editor, open .bashrc under your home folder. in my case it is /home/kumar/.bashrc</p>
<p>4. At the end of .bashrc, add the following lines</p>
<p>export PATH=$PATH:/home/kumar/Documents/Joseki-3.4.1</p>
<p>export JOSEKIROOT=/home/kumar/Documents/Joseki-3.4.1</p>
<p>OR</p>
<p>export JOSEKIROOT=/home/kumar/Documents/Joseki-3.4.1</p>
<p>export PATH=$PATH:JOSEKIROOT</p>
<p>You need to declare JOSEKIROOT variable, because JOSEKI installation requires this as it looks for JOSEKIROOT environt variable to locate the JOSEKI files</p>
<p>You add JOSEKIROOT to the environment variable PATH, so that your terminal can locate JOSEKI files</p>
<p>5.  chmod 777 /home/kumar/Documents/Joseki-3.4.1/bin/*<br />
This means, give all rights to all users<br />
#Though Joseki documents recommends chmod u+x bin/* &#8211; I am always liberal</p>
<p>6. Open the file joseki-config.ttl located under /home/kumar/Documents/Joseki-3.4.1/</p>
<p>Modify the section ## Datasets of joseki-config.ttl.<br />
Datasets sections contain the location of RDF Dataset on which to Run SPARQL queries.</p>
<p>Here you add the path to the folder where rdf file is located. When you issue the SPARQL query, the query will execute on the listed rdf files in joseki-config.ttl</p>
<p>Under the section ## Datasets, locate the following line</p>
<p>ja:content [ja:externalContent &lt;file:/home/kumar/Desktop/lubm.rdf&gt; ] ;</p>
<p>&lt;file:path to your rdf file&gt;</p>
<p>If you have more than one file, you can repeat this line. This gets inconvenient if there are thousands of file. To solve such issue, use MySQL Server with JOSEKI. We will look in this in the next post.</p>
<p>7. Open terminal, go to /home/kumar/Documents/Joseki-3.4.1<br />
execute the rdfserver script<br />
bin/rdfserver</p>
<p>if there are no errors, you can open a browser type the following URL http://localhost:2020/ and issue queries which will execute on the listed RDF files in joseki-config.ttl</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=81&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/06/29/configure-joseki-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Can tweeting be dangerous?</title>
		<link>http://harshitkumar.wordpress.com/2010/04/20/can-tweeting-be-dangerous/</link>
		<comments>http://harshitkumar.wordpress.com/2010/04/20/can-tweeting-be-dangerous/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 06:24:51 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IPL]]></category>
		<category><![CDATA[Lalit Modi]]></category>
		<category><![CDATA[Shashi Tharoor]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/2010/04/20/can-tweeting-be-dangerous/</guid>
		<description><![CDATA[No Doubt tweeting or facebook updates are the latest buzz. yes, people are socially active. But have anyone ever thought that it can be dangerous. Now, some good aspects of tweeting is that celebrities and companies are using it as a communication channel to interact with people and customers. No doubt that Facebook played a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=79&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No Doubt tweeting or facebook updates are the latest buzz. yes, people are socially active. But have anyone ever thought that it can be dangerous.</p>
<p>Now, some good aspects of tweeting is that celebrities and companies are using it as a communication channel to interact with people and customers. No doubt that Facebook played a greater role in Obama&#8217;s victory [1,2]. He communicated with the youth through social networking sites like Facebook etc</p>
<p>Now look at the downside of the social communication sites. Recently, Shashi Tharoor [3] gave up his foreign ministry post because of the controversy he ran into or say because of dirty politics. Modi[4], IPL chairman, was also very actively twitting about the updates and this made Income Tax department active. Shashi was also active thru Facebook sharing his thoughts with the world. As a result of all these controversies , Shashi lost his ministerial powers and very soon Modi will not be spared. There are rumours that he will resign after IPL 3 will be over.<br />
The article[5] by V Raghunathan published in Times of India probes how Social Media led to the fall of Shashi Tharoor and Modi. Both fall from great heights, rightly said&#8230;.. </p>
<p>Once more proven, it is either the money or the women that leads to fight. In this controversy both were involved.</p>
<p>[1] http://www.usnews.com/articles/opinion/2008/11/19/barack-obama-and-the-facebook-election.html</p>
<p>[2] http://www.facebook.com/notes/public-relations-sydney/how-social-media-won-obama-the-us-election/137322629321</p>
<p>[3] http://en.wikipedia.org/wiki/Shashi_Tharoor</p>
<p>[4] http://en.wikipedia.org/wiki/Lalit_Modi</p>
<p>[5] http://blogs.timesofindia.indiatimes.com/Outraged/entry/they-have-both-fallen-but</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=79&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/04/20/can-tweeting-be-dangerous/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Are Americans Afraid of Developing Countries: Food For Thought</title>
		<link>http://harshitkumar.wordpress.com/2010/01/29/are-americans-afraid-of-developing-countries-food-for-thought/</link>
		<comments>http://harshitkumar.wordpress.com/2010/01/29/are-americans-afraid-of-developing-countries-food-for-thought/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:21:58 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[America]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Times of India]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=75</guid>
		<description><![CDATA[An undeniable fact, the Americans think that they are most powerful race in the world and also most addicted to the belief that other nations in the world are in a conspiracy to undervalue them. An excerpt from the article [1]  published in Times Of India dated Jan 29th 2010. ‘‘These nations (India, China, Germany [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=75&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>An undeniable fact, the Americans think that they are most powerful race in the world and also most addicted to the belief that other nations in the world  are in a conspiracy to undervalue them.</p>
<p>An excerpt from the article [1]  published in Times Of India dated Jan 29th 2010.<br />
‘‘<em><span style="color:#0000ff;">These nations (India, China, Germany etc) aren’t playing for second place. They’re putting more emphasis on math and science. They’re rebuilding their infrastructure. They’re making serious investments in clean energy because they want those jobs. Well, I do not accept second place for the United States of America</span></em>,’’ said Obama.</p>
<p>[1] <a href="http://epaper.timesofindia.com/Default/Scripting/ArticleWin.asp?From=Archive&amp;Source=Page&amp;Skin=TOINEW&amp;BaseHref=CAP/2010/01/29&amp;PageLabel=3&amp;EntityId=Ar00301&amp;ViewMode=HTML&amp;GZ=T">http://epaper.timesofindia.com/Default/Scripting/ArticleWin.asp?From=Archive&amp;Source=Page&amp;Skin=TOINEW&amp;BaseHref=CAP/2010/01/29&amp;PageLabel=3&amp;EntityId=Ar00301&amp;ViewMode=HTML&amp;GZ=T</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=75&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/01/29/are-americans-afraid-of-developing-countries-food-for-thought/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>The genius Paul Erdos</title>
		<link>http://harshitkumar.wordpress.com/2010/01/29/the-genius-paul-erdos/</link>
		<comments>http://harshitkumar.wordpress.com/2010/01/29/the-genius-paul-erdos/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:19:39 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=5</guid>
		<description><![CDATA[Today, while working in my office, I came across a blog which referred to a great prodigy in mathematics, Paul Erdos. Earlier I saw some people mentioning on their website, that their erdos number is 1 or 2 or 3&#8230;.. At that time I gave it a pass. First of all, Paul Erdos is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=5&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, while working in my office, I came across a blog which referred to a great prodigy in mathematics,  Paul Erdos. Earlier I saw some people mentioning on their website, that their erdos number is 1 or 2 or 3&#8230;.. At that time I gave it a pass.</p>
<p>First of all, <a href="http://en.wikipedia.org/wiki/Paul_Erd%C5%91s">Paul Erdos</a> is a Hungarian mathematician who published work on number theory and other stuff which I am never able to understand <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  I expect my son to understand all this. Ha Ha Ha&#8230;..</p>
<p>So this guy, never married, no kids, completely work alcoholic, nomad, prodigy and one thing very unique, he has the highest number of co author in his published work. Thats why one of his friend invented the concept of Erdos number.</p>
<p>so, if I have an erdos number of 1, that means, I have published a paper with him or I have been on of his co-author. And If I have an erdos number of 2, that means, some other guy with whom I have published a paper, that guy is the co-author of Erdos. Erdos himself has the erdos number of 0.</p>
<p>So what is my erdos number? Well, I have to still figure it out, at present I donot want to, but may be some time later. Check Yours thought&#8230;..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=5&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/01/29/the-genius-paul-erdos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>I am alone not lLonely</title>
		<link>http://harshitkumar.wordpress.com/2010/01/24/i-am-alone-not-llonely/</link>
		<comments>http://harshitkumar.wordpress.com/2010/01/24/i-am-alone-not-llonely/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 04:55:25 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/?p=63</guid>
		<description><![CDATA[The tagline surfaced after reading the article[1] &#8220;In Solitary Company&#8221; [1] Vinita Dawara Nangia, &#8220;In Solitary Company&#8221;, Aug 2009, Available online at http://epaper.timesofindia.com/Default/Scripting/ArticleWin.asp?From=Archive&#38;Source=Page&#38;Skin=TOINEW&#38;BaseHref=CAP/2009/08/09&#38;PageLabel=58&#38;EntityId=Ar05800&#38;ViewMode=HTML&#38;GZ=T<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=63&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The tagline surfaced after reading the article[1] &#8220;In Solitary Company&#8221;</p>
<p>[1] Vinita Dawara Nangia, &#8220;In Solitary Company&#8221;, Aug 2009, Available online at http://epaper.timesofindia.com/Default/Scripting/ArticleWin.asp?From=Archive&amp;Source=Page&amp;Skin=TOINEW&amp;BaseHref=CAP/2009/08/09&amp;PageLabel=58&amp;EntityId=Ar05800&amp;ViewMode=HTML&amp;GZ=T</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=63&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/01/24/i-am-alone-not-llonely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>An Interesting protocol to communicate train delays using missed calls :)</title>
		<link>http://harshitkumar.wordpress.com/2010/01/24/an-interesting-protocol-to-communicate-train-delays-using-missed-calls/</link>
		<comments>http://harshitkumar.wordpress.com/2010/01/24/an-interesting-protocol-to-communicate-train-delays-using-missed-calls/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 04:53:09 +0000</pubDate>
		<dc:creator>harshitkumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[communication protocol mobile-phone train-delay TOI]]></category>

		<guid isPermaLink="false">http://harshitkumar.wordpress.com/2010/01/24/an-interesting-protocol-to-communicate-train-delays-using-missed-calls/</guid>
		<description><![CDATA[I can across a new article in TOI [1] that talks about how passengers on the Delhi-Palwal and Delhi-Rewari routes has been giving halfhourly updates so as to notify train delays 1. http://epaper.timesofindia.com/Default/Scripting/ArticleWin.asp?From=Archive&#38;Source=Page&#38;Skin=TOINEW&#38;BaseHref=CAP/2010/01/24&#38;PageLabel=12&#38;EntityId=Ar01201&#38;ViewMode=HTML&#38;GZ=T An Excerpt from the article, about how the communication works. A commuter at the station sends a missed call to another passenger [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=73&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I can across a new article in TOI [1] that talks about how passengers on the Delhi-Palwal and Delhi-Rewari routes has been giving halfhourly updates so as to notify train delays</p>
<p>1. http://epaper.timesofindia.com/Default/Scripting/ArticleWin.asp?From=Archive&amp;Source=Page&amp;Skin=TOINEW&amp;BaseHref=CAP/2010/01/24&amp;PageLabel=12&amp;EntityId=Ar01201&amp;ViewMode=HTML&amp;GZ=T</p>
<p>An Excerpt from the article, about how the communication works.<br />
A commuter at the station sends a missed call to another passenger travelling on the train, asking her for an update on the train.‘‘If the train is 10 minutes late, the passenger repliles with one missed call. If there is a delay of 20 minutes, there are two missed calls. Three missed calls mean the delay is for over 20 minutes.<br />
    If the call is disconnected within five seconds even as the passenger on the platform makes the call, it signals that the train has been cancelled. If it gets a ‘busy mode’ response, the message is that the train is over an hour late. If you receive one missed call and then receive another missed call a few moments later, it is presumed that the train is delayed by over an hour. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harshitkumar.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harshitkumar.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harshitkumar.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harshitkumar.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harshitkumar.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harshitkumar.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harshitkumar.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harshitkumar.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harshitkumar.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harshitkumar.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harshitkumar.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harshitkumar.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harshitkumar.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harshitkumar.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harshitkumar.wordpress.com&amp;blog=4931981&amp;post=73&amp;subd=harshitkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harshitkumar.wordpress.com/2010/01/24/an-interesting-protocol-to-communicate-train-delays-using-missed-calls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e79cfd766b24bfaf376fd8b31db3112?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harshitkumar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
