<?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>Yaswanth Ravella</title>
	<atom:link href="http://blog.yaswanth.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yaswanth.org</link>
	<description></description>
	<lastBuildDate>Tue, 13 Jul 2010 12:35:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>3 Years In ReadiMinds :)</title>
		<link>http://blog.yaswanth.org/2010/06/3-years-in-readiminds/</link>
		<comments>http://blog.yaswanth.org/2010/06/3-years-in-readiminds/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 11:04:01 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.yaswanth.org/?p=131</guid>
		<description><![CDATA[Yes, I have completed 3 long Years with ReadiMinds yesterday. The best and fun part of working here has always been the friends. Also, congratulations to Sagar Gadde and  Govind Ashrit (ReadiMinds RockStar)  who completed 5 and 3 years with ReadiMinds this week. Will post more on my experiences with ReadiMinds later. Soon Thanks to All.]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-137 alignleft" style="border: 0px initial initial;" src="http://blog.yaswanth.org/wp-content/uploads/2010/06/sherpa-300x299.jpg" alt="" width="240" height="239" />Yes, I have completed 3 long Years with <a href="http://readiminds.com/" target="_blank">ReadiMinds </a> yesterday. The best and fun part of working here has always been the friends.</p>
<p>Also, congratulations to <a href="http://www.facebook.com/sagar.gadde" target="_blank">Sagar Gadde </a> and  <a href="http://govindashrit.com/" target="_blank">Govind Ashrit</a> (ReadiMinds RockStar)  who completed 5 and 3 years with ReadiMinds this week.</p>
<p>Will post more on my experiences with ReadiMinds later. Soon <img src='http://blog.yaswanth.org/wp-includes/images/smilies/icon_eek.gif' alt=':shock:' class='wp-smiley' /> </p>
<p>Thanks to All.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2010/06/3-years-in-readiminds/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Breaking Singleton</title>
		<link>http://blog.yaswanth.org/2010/05/breaking-singleton/</link>
		<comments>http://blog.yaswanth.org/2010/05/breaking-singleton/#comments</comments>
		<pubDate>Fri, 21 May 2010 10:25:03 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://yaswanth.org/?p=61</guid>
		<description><![CDATA[Singleton can be broken by using Reflection and the below code demonstrates the same. Singleton Class package com.test.singleton; public class Singleton { private static Singleton singleton = null; private Singleton() { System.out.println("Running Constructor......"); } public static Singleton getInstance(){ if(singleton==null) singleton = new Singleton(); return singleton; } } Test Class package com.test.singleton; import java.lang.reflect.Constructor; public class SingletonBroken [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Singleton_pattern" target="_blank">Singleton </a>can be broken by using <a href="http://java.sun.com/docs/books/tutorial/reflect/index.html" target="_blank">Reflection </a>and the below code demonstrates the same.</p>
<p><strong>Singleton Class</strong></p>
<pre name="code" class="java">package com.test.singleton;

public class Singleton {

	private static Singleton singleton  = null;

	private Singleton() {
		System.out.println("Running Constructor......");
	}

	public static Singleton getInstance(){
		if(singleton==null)
			singleton  = new Singleton();
		return singleton;
	}

}</pre>
<p><strong>Test Class</strong></p>
<pre name="code" class="java">package com.test.singleton;

import java.lang.reflect.Constructor;

public class SingletonBroken {

	public static void main(String[] args) throws Exception  {
		Singleton instance1 = Singleton.getInstance();
		Class singletonClass = Singleton.class;

		Constructor constructor = singletonClass.getDeclaredConstructor();
		constructor.setAccessible(true);

		Singleton instance2 = (Singleton) constructor.newInstance();
	}

}</pre>
<p><strong>Output :</strong></p>
<p style="padding-left: 30px;">Running Constructor&#8230;&#8230;<br />
Running Constructor&#8230;&#8230;</p>
<p>Now we know that our Singleton Class is no more a Singleton <img src='http://blog.yaswanth.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . One may need to handle this. This can be avoided by denying the <a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/ReflectPermission.html" target="_blank">ReflectPermission </a>to the program, but this will fail many API&#8217;s (Spring, Hibernate .. ) which requires reflection to work. Another way of avoiding this is to handle ourselves in the constructor so that the constructor throws exception if an instance already exists.</p>
<p><strong>Modified Singleton Class</strong> &#8211; Throws Exception</p>
<pre name="code" class="java">package com.test.singleton.exception;

public class Singleton {
private static Singleton singleton  = null;

	private Singleton() throws Exception {
		if(singleton!=null)
			throw new IllegalAccessException("Instance Already Exists !");
		System.out.println("Running Constructor......");
	}

	public static Singleton getInstance() throws Exception{
		if(singleton==null)
			singleton  = new Singleton();
		return singleton;
	}
}</pre>
<p><strong>Output :</strong></p>
<pre name="code" class="java">Running Constructor......
Exception in thread "main" java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
	at com.test.singleton.exception.SingletonTest.main(SingletonTest.java:16)
Caused by: java.lang.IllegalAccessException: Instance Already Exists !
	at com.test.singleton.exception.Singleton.(Singleton.java:8)
	... 5 more</pre>
<p>Now our application throws error if the constructor is invoked more than once.<br />
<a href="http://code.google.com/p/objenesis/" target="_blank">Objenesis</a> will even bypass the constructor code. so all the above things will not work.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2010/05/breaking-singleton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talks Hans Rosling: Asia&#8217;s rise &#8212; how and when</title>
		<link>http://blog.yaswanth.org/2009/11/talks-hans-rosling-asias-rise-how-and-when/</link>
		<comments>http://blog.yaswanth.org/2009/11/talks-hans-rosling-asias-rise-how-and-when/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 07:54:25 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[TED]]></category>
		<category><![CDATA[TED-Talks]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://yaswanth.org/?p=32</guid>
		<description><![CDATA[Hans Rosling was a young guest student in India when he first realized that Asia had all the capacities to reclaim its place as the world&#8217;s dominant economic force. At TEDIndia, he graphs global economic growth since 1858 and predicts the exact date that India and China will outstrip the US. Link to the Original [...]]]></description>
			<content:encoded><![CDATA[<p>Hans Rosling was a young guest student in India when he first realized that Asia had all the capacities to reclaim its place as the world&#8217;s dominant economic force. At TEDIndia, he graphs global economic growth since 1858 and predicts the exact date that India and China will outstrip the US.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="446" height="326" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/HansRosling_2009I-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/HansRosling_2009I.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=695&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=hans_rosling_asia_s_rise_how_and_when;year=2009;theme=a_taste_of_tedindia;theme=bold_predictions_stern_warnings;theme=numbers_at_play;event=TEDIndia+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="446" height="326" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" flashvars="vu=http://video.ted.com/talks/dynamic/HansRosling_2009I-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/HansRosling_2009I.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=695&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=hans_rosling_asia_s_rise_how_and_when;year=2009;theme=a_taste_of_tedindia;theme=bold_predictions_stern_warnings;theme=numbers_at_play;event=TEDIndia+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" bgcolor="#ffffff" wmode="transparent" allowfullscreen="true"></embed></object></p>
<p>Link to the Original Post : <a href="http://www.ted.com/talks/hans_rosling_asia_s_rise_how_and_when.html">http://www.ted.com/talks/hans_rosling_asia_s_rise_how_and_when.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2009/11/talks-hans-rosling-asias-rise-how-and-when/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable / Disable Task Manager</title>
		<link>http://blog.yaswanth.org/2008/04/enable-disable-task-manager/</link>
		<comments>http://blog.yaswanth.org/2008/04/enable-disable-task-manager/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 07:04:00 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://yaswanth.wordpress.com/2008/04/17/enable-disable-task-manager/</guid>
		<description><![CDATA[There is a registry hack to enable or disable Task Manager. Hive: HKEY_CURRENT_USER Key: Software\Microsoft\Windows\CurrentVersion\Policies\System Name: DisableTaskMgr Type: REG_DWORD Value: 1=Enable this key, that is DISABLE TaskManager Value: 0=Disable this key, that is Don&#8217;t Disable, Enable TaskManager. If you are an Administrator you can consider  using Group Policy Editor. For that, Click Start Click Run [...]]]></description>
			<content:encoded><![CDATA[<p>There is a registry hack to enable or disable Task Manager.</p>
<p><strong>Hive:</strong> <strong>HKEY_CURRENT_USER </strong><br />
<strong>Key:</strong> <strong>Software\Microsoft\Windows\CurrentVersion\Policies\System </strong><br />
<strong>Name:</strong> <strong>DisableTaskMgr </strong><br />
<strong>Type:</strong> <strong>REG_DWORD</strong><br />
<strong>Value:</strong> <strong>1=Enable </strong>this key, that is DISABLE TaskManager<br />
<strong>Value:</strong> <strong>0=Disable </strong>this key, that is Don&#8217;t Disable, Enable TaskManager.</p>
<p>If you are an Administrator you can consider  using Group Policy Editor. For that,</p>
<ul>
<li>Click <em>Start</em></li>
<li>Click <em>Run</em></li>
<li>Enter <em>gpedit.msc</em> in the Open box and click OK</li>
<li>In the Group Policy settings window
<ul>
<li>Select<em> User Configuration</em></li>
<li>Select <em>Administrative Templates</em></li>
<li>Select<em> System</em></li>
<li>Select <em>Ctrl+Alt+Delete</em> options</li>
<li>Select <em>Remove Task Manager</em></li>
<li>Double-click the<em> Remove Task Manager </em>option</li>
</ul>
</li>
</ul>
<p>Since the policy is<em> Remove Task Manager</em>, by disabling the policy, you are enabling the Task Manager.</p>
<p><strong>FYI: </strong>You can run registry editor with command <strong>regedit</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2008/04/enable-disable-task-manager/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Happy New Year !!</title>
		<link>http://blog.yaswanth.org/2007/12/happy-new-year/</link>
		<comments>http://blog.yaswanth.org/2007/12/happy-new-year/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 18:18:03 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://yaswanth.wordpress.com/2007/12/31/happy-new-year/</guid>
		<description><![CDATA[May this New Year bring newly found prosperity, love, happiness and delight in your life !! Enjoy !!]]></description>
			<content:encoded><![CDATA[<p>May this New Year bring newly found prosperity, love, happiness and delight in your life !!</p>
<p>Enjoy !!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2007/12/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Cool Trick &#8211; Change your PC Processor</title>
		<link>http://blog.yaswanth.org/2007/11/a-cool-trick-change-your-pc-processor/</link>
		<comments>http://blog.yaswanth.org/2007/11/a-cool-trick-change-your-pc-processor/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 10:37:48 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Trick Regedit Processor]]></category>

		<guid isPermaLink="false">http://yaswanth.wordpress.com/2007/11/12/a-cool-trick-change-your-pc-processor/</guid>
		<description><![CDATA[This trick is really cool ! Goto START&#62;RUN&#62;type REGEDIT Then goto HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor On right hand side double click on processorNameString and write what ever you want. Now check for the modified information in Computer Properties.]]></description>
			<content:encoded><![CDATA[<p>This trick is really cool !</p>
<p>Goto START&gt;RUN&gt;type REGEDIT</p>
<p>Then goto HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor</p>
<p>On right hand side double click on processorNameString and write what ever you want.</p>
<p>Now check for the modified information in Computer Properties.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2007/11/a-cool-trick-change-your-pc-processor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How an Mechatronics &#8211; Engineer will commit suicide????</title>
		<link>http://blog.yaswanth.org/2007/09/how-an-mechatronics-engineer-will-commit-suicide/</link>
		<comments>http://blog.yaswanth.org/2007/09/how-an-mechatronics-engineer-will-commit-suicide/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 03:51:30 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Mechatronics]]></category>
		<category><![CDATA[suicide]]></category>

		<guid isPermaLink="false">http://yaswanth.wordpress.com/2007/09/28/how-an-mechatronics-engineer-will-commit-suicide/</guid>
		<description><![CDATA[Hi Friends the picture i am posting here is from the mail which i received some time back from one of my friend. (I really Enjoyed this , Hope you also like this !). You can see how intelligent is the Mechatronics Engineer in committing suicide(Of course i am !). Cheers !!]]></description>
			<content:encoded><![CDATA[<p>Hi Friends the picture i am posting here is from the mail which i received some time back from one of my friend. (I really Enjoyed this ,  Hope you also like this !).</p>
<p>You can see how intelligent is the Mechatronics Engineer in committing suicide(Of course i am !).</p>
<p><img src="http://yaswanth.files.wordpress.com/2007/09/how-an-mechatronics-engineer.gif" alt="Mechatronics - Engineer commit suicide????" /></p>
<p><strong>Cheers !!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2007/09/how-an-mechatronics-engineer-will-commit-suicide/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Place Windows Kernel into RAM &#8211; Registry Hacks to Speed Up XP</title>
		<link>http://blog.yaswanth.org/2007/09/place-windows-kernel-into-ram-registry-hacks-to-speed-up-xp/</link>
		<comments>http://blog.yaswanth.org/2007/09/place-windows-kernel-into-ram-registry-hacks-to-speed-up-xp/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 09:51:38 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Windows Xp]]></category>

		<guid isPermaLink="false">http://yaswanth.wordpress.com/2007/09/26/place-windows-kernel-into-ram-registry-hacks-to-speed-up-xp/</guid>
		<description><![CDATA[It&#8217;s a given that anything that runs in RAM will be faster than an item that has to access the hard drive and virtual memory. Rather than have the kernel that is the foundation of XP using the slower Paging Executive functions, use this hack to create and set the DisablePagingExecutive DWORD to a value [...]]]></description>
			<content:encoded><![CDATA[<address>It&#8217;s a given that anything that runs in RAM will be faster than an item that</address>
<address>has to access the hard drive and virtual memory. Rather than have the kernel</address>
<address>that is the foundation of XP using the slower Paging Executive functions,</address>
<address>use this hack to create and set the DisablePagingExecutive DWORD to a</address>
<address>value of 1.</address>
<address> </address>
<address><strong>Perform this hack only if the system has 256MB or more of</strong></address>
<address><strong>installed RAM!</strong></address>
<address> </address>
<address>Edit the Registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\</address>
<address>Control\Session Manager\Memory Management\DisablePagingExecutive to 1 to</address>
<address>disable paging and have the kernel run in RAM (set the value to 0 to undo</address>
<address>this hack). Exit the Registry and reboot.</address>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2007/09/place-windows-kernel-into-ram-registry-hacks-to-speed-up-xp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>An extension failed to initialize. Can&#8217;t open file extend.dat</title>
		<link>http://blog.yaswanth.org/2007/09/an-extension-failed-to-initialize-cant-open-file-extenddat-2/</link>
		<comments>http://blog.yaswanth.org/2007/09/an-extension-failed-to-initialize-cant-open-file-extenddat-2/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 03:34:40 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://yaswanth.wordpress.com/2007/09/19/an-extension-failed-to-initialize-cant-open-file-extenddat-2/</guid>
		<description><![CDATA[Today out of the blue, when loading office 2003 on an xp machine, an error message appeared with the text: &#8220;An extension failed to initialize. Can&#8217;t open file: extend.dat. The file may not exist, you may not have permission to open it, or it may be open in another program. Right-click the folder that contains [...]]]></description>
			<content:encoded><![CDATA[<p>Today out of the blue, when loading office 2003 on an xp machine, an error message appeared with the text:</p>
<p><em>&#8220;An extension failed to initialize. Can&#8217;t open file: extend.dat. The file may not exist, you may not have permission to open it, or it may be open in another program. Right-click the folder that contains the file, and then click Properties to check your permissions for the folder. You don&#8217;t have appropriate permissions to perform this operation.&#8221;</em></p>
<p>Being me an administrator it seemed more complicated than a permission problem. What is the extend.dat file? It is a file used to cache extensions built for outlook. The problem with the file could be fixed by either deleting it or renaming it.</p>
<p>If hidden files and folders are not visible you will have to set your explorer window to view those types of files. If you know how to show hidden files skip &#8220;Viewing Hidden Files&#8221;.</p>
<p><strong>Viewing Hidden Files:</strong> To view folders and files that are hidden, from my computer, click tools and then folder options. Click the view tab at the top of the window. Scroll down to the option Hidden files and folders. Click the option that says show hidden files and folders. Then click OK.</p>
<p><strong>The Fix:</strong> Make sure outlook is closed and not running.  If you are viewing hidden files and folders, use windows explorer to go to documents and settings, then the folder of the user with the error. Next click Local Settings, then Application Data, then Microsoft, and finally click and go into the outlook folder. There is where you will find extend.dat. Now from here rename the file from extend.dat to extendOld. Restart outlook and send someone an email.</p>
<p><em><strong>Tip : </strong>To do this in my style just type the below line at your command prompt but make sure you close outlook first</em></p>
<p><em> del &#8220;%userprofile%\local settings\application data\microsoft\outlook\extend.dat&#8221; </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2007/09/an-extension-failed-to-initialize-cant-open-file-extenddat-2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Secure your system :: Ctrl + c</title>
		<link>http://blog.yaswanth.org/2007/08/secure-your-system-ctrl-c/</link>
		<comments>http://blog.yaswanth.org/2007/08/secure-your-system-ctrl-c/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 05:12:44 +0000</pubDate>
		<dc:creator>Yaswanth</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://yaswanth.wordpress.com/2007/08/24/secure-your-system-ctrl-c/</guid>
		<description><![CDATA[Using &#8220;Ctrl+c&#8221; to copy sensitive data when you are connected to net is stored in clipboard and is accessible from the net by a combination of JavaScript&#8217;s and ASP. It&#8217;s better to avoid keeping sensitive data (like credit card numbers, bank login/passwords, PIN, date of births, etc.) in the clipboard while surfing the web. Meanwhile [...]]]></description>
			<content:encoded><![CDATA[<p style="line-height: 14.4pt; text-align: justify; margin: 0;">Using &#8220;Ctrl+c&#8221;  to copy sensitive data when you are connected to net is stored in clipboard and  is accessible from the net by a combination of JavaScript&#8217;s and ASP.</p>
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">It&#8217;s better to<strong> avoid keeping sensitive data (like credit card numbers, bank login/passwords,  PIN, date of births, etc.) in the clipboard</strong> while surfing the web.</p>
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">Meanwhile  using some simple steps you can disable a third person accessing your sensitive  data</p>
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">Follow the  below given steps.</p>
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">
1. In  Internet Explorer, go to Tools -&gt; Internet Options -&gt; Security</p>
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">2. Click on  Custom Level</p>
<p style="line-height: 14.4pt; text-align: justify; margin: 0;">3. In the  security settings, click to disable the &#8220;Allow Paste Operations via Script .&#8221;(In IE6 or lesser versions) or &#8220;Allow Programmatic clipboard Access&#8221;(In IE7,IE8). That will keep your clipboard contents private</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yaswanth.org/2007/08/secure-your-system-ctrl-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.356 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-31 23:35:38 -->
