<?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>Experiences Unlimited- Reloaded</title>
	<atom:link href="http://sanaullareloaded.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sanaullareloaded.wordpress.com</link>
	<description>Ramblings of a Confused Student</description>
	<lastBuildDate>Fri, 25 Jul 2008 14:23:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sanaullareloaded.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Experiences Unlimited- Reloaded</title>
		<link>http://sanaullareloaded.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sanaullareloaded.wordpress.com/osd.xml" title="Experiences Unlimited- Reloaded" />
	<atom:link rel='hub' href='http://sanaullareloaded.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Using Notepad++ to Compile and Run Java Programs</title>
		<link>http://sanaullareloaded.wordpress.com/2008/07/25/using-notepad-to-compile-and-run-java-programs/</link>
		<comments>http://sanaullareloaded.wordpress.com/2008/07/25/using-notepad-to-compile-and-run-java-programs/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 07:43:23 +0000</pubDate>
		<dc:creator>Mohamed Sanaulla</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[compiling]]></category>
		<category><![CDATA[interpreting]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Notepad++]]></category>

		<guid isPermaLink="false">http://sanaullareloaded.wordpress.com/?p=25</guid>
		<description><![CDATA[I had been using Notepad- The one that comes with Windows for a long time for writing Java programs and then running it through command line, though i had Notepad++ installed on my system. But then it just flashed to me that &#8220;Why can&#8217;t i try Notepad++ for compiling and interpreting the Java programs&#8220;. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=25&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had been using <strong>Notepad</strong>- The one that comes with Windows for a long time for writing Java programs and<img class="alignright" style="float:right;" src="http://notepad-plus.sourceforge.net/commun/images/cameleon.jpg" alt="" width="113" height="93" /> then running it through command line, though i had<strong> Notepad++</strong> installed on my system. But then it just flashed to me that &#8220;<strong>Why can&#8217;t i try Notepad++ for compiling and interpreting the Java programs</strong>&#8220;. I searched in the FAQs under &#8220;<a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank"><strong>Running External Tools</strong></a>&#8221; and found useful information which has helped me to compile and run the Java programs right from the &#8220;Notepad++&#8221; application itself. Here&#8217;s how it can be done:</p>
<p><strong>Running External Tools in Notepad++:</strong><br />
External tools can be executed by passing the current edited document as argument. For doing this the &#8220;<strong>environment variable</strong>&#8221; is used</p>
<p><span id="more-25"></span>The usage of Environment Variable:<br />
<span style="color:#ff0000;"><strong>$(ENVIRONMENT_VARIABLE)</strong></span></p>
<p>Ex: Lets say we are editing &#8220;NotHelloWorld.java&#8221;</p>
<p>The 5 environment Variable that can be used are:<br />
<strong>FULL_CURRENT_PATH:</strong> C:\Documents and Settings\Administrator\My Documents\JavaP\NotHelloWorld.java<br />
<strong>CURRENT_DIRECTORY: </strong>C:\Documents and Settings\Administrator\My Documents\JavaP\<br />
<strong>FILE_NAME: </strong>NotHelloWorld.java<br />
<strong>NAME_PART:</strong>NotHelloWorld<br />
<strong>EXT_PART:</strong>java</p>
<p>Note: The environment variables <strong>must be enclosed with in double quotes</strong>.<br />
<strong>&#8220;$(ENVIRONMENT_VARIABLE)&#8221;</strong></p>
<p>For Java Compiler its: <strong>javac &#8220;$(FILE_NAME)&#8221;</strong><br />
For Running the Program i.e interpreting the byte code its: <strong>java &#8220;$(NAME_PART)&#8221;</strong></p>
<p>The screenshots can guide u much better:</p>
<p><a href="http://sanaullareloaded.files.wordpress.com/2008/07/first1.jpg"><img class="alignnone size-full wp-image-28" src="http://sanaullareloaded.files.wordpress.com/2008/07/first1.jpg?w=510&#038;h=318" alt="" width="510" height="318" /></a></p>
<p><strong>Above</strong>: Program Snapshot</p>
<p> </p>
<p><a href="http://sanaullareloaded.files.wordpress.com/2008/07/second.jpg"><img class="alignnone size-full wp-image-29" src="http://sanaullareloaded.files.wordpress.com/2008/07/second.jpg?w=510&#038;h=371" alt="" width="510" height="371" /></a></p>
<p><strong>Above</strong>: Using the &#8220;<strong>Run</strong>&#8221; Menu</p>
<p> </p>
<p> <a href="http://sanaullareloaded.files.wordpress.com/2008/07/third1.jpg"><img class="alignnone size-full wp-image-31" src="http://sanaullareloaded.files.wordpress.com/2008/07/third1.jpg?w=338&#038;h=224" alt="" width="338" height="224" /></a></p>
<p><strong>Above</strong>: Typing in the &#8220;<strong>javac</strong>&#8221; command for Compiling</p>
<p> </p>
<p><a href="http://sanaullareloaded.files.wordpress.com/2008/07/fourth.jpg"><img class="alignnone size-full wp-image-32" src="http://sanaullareloaded.files.wordpress.com/2008/07/fourth.jpg?w=308&#038;h=198" alt="" width="308" height="198" /></a></p>
<p><strong>Above</strong>: Typing in the &#8220;<strong>java</strong>&#8221; command for interpreting the Byte Code</p>
<p> </p>
<p><a href="http://sanaullareloaded.files.wordpress.com/2008/07/output.jpg"><img class="alignnone size-full wp-image-34" src="http://sanaullareloaded.files.wordpress.com/2008/07/output.jpg?w=510&#038;h=257" alt="" width="510" height="257" /></a></p>
<p><strong>Above:</strong> The Output Obtained</p>
<p>One can click on &#8220;Save&#8221; to Save the commands, and the next time the same can be accessed through the &#8220;Run&#8221; menu.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sanaullareloaded.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sanaullareloaded.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanaullareloaded.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanaullareloaded.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanaullareloaded.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanaullareloaded.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanaullareloaded.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanaullareloaded.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanaullareloaded.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanaullareloaded.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanaullareloaded.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanaullareloaded.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanaullareloaded.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanaullareloaded.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanaullareloaded.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanaullareloaded.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=25&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanaullareloaded.wordpress.com/2008/07/25/using-notepad-to-compile-and-run-java-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a018c1758a69f2c19a8efd2553c7b0ea?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sanaulla</media:title>
		</media:content>

		<media:content url="http://notepad-plus.sourceforge.net/commun/images/cameleon.jpg" medium="image" />

		<media:content url="http://sanaullareloaded.files.wordpress.com/2008/07/first1.jpg" medium="image" />

		<media:content url="http://sanaullareloaded.files.wordpress.com/2008/07/second.jpg" medium="image" />

		<media:content url="http://sanaullareloaded.files.wordpress.com/2008/07/third1.jpg" medium="image" />

		<media:content url="http://sanaullareloaded.files.wordpress.com/2008/07/fourth.jpg" medium="image" />

		<media:content url="http://sanaullareloaded.files.wordpress.com/2008/07/output.jpg" medium="image" />
	</item>
		<item>
		<title>Accessing Linux Files from Windows Simplified- Ext2 installable File System</title>
		<link>http://sanaullareloaded.wordpress.com/2008/07/20/accessing-linux-files-from-windows-simplified-ext2-installable-file-system/</link>
		<comments>http://sanaullareloaded.wordpress.com/2008/07/20/accessing-linux-files-from-windows-simplified-ext2-installable-file-system/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 02:17:00 +0000</pubDate>
		<dc:creator>Mohamed Sanaulla</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ext2 installable File System]]></category>
		<category><![CDATA[ext3 partition]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sanaullareloaded.wordpress.com/?p=22</guid>
		<description><![CDATA[People using dual boot with Windows and Linux and have data spread across different partitions on Linux and Windows will have/are faced/facing the problem of inablity to access files on Linux partitions from Windows. I was using Ubuntu 8.04 extensively some days back before facing some problems which i need to correct. And I was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=22&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>People using dual boot with Windows and Linux and have data spread across different partitions on Linux and <img class="alignright" style="float:right;" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Tux-linux_logo.svg/280px-Tux-linux_logo.svg.png" alt="Tux" width="170" height="183" />Windows will have/are faced/facing the problem of inablity to access files on Linux partitions from Windows. I was using Ubuntu 8.04 extensively some days back before facing some problems which i need to correct. And I was using Azureus for downloading movies from torrents and i found it pretty fast on Ubuntu when compared to Windows where i was using uTorrent. I was impressed by the Axxo torrents, the clarit of video and audio was just perfect and that to for a mere 699 MB. So i had some 8 movies on my Linux ext3 partition and when ever i was on Windows and thought of watching them, i had to reboot into Ubuntu and then watch them- this was really irritating. But the other day i found a blog <a href="http://www.ubuntugeek.com/tools-to-access-linux-partitions-from-windows.html" target="_blank">post </a>in <strong><a href="http://www.ubuntugeek.com/" target="_blank">Ubuntu Geek</a></strong> where he had listed some tools for accessing files on u’r Linux partitions from Windows. There were many and i randomly chose<a href="http://www.fs-driver.org/" target="_blank"> <strong>Ext2 Installable File System</strong></a>. The installation was pretty quick and there were no hassels. At the end of the installation i was prompted for drive letters for the Linux ext3 partition and the swap partition. I chose U: for ubuntu and z: for swap.</p>
<p><strong>One can download the software <a href="http://www.fs-driver.org/download.html" target="_blank">here</a>.</strong></p>
<p><!-- AddThis Button BEGIN --><br />
<a title="Bookmark and Share" href="http://www.addthis.com/bookmark.php" target="_blank"><img src="http://s9.addthis.com/button1-share.gif" border="0" alt="Bookmark and Share" width="125" height="16" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sanaullareloaded.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sanaullareloaded.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanaullareloaded.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanaullareloaded.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanaullareloaded.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanaullareloaded.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanaullareloaded.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanaullareloaded.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanaullareloaded.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanaullareloaded.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanaullareloaded.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanaullareloaded.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanaullareloaded.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanaullareloaded.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanaullareloaded.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanaullareloaded.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=22&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanaullareloaded.wordpress.com/2008/07/20/accessing-linux-files-from-windows-simplified-ext2-installable-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a018c1758a69f2c19a8efd2553c7b0ea?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sanaulla</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Tux-linux_logo.svg/280px-Tux-linux_logo.svg.png" medium="image">
			<media:title type="html">Tux</media:title>
		</media:content>

		<media:content url="http://s9.addthis.com/button1-share.gif" medium="image">
			<media:title type="html">Bookmark and Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Auto Add contacts in GMail scrapped</title>
		<link>http://sanaullareloaded.wordpress.com/2008/07/19/auto-add-contacts-in-gmail-scrapped/</link>
		<comments>http://sanaullareloaded.wordpress.com/2008/07/19/auto-add-contacts-in-gmail-scrapped/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 18:38:46 +0000</pubDate>
		<dc:creator>Mohamed Sanaulla</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://sanaullareloaded.wordpress.com/?p=17</guid>
		<description><![CDATA[Recently i had started editing all my email contacts- reason? Thanks to the auto add feature of Gmail which would automatically add the email ids of the sent mail and also from Orkut account directly to the Contacts list. Now they have scraped the concept of Auto addition and but in the updated version of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=17&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently i had started editing all my email contacts- reason? Thanks to the auto add feature of <strong>Gmail </strong>which<img class="alignright" style="float:right;" src="http://www.popgadget.net/images/gmail-contest.jpg" alt="" width="98" height="97" /> would automatically add the email ids of the sent mail and also from Orkut account directly to the Contacts list. Now they have scraped the concept of Auto addition and but in the updated version of GMail they have introduced a new idea where in the the list of contacts to whom u have sent the email are added to the &#8220;<strong>Suggested Contacts</strong>&#8221; list and not to the main &#8220;<strong>My Contact</strong>&#8221; list.</p>
<p>&#8220;<strong>My Contacts</strong>&#8221; is a place to import, store and view all the contact information that is important. One can easily move the contacts to whom they have sent mails into &#8220;<strong>My Contacts</strong>&#8221; list. One can also create <strong>groups</strong> for his contacts so that one can send particular mail to particular group. There&#8217;s also &#8220;<strong>Most Contacted</strong>&#8221; list which stores the contacts of the people with whom u have contacted most number of times.</p>
<p><strong>Source: <a href="http://googlesystem.blogspot.com/2008/07/gmail-to-no-longer-auto-add-contacts.html" target="_blank">Google Operating System</a>.</strong><br />
<!-- AddThis Button BEGIN --><br />
<a title="Bookmark and Share" href="http://www.addthis.com/bookmark.php" target="_blank"><img src="http://s9.addthis.com/button1-share.gif" border="0" alt="Bookmark and Share" width="125" height="16" /></a><br />
<!-- AddThis Button END --></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sanaullareloaded.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sanaullareloaded.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanaullareloaded.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanaullareloaded.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanaullareloaded.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanaullareloaded.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanaullareloaded.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanaullareloaded.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanaullareloaded.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanaullareloaded.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanaullareloaded.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanaullareloaded.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanaullareloaded.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanaullareloaded.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanaullareloaded.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanaullareloaded.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=17&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanaullareloaded.wordpress.com/2008/07/19/auto-add-contacts-in-gmail-scrapped/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a018c1758a69f2c19a8efd2553c7b0ea?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sanaulla</media:title>
		</media:content>

		<media:content url="http://www.popgadget.net/images/gmail-contest.jpg" medium="image" />

		<media:content url="http://s9.addthis.com/button1-share.gif" medium="image">
			<media:title type="html">Bookmark and Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Google&#8217;s turning Almighty</title>
		<link>http://sanaullareloaded.wordpress.com/2008/07/18/googles-turning-almighty/</link>
		<comments>http://sanaullareloaded.wordpress.com/2008/07/18/googles-turning-almighty/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 18:18:18 +0000</pubDate>
		<dc:creator>Mohamed Sanaulla</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[google mobile]]></category>
		<category><![CDATA[google moon]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[nasa]]></category>

		<guid isPermaLink="false">http://sanaullareloaded.wordpress.com/?p=7</guid>
		<description><![CDATA[The Vacationeers have some new futuristic videos that show an omniscient Google which is already a part of people&#8217;s lives. After the creepy video about Google Street View, the comedy group explored some other Google services. Google Mobile - One can get Search, Maps, Gmail and more, designed especially for your mobile. My Maps can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=7&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thevacationeers.com/" target="_blank">The Vacationeers</a> have some new futuristic videos that show an omniscient Google which is already a part of<img class="alignright" style="float:right;" src="http://www.google.com/images/google_sm.gif" alt="" width="143" height="59" /> people&#8217;s lives. After <a href="http://www.youtube.com/watch?v=fPgV6-gnQaE" target="_blank">the creepy video about Google Street View</a>, the comedy group explored some other Google services.</p>
<p><a href="http://www.google.co.in/mobile/index.html" target="_blank"><strong></strong></a><strong><a href="http://sms.google.com/" target="_blank">Google Mobile</a></strong> <strong>- </strong>One can get Search, Maps, Gmail and more, designed especially for your mobile.<br />
<a href="http://maps.google.com/support/bin/answer.py?answer=68480" target="_blank"></a></p>
<p><strong><a href="http://maps.google.com/support/bin/answer.py?answer=68480" target="_blank">My Maps</a></strong> can anticipate your actions and add placemarks in advance:</p>
<p><strong><a href="http://moon.google.com/" target="_blank">Google Moon</a></strong> might show some things that you aren&#8217;t supposed to know, like the fact that <a href="http://science.nasa.gov/headlines/y2001/ast23Feb_2.htm" target="_blank">NASA never landed on the Moon</a>.</p>
<p><strong>Source: <a href="http://googlesystem.blogspot.com/" target="_blank">Google Operating System</a>- Blog</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sanaullareloaded.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sanaullareloaded.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanaullareloaded.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanaullareloaded.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanaullareloaded.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanaullareloaded.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanaullareloaded.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanaullareloaded.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanaullareloaded.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanaullareloaded.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanaullareloaded.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanaullareloaded.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanaullareloaded.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanaullareloaded.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanaullareloaded.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanaullareloaded.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=7&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanaullareloaded.wordpress.com/2008/07/18/googles-turning-almighty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a018c1758a69f2c19a8efd2553c7b0ea?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sanaulla</media:title>
		</media:content>

		<media:content url="http://www.google.com/images/google_sm.gif" medium="image" />
	</item>
		<item>
		<title>Email Account Deleted and WordPress Account hacked</title>
		<link>http://sanaullareloaded.wordpress.com/2008/07/18/email-account-deleted-and-wordpress-account-hacked/</link>
		<comments>http://sanaullareloaded.wordpress.com/2008/07/18/email-account-deleted-and-wordpress-account-hacked/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 17:12:32 +0000</pubDate>
		<dc:creator>Mohamed Sanaulla</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[hacked]]></category>

		<guid isPermaLink="false">http://sanaullareloaded.wordpress.com/?p=4</guid>
		<description><![CDATA[All the troubles in the world have targetted me My GMail Account has been deleted and my WordPress Account has been hacked and the password has been changed. I dont understand what they get by doing it. I had worked on my blog for a long time and had got it to a decent level. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=4&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>All the troubles in the world have targetted me <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  My GMail Account has been deleted and my WordPress Account has been hacked and the password has been changed. I dont understand what they get by doing it. I had worked on my <strong><a href="http://sanaulla.wordpress.com/" target="_blank">blog</a></strong> for a long time and had got it to a decent level. And recently i had started two more blogs <strong><a href="http://javaforyou.wordpress.com/" target="_blank">Java PItstop</a></strong> and <strong><a href="http://itfacts.wordpress.com/" target="_blank">IT Facts</a></strong>. And even those are gone. So i have started new blogs- For all three of them.</p>
<p><strong><a href="http://sanaulla.wordpress.com/" target="_blank">Experiences Unlimited </a>=&gt; <a href="http://sanaullareloaded.wordpress.com/" target="_blank">Experiences Unlimited Reloaded</a>.<br />
</strong></p>
<p><strong><a href="http://javaforyou.wordpress.com/" target="_blank">Java PitStop</a> =&gt; <a href="http://javapitstop.wordpress.com/" target="_blank">Java PitStop Reloaded</a>.<br />
</strong></p>
<p><strong><a href="http://itfacts.wordpress.com/" target="_blank">IT Facts</a> =&gt; <a href="http://itfactsreloaded.wordpress.com/" target="_blank">IT Facts Reloaded</a>. </strong></p>
<p>All these new blogs will take loads of time to gain the readers which they had done in a very short amount of time. But then Blogging has been my hobby for quite sometime. Its out of my interest that i have started another blog. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  My GMail account which was 4 years old and was planning to celebrate its 4th Anniversary this october is deleted <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Now i will have to celebrate its death anniversary every year on 18th July <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>One information- I dont have access to my old Blog account, so will not be posting anything on my old blogs. From now on &#8220;<strong>Reloaded</strong>&#8221; will be my new blogs- Let me show to the one who has hacked that i love blogging and not just the Stats <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sanaullareloaded.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sanaullareloaded.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanaullareloaded.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanaullareloaded.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanaullareloaded.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanaullareloaded.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanaullareloaded.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanaullareloaded.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanaullareloaded.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanaullareloaded.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanaullareloaded.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanaullareloaded.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanaullareloaded.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanaullareloaded.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanaullareloaded.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanaullareloaded.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanaullareloaded.wordpress.com&amp;blog=4258822&amp;post=4&amp;subd=sanaullareloaded&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanaullareloaded.wordpress.com/2008/07/18/email-account-deleted-and-wordpress-account-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a018c1758a69f2c19a8efd2553c7b0ea?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sanaulla</media:title>
		</media:content>
	</item>
	</channel>
</rss>
