<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-2518756630126640181</atom:id><lastBuildDate>Fri, 13 Sep 2024 07:22:40 +0000</lastBuildDate><category>Livemap to India</category><title>Technology in your palms</title><description>This blog brushes up your knowledge about current technology by providing you all the technology related information at one place.</description><link>http://tapan2000.blogspot.com/</link><managingEditor>noreply@blogger.com (Tapan Jain)</managingEditor><generator>Blogger</generator><openSearch:totalResults>28</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-5865110834961804665</guid><pubDate>Wed, 08 Nov 2023 17:44:00 +0000</pubDate><atom:updated>2023-11-08T09:44:53.105-08:00</atom:updated><title>SpringBoot: Adding custom properties to ApplicationContext dynamically  </title><description>&lt;br /&gt;While building a Spring Boot app, we often get into a situation where we need to dynamically add the properties to the ApplicationContext during application startup. Spring Boot provides an intuitive interface named ApplicationContactInitializer that can be implemented to programatically initialize the ApplicationContext or to add additional property sources to the ApplicationContext. 
&lt;br /&gt;&lt;br /&gt;
Below is a sample implementation of this interface to add a application run id to the application context.
&lt;br /&gt;&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public class CustomApplicationContextInitializer implements ApplicationContextInitializer&lt;ConfigurableApplicationContext&gt; {&lt;br /&gt;
        &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;private static final Logger log = LoggerFactory.getLogger(CustomApplicationContextInitializer.class);&lt;br /&gt;
&lt;br /&gt;
        &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@Override&lt;br /&gt;
        &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public void initialize(ConfigurableApplicationContext applicationContext) {&lt;br /&gt;
            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;final ConfigurableEnvironment environment = applicationContext.getEnvironment();&lt;br /&gt;
            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;final MutablePropertySources propertySources = environment.getPropertySources();&lt;br /&gt;
            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var dynamicProperties = new HashMap&lt;String, Object&gt;();&lt;br /&gt;
            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dynamicProperties.put(&quot;run-id&quot;, UUID.randomUUID().toString());&lt;br /&gt;
            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;propertySources.addLast(new MapPropertySource(&quot;dynamic-properties&quot;, dynamicProperties));&lt;br /&gt;
        &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
Thereafter, we can register the CustomApplicationContextInitializer to the SpringBootApplication before calling it&#39;s run method as below:
&lt;br /&gt;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@SpringBootApplication&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public class Application implements CommandLineRunner{&lt;br /&gt;
      &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static void main(String[] args){&lt;br /&gt;
      	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SpringApplication application = new SpringApplication(Application.class);&lt;br /&gt;
      	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;application.addInitializers(new CustomApplicationContextInitializer());&lt;br /&gt;
      	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;application.run(args);&lt;br /&gt;
      &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;

&lt;br /&gt;
Now, the run-id added during the ApplicationContext initialization will be available as part of the ApplicationContext.&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2023/11/springboot-adding-custom-properties-to.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-1741280836895387868</guid><pubDate>Sat, 18 Jul 2009 11:34:00 +0000</pubDate><atom:updated>2009-07-18T06:53:11.173-07:00</atom:updated><title>Cleaning the Registry</title><description>&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;Whenever we talk about registry, REGEDIT.exe is the first thing that comes in our  mind. But after entering this database and seeing the type of entries we are  deterred to start the cleaning process. So here I will be telling how to go  about the cleaning process.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;There are basically two methods for cleaning the registry. One is manually  cleaning the registry using regedit and second is using a Registry cleaner  software. As you install and remove software many software leave their  impression on the registry and the registry keeps on growing bigger. As a result  your system slows down and you may get unnecessary errors. To get rid of this  frustration you got to clean your registry.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;h5&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;color:#666666;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;Manually cleaning the Registry&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;color:#666666;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/h5&gt; &lt;p&gt;  &lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;  Registry is a database that holds the configuration of your computer. It  allows you to perform many tweaks your operating system does not allow directly.  I have discussed many of them in the earlier posts. A Registry can be edited  using a registry editor. Windows has been shipped with a default registry editor  named “Regedit”. To open regedit go to Start&gt;Run , then type regedit.  You’ll reach a window as shown : &lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkztq3vyGC8J6yfhBhyphenhyphengz-IDS883Kuv_sJv4yVa-t1pXCsk5p55EINKScpzERauoGntG2xbZMcpeGgnidUQLBUb0-Fito5LMmVgi5QSVNQhcd1iFVVWrmS_13g3ZGOfkiyBd90UIp2qng/s400/xp-regedit.png&quot; style=&quot;float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 274px;&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5359763384644859170&quot; /&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;Before you touch any part of the registry remember to backup your registry.  For that you can either use System Restore or simply select the key you are  about to modify in regedit and click File&gt;export. This will create a backup registry  file and double clicking this file will restore the value of the key you were  trying to manipulate.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;Registry editors depict a logical hierarchy of configurations. Registry is  divided into six main parts called hives. Each hive has keys and sub keys that  have some value assigned to it. These values can be either a DWORD, string or  Binary. DWORD stands for double word, string stores values that are of string  type and Binary stores the values in terms of 0’s and 1’s. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;The six hives store different configuration as follows : &lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;HKEY_CLASSES_ROOT contains information relating to the user interface, file  association mappings and OLE(Object linking and embedding) information.  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;HKEY_CURRENT_USER contains information related to the current user of the  system.  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;HKEY_LOCAL_MACHINE contains information that is common to all the users of  the system  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;HKEY_USERS contains information about individual users, each of which is  identified by a Security ID.  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;HKEY_CURRENT_CONFIG contains all the information that is collected when the  computer boots up. This information is not stored in secondary storage but is  generated every time the computer boots up.  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;HKEY_DYN_DATA contains information related to the plug and play devices. The  DYN indicates that this information is dynamic which changes as new device is  attached. &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;So with the above basic information you can go on with editing your registry  to solve the specific problems you might be facing. But remember to backup the  registry.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;h5&gt;&lt;/h5&gt; &lt;p&gt;&lt;/p&gt; &lt;h5&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;color:#666666;&quot;&gt;Using Registry Cleaner Software&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h5&gt; &lt;h5&gt; &lt;/h5&gt; &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;         If you do not want to take any risk with your Operating System, you  can go safe by using a Registry Cleaner Software. These software scan your  registry to search for missing references to files etc. They safely bring your  system back to the normal working condition. You can clean your registry &lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://7be7dkfjbe9n6l6cp0syyw8u44.hop.clickbank.net/&quot; target=&quot;_new&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;here&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;. This method is best suited for a novice who is not  willing to spend few of his precious hours reinstalling the Operating  System.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;Some of the famous Registry Cleaners available online are : &lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=&quot;http://7be7dkfjbe9n6l6cp0syyw8u44.hop.clickbank.net/&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;Registry Easy&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://472e3sbfnbdu2oaqm2p32p1l48.hop.clickbank.net/&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;Registry Fix&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://e89c1il9n9dygw4il8zk2ict9x.hop.clickbank.net/&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;RegTool&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://3774drlcbj6yfz5ls0p2nmas50.hop.clickbank.net/&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:&#39;times new roman&#39;;&quot;&gt;Regdefence&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2009/07/cleaning-registry.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkztq3vyGC8J6yfhBhyphenhyphengz-IDS883Kuv_sJv4yVa-t1pXCsk5p55EINKScpzERauoGntG2xbZMcpeGgnidUQLBUb0-Fito5LMmVgi5QSVNQhcd1iFVVWrmS_13g3ZGOfkiyBd90UIp2qng/s72-c/xp-regedit.png" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-3091721382657062339</guid><pubDate>Thu, 04 Oct 2007 16:06:00 +0000</pubDate><atom:updated>2007-10-04T09:59:55.643-07:00</atom:updated><title>WiMax Technology</title><description>WiMax (Wireless Interoperability for microwave access) is a wireless digital communication system based on IEEE 802.16 standards. It can be used for transmitting data from a fixed station as well as a mobile station. It can provide wireless access upto 50 km for fixed stations and 15 km for the mobile ones.&lt;br /&gt;       Among the main uses of WiMax comes the internet connectivity for laptops. In a radius of upto 10 km WiMax can give access rates of upto 40Mbps per channel. In India(a south asian fast developing economy), WiMax network is being setup in Chennai, a city in south of India. This technology if spreads out to the entire country can benefit the 1 billion citizens of India, especially the villages of India where still for many using internet remains a dream.&lt;br /&gt;&lt;br /&gt;Associated Links :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://justamp.blogspot.com/2007/10/nokia-details-linux-tablet-wimax-plans.html&quot;&gt;Nokia Details Linux Tablet WiMax Plans&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/10/wimax-technology.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-8608577840625400527</guid><pubDate>Mon, 01 Oct 2007 18:05:00 +0000</pubDate><atom:updated>2007-10-01T11:47:44.941-07:00</atom:updated><title>CDMA or GSM</title><description>In the present day scenario the GSM (Global System for mobile communication) is dominating in most parts of the world, but rapidly the CDMA (Code Division Multiple Access) is taking over it because of the additional advantages it provides.&lt;br /&gt;      In CDMA there is no division of frequency band unlike GSM which assigns a specific frequency to each user. Each user in GSM is identified using the SIM(Subscriber Identity module) card which stores the service subscriber key used to identify the user.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZgKwz_mJX6OZNXqOrUdu1Azh3bUqVZid4-rshVzX5tF4bkCY_PD-btyu5LEIbL25VLtOfnUramCyzJtwpqbY-T-csAihwaJ3KYapauT-uLRf0I7dDSlnLyushaSjDaE7PIQBGKKO-Vo8/s1600-h/Picture+9.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZgKwz_mJX6OZNXqOrUdu1Azh3bUqVZid4-rshVzX5tF4bkCY_PD-btyu5LEIbL25VLtOfnUramCyzJtwpqbY-T-csAihwaJ3KYapauT-uLRf0I7dDSlnLyushaSjDaE7PIQBGKKO-Vo8/s400/Picture+9.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5116441557696758498&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;On the left is shown a CDMA phone by Tata Indicom.&lt;br /&gt;CDMA employs spread spectrum technology in which the energy generated in a particular bandwidth is spread in the frequency band. This frequency band is used for all the users. It provides better bandwidth for the voice and data transmission over the network and hence increases the number of people that can be connected at any given time. This means using it you will hear less of those irritating(&quot;Network is currently busy&quot;) messages. Surely CDMA provides high speed services.&lt;br /&gt;      But inspite of all these benefits of CDMA we cannot forget the advantage given to SIM card owners to easily change their mobile phones.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/10/cdma-or-gsm.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZgKwz_mJX6OZNXqOrUdu1Azh3bUqVZid4-rshVzX5tF4bkCY_PD-btyu5LEIbL25VLtOfnUramCyzJtwpqbY-T-csAihwaJ3KYapauT-uLRf0I7dDSlnLyushaSjDaE7PIQBGKKO-Vo8/s72-c/Picture+9.jpg" height="72" width="72"/><thr:total>88</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-7516655292171953898</guid><pubDate>Fri, 28 Sep 2007 16:45:00 +0000</pubDate><atom:updated>2007-09-28T10:17:22.529-07:00</atom:updated><title>Removing the hand icon displayed below shared drives</title><description>Whenever we share any of our harddisk drives a hand icon appears below that drive. Surely, a nice way to show that it is shared, but when all your drives are shared, the same hand starts annoying us. In order to get rid of this hand we have to perform a registry tweak.&lt;br /&gt;      Open regedit ( Go to start&gt;Run and type in regedit) .&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Browse to the location HKEY_CLASSES_ROOT&gt;Network&gt;Sharing Handler. &lt;/li&gt;&lt;li&gt;Open the default icon by double clicking it.&lt;/li&gt;&lt;li&gt;In the value data textbox the default value is ntshrui.dll.&lt;/li&gt;&lt;li&gt;Erase this value to leave the space blank.&lt;/li&gt;&lt;li&gt;Restart your PC and see the change in the icon of your shared drives.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/09/removing-hand-icon-displayed-below.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-3115994046762140079</guid><pubDate>Thu, 20 Sep 2007 17:52:00 +0000</pubDate><atom:updated>2007-09-20T11:11:10.394-07:00</atom:updated><title>Disabling Windows Error Reporting</title><description>It&#39;s pretty much frustrating when windows prompts you to report the errors to the microsoft website. You can stop this reporting if you like by following some simple steps.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open the control panel&lt;/li&gt;&lt;li&gt;Double click on the System icon&lt;/li&gt;&lt;li&gt;Click on the Advanced tab&lt;/li&gt;&lt;li&gt;Click on the button named &quot;Error Reporting&quot;&lt;/li&gt;&lt;li&gt;Now on the window that appears click disable error reporting as shown.&lt;/li&gt;&lt;/ul&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhi2O_mTAQcv4sJSNbS1ThBidLl8DQ4N7pkHrzk2JqjXIhKDUiFOHLuPCoiQk-wVexvKamHY35xwrKJI5Fm_2q8TaW8ej-t6ETTjxBQ0btl5FnwE8GD1pPv1vYJhpf8C5-FijfZbNVfaz8/s1600-h/errorreport.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhi2O_mTAQcv4sJSNbS1ThBidLl8DQ4N7pkHrzk2JqjXIhKDUiFOHLuPCoiQk-wVexvKamHY35xwrKJI5Fm_2q8TaW8ej-t6ETTjxBQ0btl5FnwE8GD1pPv1vYJhpf8C5-FijfZbNVfaz8/s200/errorreport.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5112348839143074226&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Well now you can fell free of those irritating error reporting messages and enjoy your work on the PC.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/09/its-pretty-much-frustrating-when.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhi2O_mTAQcv4sJSNbS1ThBidLl8DQ4N7pkHrzk2JqjXIhKDUiFOHLuPCoiQk-wVexvKamHY35xwrKJI5Fm_2q8TaW8ej-t6ETTjxBQ0btl5FnwE8GD1pPv1vYJhpf8C5-FijfZbNVfaz8/s72-c/errorreport.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-689932060165728559</guid><pubDate>Sun, 16 Sep 2007 07:18:00 +0000</pubDate><atom:updated>2007-09-25T11:40:08.610-07:00</atom:updated><title>Renaming the Recycle Bin</title><description>When it comes to playing with your system settings, there is no better place than regedit to get your hands dirty on. Regedit the short for registry editor allows us to make changes in the windows settings pretty easily. Changes like changing the boot up screen, wallpapers, security related issues can easily be tackled with through the registry.&lt;br /&gt;  When you right click on the recycle bin unlike other icons, the rename option is not displayed in the pop-up menu. But this doesn&#39;t mean it can;t be changed. Well now it&#39;s time to open up regedit. For that go to the Start&gt;run. Then type regedit. You will be presented with a screen as shown below :&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg79Up5mtzZPOIVylukd1gg3TrvHgaqFSG1Cs16LZumcxTNHUYBSjjlJJca6Rs2ZRrszIYs2VjwDxT3QGIx-Zk1lxBxzpfzkH9e0El4OI0NcMrvx9A2gBjrpvqBnpaXVi1BNMvQEbaRquY/s1600-h/regedit.JPG&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg79Up5mtzZPOIVylukd1gg3TrvHgaqFSG1Cs16LZumcxTNHUYBSjjlJJca6Rs2ZRrszIYs2VjwDxT3QGIx-Zk1lxBxzpfzkH9e0El4OI0NcMrvx9A2gBjrpvqBnpaXVi1BNMvQEbaRquY/s400/regedit.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5110701419446447586&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now go to the location  &lt;span style=&quot;font-family:Verdana,Arial,Helvetica,sans-serif;&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;&quot;HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E/ShellFolder/}&quot;&lt;/span&gt; &lt;/span&gt;by expanding the &#39;+&#39; signs.&lt;br /&gt;Once you reach there double click the &quot;Attributes&quot; icon.&lt;br /&gt;Then change the value data from &quot;40 01 00 20&quot; to &quot;50 01 00 20&quot;.&lt;br /&gt;Now double click &quot;CallForAttributes&quot; icon and change the value data to 0.&lt;br /&gt;&lt;br /&gt;Rejoice! Now you can jump back to your desktop and right click the recycle bin to see the rename option. Click it and name the recycle bin to whatever you want.&lt;br /&gt;&lt;br /&gt;Some tweaks you can perform (Always remember to create a &lt;a href=&quot;http://technotnt.blogspot.com/2007/09/backing-up-registry.html&quot;&gt;backup of your registry&lt;/a&gt; before performing any of the registry tweaks) :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://basiccoms.blogspot.com/2007/09/windows-xp-registry-clean-up-utility.html&quot;&gt;Cleaning Windows XP registry&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://pd-computerandmobile.blogspot.com/2007/09/break-xp-password.html&quot;&gt;Breaking XP Password&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://lot-things.blogspot.com/2007/09/how-to-change-disk-drive-icon.html&quot;&gt;Changing the disk drive icon&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://serials-cracks-keys.blogspot.com/2007/09/how-to-hide-local-drives-cdeaetc-in-my.html&quot;&gt;Hiding Local drives&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://fearlessfeeling.blogspot.com/2007/09/shutdown-xp-faster.html&quot;&gt;Shutting down windows faster&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://chetan0412.blogspot.com/2007/09/to-speed-up-computer.html&quot;&gt;Speeding up your computer&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://hutchinj.blogspot.com/2007/09/run-vista-legally-without-activation.html&quot;&gt;Running Vista Legally without any activation&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/09/renaming-recycle-bin.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg79Up5mtzZPOIVylukd1gg3TrvHgaqFSG1Cs16LZumcxTNHUYBSjjlJJca6Rs2ZRrszIYs2VjwDxT3QGIx-Zk1lxBxzpfzkH9e0El4OI0NcMrvx9A2gBjrpvqBnpaXVi1BNMvQEbaRquY/s72-c/regedit.JPG" height="72" width="72"/><thr:total>4</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-874642478135268228</guid><pubDate>Wed, 12 Sep 2007 14:00:00 +0000</pubDate><atom:updated>2007-09-12T07:13:30.801-07:00</atom:updated><title>Auto shut down of the computer for firefox download</title><description>After working for hours to find the correct matter to download, surely one does get exhausted and does need some rest. But after all this if you have to wait for the download to finish, frustration is an obvious outcome.&lt;br /&gt;       For all you guys who work on firefox most of the time, there is a Add-on provided by firefox which allows you to turn off your computer once the list of download items finishes. It adds an icon to the status bar  and the download manager, which enables you to automatically shut your computer down once the download has finished. To download this add-on click &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/5452&quot;&gt;here&lt;/a&gt;.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/09/auto-shut-down-of-computer-for-firefox.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-6306942133807015455</guid><pubDate>Sun, 09 Sep 2007 08:16:00 +0000</pubDate><atom:updated>2007-09-09T02:29:01.419-07:00</atom:updated><title>Creating a Bootable Pen Drive</title><description>All of us must have encountered the situation where our very own PC refuses to boot whatever the problem may be. It is here that a USB drive containing bootable XP comes in handy. You can install a bootable XP on to the pen drive along with the safety tools such as antivirus etc. to fix the problem.&lt;br /&gt;      But this cool way might not shine the light equally on everyone. In order to boot from a flash drive your system should be only around two years old. An alternative to this is that you &lt;a href=&quot;http://www.hardwaresecrets.com/article/33&quot;&gt;upgrade your BIOS&lt;/a&gt;. Also the flash drive you use should be of a minimum of 256 Mb size to hold windows XP. Also a maximum size of 2GB is permissible.&lt;br /&gt;     So now you have the pendrive and an approprite BIOS. So get started with creating a bootable pen drive. For that you need to have a &lt;a href=&quot;http://download.chip.eu/en/USB-Disk-Storage-Format-Tool-2.0.6_176935.html&quot;&gt;USB Disk storage format tool&lt;/a&gt; which is available for free. Now you can start formatting your pen drive. Then to make it bootable copy the following files on to the pen drive : Boot.ini, NTLDR, and NTDETECT from root directory of the boot drive.&lt;br /&gt;      Now you will be needing a software named &lt;a href=&quot;http://www.nu2.nu/pebuilder/&quot;&gt;BartPE&lt;/a&gt; that helps you install windows on a minimal space. After you have downloaded it follow the steps to copy the Windows files.&lt;br /&gt;       After you are done with all this you are having your very own flash drive ready to boot your Windows XP2.&lt;br /&gt;&lt;br /&gt;Associated links :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://ben.franske.com/blogs/bensbits.php/2007/08/21/booting_dos_from_a_usb_flash_drive#comments&quot;&gt;Booting DOS from USB Drive&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://ankushmobiles.blogspot.com/2007/06/usb-flash-drive.html&quot;&gt;USB Flash Drives&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/09/creating-bootable-pen-drive.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>27</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-1772977328648914757</guid><pubDate>Thu, 06 Sep 2007 18:06:00 +0000</pubDate><atom:updated>2007-09-06T11:54:47.897-07:00</atom:updated><title>NTFS (New Technology File System)</title><description>Whenever you are formatting your harddisk, the option for either a NTFS or a FAT file system pops up. Fine you know NTFS is new and better but how.&lt;br /&gt;A file system is a part of the operating system that determines how files are named, stored and organized on a volume.  FAT (File allocation table ) was the standard file system developed by microsoft for the MS-DOS. This was used in all the windows till the Windows ME. Then came the NTFS (New Technology File System) which almost replaced the FAT file allocation.&lt;br /&gt;       The NTFS allows greater reliability, security, greater volume size etc. In NTFS all the characteristics of the file (like filename, date of creation) are stored as metadata. NTFS utilizes the  power of B+ trees to index file system data. The master file table is used to store the metadata about every file present on the volume. In this system greater security is provided as we can restrict access of files to authorized users.&lt;br /&gt;       These features of NTFS sure does give them a reason to be chosen while opting for the type of file system for formatting.&lt;br /&gt;&lt;br /&gt;Associated topics :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://nos-110.blogspot.com/2007/09/class-5-chapter-3-windows-nt.html&quot;&gt;Windows NT&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.linuxnewsblog.com/2007/09/how-to-enable-ntfs-write-support-ntfs_05.html&quot;&gt;Enabling NTFS write in Linux&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/09/ntfs-new-technology-file-system.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-6693144310931957164</guid><pubDate>Tue, 04 Sep 2007 02:06:00 +0000</pubDate><atom:updated>2007-09-03T19:24:21.006-07:00</atom:updated><title>Rules for Creating a Relational DBMS</title><description>So all you programmer&#39;s out there think just implementing a database in the form of tables makes your database a relational Database (&lt;a href=&quot;http://mygadgetguru.blogspot.com/2007/07/sql-server-interview-questions-and.html&quot;&gt;RDBMS&lt;/a&gt;). Well then E.F. Codd challanges this thought of yours. Edgar F. Codd was a british computer scientist who has given a set of 12 rules necessary for creating a relational database. Most of the database management systems like Oracle, SQL server etc. incorporate most of these rules. The rules are :&lt;br /&gt;&lt;br /&gt;(1)Information Rule:&lt;br /&gt;All information in a relational database including table names,column names are&lt;br /&gt;represented explicitly by values in tables. Knowledge of only one language is necessary to&lt;br /&gt;access all data such as description  of the table  and attribute definitions ,integrity&lt;br /&gt;constraints,action to be taken when constraints are voilated,and  security information.&lt;br /&gt;&lt;br /&gt;(2)Guaranted Access Rule:&lt;br /&gt;Every pieceof data in the relational database,can be accessed by using a&lt;br /&gt;combination of a table name, a primary key value that identifies the row and a column&lt;br /&gt;that identifies the cell.The benefit of this is that user productivity is improved&lt;br /&gt;since there is no need to resort to  using physical pointers  addresses.Provides&lt;br /&gt;data independence.&lt;br /&gt;&lt;br /&gt;(3)Systematic  treatment of Nulls Rule:&lt;br /&gt;The  RDBMS handles that have unknown on inapplicable values in a predefined fashion.&lt;br /&gt;RDBMS distinguishes between zeros,blanks and nulls in records and handles such values in&lt;br /&gt;a consistent manner that produces correct answers,comparisions and calculations.&lt;br /&gt;&lt;br /&gt;(4)Active On-Line Catalog Based on the Relational Model.&lt;br /&gt; THe description of a database and its contents are database tables and therefore&lt;br /&gt;can be queries online via the data language.The DBA&#39;s productivity is improved since&lt;br /&gt;changes and additionsto the catalog  can be done with the same commands that are&lt;br /&gt;used to access any other table.All queries and reports can be done as with other tables.&lt;br /&gt;&lt;br /&gt;(5)Comprehensive Data Sublanguage Rule:&lt;br /&gt;A RDBMS may support several languages,but atleast one of them allows the user to do all&lt;br /&gt;of the following:define tables view,query and update  data ,set integrity constraints,&lt;br /&gt;set authorization,and define transactions.&lt;br /&gt;&lt;br /&gt;(6)View   Updating Rule:&lt;br /&gt;Any view that is theoretically updatable,if changes can be made to the tables that&lt;br /&gt;effect the desired changes in the view.Data consistency is ensured  since changes&lt;br /&gt;in the underlying tables are transmittedto the view they support.Logical data&lt;br /&gt;independence reduces maintenance cost.&lt;br /&gt;&lt;br /&gt;(7)High Level Inserts,Update and Delete:&lt;br /&gt;THe RDBMS supports insertion,updation and deletion at a table level.With this the&lt;br /&gt;RDBMS can improveperformance by optimizing the path to  be taken to execute the action&lt;br /&gt;Ease of use improved since commands act on set  of records.&lt;br /&gt;&lt;br /&gt;(8)Physical data Independence :&lt;br /&gt;The execution of adhoc requests and application programs is not affected by changes&lt;br /&gt;in the physical data access and storage methods.Database administrators can make&lt;br /&gt;the changes to physical acccess and storage methods ,which improve  performance&lt;br /&gt;but do not changes in the application programs or adhoc requests.This reduces&lt;br /&gt;maintenance costs.&lt;br /&gt;&lt;br /&gt;(9)Logical data Independence:&lt;br /&gt;Logical changes in tables and view such asadding/deleting columns or changing&lt;br /&gt;field lenghts do not necessitate modifications in application programs or in the&lt;br /&gt;format of adhoc requests.&lt;br /&gt;&lt;br /&gt;(10)Integrity Independance:&lt;br /&gt;    Like table/view definitions ,integrity constraints are atored in the&lt;br /&gt;on-line catalog and therefore can  be changed without necessitating changes&lt;br /&gt;in application programs or in the format of adhoc requests .&lt;br /&gt;The following two integrity constraints must be supported.&lt;br /&gt;(a)Entity Integrity:&lt;br /&gt;No component of primary key is allowed to have anull value.&lt;br /&gt;(b)Referential integrity:&lt;br /&gt;For each distinct  non-null foreign key value in a relationaldatabase,&lt;br /&gt;there must exist  a matching primary key from the same range of data value.&lt;br /&gt;&lt;br /&gt;(11)Distribution Independence:&lt;br /&gt;Application programs and adhoc requests are not affected by changes&lt;br /&gt;in the distribution of the  physical data.&lt;br /&gt;&lt;br /&gt;(12)Nonsubversion Rule:&lt;br /&gt;If the RDBMS has a language change that accesses the information&lt;br /&gt;of a record at a time,this language cannot be used to by-pass the&lt;br /&gt;integrity constraints.Inoreder to adhere to this rule the  RDBMS must have an&lt;br /&gt;active catalog that containsthe constraints must have a logical data independence.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/09/so-all-you-programmers-out-there-think.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>45</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-8721950126219669768</guid><pubDate>Thu, 30 Aug 2007 18:40:00 +0000</pubDate><atom:updated>2007-09-01T06:35:29.941-07:00</atom:updated><title>Minicomputers</title><description>Minicomputer is a computer which is having a size in between the mainframe computers and the microcomputers.&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpjZMxzXWY1DD1VU27qNCIRyL0363sGATSU3M8IAgp9r7ppvb90Uhs1wlHGWfMlnvDKqAXYtmuLhhBlcoziV17QIkiUh-xnwbdKMEi9XqWNkMfrXfhMFG08YyU7w8BY7z6lbHUJhEOk_o/s1600-h/minicomputer.bmp&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpjZMxzXWY1DD1VU27qNCIRyL0363sGATSU3M8IAgp9r7ppvb90Uhs1wlHGWfMlnvDKqAXYtmuLhhBlcoziV17QIkiUh-xnwbdKMEi9XqWNkMfrXfhMFG08YyU7w8BY7z6lbHUJhEOk_o/s320/minicomputer.bmp&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5104566634442622834&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;These minicomputers behave as a stand-alone computer with a number of terminals attached to it. They were small computers ( compared to the then existing mainframe computers ). This had been achieved with the introduction of transistors and core memory technologies.&lt;br /&gt;   The magnetic core memory or the ferrite core memory is a kind of computer memory. It stores information in magnetic ceramic rings which can store a bit(0 or 1) of information.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiumhK0TtyKs7xlN2lub0Vi_5cQMHB57gD-OGR4yj2dpdFYrNZK50TXK6dkzseyYNQzYm1KLS_FmtCxCKXKzo-yGf0AgxSio5Rp_06N3VrYWFEIPNe_RlU3uFF6NHPozHmVMbw-MXjH4Yk/s1600-h/core.bmp&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiumhK0TtyKs7xlN2lub0Vi_5cQMHB57gD-OGR4yj2dpdFYrNZK50TXK6dkzseyYNQzYm1KLS_FmtCxCKXKzo-yGf0AgxSio5Rp_06N3VrYWFEIPNe_RlU3uFF6NHPozHmVMbw-MXjH4Yk/s320/core.bmp&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5104566243600598882&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;These rings are arranged in a grid form as shown.&lt;br /&gt;But the minicomputers still had few drawbacks like large size, expensive to buy which gave way to the invention of the microcomputers which is visible in almost every household now a days.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/untitled.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpjZMxzXWY1DD1VU27qNCIRyL0363sGATSU3M8IAgp9r7ppvb90Uhs1wlHGWfMlnvDKqAXYtmuLhhBlcoziV17QIkiUh-xnwbdKMEi9XqWNkMfrXfhMFG08YyU7w8BY7z6lbHUJhEOk_o/s72-c/minicomputer.bmp" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-6997981411838339377</guid><pubDate>Sat, 25 Aug 2007 11:47:00 +0000</pubDate><atom:updated>2007-08-25T05:33:08.927-07:00</atom:updated><title>Placing a seperate hibernate button on the shut down screen</title><description>Every time you need to &lt;a href=&quot;http://windowsxpntricks.blogspot.com/2007/08/hibernate-your-xp.html&quot;&gt;hibernate&lt;/a&gt; your OS, you need to put one of your fingers to work in pressing the shift key. Thank god there is an alternative. We can place a hibernate button alongside the standby button by performing certain tweaks in the registry.&lt;br /&gt;    Open regedit ( click on start &gt; run. Then type in regedit),  create a key as shown below, &quot;HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System\Shutdown&quot;. Then under this key create a dword value &quot;ShowHibernateButton&quot; and set it&#39;s value to 1 as shown &quot;ShowHibernateButton&quot; = dword:00000001 .&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLvk2QRnRm6G5niznVz7ujrpAm4W-PuMATpUBIxGBiUgebopbz3SIcKRpye-ymH-7JQH9kXXCLUpl-ZZ01MR26aSoyIh9u1H0cxpP4CJGIgd5G5rKy0vtjG5U_CO1R_OBklRQxb6_yPic/s1600-h/shutdown.bmp&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLvk2QRnRm6G5niznVz7ujrpAm4W-PuMATpUBIxGBiUgebopbz3SIcKRpye-ymH-7JQH9kXXCLUpl-ZZ01MR26aSoyIh9u1H0cxpP4CJGIgd5G5rKy0vtjG5U_CO1R_OBklRQxb6_yPic/s320/shutdown.bmp&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5102609946126812994&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;     Rejoice now you can just check out your work by jumping on to the shut down screen and notice the change.&lt;br /&gt;Now you will see four buttons appearing on your shut down screen. Now you will not have to bother your finger ever time you put your PC on hibernation.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/placing-seperate-hibernate-button-on.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLvk2QRnRm6G5niznVz7ujrpAm4W-PuMATpUBIxGBiUgebopbz3SIcKRpye-ymH-7JQH9kXXCLUpl-ZZ01MR26aSoyIh9u1H0cxpP4CJGIgd5G5rKy0vtjG5U_CO1R_OBklRQxb6_yPic/s72-c/shutdown.bmp" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-4050231423414802676</guid><pubDate>Wed, 22 Aug 2007 16:41:00 +0000</pubDate><atom:updated>2007-08-22T10:43:03.038-07:00</atom:updated><title>Working Of LED&#39;s</title><description>LED&#39;s or Light Emmitting diodes are semiconductor devices which emit light when electricity is passed through them. &lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhf5q5wbQ2l47c-1Sc8VWAzR6K9O7IPTDon3WmlXEP1uA4-z170ucjqS9QkD9unZWWcWjObYtZFh618mOl4xPFDK5PuYjHpS0aCNJKBOoMcpyFcgA-wraqdzAuN3F7KNuQWg5HHHkkhGy4/s1600-h/LEDlamp.jpeg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhf5q5wbQ2l47c-1Sc8VWAzR6K9O7IPTDon3WmlXEP1uA4-z170ucjqS9QkD9unZWWcWjObYtZFh618mOl4xPFDK5PuYjHpS0aCNJKBOoMcpyFcgA-wraqdzAuN3F7KNuQWg5HHHkkhGy4/s200/LEDlamp.jpeg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5101574481051354914&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;An LED consist of a p-n junction in which electricity is passed through it in forward biased mode as shown in the figure.&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3hOa2EjFosEKFoLVTsC4MY3dROsgPDnyPQuf3cHi014wwPN5UVA7p2enmxkQfccMhe4d8IF2vKbFTonO0kpX7nArYhxRW8B1f-2SqxMLhwe69TZDOWofWJlwHmHKTzq6QHf-Z1hKodPs/s1600-h/LED.jpeg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3hOa2EjFosEKFoLVTsC4MY3dROsgPDnyPQuf3cHi014wwPN5UVA7p2enmxkQfccMhe4d8IF2vKbFTonO0kpX7nArYhxRW8B1f-2SqxMLhwe69TZDOWofWJlwHmHKTzq6QHf-Z1hKodPs/s200/LED.jpeg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5101572569790908178&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; Also a load resistance is applied to it so that the excess current does not harm the LED.&lt;br /&gt;        LED&#39;s are available in various colors to suit your need like red,blue,yellow,white etc. But the white and blue LED&#39;s are particularly costlier compared to the other colored LED&#39;s.&lt;br /&gt;     These LED&#39;s are tiny bulbs which can be used for various purposes like in calculators. Most significant use is the one in seven segment display, the one we see on our watches. These small bulbs are arranged in a particular pattern to create a beautiful display of a number.&lt;br /&gt;       There also exist the bi-colored and tri-colored LED&#39;s. So just check out the various available LED&#39;s and create something innovative out of it.&lt;br /&gt;&lt;br /&gt;Associated Links :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://blog.wired.com/gadgets/2007/07/8-bit-kids-toy-.html#comment-80283079&quot;&gt;Baby&#39;s toy using LED&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://thuthuyledou.tntmax.net/2007/08/22/solar-lights-for-walkways-cut-costs/#comment-26&quot;&gt;Solar Lights for Walkways&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/working-of-leds.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhf5q5wbQ2l47c-1Sc8VWAzR6K9O7IPTDon3WmlXEP1uA4-z170ucjqS9QkD9unZWWcWjObYtZFh618mOl4xPFDK5PuYjHpS0aCNJKBOoMcpyFcgA-wraqdzAuN3F7KNuQWg5HHHkkhGy4/s72-c/LEDlamp.jpeg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-1539226231464243012</guid><pubDate>Sun, 19 Aug 2007 09:49:00 +0000</pubDate><atom:updated>2007-08-19T03:41:30.223-07:00</atom:updated><title>Plasma Display</title><description>We all want to have a Flat screen, large size TV hanging in our living room. These flat screen televisions use either the LCD display or the Plasma display technology. I have already talked about the LCD display in my last post. Here I will stress on the Plasma display.&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgM63pQ67J-4Lilt2VuY5MneF3rDDQBH4Z3PoNLLL9D8EFThN7-1n54Y7uG2ALfR2yGyGDFAnzflEfCV7FPaKUIHSS9G0gatzCYzRr0e-2-jbygAYFn6eyhuWvAM_45leZAw4Ve8YVvurE/s1600-h/plasma.bmp&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgM63pQ67J-4Lilt2VuY5MneF3rDDQBH4Z3PoNLLL9D8EFThN7-1n54Y7uG2ALfR2yGyGDFAnzflEfCV7FPaKUIHSS9G0gatzCYzRr0e-2-jbygAYFn6eyhuWvAM_45leZAw4Ve8YVvurE/s200/plasma.bmp&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5100351772581660418&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;     A plasma display consist of two glass panels holding an inert(that is, the gases do not react) mixture of noble gases(neon and xenon). These gases are exited by electricity converting them into plasma(ionized gas). This plasma then excites the phosphors to emit light which in turn lights up the pixels.&lt;br /&gt;     The pixel is a point which make up the entire screen. This pixel is in turn divided into a three subpixels. In a Plasma screen each subpixel can produce millions of colors. With the combination of all such pixels we get the so-called perfect picture quality.&lt;br /&gt;&lt;br /&gt;Associated Links :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://omoshiroigadgets.blogspot.com/2007/08/usb-mini-plasma-ball.html&quot;&gt;USB Plasma Ball&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/plasma-display.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgM63pQ67J-4Lilt2VuY5MneF3rDDQBH4Z3PoNLLL9D8EFThN7-1n54Y7uG2ALfR2yGyGDFAnzflEfCV7FPaKUIHSS9G0gatzCYzRr0e-2-jbygAYFn6eyhuWvAM_45leZAw4Ve8YVvurE/s72-c/plasma.bmp" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-1186688955297921059</guid><pubDate>Thu, 16 Aug 2007 12:07:00 +0000</pubDate><atom:updated>2007-08-16T06:17:50.322-07:00</atom:updated><title>Technology behind LCD</title><description>&lt;div style=&quot;text-align: left;&quot;&gt; LCD(Liquid crystal display) is a technology which is now fast being used in the monitors for the desktop PC&#39;s and already being used in the laptops. LCD consist of a thin liquid&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhywPOMuyWOMyGAO16kbOA8bKkSgx2HmItTqWrU5CEp91AQ9YL2LY6WazN_f-LDDLALGQcedA79cfY04gjRGnKDyaMcMVDxy2jvc9h-d2VBwbkVi9b4CHJzskQ6_IBgbOWYelStJWxlMcY/s1600-h/lcd+tv.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhywPOMuyWOMyGAO16kbOA8bKkSgx2HmItTqWrU5CEp91AQ9YL2LY6WazN_f-LDDLALGQcedA79cfY04gjRGnKDyaMcMVDxy2jvc9h-d2VBwbkVi9b4CHJzskQ6_IBgbOWYelStJWxlMcY/s200/lcd+tv.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5099273641301083890&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; crystal gel sandwiched between two thin polarized materials. This gel is divided into small dots called as pixels. In order to darken a pixel the pixel is polarized 90 degrees to the polarizing screen. For a bright pixel the polarization is 0 degrees.&lt;br /&gt;&lt;br /&gt;Related Topics :&lt;br /&gt;&lt;a href=&quot;http://everydaygossips.blogspot.com/2007/08/about-cleaning-your-lcd-screen.html&quot;&gt;Cleaning an LCD TV&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://paperfections.typepad.com/paperfections/2007/08/do-you-need-a-n.html#comment-79659245&quot;&gt;Free LCD TV&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/technology-behind-lcd.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhywPOMuyWOMyGAO16kbOA8bKkSgx2HmItTqWrU5CEp91AQ9YL2LY6WazN_f-LDDLALGQcedA79cfY04gjRGnKDyaMcMVDxy2jvc9h-d2VBwbkVi9b4CHJzskQ6_IBgbOWYelStJWxlMcY/s72-c/lcd+tv.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-5138644605387467610</guid><pubDate>Mon, 13 Aug 2007 12:59:00 +0000</pubDate><atom:updated>2007-08-13T06:28:00.957-07:00</atom:updated><title>Scheduling a computer for shut down</title><description>The computer is downloading a heavy file, and you are getting late for the work. If this is the situation we certainly have to schedule the computer to shut down after some time. Here, the Task Scheduler( you can find it under Start&gt;Programs&gt;Accessories&gt;SystemTools ) comes in handy.&lt;br /&gt;To shut down the system at a specific time&lt;br /&gt;&lt;ul style=&quot;text-align: left;&quot;&gt;&lt;li&gt;Open Task Scheduler and double click Add Scheduled Tasks&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9mhcTO6f0Y2a_k8uhJGXnuMQxTzRzpvv89R_Bi9Ug0yFzMo-3LbEPQTfWFuX3Ly2tePTTmzpksiuPXXS06HxjYaVfNr1STUqnMQrjv0SJFnv-pLYiLGPHxWCOAnpPy6hzOgWXjK54YSk/s1600-h/task+scheduler.bmp&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9mhcTO6f0Y2a_k8uhJGXnuMQxTzRzpvv89R_Bi9Ug0yFzMo-3LbEPQTfWFuX3Ly2tePTTmzpksiuPXXS06HxjYaVfNr1STUqnMQrjv0SJFnv-pLYiLGPHxWCOAnpPy6hzOgWXjK54YSk/s200/task+scheduler.bmp&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5098173483889408882&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;A wizard opens, click next. You will be presented with a list of programs you can schedule to run.&lt;/li&gt;&lt;li&gt;Click on browse, locate the %SystemRoot%\System32 folder. Then find the file named Shutdown.exe and click open.&lt;/li&gt;&lt;li&gt;Specify a name for the task and when do you want the task to run. Click next.&lt;/li&gt;&lt;li&gt;Specify the starting date and time and click next.&lt;/li&gt;&lt;li&gt;Then you will be prompted to enter the user name and password. Supply the information and click finish.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Now you are done with the process of scheduling the computer to shut down and can go to your work without worrying about terminating the download.&lt;/li&gt;&lt;/ul&gt;You can also visit the &lt;a href=&quot;http://boatband.blogspot.com/2007/08/viewing-task-scheduler-log.html&quot;&gt;Task scheduler log&lt;/a&gt; in case you want to see the performance of the task scheduler.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/scheduling-computer-for-shut-down.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9mhcTO6f0Y2a_k8uhJGXnuMQxTzRzpvv89R_Bi9Ug0yFzMo-3LbEPQTfWFuX3Ly2tePTTmzpksiuPXXS06HxjYaVfNr1STUqnMQrjv0SJFnv-pLYiLGPHxWCOAnpPy6hzOgWXjK54YSk/s72-c/task+scheduler.bmp" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-503331286788467153</guid><pubDate>Fri, 10 Aug 2007 07:52:00 +0000</pubDate><atom:updated>2007-08-10T01:14:13.067-07:00</atom:updated><title>Get your voice on Air ( Internet Radio )</title><description>You like listening to radio, so do I. But how many of us have ever tried to broadcast our voice over the internet radio. There are a few websites that allow us to create our own online radio station and broadcast our voice. One such radio broadcaster is Live365.&lt;br /&gt;        Live365 is an internet radio provider in which members can create their own radio station and air your voice over it. You can also listen to other such members you have uploaded their voices. To get such access you have to purchase the &quot;Broadcaster&#39;s&quot; membership. Different packages are available to choose from depending on your requirements. In the very basic package, one can upload an MP3 file created by him, which will be relayed on the internet. Advanced members can upload the music at their home by getting handy a microphone. Get a quick access to &lt;a href=&quot;http://www.live365.com/downloads/index.live?tabs=freemusic:freesoftware&quot;&gt;Live365&lt;/a&gt;. So, if you think you play an instrument good enough or your voice is worth listening to, just start broadcasting your voice and see fame coming your way.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/get-your-voice-on-air-internet-radio.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-2248780584445213208</guid><pubDate>Tue, 07 Aug 2007 10:40:00 +0000</pubDate><atom:updated>2007-08-07T04:01:33.297-07:00</atom:updated><title>Recovering files deleted from the Recycle bin</title><description>Have you lost an important file from your hard drive, then this content is for you. Whenever a delete a file using Shift+delete or deleting the files in the recycle bin, most of us consider to be that file a thing of past. But we can rejoice for it can still be recovered.&lt;br /&gt;    Whenever we delete a file using the above said methods, the file is not deleted rather that file is removed from the list of files in the folder and the memory area in which the file is stored is available to windows to write something else. So, longer the period since when you have deleted the file, lesser will be the chance of it being recovered.&lt;br /&gt;     Defragmentation frees the space occupied by such deleted files, so if you have defragmented your hard-disk recently, you can forget the idea of recovering your file. There are many tools that help you recover your files, some are paid and some for free. So here is one such free tool named &quot;&lt;a href=&quot;http://www.snapfiles.com/get/restoration.html&quot;&gt;Restoration&lt;/a&gt;&quot;. It helps you recover the deleted files with ease. Just give it a try.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/recovering-files-deleted-from-recycle.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-624213183505808231</guid><pubDate>Sat, 04 Aug 2007 11:00:00 +0000</pubDate><atom:updated>2007-08-04T04:31:06.472-07:00</atom:updated><title>Wireless Monitor for your desktop</title><description>So you have a wireless mouse and keyboard combo sitting on your computer table, but do you think that&#39;s ample to call your PC a wireless one. Well, give yourself a second thought. Still you have the monitor along with it&#39;s wires eating up the space and look of your PC. So here is how to make your desktop PC completely wireless.&lt;br /&gt;     For the same you need a wireless monitor connector. Many such gadgets are available like WID101 from Teq Gear, Avocent LV3500W longview wireless extender, and many more.&lt;br /&gt;A pic of the WID101 is shown below :&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh85e-LJeWFnKqZgZqLSvRC9iXfzIcoeYZcPd9SMus-Ibx6PrtHQY1HKzYhOYUUcr-TOhp8o_Xj5BK2ONMZscadGPThqc_1NAmyFBmNneTZXS6SgfuOCqgiJylJaJgZfMAh8AcKLZQ970g/s1600-h/WID101.bmp&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh85e-LJeWFnKqZgZqLSvRC9iXfzIcoeYZcPd9SMus-Ibx6PrtHQY1HKzYhOYUUcr-TOhp8o_Xj5BK2ONMZscadGPThqc_1NAmyFBmNneTZXS6SgfuOCqgiJylJaJgZfMAh8AcKLZQ970g/s200/WID101.bmp&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5094803261706943314&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;This device connects the DVI port situated in your PC with the one on your monitor over an encrypted network. It can provide you a resolution of 1366*768.&lt;br /&gt;But in order to have this wireless connectivity you need to have a DVI(Digital Video Interface) port. This port is mostly available in the flat panel LCD monitors and some of the CRD(cathode ray display) monitors.&lt;br /&gt;The DVI port looks similar to the following figure :&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLElKkrXE4nFXG3eVvL85x6tSGFpO1mJ-ULRLSt5uV2TELs6wbc0ePp9b2w8PGIOF3V0PAGwQQeI_qWre6FKk9PU34jS92YirRBKHPieDEVjSLiPCOCKrBNerGcT0PeU6MMp83BYW2e-Q/s1600-h/DVI+port.bmp&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLElKkrXE4nFXG3eVvL85x6tSGFpO1mJ-ULRLSt5uV2TELs6wbc0ePp9b2w8PGIOF3V0PAGwQQeI_qWre6FKk9PU34jS92YirRBKHPieDEVjSLiPCOCKrBNerGcT0PeU6MMp83BYW2e-Q/s200/DVI+port.bmp&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5094804782125366114&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Well this technology does come for a price(around $1000), but it is worth a buy if you are wretched by the amount of wires on your table.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/wireless-monitor-for-your-desktop.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh85e-LJeWFnKqZgZqLSvRC9iXfzIcoeYZcPd9SMus-Ibx6PrtHQY1HKzYhOYUUcr-TOhp8o_Xj5BK2ONMZscadGPThqc_1NAmyFBmNneTZXS6SgfuOCqgiJylJaJgZfMAh8AcKLZQ970g/s72-c/WID101.bmp" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-7517087286472512777</guid><pubDate>Wed, 01 Aug 2007 10:53:00 +0000</pubDate><atom:updated>2007-08-01T04:21:58.579-07:00</atom:updated><title>Internet on the Go</title><description>&lt;div&gt;&lt;br /&gt;As people have rapidly started switching over to the laptops from their traditioal desktop PC&#39;s, the need for having an internet connection that travels with you is rapidly becoming a necessity.&lt;br /&gt;Thankfully many compaies are trying to take advantage of this situation, thereby simplyfying our lives. There are data cards available in the market that can be connected to the laptop or the PC.&lt;br /&gt;Basically, the companies have introduced this technology using two media. First is the data card which can be inserted in the card slot embedded in your laptop. A picture of it is shown below.&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidMIhZoEaaGrcAElxIerIwOyyOa9iaryLrOp4hohp9LBjfpNCaNWVeWhoAzwFK0M_5yw-9v-ZoQB0oOvoeidLtAN9o22LtB8MR344CnB1iZ_ksY-sq4-6UFdMFsfUKgU5IvlHRCZQWbRc/s1600-h/datacard.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5093686295332076338&quot; style=&quot;FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidMIhZoEaaGrcAElxIerIwOyyOa9iaryLrOp4hohp9LBjfpNCaNWVeWhoAzwFK0M_5yw-9v-ZoQB0oOvoeidLtAN9o22LtB8MR344CnB1iZ_ksY-sq4-6UFdMFsfUKgU5IvlHRCZQWbRc/s200/datacard.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;These cards however have certain disadvantages : &lt;/div&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;They cannot used on every laptop as not every laptop has such ports in them.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;They obviously cannot be used on a desktop PC unless you have bought an external such card reader.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;p&gt;The alternative to this is the USB modem which has been launched necessarily to overcome the above weaknesses. The USB modem is simply inserted in the USB port of your laptop or desktop PC. A USB modem is shown below:&lt;/p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKBmGCZ2V1cgOJzPC5VUVCN6bFCTLawu9HUDk4WzDzSSQotSCV7YF2yiN_F2ym0vb3Us72lxX21ucCgYzgtP-wiq718rX_ctu7muhrtvjvqpStNIEYc7sg8alow-t-1TVh-9diqTcgOtM/s1600-h/USB.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5093688575959710530&quot; style=&quot;FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKBmGCZ2V1cgOJzPC5VUVCN6bFCTLawu9HUDk4WzDzSSQotSCV7YF2yiN_F2ym0vb3Us72lxX21ucCgYzgtP-wiq718rX_ctu7muhrtvjvqpStNIEYc7sg8alow-t-1TVh-9diqTcgOtM/s200/USB.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;But with this advantage of internet on the go you have to bear with the slow speed these tools offer. They offer a speed of around 144kbps, but one is able to get a speed of around 50kbps only. But this downside of these tools sure is overpowered by the mobility it provides to the internet connection.&lt;/p&gt;&lt;p&gt;These cards can be purchased for anything arount 2500-3000 bucks plus the monthly tarrifs. Providers for these technologies now a days include : Airtel, Reliance, Tata Indicom and so on. So the next time you go out on a long trip you don&#39;t have to worry about the availability of the cyber cafe.&lt;/p&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/08/internet-on-go.html</link><author>noreply@blogger.com (Tapan Jain)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidMIhZoEaaGrcAElxIerIwOyyOa9iaryLrOp4hohp9LBjfpNCaNWVeWhoAzwFK0M_5yw-9v-ZoQB0oOvoeidLtAN9o22LtB8MR344CnB1iZ_ksY-sq4-6UFdMFsfUKgU5IvlHRCZQWbRc/s72-c/datacard.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-2803548147383946360</guid><pubDate>Tue, 17 Jul 2007 06:44:00 +0000</pubDate><atom:updated>2007-07-17T00:24:31.568-07:00</atom:updated><title>Dynamic Link Library</title><description>Most of us must have seen a few windows files with a dll extension, but did we care about what these files really are and what they actually do. &lt;br /&gt;    DLL(Dynamic Link Library) is a file consisting of number of functions that can be called by other programs running on the computer. DLL files that help in the operation of certain devices are known as the device drivers(These are the same files that are provided in a CD with your motherboard, the so called &quot;driver CD&quot;). &lt;br /&gt;   DLL files help save memory as they are not loaded into the RAM along with the program making a call to it, rather it is loaded only when an explicit call is made to it. This property of DLL&#39;s help save the precious RAM memory. A DLL file simply acts as a repository of functions which can be used by a number of applications at the same time. Also the dll file is not compiled, only a reference is provided tothe dll file to use it.&lt;br /&gt;   A DLL file is often given a dll extension. A DLL file differs from an exe file as it can not be run directly, it must be called from other code that is already executing. In order to use a DLL file we have to register it by providng its references in the registry. To do this goto the command line(Start&gt;run) and type in &quot;regsvr32 filename.dll&quot;. This will register the dll file.&lt;br /&gt;  In order to open up a dll file you have to use a file named ILDASM.exe. This file can be found at &quot;C:\Program Files\Microsoft.NET\FrameworkSDK\bin&quot; if you have the .net framework installed.&lt;br /&gt;So, now don&#39;t be puzzled in seeing all those dll files on your system and try checkingout a few of them.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/07/most-of-us-must-have-seen-few-windows.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-3022477311489418391</guid><pubDate>Sun, 29 Apr 2007 11:10:00 +0000</pubDate><atom:updated>2007-04-29T04:39:23.132-07:00</atom:updated><title>Data Recovery when you need it the most</title><description>Often there is a situation when your computer gets infected with a virus and your indispensable office project cannot be accessed. Well don&#39;t worry here I provide with a nice website dedicated to data recovery.&lt;br /&gt;&lt;a href=&quot;http://www.idatacare.com/&quot;&gt;iDatacare&lt;/a&gt; is a nice website which helps you in performing all your data recory related issues. It handles many situations like data corruption by virus, e-mail corruption, recovery of data even if deleted from recycle bin and many more. It provides an interactive session to the users in which the user can tell the experts their problem. In response to this the experts from iDatacare take control of your computer via remote desktop connection and load a data recovery software on to your PC.&lt;br /&gt;After 40 minutes of scan of your computer by the software you get your data back as it was earlier. Now the only job you are left with is to thank the guys who have helped you out.&lt;br /&gt;You can also download the demo of the  &lt;a href=&quot;http://recoveryourdata.com/data-recovery-software.php&quot;&gt;data recovery software&lt;/a&gt; and help yourself.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/04/data-recovery-when-you-need-it-most.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-198210331273009157</guid><pubDate>Thu, 19 Apr 2007 12:38:00 +0000</pubDate><atom:updated>2007-04-19T06:03:53.333-07:00</atom:updated><title>Hosting a website at home</title><description>Ever thought of hosting a website at home rather than buying space on other hosts server. Well here I provide some ways of doing so without spending a buck.&lt;br /&gt;We can access any computer on the internet by its IP address (eg. http://10.25.121.2). But this way of accessing through numbers is not considered user friendly. For this purpose we make the use of DNS service to give name to the IP address. We&#39;ll use one such free DNS name provider &lt;a href=&quot;http://www.dyndns.com/&quot;&gt;DynDNS&lt;/a&gt;. It provides free static and dynamic DNS service. You can also use &lt;a href=&quot;http://www.no-ip.com/&quot;&gt;no-Ip&lt;/a&gt; as an alternative.&lt;br /&gt;So now you can have a dynamic DNS account. Sometimes you might face problems in logging in to DynDNS every time your IP address changes. You can handle this by installing the DynDNS Updater software, which automatically updates your IP address in the DNS records.&lt;br /&gt;To get the DNS updatig software visit &lt;a href=&quot;https://www.dyndns.com/support/clients/&quot;&gt;DynDNS updater&lt;/a&gt;. On installing this software you will be asked for a hostname group, give a name to your group of hostnames.And when you reach the &quot;Hostname Information&quot; screen,check the box next to your hostname before clicking &quot;Next.&quot;&lt;br /&gt;Now you have your very own hostname on the Internet without troubling your wallet. For most people, the next step is to assign a static local IP address to your computer so that you have a fixed address on your home network to forward web or BitTorrent traffic to.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/04/hosting-website-at-home.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2518756630126640181.post-7731006161532245782</guid><pubDate>Tue, 10 Apr 2007 18:00:00 +0000</pubDate><atom:updated>2007-04-10T11:23:54.880-07:00</atom:updated><title>Removing the Get Genuine Notification</title><description>Many of you guys might be trying to get rid of the irritating &#39;&lt;span style=&quot;font-style: italic;&quot;&gt;Get Genuine&lt;/span&gt;&#39; logo that pops up each time you start your windows. This is nothing but a notification by the microsoft to tell you that your copy of windows is pirated. But this is nothing else but intrusion into the users privacy. The software that is responsible for such repetitive notifications is downloaded while the updates for your computer are being installed after you have confirmed its installation.&lt;br /&gt;After this whenever you start your PC it prompts the user to buy a licenced copy. To remove this notification a small number of simple steps have to be followed :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to My Computer and open the folder &quot;C:\Windows\System32&quot;.&lt;/li&gt;&lt;li&gt;Locate the file &quot;WgaTray.exe&quot; and rename it to &quot;WgaTray-spyware.exe&quot;.&lt;/li&gt;&lt;li&gt;Locate the file &quot;WgaLogon.dll&quot; and rename it to &quot;WgaLogon-spyware.dll&quot;.&lt;/li&gt;&lt;li&gt;Go to the task manager(&lt;span style=&quot;font-style: italic;&quot;&gt;by pressing Ctrl+Alt+De&lt;/span&gt;l)  and end the process &quot;Wgatray.exe&quot; under the processes tab.&lt;/li&gt;&lt;li&gt;Then just restart your computer and you will see the change.&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-3215279645243634&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;336699&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_text = &quot;333333&quot;;
google_color_url = &quot;666666&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://tapan2000.blogspot.com/2007/04/removing-get-genuine-notification.html</link><author>noreply@blogger.com (Tapan Jain)</author><thr:total>1</thr:total></item></channel></rss>