<?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>My Thoughts</title>
	<atom:link href="http://gmemon.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gmemon.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 14 Apr 2010 11:31:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gmemon.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My Thoughts</title>
		<link>http://gmemon.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gmemon.wordpress.com/osd.xml" title="My Thoughts" />
	<atom:link rel='hub' href='http://gmemon.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tips and Tricks for Analyzing Large Databases</title>
		<link>http://gmemon.wordpress.com/2010/04/09/few-tips-for-analyzing-large-databases/</link>
		<comments>http://gmemon.wordpress.com/2010/04/09/few-tips-for-analyzing-large-databases/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 05:58:57 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/?p=72</guid>
		<description><![CDATA[Recently I have been working with a MySQL database that contains tables with millions of rows. VLDB (very large databases) is a research area in its own. However, I am not dealing with VLDB, which generally entails billions of rows per table with millions of columns. I am working with that middle ground which is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=72&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I have been working with a MySQL database that contains tables with millions of rows. VLDB (very large databases) is a research area in its own. However, I am not dealing with VLDB, which generally entails billions of rows per table with millions of columns. I am working with that middle ground which is neither very big nor very small.</p>
<p>A side note: If you wish to work with VLDB, consider <a href="http://en.wikipedia.org/wiki/MapReduce">MapReduce</a>. MapReduce cannot solve EVERY problem, but it is an interesting framework nonetheless.</p>
<p><strong>Data Replication:</strong> When dealing with a large MySQL database, it is important that we do not query/analyze a live database i.e., database in which live inserts/updates are in process. MySQL locks the entire table when doing an insert/update or select. Thus, querying a large live database will affect the query performance as well as the insert performance. In this scenario, it will be better to replicate the database as follows:</p>
<p>Note: paths are specific to Ubuntu 8.10 and MySQL 5.0.67</p>
<p>mysqldump /path/to/database &gt; &lt;databasename&gt;.out</p>
<p>datadir variable in /etc/mysql/my.cnf contains the value of path to database. The default path is /var/lib/mysql.</p>
<p>Under mysql, create a new database. Then do source &lt;databasename&gt;.out. This will load all the tables and data in the new database.</p>
<p><strong>Indexing: </strong>Indexing is important to retrieve rows quickly. When a particular column is indexed, queries can retrieve rows directly, instead of scanning each row and comparing the value. However, figuring out proper indexes is a tricky business. To aide developers, MySQL provides an <em>explain </em>statement. When we give any SELECT statement to explain, we get query optimizer&#8217;s best guess about the number of rows that need to be scanned and the indexes that will be used. Explain statement is described in more detail <a href="http://dev.mysql.com/doc/refman/5.0/en/using-explain.html">here</a>.</p>
<p><strong>Proper Database Engine: </strong>MySQL provides a multitude of storage engines that are appropriate for different scenarions. The default MyISAM engine is appropriate for large number of SELECTs and small number of INSERTs/UPDATEs. This is the most appropriate model for web usage, which is the main reason behind MySQL&#8217;s popularity. However, note that in our replicated database, there are absolutely no INSERTs. In addition, MyISAM uses table level locking to preserve data integrity i.e., for each insert/update and select, MyISAM locks the entire table. Table level locks can seriously affect the performance of parallel queries. In our case, we can work without any locks at all, because we are only reading data, which cannot affect the integrity of data. The best we can do with MySQL is to use InnoDB engine instead of MyISAM. InnoDB uses row-level locking instead of table-level locking, which can boost the performance of parallel queries. Few performance numbers for MyISAM and InnDB are provided <a href="http://www.mysqlperformanceblog.com/2006/05/29/join-performance-of-myisam-and-innodb/">here</a>.</p>
<p>A MyISAM table can be converted into an InnDB table as follows:</p>
<p>ALTER TABLE &lt;table name&gt; ENGINE=InnoDB;</p>
<p>Note: Engine conversion takes long time. It took almost 1 whole day to convert a 33 million row MyISAM table to InnoDB table.</p>
<p><strong>Python and MySQL &#8211; A match made in heaven:</strong> Python&#8217;s MySQL API makes it really easy to query the database. However, when issuing multiple independent queries it is importat to use a new a connection and a new cursor. Also, make sure to close the cursor once the query is completed.</p>
<p><strong>Limits are bad bad bad</strong>: The Limit clause in a select statement allows us to retrieve a certain part of result set. For example, limit 1000 10 will return 10 rows starting from the 1000th row. In my opinion, limit clause is only useful for visual isnpection of results. However, if we issue limit queries during analysis, then it only slows down the process. For example, if the final results contain 33 million rows and we use a limit clause for 1000 rows, then instead of issuing 1 qeury, we will issue 33,000 queries. Very very bad!!!</p>
<p>If you know that the query will return large number of results which would overwhelm your local memory, then use SSCursor instead of default cursor. SSCursor stores the query results on the server, instead of the client. When fetchone or fetchmany calls are issued, the local client fetches the rows from the server instead of the local memory.</p>
<p><strong>Design guidelines are not bible</strong>: Database normalization always leads to beautiful database design. However, it also leads to multiple joins. If you are joining multiple tables, which contain millions of rows, for majority of queries, then it might be helpful to combine those tables into one. While it is a bad design choice, it will seriously improve query performance.</p>
<p>If you have other suggestions for improving query performance over a large database, please post them in comments section.</p>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:525px;width:1px;height:1px;">http://www.mysqlperformanceblog.com/2006/05/29/join-performance-of-myisam-and-innodb/</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=72&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2010/04/09/few-tips-for-analyzing-large-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Left Barined vs. Right Brained &#8211; Examples from Computing Industry</title>
		<link>http://gmemon.wordpress.com/2009/08/15/left-barined-vs-right-brained-examples-from-computing-industry/</link>
		<comments>http://gmemon.wordpress.com/2009/08/15/left-barined-vs-right-brained-examples-from-computing-industry/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 19:04:53 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Argument]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/?p=49</guid>
		<description><![CDATA[I had a very interesting discussion with a friend about left-brained and right-brained people. She cited an article, that says left-brained people are logical, concrete, analytical and very definite. Right-brained people, on the other hand, are creative, artistic, open-ended, indefinite, creative, visual, holistic. Based on this criteria, I am definitely left-minded. This discussion got me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=49&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a very interesting discussion with a friend about left-brained and right-brained people. She cited an <a href="http://is.gd/2hAK0">article</a>, that says left-brained people are logical, concrete, analytical and very definite. Right-brained people, on the other hand, are creative, artistic, open-ended, indefinite, creative, visual, holistic. Based on this criteria, I am definitely left-minded.</p>
<p>This discussion got me thinking about the role that left-brained and right-brained folks play in this world. It is said that the majority of the people are left-brained. That makes sense because lot of people like to have order and logic in their life. But, is order and logic all there is that matters? Without creative right-brained people, where would this world be?</p>
<p>If we look around, example of Steve Jobs comes to mind as a right-brained individual. One sign of right-brained folks is that they arrive at conclusions without a reason. Steve Jobs has clearly showed signs of this property over time. For example, over the years business people have tried to convince him that Apple must not bundle software and hardware together. In-fact Apple should not be in the business of selling hardware at all. But, that does not matter to Steve. It just MAKES SENSE to him that hardware and software should come from the same vendor. That insistence has led to recent flawless experience for Apple customers. Moreover, his love for art and design has given us beautiful Apple computers and the amazing iPhone.</p>
<p>Steve&#8217;s madness, insistence and obsessiveness is not without chaos, which is yet another property of right-brained people. Apple&#8217;s <a href="http://en.wikipedia.org/wiki/Newton_%28platform%29">Newton</a>, <a href="http://en.wikipedia.org/wiki/Power_Mac_G4_Cube">Cube</a>, <a href="http://en.wikipedia.org/wiki/Apple_Lisa">Lisa</a> and <a href="http://en.wikipedia.org/wiki/Apple_III">Apple III</a> were all huge commercial disasters. Even Jobs himself was fired from the very company he co-founded.</p>
<p>Now, if we look for a prominent and comparable example of a left-brained person, we find Bill Gates. Jobs has famously claimed that Microsoft has contributed enormously to the computing industry. But, they do not have a taste. That is exactly right. Bill has always followed a logical and analytical process. When Microsoft was starting out, Bill realized early on that IBM was in the business of making hardware and that it will be very hard to compete against IBM. So he collaborated with them and provided software. He never thought along the lines of Jobs&#8217; thinking that homogeneity in software and hardware was important. His goal was to become big businessman in the computing industry and he had a process in place for that. He never went with his gut instincts or did anything that MADE SENSE.</p>
<p>If we compare Gates&#8217; and Jobs&#8217; impact on the computing industry, then, for better or for worse, Gates comes out on top. Gates has shaped the computing industry, positively as well as negatively, for nearly 2 decades. But if we dig a little deeper we find that Gates &amp; co. seldom did it themselves. First Windows version was almost an exact copy of still-in-progress Macintosh. Microsoft had no idea about an Internet browser until Netscape Navigator came along. Then, Microsoft pushed Netscape out of business by bundling Internet Explorer with its then popular Windows. On countless occasions, Microsoft has bought or bullied innovative and creative organizations. In other words, willingly or unwillingly, the left-brained, logical and analytical Gates has always collaborated (a sugar-coated term) with right-brained, innovative and creative folks. Thus, the bottom line is, right-brained and left-brained people complement each other. The weaknesses of one are overcome by the strengths of other. Thus, these two groups should collaborate in real-life to achieve greater good.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=49&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2009/08/15/left-barined-vs-right-brained-examples-from-computing-industry/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Finding a new research project</title>
		<link>http://gmemon.wordpress.com/2009/07/29/finding-a-new-research-project/</link>
		<comments>http://gmemon.wordpress.com/2009/07/29/finding-a-new-research-project/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 22:07:33 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[azureus]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[botnet]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[data center]]></category>
		<category><![CDATA[defense]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[osn]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[tracker]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/?p=44</guid>
		<description><![CDATA[For the past few days I have been trying to find a new and cool research project to work on. Research ideas come from one&#8217;s interest or from current hot topics in a particular area. I tend to keep my interests relatively broad. That mentality probably comes from my fear of voluntary commitment. As a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=44&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For the past few days I have been trying to find a new and cool research project to work on. Research ideas come  from one&#8217;s interest or from current hot topics in a particular area.</p>
<p>I tend to keep my interests relatively broad. That mentality probably comes from my fear of voluntary commitment. As a result, I like anything that is related to networks (except theory &#8211; I hate theory).</p>
<p>I am rather inclined to choose hot topics in networks. This is primarily because I love the recognition. This approach has the added advantage of finding the research problems easily.</p>
<p>I have following areas in mind so far:</p>
<ol>
<li>Botnet defense</li>
<li>Scalability and Security in Online Social Networks (Facebook, Twitter e.t.c.)</li>
<li>Efficient algorithms for decentralized tracker based CDNs</li>
<li>Data Center Network design.</li>
<li>Cloud Computing.</li>
</ol>
<p>I am most interested in botnet defense at the command and control (C&amp;C) level. The related work in this area seems to be focused at defending probable victims (e.g. Google, Amazon e.t.c), using network shields. I believe the assumption is that so far C&amp;C mechanisms has been pretty straightforward. Thus, as soon as a botnet is found to be lethal and attacking network shields, it can be disrupted by finding central points of failure. Failure poins exist in current botnets because botmasters assume that in one way or another bots and botmaster must know each other. However, recently, I have conceived a generic a botnet in which bots and botmaster do not need to know each other. I believe, defense mechanisms against my proposal are important. However, I am struggling with this question: Is it worth pursuing defenses against an attack that has not been employed yet. However, I do believe it is important to conceive new attacks and stay one step ahead of attackers.</p>
<p>Social networks are really beautiful applications. However, I believe that the design of these networks is bound to fail. The volume of interactions seen by these networks must be creeping towards becoming unsustainable.  In addition, the security and privacy mechanisms employed by these applications are at really primitive levels. These are important and interesting challenges that must be dealt with. However, I do not have any concrete ideas yet.</p>
<p>I have recently monitored the Azureus DHT using my work on <a href="http://www.iptps.org/papers-2009/memon.pdf">Montra</a>. Monitoring Azureus DHT essentially gives us access to millions of tracker logs (32 million total). This gives us the opportunity to experiment with different tracker algorithms. However, I havent been able to find a compelling research problem as to why one would want to invent new tracker algorithms.</p>
<p>Finally, I am broadly interested in data center networks and cloud computing. However, I haven&#8217;t played with these areas that much. I have read a few papers and attended a few presentations.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=44&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2009/07/29/finding-a-new-research-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>A new Internet?</title>
		<link>http://gmemon.wordpress.com/2009/02/15/a-new-internet/</link>
		<comments>http://gmemon.wordpress.com/2009/02/15/a-new-internet/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 20:11:31 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Computer Networks]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[stanford]]></category>
		<category><![CDATA[ucsd]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/?p=19</guid>
		<description><![CDATA[This is really cool: http://www.nytimes.com/2009/02/15/weekinreview/15markoff.html. I would also encourage people to look at Accountable Internet Protocol (AIP) I think its about time we give network security the importance it deserves. Deploying a new architecture at a global scale, however, is going to be a challenge.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=19&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is really cool: <a href="http://www.nytimes.com/2009/02/15/weekinreview/15markoff.html">http://www.nytimes.com/2009/02/15/weekinreview/15markoff.html</a>.</p>
<p>I would also encourage people to look at <a href="http://www.aip-arch.net/">Accountable Internet Protocol (AIP)</a></p>
<p>I think its about time we give network security the importance it deserves. Deploying a new architecture at a global scale, however, is going to be a challenge.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=19&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2009/02/15/a-new-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Synergy Rules .. Big Time</title>
		<link>http://gmemon.wordpress.com/2008/06/22/synergy-rules-big-time/</link>
		<comments>http://gmemon.wordpress.com/2008/06/22/synergy-rules-big-time/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 14:56:00 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/2008/06/22/synergy-rules-big-time/</guid>
		<description><![CDATA[Synergy is an open source tool, which helps keyboard and mouse from one computer to be used on another computer. Both the computers must be accessible via Internet Give Synergy a try. Its lot of fun. Instructions to setup a synergy server on Ubuntu can be found here<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=13&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Synergy is an open source tool, which helps keyboard and mouse from one computer to be used on another computer. Both the computers must be accessible via Internet</p>
<p>Give <a href="http://synergy2.sourceforge.net/">Synergy</a> a try. Its lot of fun. Instructions to setup a synergy server on Ubuntu can be found <a href="https://help.ubuntu.com/community/SynergyHowto">here</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gmemon.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gmemon.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=13&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2008/06/22/synergy-rules-big-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Do we still need disks?</title>
		<link>http://gmemon.wordpress.com/2008/04/12/do-we-still-need-disks/</link>
		<comments>http://gmemon.wordpress.com/2008/04/12/do-we-still-need-disks/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 03:30:00 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/2008/04/12/do-we-still-need-disks/</guid>
		<description><![CDATA[This is just my opinion and I am wondering if we still need disks? My recent desktop purchase included a 320 GB hard drive. I have hardly used 10% of the disk space, which includes the space taken by OS and other necessary software. My data (photos, songs e.t.c) stays online as do my emails. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=12&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is just my opinion and I am wondering if we still need disks? My recent desktop purchase included a 320 GB hard drive. I have hardly used 10% of the disk space, which includes the space taken by OS and other necessary software. My data (photos, songs e.t.c) stays online as do my emails. So why do we still need disks?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gmemon.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gmemon.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=12&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2008/04/12/do-we-still-need-disks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Use of Java as first programming language</title>
		<link>http://gmemon.wordpress.com/2008/01/22/use-of-java-as-first-programming-language/</link>
		<comments>http://gmemon.wordpress.com/2008/01/22/use-of-java-as-first-programming-language/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 12:36:00 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/2008/01/22/use-of-java-as-first-programming-language/</guid>
		<description><![CDATA[I want to share this link with the readers: http://www.stsc.hill.af.mil/CrossTalk/2008/01/0801DewarSchonberg.html This is an excellent article about how damaging it is to use Java as a first programming language for CS students. I wish this article was around when I was in college because Java was my first programming language.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=11&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I want to share this link with the readers:</p>
<p>http://www.stsc.hill.af.mil/CrossTalk/2008/01/0801DewarSchonberg.html</p>
<p>This is an excellent article about how damaging it is to use Java as a first programming language for CS students. I wish this article was around when I was in college because Java was my first programming language.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gmemon.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gmemon.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=11&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2008/01/22/use-of-java-as-first-programming-language/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Linksys WRT54GS vs. WRT54GL</title>
		<link>http://gmemon.wordpress.com/2008/01/21/linksys-wrt54gs-vs-wrt54gl/</link>
		<comments>http://gmemon.wordpress.com/2008/01/21/linksys-wrt54gs-vs-wrt54gl/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 16:58:00 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/2008/01/21/linksys-wrt54gs-vs-wrt54gl/</guid>
		<description><![CDATA[If you are like me, who like to try different free open source projects, then while shopping for your next wireless router, buy Linksys WRT54GL. I recently bought WRT54GS without knowing that it is not based on Linux and thus cannot be modified. WRT54GL, on the other hand, is Linux based and can be easily [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=10&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are like me, who like to try different free open source projects, then while shopping for your next wireless router, buy Linksys WRT54GL. I recently bought WRT54GS without knowing that it is not based on Linux and thus cannot be modified. WRT54GL, on the other hand, is Linux based and can be easily modified with a plethora of firmwares such as Tomato, DD-WRT, OpenWRT e.t.c. These firmwares have a lot more features than the stock firmware which is shipped with the router. For example, you can easily boost your wireless signals, set Quality of Service rules e.t.c.</p>
<p>Recommendation: Buy <a href="http://www.amazon.com/Linksys-Cisco-WRT54GL-Wireless-G-Broadband-Compatible/dp/B000BTL0OA/ref=pd_bbs_sr_1?ie=UTF8&amp;s=electronics&amp;qid=1200905005&amp;sr=8-1">Linksys WRT54GL</a> and upgrade it with <a href="http://www.polarcloud.com/tomato">Tomato</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gmemon.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gmemon.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=10&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2008/01/21/linksys-wrt54gs-vs-wrt54gl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Compiz Fusion Rules &#8230;. big time</title>
		<link>http://gmemon.wordpress.com/2008/01/15/compiz-fusion-rules-big-time/</link>
		<comments>http://gmemon.wordpress.com/2008/01/15/compiz-fusion-rules-big-time/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 12:43:00 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/2008/01/15/compiz-fusion-rules-big-time/</guid>
		<description><![CDATA[Details coming soon &#8230; but i had no idea that desktop effects can be soo much fun<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=9&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Details coming soon &#8230; but i had no idea that desktop effects can be soo much fun <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gmemon.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gmemon.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=9&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2008/01/15/compiz-fusion-rules-big-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
		<item>
		<title>Ph.D &#8211; A lonely road ahead</title>
		<link>http://gmemon.wordpress.com/2008/01/05/phd-a-lonely-road-ahead/</link>
		<comments>http://gmemon.wordpress.com/2008/01/05/phd-a-lonely-road-ahead/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 11:06:00 +0000</pubDate>
		<dc:creator>gmemon</dc:creator>
				<category><![CDATA[Advice]]></category>

		<guid isPermaLink="false">http://gmemon.wordpress.com/2008/01/05/phd-a-lonely-road-ahead/</guid>
		<description><![CDATA[The goal of a Ph.D. program is to teach a student how to do genuine and original research. After completing a Ph.D., the newly minted DOCTORS acquire research positions in corporate world or academia. Such positions give a proper candidate the freedom of working on anything he/she likes. Being a Ph.D. student myself, that is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=7&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The goal of a Ph.D. program is to teach a student how to do genuine and original research. After completing a Ph.D., the newly minted DOCTORS acquire research positions in corporate world or academia. Such positions give a proper candidate the freedom of working on anything he/she likes. Being a Ph.D. student myself, that is the goal which keeps me motivated. I craved that freedom during my previous job experience and I hope I can find that once I am through with my degree program.</p>
<p>However, I recently learnt from a very good friend that Ph.D. is a lonely road. It is lonely because one has to do it for him/herself. Advisors and other students can provide guidance but at the end of the day, you have to pull yourself ahead. There will be times when no one pays attention to your work and you absolutely hate your own work. But you have to keep yourself motivated that there will be better days ahead. I think that if someone had given me this advise a year ago then it would have been really helpful. I hope incoming Ph.D. students read this and learn from it.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gmemon.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gmemon.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gmemon.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gmemon.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gmemon.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gmemon.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gmemon.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gmemon.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gmemon.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gmemon.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gmemon.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gmemon.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gmemon.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gmemon.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gmemon.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gmemon.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gmemon.wordpress.com&amp;blog=4527667&amp;post=7&amp;subd=gmemon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gmemon.wordpress.com/2008/01/05/phd-a-lonely-road-ahead/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a1c30d31fe0133d4def7b9b2002b34c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gmemon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
