<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7796619</id><updated>2012-01-29T02:51:14.748+05:30</updated><title type='text'>ADTC (Computer)</title><subtitle type='html'>Blogging about computer-related stuff</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default?start-index=101&amp;max-results=100'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>173</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7796619.post-3475727088859433932</id><published>2012-01-12T02:59:00.000+05:30</published><updated>2012-01-12T23:25:37.176+05:30</updated><title type='text'>WPF Flat Button FOR REAL!</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://i.ytimg.com/vi/mAdkW1iAFg4/0.jpg" height="266" width="320"&gt;&lt;param name="movie" value="http://www.youtube.com/v/mAdkW1iAFg4?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata&amp;rel=0" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;embed width="320" height="266"  src="http://www.youtube.com/v/mAdkW1iAFg4?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata&amp;rel=0" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;Three different solutions are available to create a "flat button" from a standard button. A flat button is one which only pops up when you point your mouse to it or gives it focus by tabbing with the keyboard. Watch the video, try the one that best suits you, and leave your comments. Note that in all three solutions,&amp;nbsp;&lt;i&gt;events&lt;/i&gt;&amp;nbsp;of your created button will work as per normal.&lt;br /&gt;&lt;br /&gt;In the video, buttons in the first column contain a &lt;i&gt;Polygon&lt;/i&gt;. Those in the second column contain an &lt;i&gt;Image&lt;/i&gt;, and those in the third contain simple text.&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size: large;"&gt;Solution 1: Property-based WPF Flat Buttons&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;To get these flat buttons, all you have to do is set both Background and BorderBrush properties of a standard button to Transparent. These buttons also&amp;nbsp;show&amp;nbsp;natively the fade-in and fade-out effects when they gain focus or are pointed to.&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;lt;Button Background="Transparent" BorderBrush="Transparent" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;However, these flat buttons fail when Windows is using the Classic theme or a High Contrast theme (as you can see from the video). If your application is targeted to work on all themes, try Solution 2 or 3.&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size: large;"&gt;Solution 2: Style-based WPF Flat Buttons (non-animated)&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;Add the following to your application's resources (usually Window.Resources or Page.Resources):&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;lt;Style x:Key="FlatButton" TargetType="Button"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp;&amp;lt;Setter Property="IsTabStop" Value="False" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp;&amp;lt;Setter Property="Template"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;lt;Setter.Value&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp;&amp;lt;ControlTemplate TargetType="Button"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;Grid&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Button&amp;gt;&amp;nbsp;&lt;i&gt;&amp;lt;!-- Inherit properties here with TemplateBinding --&amp;gt;&lt;/i&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Button.Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Style TargetType="Button"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style.Triggers&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;MultiTrigger&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;MultiTrigger.Conditions&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Condition Property="IsFocused" Value="False" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Condition Property="IsMouseOver" Value="False" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/MultiTrigger.Conditions&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Setter Property="Opacity" Value="0" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/MultiTrigger&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style.Triggers&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Button.Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Button&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Label HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Padding="3" IsHitTestVisible="False"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ContentPresenter /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Label&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/ControlTemplate&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;lt;/Setter.Value&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp;&amp;lt;/Setter&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;lt;/Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;With this style in place, create your button as follows:&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;b&gt;&lt;u&gt;XAML:&lt;/u&gt;&lt;/b&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;lt;Button Style="{StaticResource FlatButton}" /&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;b&gt;&lt;u&gt;Code-behind:&lt;/u&gt;&lt;/b&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;Button myButton = new Button();&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;myButton.Style = (Style)this.FindResource("FlatButton");&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;The inner button in the style definition will not automatically inherit some properties such as&amp;nbsp;&lt;i&gt;Background&lt;/i&gt;&amp;nbsp;that you set to the above button. If you need to apply any such property that doesn't inherit automatically, you will have to inherit it by editing the button&amp;nbsp;&lt;u&gt;&lt;b&gt;inside&lt;/b&gt;&amp;nbsp;the style definition&lt;/u&gt;&amp;nbsp;as follows, with&amp;nbsp;&lt;i&gt;Background&lt;/i&gt;&amp;nbsp;as an example:&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br class="Apple-interchange-newline" /&gt;&amp;lt;Button &lt;b&gt;Background="{TemplateBinding Background}"&lt;/b&gt; /&amp;gt;&lt;/code&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp;&lt;/span&gt;&lt;i style="font-family: monospace;"&gt;&amp;lt;!-- Inherit properties here with TemplateBinding --&amp;gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;However, you must not inherit the&amp;nbsp;&lt;i&gt;Opacity&lt;/i&gt;&amp;nbsp;property! If you do that, the button will completely fail at being flat. You may add an Opacity property to the&amp;nbsp;&lt;u&gt;inner button&lt;/u&gt;&amp;nbsp;to help yourself visualize the buttons during design-time. But you must remove the Opacity property of inner button before runtime, or your created buttons will be stuck at the added opacity value permanently.&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;If you want to control the runtime opacity, simply set the &lt;i&gt;Opacity&lt;/i&gt; property of your &lt;u&gt;created button&lt;/u&gt; (there is no need to inherit it to the inner button). Alternatively, for a global effect, you may also change the value in the MultiTrigger's&amp;nbsp;&lt;i&gt;Setter&lt;/i&gt;&amp;nbsp;(or) use solution 3 (edit the&amp;nbsp;&lt;i&gt;DoubleAnimation&lt;/i&gt;'s by setting the duration to "0:0:0" and setting the opacities to your desired values).&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size: large;"&gt;Solution 3: Style-based WPF Animated Flat Buttons&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;Add the following to your application's resources (usually Window.Resources or Page.Resources):&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;lt;Style x:Key="AnimatedFlatButton" TargetType="Button"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp;&amp;lt;Setter Property="IsTabStop" Value="False" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp;&amp;lt;Setter Property="Template"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;lt;Setter.Value&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp;&amp;lt;ControlTemplate TargetType="Button"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;Grid&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Button Opacity="0.1"&amp;gt;&amp;nbsp;&lt;i&gt;&amp;lt;!-- Inherit properties here with TemplateBinding --&amp;gt;&lt;/i&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Button.Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Style TargetType="Button"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style.Triggers&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;MultiTrigger&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;MultiTrigger.Conditions&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Condition Property="IsFocused" Value="False" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Condition Property="IsMouseOver" Value="False" /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/MultiTrigger.Conditions&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;MultiTrigger.EnterActions&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;BeginStoryboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Storyboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;DoubleAnimation To="0.0" Duration="0:0:0.5" Storyboard.TargetProperty="Opacity" /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Storyboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/BeginStoryboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/MultiTrigger.EnterActions&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;MultiTrigger.ExitActions&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;BeginStoryboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Storyboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;DoubleAnimation To="1.0" Duration="0:0:0.25" Storyboard.TargetProperty="Opacity" /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Storyboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/BeginStoryboard&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/MultiTrigger.ExitActions&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/MultiTrigger&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style.Triggers&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Button.Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Button&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Label HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Padding="3" IsHitTestVisible="False"&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ContentPresenter /&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Label&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/ControlTemplate&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp; &amp;lt;/Setter.Value&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;nbsp;&amp;lt;/Setter&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;lt;/Style&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;With this style in place, create your button as follows:&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;b&gt;&lt;u&gt;XAML:&lt;/u&gt;&lt;/b&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&amp;lt;Button Style="{StaticResource AnimatedFlatButton}" /&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;b&gt;&lt;u&gt;Code-behind:&lt;/u&gt;&lt;/b&gt;&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;Button myButton = new Button();&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;myButton.Style = (Style)this.FindResource("AnimatedFlatButton");&lt;/code&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;The inner button in the style definition will not automatically inherit some properties such as&amp;nbsp;&lt;i&gt;Background&lt;/i&gt;&amp;nbsp;that you set to the above button. If you need to apply any such property that doesn't inherit automatically, you will have to inherit it by editing the button&amp;nbsp;&lt;u&gt;&lt;b&gt;inside&lt;/b&gt;&amp;nbsp;the style definition&lt;/u&gt;&amp;nbsp;as follows, with&amp;nbsp;&lt;i&gt;Background&lt;/i&gt;&amp;nbsp;as an example:&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;code&gt;&lt;br class="Apple-interchange-newline" /&gt;&amp;lt;Button Opacity="0.1" &lt;b&gt;Background="{TemplateBinding Background}"&lt;/b&gt; /&amp;gt;&lt;/code&gt;&lt;span style="font-family: monospace;"&gt;&amp;nbsp;&lt;/span&gt;&lt;i style="font-family: monospace;"&gt;&amp;lt;!-- Inherit properties here with TemplateBinding --&amp;gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;You may edit the&amp;nbsp;&lt;i&gt;Opacity&lt;/i&gt;&amp;nbsp;property to help yourself visualize when designing your form. But remember to set it back to zero or 0.1 because an opacity too high will give the &lt;i&gt;unwelcome&lt;/i&gt; visual effect of all your flat buttons fading into flatness when you launch the application window.&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;If you want to control the runtime opacity,&amp;nbsp;simply set the &lt;i&gt;Opacity&lt;/i&gt; property of your &lt;u&gt;created button&lt;/u&gt; (there is no need to inherit it to the inner button).&amp;nbsp;To control the fade speed of the buttons, edit the&amp;nbsp;&lt;i&gt;DoubleAnimation&lt;/i&gt;'s by setting the duration to your desired values. You may also change the opacity values in the &lt;i&gt;DoubleAnimation&lt;/i&gt;'s if desired.&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;b&gt;&lt;i&gt;&lt;u&gt;&lt;span style="font-size: large;"&gt;Backstory:&lt;/span&gt;&lt;/u&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;After searching everywhere on the Internet for a perfect solution, I could only find half-baked solutions of either inheriting the toolbar button style (which looks very ugly with a simple blue box) or hacking up the button and defining your own style (which makes you lose the standard button look and gradients).&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: -webkit-auto;"&gt;I ended up spending two days trying different ways and coming up with a good solution that actually works. The solutions 2 and 3 were created and perfected by me before I stumbled upon solution 1&amp;nbsp;&lt;a href="http://mel-green.com/2009/08/wpf-creating-a-pop-up-button-style/" target="_blank"&gt;here&lt;/a&gt;. I'm glad I didn't see solution 1 before. Initially I was surprised that the problem could be very easily solved with solution 1, but upon further testing, I found it unreliable if an application is to be deployed in an environment which may use the Classic theme or its derivatives.&lt;br /&gt;&lt;br /&gt;Remember to leave your comments if you found it useful or encountered problems.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3475727088859433932?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3475727088859433932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2012/01/wpf-flat-button-for-real.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3475727088859433932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3475727088859433932'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2012/01/wpf-flat-button-for-real.html' title='WPF Flat Button FOR REAL!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-6699880586161662176</id><published>2011-09-24T00:24:00.000+05:30</published><updated>2012-01-12T08:44:08.180+05:30</updated><title type='text'>Smart Keyboard Pro - Malay Dictionary</title><content type='html'>&lt;i&gt;Selamat datang ke blog saya!&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;If you own an Android phone and use Smart Keyboard (Trial or Pro)... and you want to send messages in Malay (yup, that's Bahasa Melayu), here's how to get a dictionary for it (Yea, there's no official dictionary, even for Bahasa Indonesia).&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Note: &lt;/b&gt;The procedure assumes that you do &lt;u&gt;not&lt;/u&gt; currently use &lt;i&gt;"Bahasa Indonesia"&lt;/i&gt; language in your Smart Keyboard. It's a lengthy procedure but I assure you it's easy to follow through. Do give it a full reading first before following the steps.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Download &lt;a href="http://dl.dropbox.com/u/41098084/MalayDictionary.txt"&gt;this file&lt;/a&gt; and open it in Notepad.&lt;br /&gt;&amp;nbsp;&lt;/li&gt;&lt;li&gt;On your phone, go to Smart Keyboard Settings &amp;gt; Backup settings.&lt;/li&gt;&lt;li&gt;Tap on "Backup to SD card", "Export user dictionary" and "Export AutoText", and confirm each of the backups. Do take note of where the backups are saved.&amp;nbsp;&lt;i&gt;This is for a rollback in case something goes wrong. You will also need one of the backup files later.&lt;br /&gt;&amp;nbsp;&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Go to Smart Keyboard Settings &amp;gt; Language.&lt;/li&gt;&lt;li&gt;Ensure "Hide Language key" is disabled (unchecked).&lt;/li&gt;&lt;li&gt;Tap "Language selection key" and select &lt;u&gt;two&lt;/u&gt; languages:&lt;/li&gt;&lt;ol&gt;&lt;li&gt;The language you normally use (most likely "English" or "English (UK)") &lt;i&gt;You can check what you're using by going back and tapping on "Current Language".&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Bahasa Indonesia (Indonesian). &lt;i&gt;Make sure all other languages are unchecked &lt;u&gt;unless&lt;/u&gt; you use them.&lt;br /&gt;&amp;nbsp;&lt;/i&gt;&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;Go to Smart Keyboard Settings &amp;gt; Text prediction.&lt;/li&gt;&lt;li&gt;Ensure that "Smart Dictionary" is enabled (checked). &lt;i&gt;This will help learn word frequencies, showing you most used words first.&lt;br /&gt;&amp;nbsp;&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Exit out of Smart Keyboard Settings and connect your phone to your computer in Disk Drive mode. &lt;i&gt;You may also use other methods as long as you can access the SD card contents.&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Open the phone's SD card in your computer. You should find the backup files in the folder "smartkeyboard" or "smartkeyboardpro" (as you noted in step 3).&lt;/li&gt;&lt;li&gt;Make a copy of the file "userdic.csv".&lt;/li&gt;&lt;li&gt;Open the &lt;u&gt;original&lt;/u&gt;&amp;nbsp;"userdic.csv" (not the copy!) &lt;u&gt;in Notepad&lt;/u&gt;. &lt;i&gt;It's important to open in Notepad or a text editor. Avoid using Microsoft Excel, OpenOffice Calc or other complex software.&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Copy the contents of the file you downloaded in step 1 and append it to the contents of "userdic.csv".&lt;/li&gt;&lt;li&gt;Save the file, and disconnect the phone from the computer (or give the SD card back to the phone).&lt;br /&gt;&amp;nbsp;&lt;/li&gt;&lt;li&gt;Go to Smart Keyboard Settings &amp;gt; Backup settings.&lt;/li&gt;&lt;li&gt;Tap on "Import user dictionary" and tap OK (tap it a little harder to be sure).&lt;br /&gt;&amp;nbsp;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;u&gt;Now you must WAIT!&lt;/u&gt;&lt;/b&gt; Smart Keyboard may seem to have frozen with the confirmation dialog on screen. Depending on the speed of your device, this step can take anywhere from a few seconds to several minutes! It's important to remember that there are over 9000 Malay terms in the user dictionary and importing all of them will take a while. If you tap on the screen, Android may complain that Smart Keyboard is not responding. Tap &lt;b&gt;&lt;u&gt;WAIT&lt;/u&gt;&lt;/b&gt; to this message! &lt;b&gt;&lt;u&gt;Do not tap&lt;/u&gt;&lt;/b&gt; Force Close or Report! Once again, Smart Keyboard is not frozen, it is simply taking a little while to import all the Malay terms. When it's done, the confirmation dialog will automatically disappear.&amp;nbsp;&lt;i&gt;If your phone screen turns off, turn it on after a few minutes to check the progress.&lt;br /&gt;&amp;nbsp;&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Once the confirmation dialog has disappeared, exit out of Smart Keyboard Settings and open a text area where you can see the Smart Keyboard on-screen keyboard.&lt;/li&gt;&lt;li&gt;If you have never had this before, you will see a new key next to the 123 key. Tap on this key to switch between the languages you selected in step 6: EN ("English") and ID ("Malay"). &lt;i&gt;Although ID stands for Indonesian, the user dictionary you loaded in steps 16-17 is standard Malay used in Malaysia and Singapore. It is not Indonesian Malay.&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Switch to EN when you want to type in English, or to ID when you want to type in Malay. &lt;i&gt;Allow Smart Keyboard a few weeks to learn the frequent words through your daily use. At first, you may get less frequent words as your top choices, but as you keep using, Smart Keyboard will learn the more frequent words you use and prioritize them.&lt;/i&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;&lt;b&gt;About the Dictionary:&lt;/b&gt;&lt;/div&gt;&lt;div&gt;This dictionary was compiled from &lt;a href="http://dictionary.bhanot.net/"&gt;Bhanot's Malay-English Cyber- Dictionary&lt;/a&gt;. The Malay terms &lt;i&gt;and&lt;/i&gt; derivatives were compiled together, one term/derivative per line. Phrases of two or more words separated by spaces were broken into separate words. Duplicates were removed, and the final compilation was prepared for use with Bahasa Indonesia in Smart Keyboard by adding the language code "ID" to all the words. &lt;a href="http://www.flos-freeware.ch/notepad2.html"&gt;Notepad2&lt;/a&gt; was used to complete this entire process quickly and efficiently.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The prefix &lt;i&gt;ber&lt;/i&gt; and the suffix &lt;i&gt;kan&lt;/i&gt; were added to the dictionary for convenience. I didn't think of any other prefix/suffix to add. Suggestions are welcome.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;Disclaimer:&lt;/b&gt;&lt;/div&gt;&lt;div&gt;I do not claim ownership of any part of my compilation here which had been borrowed from the source material. I do not intend to use my compilation or any part of it commercially or for profit. I have made it available for everyone free of charge, just as the raw material for it had been made available free of charge in the source website.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;Terima kasih!&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-6699880586161662176?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/6699880586161662176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2011/09/smart-keyboard-pro-malay-dictionary.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6699880586161662176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6699880586161662176'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2011/09/smart-keyboard-pro-malay-dictionary.html' title='Smart Keyboard Pro - Malay Dictionary'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1271890211551068280</id><published>2011-09-18T14:15:00.000+05:30</published><updated>2012-01-12T08:45:04.041+05:30</updated><title type='text'>Windows Explorer Jump Lists missing in Windows 7</title><content type='html'>If you find that the Jumplist of Windows Explorer in Windows 7 has reduced to merely the name, the pin/unpin option and the close option, you can fix it by doing this:&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Create two temporary folders on your Desktop called "Automatic" and "Custom".&lt;/li&gt;&lt;li&gt;Click Start.&lt;/li&gt;&lt;li&gt;Paste &lt;u&gt;%APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations&lt;/u&gt; in the search box and hit Enter.&lt;/li&gt;&lt;li&gt;Move &lt;b&gt;all&lt;/b&gt; the files in this folder to the temporary folder called "Automatic".&lt;/li&gt;&lt;li&gt;Repeat steps 3 and 4 for &lt;u&gt;%APPDATA%\Microsoft\Windows\Recent\CustomDestinations&lt;/u&gt;, using temporary folder "Custom".&lt;/li&gt;&lt;li&gt;Restart your computer.&lt;br /&gt;&amp;nbsp;&lt;/li&gt;&lt;li&gt;Use your computer normally for a few hours, a day or so. Especially, you have to browse your folders frequently using Windows Explorer. This is so that new files get created for Windows Explorer in the two folders where you moved out old files in step 4. &lt;i&gt;(Set a reminder for step 8.)&lt;br /&gt;&amp;nbsp;&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Go back to the two locations in step 3 and step 5, and check if a few new files (around 5 or so) have been created. If yes, proceed to step 9. If not, continue step 7.&lt;/li&gt;&lt;li&gt;Open the temporary folder called "Automatic" and move all files into the location &lt;u&gt;%APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations&lt;/u&gt; but &lt;u&gt;&lt;b&gt;Please Take Note:&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;- When a conflict arises, choose the &lt;b&gt;&lt;u&gt;'Don't move'&lt;/u&gt;&lt;/b&gt; option.&lt;br /&gt;- The new files created &lt;b&gt;&lt;u&gt;must not&lt;/u&gt;&lt;/b&gt; be replaced by old files you moved out!&lt;br /&gt;- This is &lt;u&gt;&lt;b&gt;very important!&lt;/b&gt;&lt;/u&gt; If you click 'Move and Replace', you will break the Windows Explorer jump list again.&lt;/li&gt;&lt;li&gt;Repeat step 9 for temporary folder "Custom" and location &lt;u&gt;%APPDATA%\Microsoft\Windows\Recent\CustomDestinations&lt;/u&gt;. Once again, for conflicts, click the &lt;u&gt;&lt;b&gt;'Don't move'&lt;/b&gt;&lt;/u&gt; option.&lt;/li&gt;&lt;li&gt;If you followed instructions correctly, after step 10 you will find a few files remaining unmoved in the temporary folders. Now you can delete these temporary folders from your Desktop.&lt;/li&gt;&lt;/ol&gt;Technical note: Steps 1 to 6 will fix Windows Explorer jump list but they will break other jump lists and the &lt;i&gt;recent documents&lt;/i&gt; feature of Start Menu. Steps 7 to 10 will fix what is broken by steps 1 to 6.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1271890211551068280?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1271890211551068280/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2011/09/windows-explorer-jump-lists-missing-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1271890211551068280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1271890211551068280'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2011/09/windows-explorer-jump-lists-missing-in.html' title='Windows Explorer Jump Lists missing in Windows 7'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5120019653736237089</id><published>2011-09-12T00:11:00.000+05:30</published><updated>2012-01-12T08:45:34.333+05:30</updated><title type='text'>Save and automatically connect to an ad-hoc network in Windows 7</title><content type='html'>&lt;i&gt;This could probably be the ULTIMATE solution! Post a comment if it has helped you!&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;With each new Windows version, Microsoft has unfortunately chosen to make life harder for people who use ad-hoc networks to connect computers together without the use of a middleman (the router). In Windows Vista, one could choose to save the ad-hoc network one is connecting to.&lt;br /&gt;&lt;br /&gt;But with Windows 7, not only is there no way of connecting automatically (well actually there is a shortcut for that, as below), but now one cannot save an ad-hoc network that one is connecting to.&amp;nbsp;(One can only save an ad-hoc network one is creating in the host computer.)&lt;br /&gt;&lt;br /&gt;The biggest annoyance is that every time one connects to an ad-hoc network as a guest, one has to enter the password (network key) again. All of these problems can be solved with the steps below.&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;To save an ad-hoc network and its network key on the guest computer (running Windows 7)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Note down the SSID, security type, encryption type and the key of the ad-hoc network.&lt;/li&gt;&lt;li&gt;Disconnect your connection to any wireless network and switch off/disable your wireless device.&lt;/li&gt;&lt;li&gt;Click on the network icon in the taskbar.&lt;/li&gt;&lt;li&gt;Click &lt;i&gt;Open Network and Sharing Center&lt;/i&gt; &amp;gt; &lt;i&gt;Manage Wireless Networks&lt;/i&gt; &amp;gt; &lt;i&gt;Add&lt;/i&gt;.&lt;/li&gt;&lt;li&gt;Click "Manually create a network profile". (This may look silly but we really are going to create an infrastructure network now.)&lt;/li&gt;&lt;li&gt;Enter the network name (SSID), security type, encryption type (if any) and the key that you noted in step 1.&lt;/li&gt;&lt;li&gt;Uncheck both checkboxes ("Start this connection automatically" and "Connect even if the network is not broadcasting".) [Note that you cannot have the connection start automatically. If you try to have it checked, step 10 will fail. A different way to start it automatically during system boot is described below.]&lt;/li&gt;&lt;li&gt;Click Next &amp;gt; Close. Your connection must appear in the list with the icon suggesting infrastructure (two big screens connected to a tube). Don't worry about it.&lt;/li&gt;&lt;li&gt;Click Start, type in "&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;cmd&lt;/span&gt;" in the search box, press Enter.&lt;/li&gt;&lt;li&gt;In the Command Prompt, type in "&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;netsh wlan set profileparameter name=&lt;/span&gt;&lt;i&gt;&lt;u&gt;NetworkName&lt;/u&gt;&lt;/i&gt;&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt; ConnectionType=IBSS&lt;/span&gt;", exactly as shown, without quotes, except you must substitute &lt;i&gt;&lt;u&gt;NetworkName&lt;/u&gt;&lt;/i&gt; with the SSID (network name) of your ad-hoc network.&lt;/li&gt;&lt;li&gt;If everything went well, you'll see that the icon has now changed to an ad-hoc icon (three small screens connected to each other) in the &lt;i&gt;Manage Wireless Networks&lt;/i&gt; window.&lt;/li&gt;&lt;li&gt;Turn on/enable your wireless device, and try connecting to the Ad-hoc network. You will notice that you no longer need to enter the network key.&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;&lt;b&gt;To automatically connect to a saved ad-hoc network during Windows boot (can be applied to both guest and host computers running Windows 7)&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;Click Start &amp;gt; &lt;i&gt;point to&lt;/i&gt; All Programs &amp;gt; &lt;i&gt;right-click&lt;/i&gt; Startup &amp;gt; &lt;i&gt;click&lt;/i&gt; Open. (You may choose &lt;i&gt;Open All Users&lt;/i&gt; instead if you prefer).&lt;/li&gt;&lt;li&gt;Right-click an empty space and click New &amp;gt; Shortcut.&lt;/li&gt;&lt;li&gt;Type in "&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', serif;"&gt;netsh wlan connect &lt;/span&gt;&lt;i&gt;&lt;u&gt;NetworkName&lt;/u&gt;&lt;/i&gt;". Once again, &lt;i&gt;&lt;u&gt;NetworkName&lt;/u&gt;&lt;/i&gt; must be substituted with the SSID of your ad-hoc network.&lt;/li&gt;&lt;li&gt;Click Next and enter a fancy name such as "Connect to &lt;i&gt;&lt;u&gt;NetworkName&lt;/u&gt;&lt;/i&gt;" or something like that.&lt;/li&gt;&lt;li&gt;Click Finish and you're done. This shortcut will run when Windows starts up, giving you a very brief flash of the black command window, followed by your computer connecting to the ad-hoc network if it is available. &lt;b&gt;Tip:&lt;/b&gt; You can also pin the shortcut in your taskbar or copy it to the desktop to easily connect to the network any time you want.&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;&lt;b&gt;Note:&lt;/b&gt; You will probably need Administrator access to complete some of the steps above (in both procedures).&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;Random trivia:&lt;/b&gt; I kept typing ad-hock instead ad-hoc throughout this post.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5120019653736237089?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5120019653736237089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2011/09/save-and-automatically-connect-to-ad.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5120019653736237089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5120019653736237089'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2011/09/save-and-automatically-connect-to-ad.html' title='Save and automatically connect to an ad-hoc network in Windows 7'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-793204224341169106</id><published>2011-07-28T19:18:00.001+05:30</published><updated>2012-01-10T23:08:45.006+05:30</updated><title type='text'>Pre-Windows 7 "Window Control Menu" in Windows 7 taskbar</title><content type='html'>As Windows 7 introduced a new feature called "Jump Lists," right-clicking on the icon of an open window will show this list. If you want to see the "control menu"* instead, hold the Shift key and right-click the icon.&lt;br /&gt;&lt;br /&gt;If you want to permanently change this new behavior, try &lt;a href="http://rammichael.com/7-taskbar-tweaker"&gt;7 Taskbar Tweaker&lt;/a&gt;. It can make regular right-clicks bring up the control menu, as well as change many other features of the Windows 7 taskbar.&lt;br /&gt;&lt;br /&gt;* A control menu is a menu that enables you to manipulate a window frame, providing options such as Maximize, Restore, Minimize, Move and Size.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-793204224341169106?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/793204224341169106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2011/07/pre-windows-7-window-control-menu-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/793204224341169106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/793204224341169106'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2011/07/pre-windows-7-window-control-menu-in.html' title='Pre-Windows 7 &quot;Window Control Menu&quot; in Windows 7 taskbar'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1834663557601192288</id><published>2011-05-10T12:19:00.000+05:30</published><updated>2011-05-10T12:19:22.188+05:30</updated><title type='text'>Alert: "You need to upgrade your Flash Player" scam</title><content type='html'>Recently I found a few instances where when I click Play on videos shown on the Facebook homepage (which displays the news feed), I get a message in place of the video that says "You need to upgrade your Flash Player" followed by a button called "Upgrade Now"&lt;br /&gt;&lt;br /&gt;Be warned! This is a scam to get spyware and viruses installed into your computer. I have once clicked the button and immediately realized my mistake when I noticed that the browser is attempting to download an executable file that looked extremely suspicious. On researching further about the origins of the file, I have found that it comes from a spyware making company (of sorts).&lt;br /&gt;&lt;br /&gt;If you want to check whether you have the latest version of Flash Player, just go to &lt;a href="http://www.adobe.com/software/flash/about/"&gt;this page&lt;/a&gt; in the official Adobe Flash website. It will show you the latest version of flash player, and the version you have installed. Also note that Adobe Flash does not alert you of an update the way the scam does. Besides, videos will still play as long as you have a recent version of the player even if you don't have the latest.&lt;br /&gt;&lt;br /&gt;I didn't get a chance to make a screenshot. When I do, I'll put up a screenshot here. The conditions where it happened to me are:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Random videos from YouTube (shared by my friends in the Facebook wall)&lt;/li&gt;&lt;li&gt;Facebook home page news feed&lt;/li&gt;&lt;li&gt;Mozilla Firefox 4.0.1&lt;/li&gt;&lt;li&gt;Reloading the page and playing the video again fixes the problem. &lt;/li&gt;&lt;/ul&gt;If you encountered the same scam, post a comment and tell me what the conditions are for you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1834663557601192288?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1834663557601192288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2011/05/alert-you-need-to-upgrade-your-flash.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1834663557601192288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1834663557601192288'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2011/05/alert-you-need-to-upgrade-your-flash.html' title='Alert: &quot;You need to upgrade your Flash Player&quot; scam'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-2751199398989054575</id><published>2011-04-02T10:06:00.000+05:30</published><updated>2012-01-12T08:48:15.836+05:30</updated><title type='text'>Probably the fastest way to make screen clipping</title><content type='html'>If you have Microsoft Office OneNote installed, you have at your  disposal the fastest way to create a screenshot of a specific region of  the screen. The standard way of creating screenshots had two options:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;PrintScreen (on your keyboard): Takes a screenshot of the entire screen.&lt;/li&gt;&lt;li&gt;Alt-PrintScreen: Takes a screenshot of the active window.&lt;/li&gt;&lt;/ul&gt;But when you want to take a screenshot of a custom defined region of the screen, you will have to  either screenshot the entire screen and crop it in an image processing  program, or use a special software such as "Snipping Tool" from  Microsoft.&lt;br /&gt;&lt;br /&gt;When using a software, you'll usually have to find it and run it  (unless you have a quick-access shortcut or keyboard shortcut assigned  to it), then command it to let you create a new screenshot. Such  softwares usually also provide a preview of the screen clipping in  addition to copying it to the clipboard. You will have to dispose of  this preview once you have used the screen clipping.&lt;br /&gt;&lt;br /&gt;Microsoft OneNote, although not specifically designed for  screenshots, has the fastest way to take screen clippings ready for use.  Once you have installed Office with OneNote, you will find the OneNote  icon in the notification area (aka system tray) which is a stylized  purple N.&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;If you're into keyboard shortcuts, you can always press Win-S  keyboard shortcut to create a screen clipping anytime. It's easy and  fast.&lt;br /&gt;&lt;br /&gt;If you're a heavy mouse user, you need to first set the OneNote icon to create screen clippings by default:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Right-click the icon in the notification area to get its context menu.&lt;/li&gt;&lt;li&gt;Point to "OneNote Icon Defaults" menu item.&lt;/li&gt;&lt;li&gt;Select "Create Screen Clipping" in the sub-menu (not the main context menu).&lt;/li&gt;&lt;/ul&gt;From now, you can simply &lt;u&gt;single-click&lt;/u&gt; the OneNote icon to create a screen clipping. There is no need to double-click although it will also work.&lt;br /&gt;&lt;br /&gt;In either case, you will get a dialog box "Select Location in  OneNote" when you create a screen clipping. This is useful if you're a  OneNote user and you will sometimes paste screen clippings in your  notes. But if you're not a OneNote user, you can have OneNote always  copy the clipping to clipboard:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;In the dialog box, click "Don't ask me again and always do the following:" (a check mark must appear).&lt;/li&gt;&lt;li&gt;Click "Copy to Clipboard" button.&lt;/li&gt;&lt;/ul&gt;When you create a screen clipping next time, it will always be copied  to the clipboard silently. You can then paste it anywhere you want. (Do  note that previous clipboard contents will be lost.)&lt;br /&gt;&lt;br /&gt;If you wish to have the dialog box appear again, you can change the settings by opening OneNote Options:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Right-click the OneNote icon in the notification area.&lt;/li&gt;&lt;li&gt;Select "Open OneNote" menu item.&lt;/li&gt;&lt;li&gt;Click File &amp;gt; Options.&lt;/li&gt;&lt;li&gt;On left-side, select "Send to OneNote".&lt;/li&gt;&lt;li&gt;For "Screen clippings" under "Other Content", choose "Always ask where to send" (you can also choose to always send to a note).&lt;/li&gt;&lt;li&gt;Click the OK button. &lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Whenever you start creating a screen clipping, there will be a pop-up  notification balloon tip that says "Select a region of the screen to  create a screen clipping, or click anywhere to cancel." If you don't  want to see this, do as follows:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Do the first three steps above to open OneNote Options.&lt;/li&gt;&lt;li&gt;On left-side, select Display.&lt;/li&gt;&lt;li&gt;Click "Disable screen clipping notifications" so that a check mark appears for the item.&lt;/li&gt;&lt;li&gt;Click the OK button.&lt;/li&gt;&lt;/ul&gt;That's it. Now you can clip away anytime with Win-S keyboard shortcut or by clicking the OneNote icon!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-2751199398989054575?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/2751199398989054575/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2011/04/probably-fastest-way-to-make-screen.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2751199398989054575'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2751199398989054575'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2011/04/probably-fastest-way-to-make-screen.html' title='Probably the fastest way to make screen clipping'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-862898450080161726</id><published>2011-01-16T20:52:00.000+05:30</published><updated>2012-01-12T08:52:20.801+05:30</updated><title type='text'>Input Chinese using Dvorak (Windows)</title><content type='html'>If you're a regular Dvorak user, you may be frustrated that inputting Chinese pinyin can only be done using QWERTY layout.&lt;br /&gt;&lt;br /&gt;But it's actually very easy to use Dvorak layout to input Chinese pinyin. You only have to change a key in the registry, and restart (or log off), and you can instantly start inputting Chinese pinyin using the Dvorak layout!&lt;br /&gt;&lt;br /&gt;I found the simple instructions mirrored below at the following web pages (both belong to the same author).&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt; This will probably work for German, French, Spanish, Korean, Japanese, Arabic, Indian and other layouts as well. Just look for the correct language in the &lt;i&gt;Keyboard Layouts&lt;/i&gt; folder.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://xahlee.org/comp/Chinese_input_with_Dvorak.html"&gt;Chinese Input with Dvorak Layout (Microsoft Pinyin IME)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://xahlee.blogspot.com/2010/09/chinese-input-with-dvorak-layout.html"&gt;Xah Lee At Blogger: Chinese Input with Dvorak Layout (Microsoft Pinyin IME)&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;Press 【&lt;kbd&gt;Win&lt;/kbd&gt;+&lt;kbd&gt;r&lt;/kbd&gt;】 then type “regedit”. Then, go to the folder in this path:&lt;br /&gt;&lt;pre&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00000804&lt;br /&gt;&lt;/pre&gt;That's the folder for Chinese simplified.&lt;br /&gt;In the one named “Layout File”, change the value to “KBDDV.DLL”&lt;br /&gt;Then, restart Windows. (relogin might also work.)&lt;br /&gt;&lt;div class="img"&gt;&lt;img alt="Chinese Dvorak Microsoft IME" height="288" src="http://xahlee.org/comp/i/Chinese_Dvorak_Microsoft_IME.png" width="838" /&gt; &lt;br /&gt;&lt;div class="cpt"&gt;Microsoft Registry showing the Chinese (simplified) input method.&lt;/div&gt;&lt;/div&gt;Here's the folder name for some other languages.&lt;br /&gt;&lt;table class="nrm"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Language&lt;/th&gt;&lt;th&gt;Folder Name&lt;/th&gt;&lt;th&gt;Original “Layout File” value&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Chinese Simplified&lt;/td&gt;&lt;td&gt;000000404&lt;/td&gt;&lt;td&gt;KBDUS.DLL&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Chinese Traditional&lt;/td&gt;&lt;td&gt;000000404&lt;/td&gt;&lt;td&gt;KBDUS.DLL&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Japanese&lt;/td&gt;&lt;td&gt;00000411&lt;/td&gt;&lt;td&gt;KBDJPN.DLL&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Korean&lt;/td&gt;&lt;td&gt;00000412&lt;/td&gt;&lt;td&gt;KBDKOR.DLL&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Before you change, write down the original value, just in case you want to change it back.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-862898450080161726?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/862898450080161726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2011/01/input-chinese-using-dvorak-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/862898450080161726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/862898450080161726'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2011/01/input-chinese-using-dvorak-windows.html' title='Input Chinese using Dvorak (Windows)'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-635046081876684361</id><published>2010-10-24T16:28:00.000+05:30</published><updated>2012-01-12T08:54:04.633+05:30</updated><title type='text'>Scam site fakes Firefox and Chrome attack page warning</title><content type='html'>I had only recently sent out an email to a few close people educating them about the dangers of rogue anti-virus. Moments ago, I almost became a victim to the same danger I was warning them about.&lt;br /&gt;&lt;br /&gt;Scam sites try to use popular computer usage behavior in order to bypass securities and install virus, trojans and spywares. And the attack upon my computer is yet another example that testifies to this.&lt;br /&gt;&lt;br /&gt;While attempting to visit a site which I had never visited before, I was presented with the following message:&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_k2W4UhQBnRk/TMQGP7q89lI/AAAAAAAAAQA/MvWOJj_Ve48/s1600/FirefoxFake.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_k2W4UhQBnRk/TMQGP7q89lI/AAAAAAAAAQA/MvWOJj_Ve48/s1600/FirefoxFake.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Looks like the authentic Firefox warning about a scam site? Well, it's not. I knew something was wrong because of the following:&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;The authentic Firefox warning is like this (notice the differences):&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_k2W4UhQBnRk/TMQGRIpr5vI/AAAAAAAAAQE/eKd0FcM0mkI/s1600/FirefoxReal.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_k2W4UhQBnRk/TMQGRIpr5vI/AAAAAAAAAQE/eKd0FcM0mkI/s1600/FirefoxReal.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;The original one has two buttons and an Ignore link, while the scam version just has one button.&lt;/li&gt;&lt;li&gt;The police-man logo is not positioned properly. &lt;/li&gt;&lt;li&gt; The scam version does not have website address in its warning page (Example: This web page at &lt;i&gt;www.mozilla.com&lt;/i&gt; has been reported...).&lt;/li&gt;&lt;li&gt;Clicking the X button on all the dialogs gets you into an endless loop of dialogs. The Cancel button is similar to the X button and gets you into the same loop. Thus you are lured to click the OK button because it seems to be the only way out of this loop.&lt;/li&gt;&lt;li&gt;Look at the scam site address: It is &lt;i&gt;antivirus-downloads.is.com&lt;/i&gt;. One of the popular ways scam sites spread spywares, viruses and trojans is by faking antivirus softwares.&lt;/li&gt;&lt;li&gt;The scam version prompts you to download secure updates for Firefox. &lt;u&gt;But why would you need to download and install updates upon discovering a scam site?&lt;/u&gt;&lt;/li&gt;&lt;li&gt;Upon searching about this warning message, I found &lt;a href="http://blogs.computerworld.com/17203/scareware_scam_mimics_firefox_and_chrome_malicious_attack_warnings"&gt;this webpage&lt;/a&gt;, which mentions that a similar attack exists for Google Chrome, faking Chrome's scam site warning.&lt;/li&gt;&lt;/ul&gt;The scam site bets on the general human behavior of computer usage. Many novice computer users are conditioned to do the following at prompts without reading or thinking about the prompt:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;When two buttons OK and Cancel are presented, click Cancel.&lt;/li&gt;&lt;li&gt;When one button OK is presented, click OK.&lt;/li&gt;&lt;li&gt;When two buttons Yes and No are presented, click No.&lt;/li&gt;&lt;/ul&gt;Many others simply click the X button on top right corner of any dialog. While this maybe safe most of the time, even this action can be programmed to do something malicious in your computer.&lt;br /&gt;&lt;br /&gt;When you suspect that you maybe under attack by scam site, the safest way out is to open Task Manager and find &lt;i&gt;firefox.exe&lt;/i&gt; in the Processes tab, right-click it and select "End Process Tree." Once &lt;i&gt;firefox.exe&lt;/i&gt; is no longer on the process list, run Firefox again, and you will be presented with a list of tabs and windows that were open. Find the tab that was the scam site, uncheck it, then click Restore to get your other tabs and windows back.&lt;br /&gt;&lt;br /&gt;As for Google Chrome it is easier because Chrome includes a checkbox from the second dialog box onwards (if you clicked the X button on the first dialog): "Prevent this page from creating additional dialogs." Just enable this check box and click the X button and the site will stop showing dialogs. Then you can easily close the scam site's tab. (I really wish Firefox had this feature!)&lt;br /&gt;&lt;br /&gt;Here is the contents of the original email that I had mentioned earlier:&lt;br /&gt;&lt;blockquote&gt;I have found a blog with an excellent collection of &lt;span class="il"&gt;rogue&lt;/span&gt;  and fake antivirus software. These softwares pretend to scan your  computer for viruses and provide antivirus protection. But in reality,  these softwares are viruses themselves, and they also help install more  viruses.&lt;br /&gt;&lt;br /&gt;Also, these softwares are credit card theifs. They display fake  results, tell you that your computer is infected, and that you must  remove the viruses immediately. When you tell the software that you wish  to remove the viruses, it redirects you to a website where you will be  asked to purchase a full version of the fake antivirus software (this is  where your credit card information may get stolen). This is a tell-tale  sign of a fake. (Real free anti-virus softwares remove virus threats  for free immediately upon finding them).&lt;br /&gt;&lt;br /&gt;Here's the blog. Have a look at the number of &lt;span class="il"&gt;rogue&lt;/span&gt; antivirus softwares they have listed here with screenshots: &lt;a href="http://www.superantispyware.com/blog/" target="_blank"&gt;SUPERAntiSpyware Blog (http://www.superantispyware.com/blog/)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Familiarize yourself with the kind of names these &lt;span class="il"&gt;rogue&lt;/span&gt; antivirus softwares have, and what they look like. Protect yourself from installing &lt;span class="il"&gt;rogue&lt;/span&gt; antivirus by informing yourself about them. (Don't forget to check out the past entries on the blog!)&lt;br /&gt;&lt;br /&gt;My preferred &lt;u&gt;real&lt;/u&gt; free antivirus is &lt;a href="http://free.avg.com/ww-en/homepage" target="_blank"&gt;AVG&lt;/a&gt;. You can also look for &lt;a href="http://www.avast.com/index" target="_blank"&gt;Avast!&lt;/a&gt; free anti-virus. Those who would like to take paid route can look for &lt;a href="http://www.kaspersky.com/" target="_blank"&gt;Kaspersky&lt;/a&gt;, &lt;a href="http://www.mcafee.com/us/" target="_blank"&gt;McAfee&lt;/a&gt; or &lt;a href="http://www.symantec.com/index.jsp" target="_blank"&gt;Norton&lt;/a&gt;. &lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-635046081876684361?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/635046081876684361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2010/10/scam-site-fakes-firefox-and-chrome.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/635046081876684361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/635046081876684361'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2010/10/scam-site-fakes-firefox-and-chrome.html' title='Scam site fakes Firefox and Chrome attack page warning'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_k2W4UhQBnRk/TMQGP7q89lI/AAAAAAAAAQA/MvWOJj_Ve48/s72-c/FirefoxFake.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-9120715077426778283</id><published>2010-09-02T11:46:00.000+05:30</published><updated>2012-01-12T08:54:56.310+05:30</updated><title type='text'>How to install Notepad2 and replace Windows Notepad</title><content type='html'>&lt;b&gt;Update:&lt;/b&gt;&amp;nbsp;The Setup installer of the latest Notepad2 will automatically replace the Windows Notepad using the registry hack described below. It will also install Notepad2 to C:\Program Files\Notepad2 or an appropriate folder.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Original Post:&lt;/b&gt;&lt;br /&gt;This has been tested in Windows 7 64-bit edition, however should work in other versions and 32-bit editions as well.&lt;br /&gt;&lt;br /&gt;In the days of Windows 2000, it was easy to replace "notepad.exe" with your own custom version of Notepad, such as the light-weight but powerful &lt;a href="http://www.flos-freeware.ch/notepad2.html"&gt;Notepad2&lt;/a&gt;. Simply find the file and overwrite.&lt;br /&gt;&lt;br /&gt;But with Windows XP and later versions, a new feature called "Windows File Protection" prevents you from doing so.&lt;br /&gt;&lt;br /&gt;However, you can now replace Notepad system-wide without even touching the original "notepad.exe" using a simple registry hack.&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Download &lt;a href="http://www.flos-freeware.ch/notepad2.html"&gt;Notepad2&lt;/a&gt; (either 32-bit or 64-bit depending on your system). The original version will work fine. There is &lt;u&gt;no need&lt;/u&gt; for any hacked versions such as &lt;a href="http://code.kliu.org/misc/notepad2/"&gt;this&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Extract the downloaded archive into an empty folder. This folder should now contain &lt;i&gt;Notepad2.exe&lt;/i&gt; and other supporting files.&lt;/li&gt;&lt;li&gt;"Install" Notepad2 by simply copying the folder containing extracted files into "C:\Program Files" (This is not necessary but helps keep your system organized by keeping software in the &lt;i&gt;Program Files&lt;/i&gt; folder.)&lt;/li&gt;&lt;li&gt;Start &lt;i&gt;Registry Editor&lt;/i&gt; by clicking the &lt;i&gt;Start&lt;/i&gt; button and typing in "&lt;span style="background-color: #990000;"&gt;regedit&lt;/span&gt;".&lt;/li&gt;&lt;li&gt;Navigate to "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options"&lt;/li&gt;&lt;li&gt;Right-click this folder and create a new key called "&lt;span style="background-color: #990000;"&gt;notepad.exe&lt;/span&gt;" (no quotes)&lt;/li&gt;&lt;li&gt;Inside this new folder, create a new string value (REG_SZ) called "&lt;span style="background-color: #990000;"&gt;Debugger&lt;/span&gt;" (no quotes)&lt;/li&gt;&lt;li&gt;Paste the full path of the new Notepad2.exe file with quotes, and add "&lt;span style="background-color: #990000;"&gt;/z&lt;/span&gt;" at the end. An example would be: --- &lt;span style="background-color: #990000;"&gt;"C:\Program Files\Notepad2\Notepad2.exe" /z&lt;/span&gt; --- but remember that your folder might be different (you can rename the folder).&lt;/li&gt;&lt;li&gt;That's it! Test by running Notepad from the Start Menu and/or double-clicking some TXT files in Windows Explorer.&lt;/li&gt;&lt;/ol&gt;Enjoy! &lt;br /&gt;&lt;ol&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-9120715077426778283?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/9120715077426778283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2010/09/how-to-install-notepad2-and-replace.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/9120715077426778283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/9120715077426778283'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2010/09/how-to-install-notepad2-and-replace.html' title='How to install Notepad2 and replace Windows Notepad'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-210891216714410324</id><published>2010-05-22T11:49:00.006+05:30</published><updated>2012-01-12T08:56:45.326+05:30</updated><title type='text'>Make Samsung DVD-C350 region-free</title><content type='html'>&lt;b&gt;&lt;u&gt;Update 2:&lt;/u&gt;&lt;/b&gt; An anonymous commentator has shown me a way to make Region 1 players (such as DVD-H1080R) region-free by first converting it to Region 3, then applying my region-free hack below. For details, click &lt;a href="http://www.blogger.com/blogger.g?blogID=7796619#c5064440143645039322"&gt;here&lt;/a&gt; or look for a comment by an Anonymous user dated 18 April 2011.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Update:&lt;/u&gt;&lt;/b&gt; The instructions in the original post below did not make the DVD player region-free. Instead it only locked it to region 1. Many thanks to Anonymous who posted the first comment on this post, I now have alternate instructions. &lt;u&gt;Note:&lt;/u&gt; If you have edited the numbers menu &lt;i&gt;(see original post)&lt;/i&gt;, I suggest you return it to the original settings you had backed up. A modified numbers menu may prevent the instructions below from working properly.&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Make sure there is no disc in the player.&lt;/li&gt;&lt;li&gt;Turn on the player (you can use remote control or front panel, it doesn't matter)&lt;/li&gt;&lt;li&gt;Wait for "No Disc" message to appear on the TV screen.&lt;/li&gt;&lt;li&gt;Press the Repeat button on remote (plain, not A-B).&lt;/li&gt;&lt;li&gt;Press the correct sequence of buttons of remote according to the &lt;u&gt;original&lt;/u&gt; region code of your player (it's on the sticker on the back panel of the player). FF = fast forward, FR = fast rewind.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Region 2 players: FF, FR, FF, UP, DOWN&lt;/li&gt;&lt;li&gt;Region 3 players: FF, PLAY, FR, UP, LEFT&lt;/li&gt;&lt;li&gt;Region 4 players: FR, PLAY, DOWN, DOWN, RIGHT&lt;/li&gt;&lt;li&gt;Region 5 players: FF, UP, DOWN, STOP, RIGHT&lt;/li&gt;&lt;li&gt;Region 6 players: LEFT, RIGHT, RIGHT, PLAY, LEFT&lt;/li&gt;&lt;/ul&gt;&lt;li&gt; If you pressed the correct sequence, a small white number 0 will appear somewhere on the top right of the screen. The white number 0 of the same font and size as the "No Disc" message, so don't confuse with the red "not allowed" sign that would appear when you press a function that's not available.&lt;/li&gt;&lt;li&gt;Turn the player off and on again, then you can pop in a DVD of any region and watch immediately.&lt;/li&gt;&lt;/ul&gt;I have found DVD discs of three regions to work without any problems: region 1, 3 and 6. I will test other regions when I can, but I think they should work as well.&lt;br /&gt;&lt;br /&gt;Unfortunately I don't have a sequence for &lt;i&gt;originally&lt;/i&gt; region 1 players. I read somewhere that region 1 players cannot be made region-free, so I'm not sure. You can try all the sequences above or comment in on a sequence you know works.&lt;br /&gt;&lt;br /&gt;The above instructions could also work for DVD-C350K, DVDC360, DVD-C450 and DVD-C450K since they're in same series. A commentator reported that it also works for DVD-H1080R region 5 player.&lt;br /&gt;&lt;ul&gt;&lt;/ul&gt;&lt;b&gt;&lt;u&gt;Original Post:&lt;/u&gt;&lt;/b&gt; &lt;strike&gt;I have a Samsung DVD-C350 that's locked to region 3, and I wanted to play a region 1 disc. After trying everything I could find, I discovered that this works:&lt;/strike&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;i&gt;Instructions removed. Please see update above.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;strike&gt;You will get a menu full of numbers.** I don't know what any of the numbers mean but taking clues from instructions available for H1080 and H1080R DVD players (links &lt;a href="http://www.videohelp.com/dvdhacks/samsung-dvd-h1080r/10078"&gt;1&lt;/a&gt;, &lt;a href="http://www.avforums.com/forums/blu-ray-dvd-player-multiregion-hacks/1006318-samsung-dvd-h1080-region-code-2.html#post11389210"&gt;2&lt;/a&gt;), I highlighted all numbers from 1 to 9. I did not modify any numbers from 10 onwards. Use arrow buttons and Enter button to highlight or unhighlight numbers.&lt;/strike&gt;&lt;br /&gt;&lt;strike&gt;&lt;br /&gt;&lt;/strike&gt;&lt;br /&gt;&lt;strike&gt;** &lt;b&gt;&lt;u&gt;NOTE:&lt;/u&gt;&lt;/b&gt; I recommend you backup the original highlights in the numbers menu by noting it down on the back of the player's manual or some place safe. You may want to revert to the original settings when you want to send the device for warranty or if something goes wrong.&lt;/strike&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;i&gt;Instructions removed. Please see update above.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul&gt;&lt;/ul&gt;&lt;strike&gt;This worked for my region 1 disc and my C350 DVD player played it like a piece of cake! &lt;/strike&gt;&lt;strike&gt;I'm not sure if the above arrangement of highlights will work for other regions,* but the instructions I found says it will make the player region-free. Post a comment and let me know what works for you!&lt;/strike&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;* See update above.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;strike&gt;Blog entry&lt;/strike&gt; Original post has also been posted as comment on "&lt;a href="http://hubpages.com/hub/How_to_unlock_region_zones_on_a_DVD_Player"&gt;How To Unlock Region Zones On A DVD Player&lt;/a&gt;".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-210891216714410324?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/210891216714410324/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2010/05/make-samsung-dvd-c350-region-free.html#comment-form' title='52 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/210891216714410324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/210891216714410324'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2010/05/make-samsung-dvd-c350-region-free.html' title='Make Samsung DVD-C350 region-free'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>52</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-6736072918144394292</id><published>2009-11-19T00:48:00.006+05:30</published><updated>2010-10-24T16:30:54.334+05:30</updated><title type='text'>Windows PC Scout</title><content type='html'>Here's a great Flash presentation by Microsoft where you can learn about laptop computers and what to look for when you shop for them. You will learn about the basics in choosing a laptop such as the processor, RAM and the hard disk. Well, the presentation is bent towards Windows 7 and Microsoft's own laptop shopping site. But nevertheless, you can gain a lot of knowledge about computers if you're a newbie, or check your understanding if you're an expert. The narrator is humorous so you can have some good laughs as well. Enjoy!&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; At the end of the presentation, you will be re-directed to Microsoft's shopping website. Continue shopping, or click the Back button to return to the blog.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://windows-pc-scout.jellyvision-conversation.com/"&gt;Click here to see the presentation in its own website (utilizes full window space)&amp;nbsp;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-6736072918144394292?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/6736072918144394292/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/11/windows-pc-scout.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6736072918144394292'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6736072918144394292'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/11/windows-pc-scout.html' title='Windows PC Scout'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8658365956611951277</id><published>2009-11-17T18:04:00.002+05:30</published><updated>2012-01-12T09:00:03.203+05:30</updated><title type='text'>Remove tab bar in iGoogle</title><content type='html'>Just today, Google changed the tab bar position of iGoogle Singapore version from top to the left. I love Google for their simplicity and neatness. But to have tabs on the left side is such a bad choice. What's worse is that this is forced upon the users, with no option to return them to the top.&lt;br /&gt;&lt;br /&gt;I only use iGoogle on my personal computer, in Firefox, therefore I found a solution that works for me. It's the Firefox Add-on called "iGoogle Tab Remover" and it works like a charm! To make use of its full functionality, you have to learn its various options and set them according to your preferences. However, you have to note that this add-on does not have a formal "Options" dialog, and its options should be accessed from iGoogle. &lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Install the add-on from here: &lt;b&gt;&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/10113"&gt;iGoogle Tab Remover :: Add-ons for Firefox&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;Once Firefox is restarted, browse to the iGoogle page.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;Update:&lt;/b&gt; Ensure that &lt;i&gt;iGoogle Tab Remover&lt;/i&gt; is enabled in the &lt;i&gt;Tools&lt;/i&gt; menu of Firefox. You will find a menu item in the &lt;i&gt;Tools&lt;/i&gt; menu which is either &lt;i&gt;Enable&lt;/i&gt; or &lt;i&gt;Disable iGoogle Tab Remover&lt;/i&gt;. If it is &lt;i&gt;Enable iGoogle Tab Remover&lt;/i&gt;, click it to enable.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Below the usual white bar with &lt;i&gt;"Web&amp;nbsp; Images&amp;nbsp; News..."&lt;/i&gt; you will find a new bar with &lt;i&gt;'iGoogle Tabs'&lt;/i&gt; and a custom search box.&lt;/li&gt;&lt;li&gt;Point to &lt;i&gt;'iGoogle Tabs'&lt;/i&gt; and you will get a drop-down menu. Point to &lt;i&gt;'Timedyn'&lt;/i&gt; and the menu will expand further.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You can remove the custom search box by unchecking &lt;i&gt;"Search Bar."&lt;/i&gt; I find it pointless to have a custom search box, as iGoogle already has one.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;Update:&lt;/b&gt; David Rubin (the author of the add-on) told me that he included the custom search box as some users may want to resize the header &lt;i&gt;(see step 6)&lt;/i&gt; to be so small, iGoogle's usual search bar will no longer be visible. This is particularly useful for "netbooks" where the screen size is extremely small.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Next, you can click on &lt;i&gt;Resize Header&lt;/i&gt; to reduce the size of the top header (area that is greyed when you click this option).&lt;/li&gt;&lt;ol&gt;&lt;li&gt;This cool feature lets you remove unwanted features in iGoogle such as &lt;i&gt;"Search &lt;/i&gt;(o)&lt;i&gt; the web &lt;/i&gt;(o)&lt;i&gt; pages from Singapore"&lt;/i&gt; and stuff below it.&lt;/li&gt;&lt;li&gt;Click anywhere in the grey area to reduce the size of the header from bottom to that point.&lt;/li&gt;&lt;li&gt;If you reduced too much, simply click &lt;i&gt;Reset&lt;/i&gt; and start again.&lt;/li&gt;&lt;li&gt;Once done, click &lt;i&gt;Finished&lt;/i&gt;.&lt;/li&gt;&lt;li&gt;Note that elements may still be partially visible even after hiding them. This is a bug, but it's OK with me.&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;Finally, you can click &lt;i&gt;'Minimize Tabs'&lt;/i&gt; to remove the new bar completely. You will find a new arrow next to the 'more' link, which you can click to bring back the bar.&lt;/li&gt;&lt;/ol&gt;&lt;b&gt;Tip:&lt;/b&gt; Disable Chat in iGoogle if you don't use it there. You can do so by going to &lt;i&gt;My Account&lt;/i&gt; &amp;gt; &lt;i&gt;iGoogle Settings&lt;/i&gt; &amp;gt; &lt;i&gt;Hide Chat&lt;/i&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8658365956611951277?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8658365956611951277/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/11/remove-tab-bar-in-igoogle.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8658365956611951277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8658365956611951277'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/11/remove-tab-bar-in-igoogle.html' title='Remove tab bar in iGoogle'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-4537304461633248884</id><published>2009-10-02T22:48:00.000+05:30</published><updated>2009-10-02T22:48:25.271+05:30</updated><title type='text'>Can't install .NET Framework</title><content type='html'>If you came across a situation when your computer is broken and you can't install or update .NET Framework, you need to get the .NET fx Cleanup Tool.&lt;br /&gt;&lt;blockquote&gt;This .NET Framework cleanup tool is designed to automatically perform a set of steps to remove selected versions of the .NET Framework from a computer.&amp;nbsp; It will remove files, directories, registry keys and values and Windows Installer product registration information for the .NET Framework.&amp;nbsp; The tool is intended primarily to return your system to a known (relatively clean) state in case you are encountering .NET Framework installation, uninstallation, repair or patching errors so that you can try to install again.&lt;br /&gt;&lt;/blockquote&gt;More details and download here: &lt;a href="http://blogs.msdn.com/astebner/pages/8904493.aspx"&gt;Aaron Stebner's WebLog : .NET Framework Cleanup Tool User's Guide&lt;/a&gt;&lt;br /&gt;Alternate download here: &lt;a href="http://www.softpedia.com/get/Tweak/Uninstallers/NET-Framework-Cleanup-Tool.shtml"&gt;Download .NET Framework Cleanup Tool 6.0.3790 - It will remove files, directories, registry keys and values and Windows Installer product registration information for the .NET Framework. - Softpedia&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-4537304461633248884?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/4537304461633248884/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/10/cant-install-net-framework.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4537304461633248884'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4537304461633248884'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/10/cant-install-net-framework.html' title='Can&apos;t install .NET Framework'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-990032523464121813</id><published>2009-10-02T22:44:00.000+05:30</published><updated>2009-10-02T22:44:15.143+05:30</updated><title type='text'>Vista Help and Support became ugly!</title><content type='html'>If you have noticed an annoying problem with Help and Support of Windows Vista, such as the images being missing and replaced with a red cross (X) or the pages lacking style and being displayed in the default (and ugly) Times New Roman font, then you need to get a registry fix. It also fixes a more severe issue of "Internet Explorer cannot download / from help"&lt;br /&gt;&lt;blockquote&gt;When you open Help and Support center in Windows Vista, one of the following problems may occur:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Red X mark appears where the images are to be displayed&lt;/li&gt;&lt;li&gt;CSS styles are not applied to the pages in Help and Support&lt;/li&gt;&lt;li&gt;Error Internet Explorer cannot download / from Help occurs&lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt;Full details and solution here: &lt;a href="http://www.winhelponline.com/articles/194/1/Pages-in-Windows-Vista-Help-and-Support-are-not-displayed-correctly.html"&gt;Pages in Windows Vista Help and Support are not displayed correctly&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Disclaimer:&lt;/b&gt; Always open all downloaded REG files in Notepad and verify them for any malicious content before merging them to your Windows registry. I do not accept responsibility for broken Windows installations after application of the downloaded REG files.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-990032523464121813?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/990032523464121813/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/10/vista-help-and-support-became-ugly.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/990032523464121813'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/990032523464121813'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/10/vista-help-and-support-became-ugly.html' title='Vista Help and Support became ugly!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-7695762214765391360</id><published>2009-10-02T22:25:00.001+05:30</published><updated>2009-10-02T22:50:29.689+05:30</updated><title type='text'>Sometimes, I do agree with Mac users. Microsoft sucks.</title><content type='html'>I give up on trying to install the Windows Live Writer. It just refuses to install. After giving a variety of different errors and exhibiting a variety of different installation behaviours, it still refuses to install. And I now lost the previous version I had, because the installer uninstalled it!&lt;br /&gt;&lt;br /&gt;I was updating all Windows Live software and trying out the Photo Gallery (which I later uninstalled). Windows Live Messenger updated successfully and is now reported to be up-to-date. But the Writer simply refuses to install. It gives errors like:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Installation failed due to unknown reason&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Connectivity problems: Can't connect to Internet (even downloading the 135 MB &lt;i&gt;'Try again'&lt;/i&gt; installer did not work!)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Installation failed due to installation conflict: More than one instance of Windows Live installer is running (which is false, because I tried just after I restarted my computer. I even tried 'End Process' on running instances of Windows installer, which led to...&lt;/li&gt;&lt;li&gt;Can't access Windows installer service. (this error was caused by me, as explained before).&lt;/li&gt;&lt;/ul&gt;And it exhibits behaviours like:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Using the old Writer.msi in the cache folder of Windows Live installer (if you know what I mean). I solved this by deleting the cache completely which, by the way, freed up almost 400 MB of my hard disk space!&lt;/li&gt;&lt;li&gt;Downloading the Writer installation file over and over again (with each 'Try again').&lt;/li&gt;&lt;li&gt;Installation briefly starting and ending with error.&lt;/li&gt;&lt;li&gt;Installation going all the way to 94% then ending with error.&lt;/li&gt;&lt;li&gt;Installation going all the way to 96% then pausing, then ending with error.&lt;/li&gt;&lt;/ul&gt;I had been battling with this for the past 2-3 days. I uninstalled Microsoft .NET 3.5 SP2, used Windows Install Clean Up Utility, ended up unable to install 3.5 SP2, solved that by using the .NET fx Cleanup Tool (more about this &lt;a href="http://thehunk.blogspot.com/2009/10/cant-install-net-framework.html"&gt;here&lt;/a&gt;), restarted several times, checked for Windows Updates, solved the problem of Help and Support looking ugly (more about this &lt;a href="http://thehunk.blogspot.com/2009/10/vista-help-and-support-became-ugly.html"&gt;here&lt;/a&gt;) and lots of other stuff I can't remember. Nothing helped.&lt;br /&gt;&lt;br /&gt;I give up. Microsoft sucks. They always like to bring out new experimental stuff and throw it to their users, making their lives miserable. Why couldn't they stick with the good old tried and tested "run setup.exe, install software, run software" routine. Why did they have to come up with this headache-laden &lt;i&gt;"new and improved"&lt;/i&gt; Windows Installer technology?&lt;br /&gt;&lt;br /&gt;Anyway I tried to find some other alternative to Writer, but nothing comes close to the beauty and capabilities of Writer. Not even the w.bloggar (which had its last update in December 2007!) &lt;b&gt;I miss Live Writer!&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Back to the good ole Blogger New Post page.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-7695762214765391360?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/7695762214765391360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/10/sometimes-i-do-agree-with-mac-users.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7695762214765391360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7695762214765391360'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/10/sometimes-i-do-agree-with-mac-users.html' title='Sometimes, I do agree with Mac users. Microsoft sucks.'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-4265821207910487059</id><published>2009-09-24T21:31:00.001+05:30</published><updated>2012-01-12T09:00:57.166+05:30</updated><title type='text'>How to set dpi and size of photo in mm or cm?</title><content type='html'>Ok, so you might have come across some sites that ask you to upload a photo, but also tell you that it must meet some requirements like these:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Measurements: 35mm wide and 50mm high&lt;/li&gt;&lt;li&gt;Minimum resolution: 150 dpi&lt;/li&gt;&lt;li&gt;Format: JPEG file&lt;/li&gt;&lt;li&gt;Should be a colour photograph&lt;/li&gt;&lt;li&gt;The photo size should be less than 200KB&lt;/li&gt;&lt;/ul&gt;First of all, since the website is asking you to upload a photo, the use of ‘dpi’ (dots per inch) in the minimum resolution requirement is wrong. It should actually be &lt;u&gt;‘ppi’ or pixels per inch.&lt;/u&gt; ‘dpi’ is strictly used only in hard copies, printers and printing, and has no meaning in computer files or soft copies. You may want to read this page for a good explanation of the difference between the two, before you proceed with the tutorial: &lt;a href="http://www.tildefrugal.net/photo/dpi.php" target="_blank"&gt;DPI and PPI Explained&lt;/a&gt;&lt;br /&gt;You will need a good graphics editing software to set the ppi and measurements of a photograph. Windows Paint is very basic and does not provide this functionality. Sophisticated software like Adobe Photoshop would most likely provide this functionality, but now you don’t need to whip out your credit card to buy them. Just get the &lt;u&gt;free&lt;/u&gt; and powerful replacement for Windows Paint: &lt;a href="http://www.getpaint.net/index.html" target="_blank"&gt;The Paint.NET&lt;/a&gt;&lt;br /&gt;So, how do you set the ppi (mistakenly called dpi) and measurements in Paint.NET? Let’s use the requirements above as an example.&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;In &lt;strong&gt;Paint.NET&lt;/strong&gt;, open the photograph which you wish to upload to the website (or meet the requirements with).      &lt;/li&gt;&lt;li&gt;Click on &lt;strong&gt;Image&lt;/strong&gt; &amp;gt; &lt;strong&gt;Resize&lt;/strong&gt; (Ctrl-R) on the menu bar.      &lt;br /&gt;&lt;a href="http://lh4.ggpht.com/_k2W4UhQBnRk/SruXwRoXEjI/AAAAAAAAANg/k8_fpxG-GC4/s1600-h/image%5B6%5D.png"&gt;&lt;img alt="image" border="0" height="373" src="http://lh4.ggpht.com/_k2W4UhQBnRk/SruXxCS8VmI/AAAAAAAAANk/6N0-JJ2yVfU/image_thumb%5B2%5D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" width="308" /&gt;&lt;/a&gt;      &lt;br /&gt;Make sure the blue areas are exactly as given here. Do not touch the red area. We will work on the green area.       &lt;/li&gt;&lt;li&gt;First we will set the &lt;strong&gt;Resolution&lt;/strong&gt; (ppi). Since we want it in inches, click inside the second box, and select &lt;strong&gt;“pixels/inch”&lt;/strong&gt;. Then enter &lt;strong&gt;150&lt;/strong&gt; in the first box.      &lt;/li&gt;&lt;li&gt;Next we need to set the measurements or the &lt;strong&gt;“Print size”&lt;/strong&gt;. Now, this is a bit tricky. You should set &lt;u&gt;only one&lt;/u&gt; of the two measurements here. Either the width or the height, &lt;strong&gt;not both&lt;/strong&gt;. If you force both width and height, you may end up with a distorted photograph (think about a ball getting crushed into a flat plate).      &lt;br /&gt;      &lt;br /&gt;So which one should we change? Before we change anything, since the required measurements are in mm (millimeters, which is one-tenth of centimeters), you need to click inside the box on right side and select “centimeters”.      &lt;br /&gt;      &lt;br /&gt;Now enter the required &lt;strong&gt;Width&lt;/strong&gt;, which is &lt;strong&gt;3.5&lt;/strong&gt; cm &lt;em&gt;(note that 35 mm = 3.5 cm)&lt;/em&gt;. Notice the &lt;em&gt;automatic&lt;/em&gt; change in the &lt;strong&gt;Height&lt;/strong&gt; box. In my example it reads 4.67 cm. &lt;u&gt;&lt;strong&gt;Here’s the rule:&lt;/strong&gt;&lt;/u&gt; If the new height is bigger than the required height (5.0 cm), you’re right so far. &lt;em&gt;It is the width that you need to enter.&lt;/em&gt; Just click &lt;strong&gt;OK&lt;/strong&gt; and continue to step 5.      &lt;br /&gt;      &lt;br /&gt;If the new height is smaller than the required height, &lt;em&gt;it is the height that you need to enter.&lt;/em&gt; Since our example has 4.67 which is smaller that 5.0, we will enter &lt;strong&gt;5.0&lt;/strong&gt; into the &lt;strong&gt;Height&lt;/strong&gt; box. Note that now the width &lt;em&gt;automatically&lt;/em&gt; changes. Allow this to happen (do &lt;u&gt;not&lt;/u&gt; try to change the width back). Click &lt;strong&gt;OK&lt;/strong&gt; and continue to next step.      &lt;/li&gt;&lt;li&gt;Click &lt;strong&gt;Image&lt;/strong&gt; &amp;gt; &lt;strong&gt;Canvas Size&lt;/strong&gt; (Ctrl-Shift-R) on the menu bar.      &lt;br /&gt;&lt;a href="http://lh4.ggpht.com/_k2W4UhQBnRk/SruXxoqiGaI/AAAAAAAAANo/QyqofFyYJDU/s1600-h/image%5B10%5D.png"&gt;&lt;img alt="image" border="0" height="424" src="http://lh5.ggpht.com/_k2W4UhQBnRk/SruXyWckBMI/AAAAAAAAANs/jH4uPVD8VDM/image_thumb%5B4%5D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" width="308" /&gt;&lt;/a&gt;       &lt;br /&gt;Along with the usual colour code, yellow means an area you can change according to what you want, but you will most likely leave it as shown here.      &lt;/li&gt;&lt;li&gt;In here, you will see that either the width or the height is meeting the requirement. Change the one that &lt;u&gt;does not&lt;/u&gt; meet the requirement. In our example, the Width (3.74 cm) does not meet the requirement (3.5 cm). Therefore we will enter &lt;strong&gt;3.5&lt;/strong&gt; into the &lt;strong&gt;Width&lt;/strong&gt; box (under &lt;strong&gt;Print size&lt;/strong&gt;). Note that this time, the height &lt;u&gt;does not&lt;/u&gt; change &lt;em&gt;automatically&lt;/em&gt;, but remains 5.0 cm.      &lt;/li&gt;&lt;li&gt;About &lt;strong&gt;Anchor&lt;/strong&gt;: This determines how &lt;strong&gt;Paint.NET&lt;/strong&gt; will crop your photograph as you change the size. Most of the time, you will select the anchor to be in the middle, as subjects of a photograph are usually placed in the middle of the photograph. But in case your photograph has subjects on a side or a corner, change the anchor to match it, so that the photograph crops sensibly. &lt;em&gt;(Play around, and you’ll know what I mean.)&lt;/em&gt;      &lt;/li&gt;&lt;li&gt;Click the OK button and you’re done! Save the image as JPEG using &lt;strong&gt;File&lt;/strong&gt; &amp;gt; &lt;strong&gt;Save&lt;/strong&gt; (Ctrl-S) and select a good quality setting (&lt;strong&gt;95%&lt;/strong&gt;) while saving.&lt;/li&gt;&lt;/ol&gt;Well, I hope it’s easy for you to follow the steps, even though some of them are quite long and explanatory. Post comments if any of you encounter problems.&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Keywords:&lt;/strong&gt; dpi, ppi, dots per inch, pixels per inch, inches, centimetres, millimetres, mm, cm, photo, photograph, picture, requirements.&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-4265821207910487059?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/4265821207910487059/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/09/how-to-set-dpi-and-size-of-photo-in-mm.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4265821207910487059'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4265821207910487059'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/09/how-to-set-dpi-and-size-of-photo-in-mm.html' title='How to set dpi and size of photo in mm or cm?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_k2W4UhQBnRk/SruXxCS8VmI/AAAAAAAAANk/6N0-JJ2yVfU/s72-c/image_thumb%5B2%5D.png?imgmax=800' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5388559670221244666</id><published>2009-09-24T15:08:00.001+05:30</published><updated>2009-09-24T15:10:02.549+05:30</updated><title type='text'>The Curse of QWERTY</title><content type='html'>Here are the results of a comparison of the usage of Dvorak and QWERTY keyboard layouts to type the article quoted below. The total number of keys pressed to type the article is 23093.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;&lt;/th&gt;   &lt;th align="center"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Dvorak&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/th&gt;   &lt;th align="center"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Qwerty&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/th&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Distance&lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;333.4m&lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;586.2m&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Same hand&lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;22.90%&lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;36.65%&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Same finger&lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;2.594%&lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;5.603%&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Number row&lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;1.157%&lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;1.582%&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Top row&lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;23.68%&lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;51.29%&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Home row&lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;66.15%&lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;29.96%&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Bottom row&lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;8.997%&lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;17.15%&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr align="center"&gt;   &lt;th align="center" colspan="10"&gt;Finger Usage&lt;br /&gt;&lt;/th&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;Dvorak&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;7%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;9%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;13%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;13%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;--&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;16%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;14%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;14%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;10%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr align="center"&gt;   &lt;th align="left"&gt;QWERTY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/th&gt;   &lt;td align="center"&gt;7%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;8%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;18%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;21%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;--&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;20%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;8%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;11%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt;   &lt;td align="center"&gt;3%&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Excerpt from &lt;a href="http://discovermagazine.com/1997/apr/thecurseofqwerty1099/article_view?b_start:int=0&amp;amp;-C="&gt;The Curse of QWERTY | Gadgets | DISCOVER Magazine&lt;/a&gt;:&lt;/center&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;div class="articleDescription"&gt;&lt;b&gt;O typewriter? Quit your torture!&lt;/b&gt;&lt;br /&gt;&lt;/div&gt;&lt;i&gt;by Jared Diamond&lt;/i&gt;&lt;br /&gt;&lt;div class="date"&gt;From the &lt;a href="http://discovermagazine.com/1997/apr"&gt;April 1997 issue&lt;/a&gt;, published online April  1, 1997&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;q - w - e - r - t , y - u - i - o - p, q - w - e - r - t , y - u - i - o - p, q - w - e - r - t , y - u - i - o - p . . .&lt;br /&gt;&lt;br /&gt;It was boring to type the letters in the upper row of my typewriter keyboard 20 times, then go on to the next row. But it was even more boring to lie in bed and do nothing. So when the chicken pox forced me to stay home from school for two weeks, I used the time to learn touch typing. At age ten I, like millions of Americans each year, memorized the QWERTY keyboard (as it is called from its starting arrangement of letters).&lt;br /&gt;&lt;br /&gt;At the time, I didn’t wonder about its arbitrariness and never asked myself why our standard keyboard uses the QWERTY arrangement instead of alphabetical order or any other obviously advantageous arrangement. Whatever the original reasons for our adopting QWERTY, however, we now seem firmly committed to it. The typewriter, and its successor the computer, are among the most widely used office machines in the Western world, and keyboard-related repetitive-strain injuries are among our most common industrial accidents.&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;Commitment is incessantly urged upon us fin de siècle twentieth- century Americans. Commitment to our spouses, our children, and our careers is held to be virtuous; lack of commitment is a common criticism. Yet commitment should be seen as morally neutral. After all, what one is committed to might be either good or bad; commitment to a destructive relationship, an unsatisfying job, or alcoholism deserves no praise. Often, commitment can mean nothing more than an involvement that has outlived its original justification. All of us have at one time or another felt trapped by such a commitment, longing for a happier, though uncertain, state of existence but fearing the short-term pain required to reach it.Commitment is a big issue not only for us as individuals, but for us as a culture as well. All human societies have many apparently arbitrary practices that persist for centuries or even millennia--writing systems, counting systems, sets of number signs, and calendars, to name just a few examples. At one time there existed alternatives to the system that we eventually adopted. Were some of these alternatives better than others? Did we in fact end up committed to the best ones? Are our alphabets, decimal counting, Arabic numerals, and Gregorian calendar really superior to Chinese logograms, Babylonian base-60 counting, Roman numerals, and the Mayan calendar?&lt;br /&gt;&lt;br /&gt;Those questions are hard to answer for some of these choices-- counting systems, for instance--to which we became committed in the remote past. But the QWERTY keyboard is a modern-day commitment, dating back only to the late nineteenth century, and thus it is one whose history we can reconstruct. We know that QWERTY is the dominant survivor of dozens of keyboard designs that competed during the early years of the typewriter. Hence we can ask, with the expectation of finding an answer, to what advantages does it owe its triumph?&lt;br /&gt;&lt;br /&gt;Studies of the consequences of keyboard design were pioneered by the industrial engineers Frank and Lillian Gilbreth, who were made famous by a biography, Cheaper by the Dozen, written by 2 of their 12 children. The Gilbreths sought to decrease worker fatigue and increase the efficiency of many industrial processes (as well as of surgical operations and buttoning a shirt) by time-and-motion studies and slowed-down motion pictures. Applied to keyboard design, such studies showed that typing fatigue, errors, and slow speed depend especially on bad design in allocating letters among keyboard rows, among fingers, and between the left and right hands.&lt;br /&gt;&lt;br /&gt;When you prepare to type, you rest your fingers on QWERTY’s second-from-the-bottom row, called the home row. Obviously, the more typing you can do without having to move your fingers from the home row, the faster you’ll be able to type, the fewer errors you’ll make, and the less you’ll strain your fingers. Confirming that straightforward prediction, motion-picture studies prove that typing is fastest on the home row and slowest on the bottom row.&lt;br /&gt;&lt;br /&gt;You might then naively expect that the QWERTY keyboard was designed so that most typing is done on the home row. You would be wrong. Only 32 percent of strokes are on the home row; most strokes (52 percent) are on the upper row; and a full 16 percent are on the bottom row, which you should be avoiding like the plague. Not more than 100 English words can be typed without leaving the home row. The reason for this disaster is simple: QWERTY perversely puts the most common English letters on other rows. The home row of nine letters includes two of the least used (J and K) but none of the three most frequently used (E, T, and O, which are relegated to the upper row) and only one of the five vowels (A), even though 40 percent of all letters in a typical English text are vowels.&lt;br /&gt;&lt;br /&gt;To appreciate the consequences of that misdesigning, just remind yourself of how it feels to type pumpkin or minimum on your QWERTY keyboard. Your fingers must not only reach from the home row to the top or bottom but must at times hurdle completely over the home row, moving directly from top to bottom and back again. Those awkward hurdles and reaches slow you and introduce typing errors and finger strain. Unfortunately, out of any 100 pairs of consecutive letters in a typical English text, six require a reach and four a hurdle on the QWERTY keyboard.&lt;br /&gt;&lt;br /&gt;These inconveniences are minimized by any of the numerous competing keyboard designs that concentrate the most common English letters onto the home row. For instance, the Dvorak keyboard devotes the home row to nine of the 12 most common English letters--including all five vowels and the three most common consonants (T, H, N)--while the six rarest letters (V, K, J, X, Q, and Z) are relegated to the bottom row. As a result, 70 percent of typing strokes remain on the home row, only 22 percent are on the upper row, and a mere 8 percent are on the hated bottom row; thousands of words can be typed with the home row alone; reaches are five times less frequent than in QWERTY typing, and hurdles hardly ever happen.&lt;br /&gt;&lt;br /&gt;Another easily understood vice of the QWERTY keyboard has to do with alternation of hands. Whenever the left and right hands type alternate letters, one hand can be getting into position for the next letter while the other hand is typing the previous one. You can thereby fall into a steady rhythm and type quickly. In reality, though, even a good typist’s speed is seldom steadily maintained. It repeatedly shifts between fast bursts and slow stutters within even a few seconds, and many of the stutters arise from strings of consecutive letters typed by the same hand. The longer the string, the slower the typing rate and the more frequent the errors.&lt;br /&gt;&lt;br /&gt;Yet QWERTY typing tends to degenerate into long one-handed strings of letters, especially strings for the weak left hand. More than 3,000 English words utilize QWERTY’s left hand alone, and about 300 the right hand alone. (Try typing exaggerated and greatest, then try million and monopoly). The underlying reason for this shortcoming is that most English syllables contain both vowels and consonants, but QWERTY assigns some vowels (A and E) as well as some common consonants (R, S, and D) to the left hand, and others (I, O, and U, plus H, L, and N) to the right hand. Hence, for about half of all digraphs (two consecutive letters) in a typical English text, QWERTY allocates both letters to the same hand.&lt;br /&gt;&lt;br /&gt;The Dvorak keyboard instead forces you to alternate hands frequently. It does so by placing all vowels plus Y in the left hand, but the 13 most common consonants in the right. As a result, not a single word or even a single syllable can be typed with the right hand alone (no, grr isn’t a word), and only a few words can be typed with the left hand alone.&lt;br /&gt;&lt;br /&gt;QWERTY’s many words and letter strings for the left hand are especially unfortunate when you consider that most people are right-handed. Yet QWERTY allocates to the weaker left hand the most common English letter (E), the second most common (T), and the fourth most common (A), thus making the left hand perform more than half of all typing strokes (56 percent). We are condemned to struggle with a left-handed typewriter in a right-handed world. The Dvorak keyboard instead gives 56 percent of all strokes to the right hand.&lt;br /&gt;&lt;br /&gt;QWERTY’s overuse of our weaker hand extends to our weaker fingers. On each hand, the pinkie (fifth finger) is the weakest, and finger strength increases from the fifth to the second finger (index finger). Yet QWERTY makes almost as much use of our weakest finger (left fifth) as of our second strongest (right third). In contrast, the rank sequence of finger use on the Dvorak keyboard is identical to the rank sequence of finger strength, and the typing load on each finger is proportional to its strength.&lt;br /&gt;&lt;br /&gt;The QWERTY keyboard also condemns us to awkward finger sequences. As we already know, strokes that alternate between hands are faster than successive strokes of the same hand. But if you must type two successive strokes with the same hand, it’s fastest to do so with two remote fingers (such as at, left fifth to second finger), next fastest with two adjacent fingers (as, left fifth to fourth finger), slower with the same finger on the same row (ee, left third finger), and slowest of all with the same finger on different rows (ed, left third finger). Yet with the QWERTY keyboard, 20 percent of all English digraphs are typed by adjacent fingers, and more than 4 percent (such as the common ed) by the same finger; corresponding numbers for the Dvorak keyboard are only 2 percent and 1 percent, respectively.&lt;br /&gt;&lt;br /&gt;The result of all these shortcomings is that typing on a QWERTY keyboard is unnecessarily tiring, slow, inaccurate, hard to learn, and hard to remember. In a normal workday a good typist’s fingers cover up to 20 miles on a QWERTY keyboard, but only one mile on a Dvorak keyboard. QWERTY typists achieve barely half the speed of Dvorak typists, who hold most world records for typing speed. QWERTY typists make about twice the errors that Dvorak typists make. For a beginner to reach a speed of 40 words per minute, the person would need 56 hours of training on a QWERTY keyboard (an average of four hours per day during my two weeks of chicken pox) but only 18 hours on a Dvorak keyboard.&lt;br /&gt;&lt;br /&gt;How, then, did the QWERTY keyboard arise? Why was it adopted, despite all its failings? And why in the world have we continued to stick with it?&lt;br /&gt;&lt;br /&gt;The first recorded typewriter patent was filed in 1714 by the British engineer Henry Mill, for an artificial machine or method for the impressing or transcribing of letters singly or progressively one after another, as in writing . . . so neat and exact as not to be distinguished from print. But there’s no evidence that Mill actually built his proposed machine. It was not until around 1808 that an Italian named Pellegrino Turri constructed a typewriter, which allowed a blind woman to write letters. Over the next six decades, several dozen inventors filed patents or built prototypes, but none of the machines entered mass production or attained commercial success. That had to wait until April 1874, when the American gun manufacturer E. Remington &amp;amp; Sons, which had already branched out into sewing machines and farm tools, shipped its first Type Writer, based on a prototype by the American inventor Christopher Sholes.&lt;br /&gt;&lt;br /&gt;From about 1880 to 1920, an incredible diversity of competing models poured forth from numerous inventors (including Thomas Edison) and manufacturers. Some of those early machines resembled pianos, some (including Remington’s first product) looked like sewing machines, others were the recognizable ancestors of modern typewriters, and still others resembled no machine you have ever seen. Letters were variously mounted on separate type bars, on a single ball, or on a single wheel, strip, or plate. If separate type bars were used, they struck up, down, or sideways, behind or in front of the paper, which was mounted on a flat or curved carriage. What moved was the type ball carrier (as in the later ibm Selectric), the type bars (as in modern mechanical typewriters), or the machine itself. Ink was applied to a ribbon or directly to the typeface. The desired letter was chosen by striking a key or by turning a dial. Among machines that opted for striking a key, some struck one key at a time, others up to three at a time, like playing chords on a piano. The typist’s left and right hands either typed on the same keyboard or on two separate keyboards.&lt;br /&gt;&lt;br /&gt;We now have separate numeral keys, combine uppercase and lowercase letters on the same type bar, and choose between uppercase and lowercase forms of the same letter with a shift key. But other machines added numerals to that same bar and used two shift keys (one for uppercase, another for numerals), while still others had separate uppercase, lowercase, and numeral keys. Naturally, keyboards were equally diverse-- straight, curved, or circular, with one to nine rows of keys.&lt;br /&gt;&lt;br /&gt;QWERTY was devised by Christopher Sholes, who began his typewriter-building experiments in 1867. Sholes’s first keyboard used piano keys in a single row, with the letters in alphabetical order. But he was soon forced to change that arrangement, because his type bars responded sluggishly. When he struck one key soon after another, the second key’s type bar jammed the first bar before the first could fall back, and the first letter was printed again. Key jamming was still an occasional problem some 80 years later, when I had chicken pox, but at least by then the type bars struck the paper from the front side, so you could immediately see what was happening and separate the keys with your fingers. Alas, with Sholes’s machine and most other typewriters until the early part of the century, the type bars struck the invisible rear side of the paper, and you didn’t know the bars had jammed until you pulled out the page and saw that you had typed 26 lines of uninterrupted E’s instead of the Gettysburg Address.&lt;br /&gt;&lt;br /&gt;To overcome the problem of invisible jamming, Sholes applied antiengineering principles with the goal of slowing down the typist and thus preventing the second bar from jamming the falling first bar. At that time, modern typing speeds were not yet a goal. The idea of eight-finger touch typing was still unknown. Typists rummaged around with one or two fingers while looking at the keyboard, and Sholes was ecstatic if the resulting typing rate reached a measly 20 or 30 words per minute, the rate of writing by hand.&lt;br /&gt;&lt;br /&gt;Sholes began to redesign his keyboard by commissioning a study to determine the most common letters or letter combinations in English texts, then he scattered those common letters as widely as possible over the keyboard. For example, the three most common letters (E, T, O) were placed in the top row, the next two most common (A, H) in the home row, and the next most common (N) on the bottom row, causing the common digraph on to require a hurdle from top row to bottom. Remington engineers slightly modified Sholes’s almost-QWERTY design by transferring the common consonant R to the upper row, thereby enabling typewriter salesmen to show off their machine to prospective buyers by typing the word typewriter very quickly (all the letters were now in the same row). That final resulting keyboard still betrays its origin as an alphabetical arrangement of piano keys, by the nearly alphabetical sequence fghjkl in the home row, with de just to the left and I just to the right of that sequence.&lt;br /&gt;&lt;br /&gt;The QWERTY keyboard of 1874 was eventually joined by many competing keyboards, whose manufacturers often boasted of faster or less tiring typing. For instance, the Hammond and Blickensderfer Ideal keyboard used only three rows and sensibly put the most common letters in the bottom row for easy access, in the sequence dhiatensor. Why did QWERTY nevertheless prevail, even after improvements in typewriter technology (reducing the jamming problem) and the demand for fast typing had removed the original motivation for it?&lt;br /&gt;&lt;br /&gt;For one thing, QWERTY enjoyed a head start, as the keyboard layout of the first commercially successful typewriter. That success, however, was due not so much to the layout as to the many other advantageous components that Sholes added, such as type bars, an inked ribbon, and a cylindrical paper carriage. Those inventions helped Remington remain one of the leading typewriter manufacturers, and the company continued to use QWERTY even as its typewriters evolved in other respects.&lt;br /&gt;&lt;br /&gt;QWERTY gained another undeserved advantage around 1893, when Underwood, Remington’s chief rival, introduced a typewriter with two big virtues: visible typing on the front side of the paper, and a component called an accelerating sublever that permitted faster speed. Those features helped propel the Underwood Model No. 5 to the status of the most long- lived and widely sold office standard typewriter. Underwood happened to use the QWERTY keyboard.&lt;br /&gt;&lt;br /&gt;QWERTY’s early dominance meant that typewriter users became committed to the layout. From 1874 until 1881, the only typewriters commercially available were Remington machines with QWERTY keyboards, and typists learned to use them. Some of those typists set up typing schools, where they taught the QWERTY keyboard familiar to them. Their pupils took jobs at offices with the keyboards they knew. Many businesses newly equipping themselves with typewriters ordered QWERTY machines, because it was easy to find typists trained to operate them.&lt;br /&gt;&lt;br /&gt;Nevertheless, QWERTY’s apotheosis came slowly. As of 1900, many typewriter engineers still disliked shift keys. But touch typing was prohibitively difficult with the alternative--a double keyboard with eight or nine rows of keys and separate keys dedicated to uppercase and lowercase letters. As touch typing gradually became the norm, sales of double- keyboard machines declined; the last model was discontinued in 1921.&lt;br /&gt;&lt;br /&gt;The infinitely superior Dvorak keyboard is named for August Dvorak, a professor of education at the University of Washington in Seattle and a distant cousin of the famous Czech composer Antonin Dvo?rák. Around 1914, August’s brother-in-law William Dealey attended some industrial efficiency seminars led by Frank and Lillian Gilbreth, watched their slow- motion films of typists, and reported what he saw to Dvorak. The brothers- in-law then devoted almost two decades to enormously detailed studies of typing, typists’ errors, previously designed keyboards, hand physiology and function, and the relative frequencies of letters, pairs of letters, and words in English. Finally, in 1932, they took what they had learned and designed a new keyboard.&lt;br /&gt;&lt;br /&gt;Dvorak typists began to sweep typing speed contests two years later, and they have held most typing records ever since. A large-scale comparative test of several thousand children, carried out in the Tacoma schools in the 1930s, showed that children learned Dvorak typing in one- third the time required to attain the same standard with QWERTY typing. When the U.S. Navy faced a shortage of trained typists in World War II, it experimented with retraining QWERTY typists to use Dvorak. The retraining quickly enabled the Navy’s test typists to increase their typing accuracy by 68 percent and their speed by 74 percent. Faced with these convincing results, the Navy ordered thousands of Dvorak typewriters.&lt;br /&gt;&lt;br /&gt;They never got them. The Treasury Department vetoed the Navy purchase order, probably for the same reason that has blocked acceptance of all improved, non-QWERTY keyboards for the last 80 years: the commitment to QWERTY of tens of millions of typists, teachers, salespeople, office managers, and manufacturers. Even when daisy wheels and computer printers replaced type bars, forever banishing the jamming problem that had originally motivated QWERTY, manufacturers of the efficient new technologies carried on the inefficient old keyboard. August Dvorak died in 1975, a bitter man: I’m tired of trying to do something worthwhile for the human race, he complained. They simply don’t want to change!&lt;br /&gt;&lt;br /&gt;QWERTY’s saga illustrates a much broader phenomenon: how commitment shapes the history of technology and culture, often selecting which innovations become entrenched and which are rejected. In the nineteenth-century United States, for example, those who profited from canals, barges, stagecoaches, and the pony express resisted the construction of railroads; in England, electric street lighting spread slowly, partly because of opposition from local governments with heavy investments in gas lighting. Even today, commitment influences railroad gauges and television technology, and whether we mark our rulers with centimeters or inches and drive on the right or the left.&lt;br /&gt;&lt;br /&gt;Some of those choices, of course, make no real difference. But others do. The transistor was invented and patented in the United States in the 1940s. So why does Japan today dominate the world market for transistorized consumer electronics products? Because the company that became Sony bought transistor licensing rights from Western Electric at a time when the American consumer electronics industry was committed to churning out vacuum tube models and reluctant to compete with its own products.&lt;br /&gt;&lt;br /&gt;The origins of many other commitments are now lost in remote history. How did China become committed to its beautiful but hard-to- memorize writing system? Chinese children can master pinyin (a Roman alphabet adapted to Chinese) in one-tenth the time required to learn the traditional writing system. Why do Americans cling to the awkward English measuring system of pounds, inches, and gallons? How did we become committed to decimal counting and a 24-hour clock? Would we have been better off with other choices?&lt;br /&gt;&lt;br /&gt;Those questions are tantalizing but perhaps academic, because there is no prospect of our abolishing the 60-minute hour or reverting to base-60 counting, even if such changes did prove advantageous. But we do have the choice of discarding QWERTY in favor of the Dvorak keyboard. For QWERTY typists, learning the Dvorak keyboard is quick and painless, since they’ve already mastered the hard part of typing--coordinating finger movements. A common but specious objection is that it would be prohibitively expensive to convert existing QWERTY office machinery. In reality, mechanical typewriters are vanishing anyway, and the keyboard of any word processor or computer can be converted--or changed back--merely by pressing buttons.&lt;br /&gt;&lt;br /&gt;The only real obstacle to our adoption of the Dvorak keyboard is that familiar fear of abandoning a long-held commitment. But if we were to overcome that fear, millions of our children would be able to learn to type with increased speed, greatly lowered finger fatigue, greater accuracy, and a reduced sense of frustration. That seems reason enough to end our commitment to QWERTY, a bad marriage that has long outlived its original justification.&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5388559670221244666?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5388559670221244666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/09/curse-of-qwerty.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5388559670221244666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5388559670221244666'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/09/curse-of-qwerty.html' title='The Curse of QWERTY'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-2557310277455344492</id><published>2009-09-21T20:38:00.001+05:30</published><updated>2009-09-21T20:38:04.014+05:30</updated><title type='text'>Periscope for webcam</title><content type='html'>&lt;p&gt;I was just thinking about the latest notebooks having built-in webcams, thus eliminating the need for an external USB webcam… well, they don’t quite eliminate the need. The problem with these built-in webcams is that they are immobile by themselves, and to capture something other than the notebook user, the whole notebook has to be repositioned. This problem does not occur with external webcams, which can be moved around independently of the laptop (notebook).&lt;/p&gt;  &lt;p&gt;Well, I came across an interesting ‘gadget’ that tries to solve this problem… for Macbooks. Though I believe it can be easily adapted for other notebooks. Meet the Huckleberry.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_k2W4UhQBnRk/SreWz02sskI/AAAAAAAAAMc/h3jKr4l_njM/s1600-h/image%5B2%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Huckleberry Mirror System (Periscope)" border="0" alt="Huckleberry Mirror System (Periscope)" src="http://lh6.ggpht.com/_k2W4UhQBnRk/SreW0hUQD1I/AAAAAAAAAMg/lzTvnliaeZA/image_thumb.png?imgmax=800" width="204" height="201" /&gt;&lt;/a&gt;Supposedly it should give the built-in webcam the ability to view what’s behind the screen, such as the person sitting in front of you, or the lecturer if you’re in a lecture theatre. Well, it does solve the problem of spinning your laptop 180 degrees to take a shot of what’s behind the screen, but it doesn’t quite solve the immobility problem.&lt;/p&gt;  &lt;p&gt;Well, let’s hope and wait for something better… or study optical physics and make a better one ourselves. Or maybe we should just get a USB webcam like the &lt;a href="http://www.akihabaranews.com/en/en/news-12994-The+Volvox+USB+webcam+key.html" target="_blank"&gt;Volvox webcam key&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Sources:&lt;/strong&gt;    &lt;br /&gt;&lt;a href="http://www.tuaw.com/2006/10/12/huckleberry-isight-periscope/" target="_blank"&gt;Huckleberry iSight periscope&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.macuser.com/video/play_i_spy_with_the_huckleberr.php?lsrc=murss" target="_blank"&gt;Play &amp;quot;I Spy&amp;quot; with the Huckleberry – MacUser&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://gizmodo.com/gadgets/gadgets/huckleberry-uses-mirror-to-make-macbook-more-versatile-206789.php" target="_blank"&gt;Huckleberry Uses Mirror to Make MacBook More Versatile - Huckleberry - Gizmodo&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-2557310277455344492?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/2557310277455344492/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/09/periscope-for-webcam.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2557310277455344492'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2557310277455344492'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/09/periscope-for-webcam.html' title='Periscope for webcam'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh6.ggpht.com/_k2W4UhQBnRk/SreW0hUQD1I/AAAAAAAAAMg/lzTvnliaeZA/s72-c/image_thumb.png?imgmax=800' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-937931843852277426</id><published>2009-09-17T00:13:00.001+05:30</published><updated>2009-09-17T00:13:49.194+05:30</updated><title type='text'>Default Bullet of Word changed to Up or Upward Arrow</title><content type='html'>&lt;p&gt;If, for no apparent reason, your Word shows upward arrows (or some other weird symbol) instead of the usual black dots as its default bullets, don’t waste time doing any of the following:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Clicking Reset button for every bullet style&lt;/li&gt;    &lt;li&gt;Office Diagnostics&lt;/li&gt;    &lt;li&gt;Office Setup’s Repair option&lt;/li&gt;    &lt;li&gt;Windows SFC (System File integrity Checker)&lt;/li&gt;    &lt;li&gt;Repairing Font Cache&lt;/li&gt;    &lt;li&gt;Deleting “Normal.dot” or “Normal.dotm” templates&lt;/li&gt;    &lt;li&gt;Deleting “List Gallery Presets” key from registry&lt;/li&gt;    &lt;li&gt;Deleting “ListGal.dat” file&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;I wasted my time, but I can save yours. Your “Symbol” font is missing. Get a copy of the “Symbol” font from your friend’s computer (with same Windows version) or from any source and install it.&lt;/p&gt;  &lt;p&gt;Full discussion here: &lt;a href="http://www.microsoft.com/office/community/en-us/default.mspx?dg=microsoft.public.word.application.errors&amp;amp;mid=8d41e79e-71d6-4788-aae6-67fcde362aa8" target="_blank"&gt;Office Discussion Groups – Word Application Errors – Default Bullet of Microsoft Word changed to Up Arrow (Upward Arrow)&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-937931843852277426?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/937931843852277426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/09/default-bullet-of-word-changed-to-up-or.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/937931843852277426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/937931843852277426'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/09/default-bullet-of-word-changed-to-up-or.html' title='Default Bullet of Word changed to Up or Upward Arrow'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-4220146285389542340</id><published>2009-09-14T16:29:00.001+05:30</published><updated>2009-09-14T16:29:09.394+05:30</updated><title type='text'>Group, Ungroup and Regroup disabled in Word</title><content type='html'>&lt;p&gt;I was editing a Microsoft Word document which had a collection of shapes and text boxes grouped together. I wanted to modify some of the shapes, and therefore I had to ungroup them. But when I right-click the group and open the Group menu, all three options namely Group, Ungroup and Regroup are completely disabled or grayed out.&lt;/p&gt;  &lt;p&gt;I couldn’t figure out what’s wrong. This group of objects is perfectly ungroupable, and I can even select objects within the group. However, Microsoft Word 2007 is not letting me ungroup it.&lt;/p&gt;  &lt;p&gt;I searched the Internet for a solution, but did not find anything very useful. The closest I came across is this statement: “The type of Text Wrapping doesn't make any difference as long as it &lt;strong&gt;isn't&lt;/strong&gt; In Line with Text.” (&lt;a href="http://www.wiredbox.net/Forum/Thread232741_I_cant_ungroup_several_objects_that_I_need_to_modify_individual.aspx" target="_blank"&gt;Link here&lt;/a&gt;)&lt;/p&gt;  &lt;p&gt;Anyway, I changed the text wrapping of the group of objects from ‘In line with Text’ to ‘Tight’ and viola! I could now ungroup it and edit it. The document got a bit messed up when I did so, but after I ungrouped, edited and regrouped, I changed the text wrapping back to ‘In line with text’ and everything was back to normal.&lt;/p&gt;  &lt;p&gt;Annoyingly, even the Help for Microsoft Word does not mention about this problem or have a note about it in its page teaching you how to group and ungroup objects. And I haven’t found a solution on the Internet either.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-4220146285389542340?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/4220146285389542340/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/09/group-ungroup-and-regroup-disabled-in.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4220146285389542340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4220146285389542340'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/09/group-ungroup-and-regroup-disabled-in.html' title='Group, Ungroup and Regroup disabled in Word'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-7885872360501504741</id><published>2009-09-13T18:34:00.001+05:30</published><updated>2009-09-13T18:56:12.572+05:30</updated><title type='text'>Java Programming Hiccup! – Binary File Handling</title><content type='html'>&lt;p&gt;I discovered something interesting in Java Programming. You may have come across output streams such as &lt;a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/FileOutputStream.html" target="_blank"&gt;FileOutputStream&lt;/a&gt;, &lt;a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/BufferedOutputStream.html" target="_blank"&gt;BufferedOutputStream&lt;/a&gt; and &lt;a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/ObjectOutputStream.html" target="_blank"&gt;ObjectOutputStream&lt;/a&gt; when learning about binary file handling in Java. All of them have a particular method called flush(). The descriptions provided for this method for the last two output streams are as follows:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;BufferedOutputStream:&lt;/strong&gt; Flushes this buffered output stream. This forces any buffered output bytes to be written out to the underlying output stream.&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;ObjectOutputStream:&lt;/strong&gt; Flushes the stream. This will write any buffered output bytes and flush through to the underlying stream.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;As for FileOutputStream, the method is inherited from &lt;a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/OutputStream.html" target="_blank"&gt;OutputStream&lt;/a&gt;, which gives this description:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Flushes this output stream and forces any buffered output bytes to be written out. The general contract of &lt;code&gt;flush&lt;/code&gt; is that calling it is an indication that, if any bytes previously written have been buffered by the implementation of the output stream, such bytes should &lt;u&gt;immediately be written to their intended destination&lt;/u&gt;. &lt;/p&gt;    &lt;p&gt;The &lt;code&gt;flush&lt;/code&gt; method of &lt;code&gt;OutputStream&lt;/code&gt; &lt;u&gt;does nothing.&lt;/u&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;My &lt;a href="http://www.ntu.edu.sg/" target="_blank"&gt;university&lt;/a&gt;’s lecture note gives this description for the flush method:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Flushes the output stream to force any buffered output bytes to be &lt;u&gt;written to the file.&lt;/u&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;My understanding from all these, is that using the flush() method anywhere in the code would actually commit all the write actions (such as writeChar, writeUTF, etc) into the file stored in the hard disk.&lt;/p&gt;  &lt;p&gt;Normally, all the write actions are stored in memory, and when the code calls the close() method, they are committed to the actual file in hard disk before closing this file. The flush() method promises to provide you a way to commit the write actions into the file without closing it.&lt;/p&gt;  &lt;p&gt;This is useful when it is required for a program to &lt;em&gt;(for example)&lt;/em&gt; accept a database record from the user and immediately store it into a file, instead of waiting for the user to finish entering &lt;em&gt;all&lt;/em&gt; the records. I wanted to see this in action, so I went to test it out. Here is a snippet of the code:&lt;/p&gt; &lt;code&gt;&amp;#160; FileOutputStream fos = &lt;font color="#8000ff"&gt;new &lt;/font&gt;FileOutputStream(&lt;font color="#00ff00"&gt;&amp;quot;database.dat&amp;quot;&lt;/font&gt;);     &lt;br /&gt;&amp;#160; BufferedOutputStream bos = &lt;font color="#8000ff"&gt;new&lt;/font&gt; BufferedOutputStream(fos);     &lt;br /&gt;&amp;#160; ObjectOutputStream oos = &lt;font color="#8000ff"&gt;new&lt;/font&gt; ObjectOutputStream(bos);     &lt;br /&gt;&lt;font color="#8000ff"&gt;&amp;#160; while&lt;/font&gt; (&lt;font color="#8000ff"&gt;true&lt;/font&gt;) &lt;font color="#ff8000"&gt;//infinite loop... see comment below&lt;/font&gt;     &lt;br /&gt;&amp;#160; {     &lt;br /&gt;&lt;font color="#ff8000"&gt;&amp;#160;&amp;#160;&amp;#160; //code to accept and write database record&lt;/font&gt;     &lt;br /&gt;&lt;font color="#ff8000"&gt;&amp;#160;&amp;#160;&amp;#160; //also includes condition to terminate while loop&lt;/font&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; oos.flush(); &lt;font color="#ff8000"&gt;//writes this record into file&lt;/font&gt;     &lt;br /&gt;&amp;#160; }     &lt;br /&gt;&amp;#160; oos.close(); &lt;font color="#ff8000"&gt;//closes the file&lt;/font&gt;&lt;/code&gt;   &lt;p&gt;I ran the code and watched the file changes using… no, nothing sophisticated, just &lt;a href="http://www.flos-freeware.ch/notepad2.html" target="_blank"&gt;Notepad2&lt;/a&gt;. Yea, you can set Notepad2 to appear “Always on Top” and set the “File Change Notification” to auto-reload, and you pretty much have a Watch window for the binary file. Make sure you have the binary file open in your Notepad2 though.&lt;/p&gt;  &lt;p&gt;Disappointingly, it did not work. Every time the code encountered the flush() method, nothing happened. Seems like the underlined phrase above (“does nothing”) is correct! Well, I searched the Internet, and not many people have an answer to this problem. Some even happily use the flush method, thinking that it is committing all the write actions onto the file, not realizing their mistake.&lt;/p&gt;  &lt;p&gt;But I stumbled upon a particular site: &lt;a href="http://www.exampledepot.com/egs/java.io/Sync.html" target="_blank"&gt;The Java Developers Almanac 1.4: e27. Forcing Updates to a File to the Disk&lt;/a&gt;. There are two interesting things here: The &lt;a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/FileDescriptor.html" target="_blank"&gt;FileDescriptor&lt;/a&gt; and its sync() method. The descriptions given are:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;&lt;em&gt;X&lt;/em&gt;OutputStream.flush() method:&lt;/strong&gt; Flush the data from the streams and writers into system buffers. The data &lt;u&gt;may or may not be written&lt;/u&gt; to disk.&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;FileDescriptor.sync() method:&lt;/strong&gt; Block until the system buffers have been written to disk. After this method returns, the data is &lt;u&gt;guaranteed to have been written&lt;/u&gt; to disk.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Anyway I decided to try them out in my code. Here’s the snippet of my modified code. Notice the two new additions.&lt;/p&gt; &lt;code&gt;&amp;#160; FileOutputStream fos = &lt;font color="#8000ff"&gt;new&lt;/font&gt; FileOutputStream(&lt;font color="#00ff00"&gt;&amp;quot;database.dat&amp;quot;&lt;/font&gt;);     &lt;br /&gt;&amp;#160; BufferedOutputStream bos = &lt;font color="#8000ff"&gt;new&lt;/font&gt; BufferedOutputStream(fos);     &lt;br /&gt;&amp;#160; ObjectOutputStream oos = &lt;font color="#8000ff"&gt;new&lt;/font&gt; ObjectOutputStream(bos);     &lt;br /&gt;&lt;strong&gt;&amp;#160; FileDescriptor fd = fos.getFD();&lt;/strong&gt; &lt;font color="#ff8000"&gt;//FileOutputStream only!&lt;/font&gt;     &lt;br /&gt;&lt;font color="#8000ff"&gt;&amp;#160; while&lt;/font&gt; (&lt;font color="#8000ff"&gt;true&lt;/font&gt;) &lt;font color="#ff8000"&gt;//infinite loop... see comment below&lt;/font&gt;     &lt;br /&gt;&amp;#160; {     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#ff8000"&gt;//code to accept and write database record&lt;/font&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#ff8000"&gt;//also includes condition to terminate while loop      &lt;br /&gt;&lt;/font&gt;&amp;#160;&amp;#160;&amp;#160; oos.flush(); &lt;strong&gt;fd.sync();&lt;/strong&gt; &lt;font color="#ff8000"&gt;//writes this record into file      &lt;br /&gt;&lt;/font&gt;&amp;#160; }     &lt;br /&gt;&amp;#160; oos.close(); &lt;font color="#ff8000"&gt;//closes the file&lt;/font&gt;&lt;/code&gt;   &lt;p&gt;I tested it out, and it works! The program now commits the record into the file in hard disk before accepting the next record. Just as I want it to.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-7885872360501504741?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/7885872360501504741/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/09/java-programming-hiccup-binary-file.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7885872360501504741'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7885872360501504741'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/09/java-programming-hiccup-binary-file.html' title='Java Programming Hiccup! – Binary File Handling'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8851361456002845767</id><published>2009-08-31T19:28:00.001+05:30</published><updated>2009-08-31T19:30:05.388+05:30</updated><title type='text'>CREATION.EXE</title><content type='html'>&lt;p&gt;&lt;font color="#ffff00"&gt;In the beginning there was the computer.&amp;#160; And God said&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Let there be light!    &lt;br /&gt;&lt;font color="#ff00ff"&gt;Enter user id.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;God    &lt;br /&gt;&lt;font color="#ff00ff"&gt;Enter password.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Omniscient    &lt;br /&gt;&lt;font color="#ff0000"&gt;Password incorrect.&amp;#160; Try again.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Omnipotent    &lt;br /&gt;&lt;font color="#ff0000"&gt;Password incorrect.&amp;#160; Try again.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Technocrat    &lt;br /&gt;&lt;font color="#ffff00"&gt;And God logged on at 12:01:00 AM, Sunday, March 1.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Let there be light!    &lt;br /&gt;&lt;font color="#ff0000"&gt;Unrecognizable command.&amp;#160; Try again.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create light    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run heaven and earth    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God created Day and Night. And God saw there were 0 errors.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#ffff00"&gt;And God logged off at 12:02:00 AM, Sunday, March 1.     &lt;br /&gt;And God logged on at 12:01:00 AM, Monday, March 2.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Let there be firmament in the midst of water and light    &lt;br /&gt;&lt;font color="#ff0000"&gt;Unrecognizable command.&amp;#160; Try again.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create firmament    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run firmament    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God divided the waters. And God saw there were 0 errors.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#ffff00"&gt;And God logged off at 12:02:00 AM, Monday, March 2.     &lt;br /&gt;And God logged on at 12:01:00 AM, Tuesday, March 3.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Let the waters under heaven be gathered together unto one place    &lt;br /&gt;and let the dry land appear and    &lt;br /&gt;&lt;font color="#ff0000"&gt;Too many characters in specification string. Try again.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create dry_land    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run firmament    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God divided the waters. And God saw there were 0 errors.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#ffff00"&gt;And God logged off at 12:02:00 AM, Tuesday, March 3.     &lt;br /&gt;And God logged on at 12:01:00 AM, Wednesday, March 4.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create lights in the firmament to divide the day from the night    &lt;br /&gt;&lt;font color="#ff0000"&gt;Unspecified type. Try again.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create sun_moon_stars    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run sun_moon_stars    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God divided the waters. And God saw there were 0 errors.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#ffff00"&gt;And God logged off at 12:02:00 AM, Wednesday, March 4.     &lt;br /&gt;And God logged on at 12:01:00 AM, Thursday, March 5.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create fish    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create fowl    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run fish, fowl    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God created the great sea monsters and every living creature     &lt;br /&gt;that creepeth wherewith the waters swarmed after its kind and every      &lt;br /&gt;winged fowl after its kind. And God saw there were 0 errors.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#ffff00"&gt;And God logged off at 12:02:00 AM, Thursday, March 5.     &lt;br /&gt;And God logged on at 12:01:00 AM, Friday, March 6.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create cattle    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create creepy_things    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Now let us make man in our image    &lt;br /&gt;&lt;font color="#ff0000"&gt;Unspecified type. Try again.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create man    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Be fruitful and multiply and replenish the earth and subdue it and    &lt;br /&gt;have dominion over the fish of the sea and over the fowl of the air and    &lt;br /&gt;over every living thing that creepeth upon the earth    &lt;br /&gt;&lt;font color="#ff0000"&gt;Too many command operands. Try again.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run multiplication    &lt;br /&gt;&lt;font color="#ff0000"&gt;Execution terminated. 6 errors.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Insert breath    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run multiplication    &lt;br /&gt;&lt;font color="#ff0000"&gt;Execution terminated. 5 errors.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Move man to Garden of Eden    &lt;br /&gt;&lt;font color="#ff0000"&gt;File Garden of Eden does not exist.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create Garden.edn    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Move man to Garden.edn    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run multiplication    &lt;br /&gt;&lt;font color="#ff0000"&gt;Execution terminated. 4 errors.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Copy woman from man    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run multiplication    &lt;br /&gt;&lt;font color="#ff0000"&gt;Execution terminated. 2 errors.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create desire    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run multiplication    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God saw man and woman being fruitful and multiplying in Garden.edn     &lt;br /&gt;&lt;/font&gt;&lt;font color="#ff0000"&gt;Warning: No time limit on this run. 1 errors.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create freewill    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Run freewill    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God saw man and woman being fruitful and multiplying in Garden.edn     &lt;br /&gt;&lt;/font&gt;&lt;font color="#ff0000"&gt;Warning: No time limit on this run. 1 errors.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Undo desire    &lt;br /&gt;&lt;font color="#ff0000"&gt;Desire cannot be undone once freewill is created.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Destroy freewill    &lt;br /&gt;&lt;font color="#ff0000"&gt;Freewill is an inaccessible file and cannot be destroyed.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#ff00ff"&gt;Enter replacement, cancel, or ask for help.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Help    &lt;br /&gt;&lt;font color="#ff0000"&gt;Desire cannot be undone once freewill is created.     &lt;br /&gt;Freewill is an inaccessible file and cannot be destroyed.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#ff00ff"&gt;Enter replacement, cancel, or ask for help.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create tree_of_knowledge    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God saw man and woman being fruitful and multiplying in     &lt;br /&gt;Garden.edn      &lt;br /&gt;&lt;/font&gt;&lt;font color="#ff0000"&gt;Warning: No time limit on this run. 1 errors.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create good, evil    &lt;br /&gt;&lt;font color="#00ff00"&gt;Done     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Activate evil    &lt;br /&gt;&lt;font color="#00ff00"&gt;And God saw he had created shame.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#ff0000"&gt;Warning system error in sector E95.&amp;#160; Man and woman not in Garden.edn. 1     &lt;br /&gt;errors.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Scan Garden.edn for man, woman    &lt;br /&gt;&lt;font color="#ff0000"&gt;Search failed.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Delete shame    &lt;br /&gt;&lt;font color="#ff0000"&gt;Shame cannot be deleted once evil has been activated.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Destroy freewill    &lt;br /&gt;&lt;font color="#ff0000"&gt;Freewill is an inaccessible file and cannot be destroyed.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#ff00ff"&gt;Enter replacement, cancel, or ask for help.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Stop    &lt;br /&gt;&lt;font color="#ff0000"&gt;Unrecognizable command. Try again     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Break    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Break    &lt;br /&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Break    &lt;br /&gt;&lt;font color="#ff0000"&gt;ATTENTION ALL USERS *** ATTENTION ALL USERS: COMPUTER GOING DOWN FOR     &lt;br /&gt;REGULAR DAY OF MAINTENANCE AND REST IN FIVE MINUTES. PLEASE LOG OFF.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Create new world    &lt;br /&gt;&lt;font color="#ff0000"&gt;You have exceeded your allocated file space. You must destroy old files     &lt;br /&gt;before new ones can be created.      &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Destroy earth    &lt;br /&gt;&lt;font color="#ff00ff"&gt;Destroy earth: Please confirm.     &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;c:\&amp;gt;&lt;/font&gt;Destroy earth confirmed    &lt;br /&gt;&lt;font color="#ff0000"&gt;COMPUTER DOWN *** COMPUTER DOWN. SERVICES WILL RESUME SUNDAY, MARCH 8 AT 6:00 AM. YOU MUST SIGN OFF NOW.&lt;/font&gt;    &lt;br /&gt;&lt;font color="#ffff00"&gt;And God logged off at 11:59:59 PM, Friday, March 6.&lt;/font&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8851361456002845767?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8851361456002845767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/08/creationexe.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8851361456002845767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8851361456002845767'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/08/creationexe.html' title='CREATION.EXE'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-6587608785929590514</id><published>2009-08-19T14:15:00.001+05:30</published><updated>2009-08-19T14:15:27.879+05:30</updated><title type='text'>Steam Hardware Survey</title><content type='html'>&lt;p&gt;Each month, Steam collects data about what kinds of computer hardware our customers are using. The survey is incredibly helpful for us as game developers in that it ensures that we're making good decisions about what kinds of technology investments to make. Making these survey results public also allows people to compare their own current hardware setup to that of the community as a whole.&lt;/p&gt;  &lt;p&gt;Link: &lt;a href="http://store.steampowered.com/hwsurvey/" target="_blank"&gt;View the Survey Results&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-6587608785929590514?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/6587608785929590514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/08/steam-hardware-survey.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6587608785929590514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6587608785929590514'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/08/steam-hardware-survey.html' title='Steam Hardware Survey'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-6061237268525080143</id><published>2009-05-05T00:52:00.001+05:30</published><updated>2009-05-05T00:52:14.435+05:30</updated><title type='text'>Slow Flash on Mac</title><content type='html'>&lt;p&gt;I recently got a chance to play with a Apple Macintosh PowerBook and I have noticed that while everything else is so smooth and cool, Adobe Flash Player (previously known as Macromedia Flash) performs poorly on both Firefox and Safari.&lt;/p&gt;  &lt;p&gt;After researching the Internet, I came to the conclusion that there is no real solution to this problem. However, there are some measures you can take to minimize the problem.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Set your power options to run your Mac at &lt;strong&gt;Better Performance&lt;/strong&gt; or at least &lt;strong&gt;Normal&lt;/strong&gt;. Other options reduce the processor speed drastically, affecting Flash Player’s performance. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Update your Safari and Mac OS X&lt;/strong&gt; with the latest updates and upgrades. To do this, click the Apple Logo in menu bar and select &lt;strong&gt;Software Update&lt;/strong&gt;. Update your &lt;strong&gt;Firefox&lt;/strong&gt; with latest version if you use Firefox. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Update your Flash&lt;/strong&gt; player by visiting &lt;a href="http://www.apple.com/downloads/macosx/internet_utilities/adobeflashplayer.html" target="_blank"&gt;this link&lt;/a&gt; which is Apple’s official page for downloading and installing Flash player. &lt;em&gt;(Don’t ask me why, but somehow going through the Apple site seemed to give better results than going directly to Adobe site.)&lt;/em&gt; &lt;/li&gt;    &lt;li&gt;Always make sure you have &lt;strong&gt;only one page&lt;/strong&gt; loaded with a Flash Player in it. If you have two or more pages open with Flash players in them, the processor is divided and the performance degrades. &lt;em&gt;(If you want to see what I mean, try loading two or more windows with the choppy test below.)&lt;/em&gt; &lt;/li&gt;    &lt;li&gt;Optionally use &lt;strong&gt;only one browser&lt;/strong&gt; at a time. Even if you use multiple browsers, make sure you minimize your use of Adobe Flash player to just one page, regardless of what browser is used to display the page. &lt;/li&gt;    &lt;li&gt;Make sure you quit all applications by pressing &lt;strong&gt;Apple-Q&lt;/strong&gt; or selecting &lt;strong&gt;Quit&lt;/strong&gt; from the menu bar. Closing the window does not quit applications on a Mac, and thus applications continue running in the background. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;To test the performance of Adobe Flash Player, &lt;a href="http://www.everflash.com/flash/choppytest.html" target="_blank"&gt;click here to run the Choppy Test.&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-6061237268525080143?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/6061237268525080143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/05/slow-flash-on-mac.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6061237268525080143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6061237268525080143'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/05/slow-flash-on-mac.html' title='Slow Flash on Mac'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5929548039960721134</id><published>2009-02-21T10:22:00.001+05:30</published><updated>2009-02-21T10:23:00.954+05:30</updated><title type='text'>File Extension List</title><content type='html'>&lt;p&gt;I found a nice website with a large file extension list, and all the details that go with each extension. It is:&lt;/p&gt;  &lt;p align="center"&gt;&lt;a href="http://www.file-extensions.org" target="_blank"&gt;&lt;img src="http://www.file-extensions.org/imgs/t01/logo.gif" /&gt;&lt;/a&gt;&amp;#160; &lt;br /&gt;&lt;a href="http://www.file-extensions.org" target="_blank"&gt;www.file-extensions.org&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;It has easy-to-understand description and a legibly given list of associated applications. You can quickly search by extension, or view common and most popular file extensions.&lt;/p&gt;  &lt;p&gt;You can also check out the extension categories such as audio and music files, multimedia, graphic and image file types. This makes it a great place to discover new software that are associated with the extension category you are interested in.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5929548039960721134?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5929548039960721134/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/02/file-extension-list.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5929548039960721134'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5929548039960721134'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/02/file-extension-list.html' title='File Extension List'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5300155566979567840</id><published>2009-01-15T18:36:00.001+05:30</published><updated>2009-01-15T18:36:18.656+05:30</updated><title type='text'>Photofiltre – Powerful, free and portable</title><content type='html'>&lt;p&gt;Are you looking for a feature-rich free image editor software that is also portable? Look no further, because we have Photofiltre.&lt;/p&gt;  &lt;p&gt;It is powerful. It’s a freeware for non-commercial use. And it can be made portable in a few simple steps. Not only that, there are some features that Photofiltre gives that I even couldn’t get in Paint.NET. Two such features I discovered are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Complete control of placement of the photo on a sheet of paper while printing, including automatic centering and original size (according to dpi). Paint.NET only gives us a choice of templates and does not give good control over how you want the photo to be placed on the paper.&lt;/li&gt;    &lt;li&gt;“Paste Special &amp;gt; Assemble” which makes it easy to stitch images together. I used to do this in Paint.NET the hard way, but with Photofiltre, it’s as easy as cake.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a target="_blank" href="http://www.getpaint.net/"&gt;Paint.NET&lt;/a&gt; remains my primary image editing freeware as Photofiltre has a steeper learning curve compared to the earlier. But Photofiltre serves as a secondary editor when I’m out travelling or using a public computer. It’s a great software to put inside your camera’s memory card, which would help you when you’re on a vacation and end up using a public computer.&lt;/p&gt;  &lt;p&gt;The creation of the portable version is very simple. Just follow these steps.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;&lt;a target="_blank" href="http://photofiltre.free.fr/download_en.htm"&gt;Click here to go to the official Photofiltre download site.&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;Download the ‘French version / zip file’ link. We are not downloading the English version because it is not portable and needs to be installed. The zip file, as the website says, does not have to be installed. &lt;em&gt;Don’t worry, we will take care of the language barrier.&lt;strong&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/li&gt;    &lt;li&gt;Extract the contents of this ZIP file into a folder named ‘Photofiltre’ (or whatever pleases you).&lt;/li&gt;    &lt;li&gt;Under the section “Language files for Photofiltre,” download the ‘English / Anglais’ link. &lt;em&gt;You can also choose any other language if you like.&lt;/em&gt;&lt;/li&gt;    &lt;li&gt;Extract the contents of this ZIP file into the same folder we created in step 3 above. You will be requested permission to replace two files. Say ‘yes’ to the request, otherwise the help files will remain in French.&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;That’s it! Do keep Photofiltre updated whenever you can.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5300155566979567840?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5300155566979567840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2009/01/photofiltre-powerful-free-and-portable.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5300155566979567840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5300155566979567840'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2009/01/photofiltre-powerful-free-and-portable.html' title='Photofiltre – Powerful, free and portable'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3102664926359448252</id><published>2008-12-08T17:41:00.001+05:30</published><updated>2008-12-08T17:41:31.976+05:30</updated><title type='text'>Let Firefox decide how pop-ups should open</title><content type='html'>&lt;p&gt;You must have seen that the Internet Explorer’s Tabbed Browsing Settings dialog box has an option called “Let Internet Explorer decide how pop-ups should open” which is explained best by the quote below&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Basically what this will do is open any pop-up without size or other restrictions in a new tab, the rest will open in a new window. For users experienced with tabbed browsing this is typically the best option, as it allows most windows to open in tabs, but allows pop-up style windows to open in a new window.     &lt;br /&gt;[Source: &lt;a target="_blank" href="http://blogs.msdn.com/ie/archive/2006/07/27/680457.aspx"&gt;IEBlog: Your Tab Settings…&lt;/a&gt;]&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;However users of Firefox will find that such an option does not exist in the Firefox’s Options or Preferences dialog. The closest option that is there would be “New pages should be opened in: (a) a new window (b) a new tab” but this option does not make the distinction between pop-up style windows and normal windows.&lt;/p&gt;  &lt;p&gt;There is a hidden preference in Firefox which will make this distinction. It is &lt;strong&gt;browser.link.open_newwindow.restriction&lt;/strong&gt; and you can find it in the &lt;strong&gt;about:config&lt;/strong&gt; page. Just type &lt;em&gt;“about:config”&lt;/em&gt; followed by the Enter key in the address bar.&lt;/p&gt;  &lt;p&gt;Filter the page by typing in &lt;em&gt;open_new&lt;/em&gt; or &lt;em&gt;restrict&lt;/em&gt;. Then double-click the preference and enter the value 2, which makes Firefox open normal windows as new tabs, while opening pop-up style windows as real pop-ups.&lt;/p&gt;  &lt;p&gt;Other values are 0 which follows the above mentioned closest option, and 1 which ignores the same option (all pop-ups open in a new window regardless of what you set).&lt;/p&gt;  &lt;p&gt;[Reference: &lt;a target="_blank" href="http://kb.mozillazine.org/Browser.link.open_newwindow.restriction"&gt;MozillaZine Knowledge Base Article&lt;/a&gt;]&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3102664926359448252?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3102664926359448252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/12/let-firefox-decide-how-pop-ups-should.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3102664926359448252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3102664926359448252'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/12/let-firefox-decide-how-pop-ups-should.html' title='Let Firefox decide how pop-ups should open'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8649925722311243866</id><published>2008-11-17T16:04:00.001+05:30</published><updated>2008-11-17T16:30:40.514+05:30</updated><title type='text'>Network Connections in Vista</title><content type='html'>&lt;p&gt;For those who have used previous versions of Windows (up to XP), you may have grown accustomed to being able to quickly open the Network Connections folder. It's the folder that displays all your dial-up connections, Local Area connections, 1394 connections and Wireless connections.&lt;/p&gt;  &lt;p&gt;Someone in the Windows Vista development team was smart enough to decide to bury this folder, thinking the new Windows users won't need to have immediate access to this folder because of the new &amp;quot;Connect To&amp;quot; wizard and the &amp;quot;Network and Sharing Center.&amp;quot;&lt;/p&gt;  &lt;p&gt;How wrong of them! I definitely prefer to see things in the Network Connections folder and hate it that I have to open the &amp;quot;Connect To&amp;quot; wizard, then the &amp;quot;Network and Sharing Center&amp;quot; and finally the &amp;quot;Network Connections&amp;quot; folder. If you're like me, you'd want to create a shortcut somewhere. Here are four methods:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;If you just want a quick and dirty solution, simply create a shortcut to &lt;em&gt;&amp;quot;ncpa.cpl&amp;quot;&lt;/em&gt; or &lt;em&gt;&amp;quot;C:\Windows\system32\ncpa.cpl&amp;quot;.&lt;/em&gt; &lt;strong&gt;Beauty Tip:&lt;/strong&gt; Change the icon to the first icon of &lt;em&gt;netshell.dll&lt;/em&gt;.      &lt;br /&gt;&amp;#160;&lt;/li&gt;    &lt;li&gt;You can create a &amp;quot;clone&amp;quot; of the actual Network Connections folder. Clone means it's not a simple shortcut but functions like a real folder. That means if you see it in any menu (e.g. Quick Launch menu), you can point to it to display your connections in a sub-menu.     &lt;br /&gt;1. Open Network Connections folder.      &lt;br /&gt;2. Right-click the address bar and select &amp;quot;Copy Address&amp;quot; &lt;em&gt;(not Copy Address as Text)&lt;/em&gt;.      &lt;br /&gt;3. Open the folder where you want the clone to appear. (e.g. Quick Launch)      &lt;br /&gt;4. Right-click an empty area and select &amp;quot;Paste Shortcut.&amp;quot; You may need to refresh (F5) to see the icon.      &lt;br /&gt;&amp;#160;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;The following method is for advanced users only.&lt;/strong&gt; If you want to create a real shortcut to Network Connections (not to ncpa.cpl but to the actual Network Connections in Control Panel), do the below.      &lt;br /&gt;1. First of all, create the clone as mentioned above.      &lt;br /&gt;2. Open the cloned folder in Command Prompt and issue the &amp;quot;dir&amp;quot; command. You will see &lt;em&gt;&amp;quot;target.lnk&amp;quot;&lt;/em&gt;.      &lt;br /&gt;3. Copy this file &lt;em&gt;&amp;quot;target.lnk&amp;quot;&lt;/em&gt; using the &amp;quot;copy&amp;quot; command to a folder where you want the real shortcut to appear.      &lt;br /&gt;4. Open the folder in Explorer and rename the copied shortcut to &amp;quot;Network Connections.&amp;quot;      &lt;br /&gt;If you right-click the shortcut and select Properties, you will see the difference.      &lt;br /&gt;&amp;#160;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;The following method requires editing of Windows registry. Incorrect modification of registry may cause irreversible damage to Windows.&lt;/strong&gt;      &lt;br /&gt;To enable Network Connections in the Control Panel menu (Classic View), open Registry Editor (regedit) and browse to      &lt;br /&gt;&amp;quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\don't load&amp;quot;      &lt;br /&gt;Delete or rename the value called &amp;quot;ncpa.cpl&amp;quot;      &lt;br /&gt;&lt;em&gt;&lt;strong&gt;Additional Tip:&lt;/strong&gt; Delete or rename &amp;quot;desk.cpl&amp;quot; to enable the &amp;quot;Display Settings&amp;quot; icon in Control Panel.        &lt;br /&gt;&lt;/em&gt;Close Registry Editor and refresh Control Panel.&lt;/li&gt; &lt;/ul&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8649925722311243866?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8649925722311243866/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/11/network-connections-in-vista.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8649925722311243866'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8649925722311243866'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/11/network-connections-in-vista.html' title='Network Connections in Vista'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5180348317555991731</id><published>2008-11-12T19:42:00.001+05:30</published><updated>2008-11-12T19:42:38.458+05:30</updated><title type='text'>How to create self-extracting 7z archives</title><content type='html'>&lt;p&gt;Note: This is not an easy task and requires intermediate or advanced knowledge in batch files, parameters, encoding, escape sequences and such computing terms. If you are a beginner, you should create a self-extracting Zip archive, which can be easily done using software such as WinZip.&lt;/p&gt;  &lt;p&gt;To successfully create an SFX (self-extracting) archive, you need three parts and a batch program to combine them together. The three parts are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;SFX module, the executable code of the SFX archive &lt;/li&gt;    &lt;li&gt;Configuration file, provides options that control the behavior of the SFX archive. &lt;/li&gt;    &lt;li&gt;7z archive, contains the files and folders you want to extract. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Download the required SFX module from &lt;a target="_blank" href="http://7zsfx.solta.ru/en/download.html"&gt;Solta.ru Download Links&lt;/a&gt;. You would most likely use an LZMA module, which is the default compression method of 7z. The first or second download link should be sufficient, but you must remember to use the module that corresponds to the compression method of your 7z archive. If you are not sure, just use the 7ZSD_All module which is compatible with all compression methods.&lt;/p&gt;  &lt;p&gt;Extract the modules into a folder. From now on, we will be working in this folder. Create a configuration file &amp;quot;config.txt&amp;quot; and edit it. The documentation (third link in the &lt;a target="_blank" href="http://7zsfx.solta.ru/en/download.html"&gt;download page&lt;/a&gt;) provides full-fledged help on what you can include in this configuration file and how to use it. But here's a quick overview. The file should begin and end like this:&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;;!@Install@!UTF-8!      &lt;br /&gt;      &lt;br /&gt;;!@InstallEnd@!&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;Any configuration parameter you wish to include should be between these two lines. There are several parameters that can be included here and I don't wish to go through all of them. You can check the documentation which provides in full detail what they are and how to use them. However the most important parameters are:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;InstallPath&lt;/strong&gt; - an absolute or relative path to which the contents must be extracted. If the path is relative, it will be created in the folder where the SFX archive is.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;RunProgram&lt;/strong&gt; - an application or file in the archive which should be run/opened after the extraction is complete. Do not include the InstallPath value. &amp;quot;nowait:&amp;quot; can be used before the file name to free up memory taken up by the SFX archive after it has extracted.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;GUIFlags&lt;/strong&gt; - controls the user-interaction behavior of the SFX archive. There are several values you can include here as explained in the documentation. For example, if you wish to display the extraction percentage on right (1), display an icon in the extraction window (32), confirm with the user if they click Cancel (256) and replace the question mark with an icon (2048), you should enter the value as &amp;quot;1+32+256+2048&amp;quot; or add them up to &amp;quot;2337&amp;quot;&lt;/p&gt;  &lt;p&gt;If you have placed the above three parameters, your configuration file would look similar to this example:&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;;!@Install@!UTF-8!      &lt;br /&gt;InstallPath=&amp;quot;ExtractFolder&amp;quot;       &lt;br /&gt;RunProgram=&amp;quot;nowait:setup.exe&amp;quot;       &lt;br /&gt;GUIFlags=&amp;quot;1+32+256+2048&amp;quot;       &lt;br /&gt;;!@InstallEnd@!&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;Explore the documentation as there are many more parameters that can be used to add your own messages to the SFX archive, such as licence agreements, instructions, etc.&lt;/p&gt;  &lt;p&gt;Once you have prepared the configuration file, place the 7z archive in our working folder. Create an MS-DOS batch file (example, &lt;em&gt;runme.bat&lt;/em&gt;) and edit it. The batch file only needs to have one line. Here is an example:&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;copy /b 7ZSD_LZMA.sfx + config.txt + Archive.7z SFX.exe&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;7ZSD_LZMA.sfx&lt;/strong&gt; - This is the SFX module. You may change the name if you are using a different module such as 7ZSD_Deflate or 7ZSD_All.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;config.txt&lt;/strong&gt; - This is the configuration file. You may change the name if your file has a different name.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Archive.7z&lt;/strong&gt; - This is the 7z archive. Change the name to match your archive.&lt;/p&gt;  &lt;p&gt;SFX.exe - This is the file name of the output SFX archive. You may choose any name you like, but keep the &amp;quot;.exe&amp;quot; part.&lt;/p&gt;  &lt;p&gt;&lt;u&gt;Please note that the order of the three input files should be maintained.&lt;/u&gt; Save and run this batch file and you should see a new EXE file (in example above, &lt;em&gt;SFX.exe&lt;/em&gt;), which is the self-extracting archive. Test the SFX archive before deploying.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5180348317555991731?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5180348317555991731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/11/how-to-create-self-extracting-7z.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5180348317555991731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5180348317555991731'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/11/how-to-create-self-extracting-7z.html' title='How to create self-extracting 7z archives'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3353466276004156178</id><published>2008-11-11T15:24:00.003+05:30</published><updated>2008-11-11T15:52:37.878+05:30</updated><title type='text'>Why Meebo and not eBuddy</title><content type='html'>I've seen many in Singapore using eBuddy as their favorite online multi-messenger (even if they are only signing into MSN!) Maybe they are used to it, but to me, Meebo has a lot more advantages compared to eBuddy.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Meebo has no advertisements! eBuddy has both text and image banner advertisements in every window you open.&lt;/li&gt;&lt;li&gt;Meebo uses the familiar Windows interface. eBuddy uses a tabbed interface, but this to me is not comfortable for chatting. I use a tabbed browser but for chatting, I prefer having separate windows.&lt;/li&gt;&lt;li&gt;Meebo has a simplistic, minimal and clean design. eBuddy has an overly stylistic design, wastes a lot of screen space (for not only the ads).&lt;/li&gt;&lt;li&gt;Meebo allows you to have or even upload your own display picture. eBuddy forces its own display picture (the orange b with two orange dots in it) on its users, promoting itself.&lt;/li&gt;&lt;li&gt;Meebo is a web-based desktop and allows wallpaper. Nothing comparable in eBuddy.&lt;/li&gt;&lt;li&gt;Meebo has chat rooms and promotes music. Tell me who doesn't love music? eBuddy has eBay tab, Youtube tab, Mobile Music tab, and such crappy tabs that people would hardly find any use for. They copied it from MSN Messenger, but then even that Messenger is wasting space and time with those tabs.&lt;/li&gt;&lt;li&gt;Meebo has history. Maybe eBuddy does too, I don't know.&lt;/li&gt;&lt;li&gt;Meebo allows you to search your contact list. When will eBuddy come up with this feature?&lt;/li&gt;&lt;li&gt;Meebo allows you to sign into multiple accounts and has an integrated contact list. With eBuddy, you need to create an eBuddy account  first to have this feature.&lt;/li&gt;&lt;li&gt;Meebo has themes. Nothing comparable in eBuddy.&lt;/li&gt;&lt;/ul&gt;That's all I can  figure out now. If there's anything I missed, or something is wrong, leave me a comment :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3353466276004156178?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3353466276004156178/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/11/why-meebo-and-not-ebuddy.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3353466276004156178'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3353466276004156178'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/11/why-meebo-and-not-ebuddy.html' title='Why Meebo and not eBuddy'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8302625286697491541</id><published>2008-10-25T16:24:00.001+05:30</published><updated>2008-10-25T16:25:28.797+05:30</updated><title type='text'>RoboCop[y] at your service</title><content type='html'>&lt;p&gt;Back in the days of Windows 98, I used to use Xcopy and Xcopy32 to copy files at the Command Prompt. The built-in simple copy command was not as powerful and customizable as Xcopy.&lt;/p&gt;  &lt;p&gt;A few minutes ago, I tried these commands in Vista's command prompt, due to a DVD drive problem that lets me read the disc contents via the Command Prompt, but not through Windows Explorer.&lt;/p&gt;  &lt;p&gt;Xcopy32 no longer exists, but Xcopy does. As I was looking through the /? help page of Xcopy, a certain line in the beginning said:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;NOTE: Xcopy is now deprecated, please use Robocopy.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Wow, something new. RoboCopy? Ok let's try that... &lt;strong&gt;robocopy /?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Almost two and a half screens of help appeared! There are a lot more options than Xcopy, and the options are neatly arranged in groups. Certain options that are new and interesting include controlling what details about the file are copied (dates, permissions, etc.), excluding certain files or folders from the copy and copying directory structure (not files).&lt;/p&gt;  &lt;p&gt;I gave RoboCopy a try and was impressed by the detailed information that was provided. during the copy. A summary of copy options is given, then each file is shown with a percentage indication. Folder paths are never repeated, thus the table is very clean and neat. Created folders are also mentioned.&lt;/p&gt;  &lt;p&gt;After the copy operation, a conclusive summary is also shown, giving the statistics of the operation, such as files that were skipped or gave errors, and time required. It finally ends with the speed of the operation, given both in bytes/sec and MB/min&lt;/p&gt;  &lt;p&gt;Microsoft says RoboCopy is Robust File Copy for Windows. Maybe RoboCopy is what lies behind the new move/copy system of Vista that shows detailed information. Will you please confirm this for me?&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8302625286697491541?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8302625286697491541/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/robocopy-at-your-service.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8302625286697491541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8302625286697491541'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/robocopy-at-your-service.html' title='RoboCop[y] at your service'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3479021200947227507</id><published>2008-10-23T20:14:00.002+05:30</published><updated>2009-07-09T22:09:55.080+05:30</updated><title type='text'>Installing Flash and Shockwave in Firefox Portable when using restricted computers</title><content type='html'>&lt;p&gt;If you have just installed Firefox Portable, you would find that there is no Flash or Shockwave in the installation. The official website has a &lt;a target="_blank" href="http://portableapps.com/support/firefox_portable#plugins"&gt;Support page&lt;/a&gt; explaining how to get these two in the installation. These procedures assume that you either have access to a computer that has a normal Firefox installation, or that you have Administrator privileges. &lt;em&gt;And oh, the Flash extension does not work with the new version of Firefox.&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;However, you may be using a computer that you have very limited access on. For example a school or university library computer that is designed to let the students use the Internet. In such cases, the installation of Shockwave will fail due to having no Admin privileges. And you will have nowhere to copy Flash from, since a restricted computer will not usually have a normal Firefox installation, and you may not have access to C drive of the computer.&lt;/p&gt;  &lt;p&gt;In such cases when you are using a heavily restricted computer, here's the sure-fire way to get Flash, Shockwave or both plugged into your Firefox Portable. But actually you can use the same method for every computer. Note that you only need to do this once for every new Firefox Portable installation.&lt;/p&gt;  &lt;p&gt;1. Get &lt;a target="_blank" href="http://portableapps.com/apps/utilities/7-zip_portable"&gt;7-Zip Portable from here&lt;/a&gt; and install it on your thumb drive.   &lt;br /&gt;2. Go &lt;a target="_blank" href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"&gt;here for Flash&lt;/a&gt; and/or &lt;a target="_blank" href="http://get.adobe.com/shockwave/"&gt;here for Shockwave&lt;/a&gt;. Download and save the EXE files. Do not run them.   &lt;br /&gt;3. Open each of the downloaded files in 7-Zip Portable and select these files accordingly:   &lt;br /&gt;&lt;strong&gt;Flash:&lt;/strong&gt; flashplayer.xpt &lt;em&gt;and&lt;/em&gt; NPSWF32.dll   &lt;br /&gt;&lt;strong&gt;Shockwave:&lt;/strong&gt; SHOCKWAVEPLUGIN.CLASS and NP32DSW.DLL   &lt;br /&gt;4. Extract them to FirefoxPortable\Data\plugins and restart Firefox Portable&lt;/p&gt;&lt;p&gt;That's it. Adobe Flash and Shockwave should be up and running now.&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight: bold;"&gt;Update (10 July 2009):&lt;/span&gt; It seems to me that the file "&lt;span style="font-style: italic;"&gt;shockwaveplugin.class&lt;/span&gt;" no longer exists. You may try with "&lt;span style="font-style: italic;"&gt;np32dsw.dll&lt;/span&gt;" only and check if it works by going to this webpage: &lt;a href="http://www.adobe.com/shockwave/welcome/"&gt;Test Adobe Shockwave and Flash Players&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3479021200947227507?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3479021200947227507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/installing-flash-and-shockwave-in.html#comment-form' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3479021200947227507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3479021200947227507'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/installing-flash-and-shockwave-in.html' title='Installing Flash and Shockwave in Firefox Portable when using restricted computers'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1496019821161732531</id><published>2008-10-17T12:33:00.004+05:30</published><updated>2008-10-17T12:55:41.101+05:30</updated><title type='text'>Internet Explorer Icon Missing</title><content type='html'>Perhaps your Internet Explorer icon on the desktop is missing. I'm talking about the real icon, not an ordinary shortcut. The real Internet Explorer icon has the advantage that you can right-click it to start without add-ons or open the Internet Options dialog box.&lt;br /&gt;&lt;br /&gt;You have tried everything you could find on the Internet about fixing this problem, but nothing seems to work. But you may have missed one solution which is not talked about much.&lt;br /&gt;&lt;br /&gt;Just open &lt;em&gt;regedit&lt;/em&gt; and go to&lt;br /&gt;HKEY_CLASSES_ROOT\CLSID\{871C5380-42A0-1069-A2EA-08002B30309D}\ShellFolder&lt;br /&gt;You will find a DWord value called &lt;em&gt;Attributes&lt;/em&gt;. If its data is 0x00100024, this is causing the problem. You should change to 0x00000024 or just 24 (hexadecimal).&lt;br /&gt;&lt;br /&gt;If you're afraid to mess with the Windows registry, or are not a tech savvy computer user, you can use a file that will automate the process for you. It also includes all the other solutions you may have already tried, along with the one mentioned above. This page &lt;a href="http://windowsxp.mvps.org/iefaq.htm"&gt;here&lt;/a&gt; has a tip #100 which is quoted below. &lt;em&gt;Merge&lt;/em&gt; the .REG file to automate the process, then &lt;em&gt;Refresh&lt;/em&gt; the desktop to get the icon.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;100. &lt;a href="http://windowsxp.mvps.org/reg/ieiconrestore_xp.reg"&gt;Restore the missing Internet Explorer icon to the Desktop in Windows XP&lt;/a&gt; (link to a .REG file)&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1496019821161732531?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1496019821161732531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/internet-explorer-icon-missing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1496019821161732531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1496019821161732531'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/internet-explorer-icon-missing.html' title='Internet Explorer Icon Missing'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-2620121568999714651</id><published>2008-10-07T17:05:00.001+05:30</published><updated>2008-10-07T17:40:49.270+05:30</updated><title type='text'>Delete multiple posts on Blogger</title><content type='html'>&lt;p&gt;As mentioned in previous post, I had been uploading Friendster posts to Blogger to help my friend, and suddenly I ran into a problem. I accidentally posted some 50 posts twice, so they started appearing in doubles in the blog. [By the way, I got the 50/day limit upped to 300/day by emailing Trevor at Google.]&lt;/p&gt;  &lt;p&gt;So now, the dilemma is to delete the duplicate copies. Blogger, after so long, is yet to give an option by which we can select multiple posts and just click a Delete button, to trash them all. Their standpoint is to avoid accidentally deleting a lot of posts. Maybe it's good.&lt;/p&gt;  &lt;p&gt;Except in times like this.&lt;/p&gt;  &lt;p&gt;To solve the problem, I found a software called &amp;quot;w.bloggar&amp;quot; (It is spelt bloggar, not blogger.) It is mainly a software to create and manage posts in your blog, but I got it to delete multiple posts. I downloaded the portable version as I would not be using it all the time. You can get w.bloggar &lt;a target="_blank" href="http://www.wbloggar.com/download.php"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Note that when you are in the opening Account Setup wizard of w.bloggar you can only access it by minimizing/moving away whatever is on top of it. There is no taskbar button for it, and it does not appear in the Alt-Tab list. &lt;em&gt;(I have no idea why.)&lt;/em&gt; You won't have this problem once you are in the main w.bloggar window.&lt;/p&gt;  &lt;p&gt;Once you have set up w.bloggar using the opening wizard, just click the arrow next to &amp;quot;Posts&amp;quot; in the toolbar. Select &amp;quot;Last 'n' Posts&amp;quot; and enter a number large enough to accommodate the posts you want to delete. You can also select one of the predefined numbers if the posts are recent.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/send2adtc/SOtRqwWszTI/AAAAAAAAAF4/Ck0mPLmqftM/s1600-h/wblog1%5B3%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="wblog1" src="http://lh5.ggpht.com/send2adtc/SOtRsRB0ACI/AAAAAAAAAF8/i7FLymS_z8M/wblog1_thumb%5B1%5D.png?imgmax=800" width="412" height="350" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You will get a list of posts. To preview any post, click it on the list, and you will get a preview on the right. Place a tick mark in the box (check it) next to every post that you want to delete. Once you have checked/ticked all the posts you want to delete, click the &amp;quot;Delete&amp;quot; button.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/send2adtc/SOtRt_W9FBI/AAAAAAAAAGA/CbKL9IzpCUU/s1600-h/wblog2%5B9%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="wblog2" src="http://lh4.ggpht.com/send2adtc/SOtRx-Qxd2I/AAAAAAAAAGE/sCAXvjlPM9s/wblog2_thumb%5B7%5D.png?imgmax=800" width="413" height="353" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;That's it. Easy as a cake.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-2620121568999714651?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/2620121568999714651/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/delete-multiple-posts-on-blogger.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2620121568999714651'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2620121568999714651'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/delete-multiple-posts-on-blogger.html' title='Delete multiple posts on Blogger'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh5.ggpht.com/send2adtc/SOtRsRB0ACI/AAAAAAAAAF8/i7FLymS_z8M/s72-c/wblog1_thumb%5B1%5D.png?imgmax=800' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-4990196954007053328</id><published>2008-10-05T21:08:00.001+05:30</published><updated>2008-10-05T21:08:13.972+05:30</updated><title type='text'>Importing posts from WordPress or Friendster to Blogger</title><content type='html'>&lt;p&gt;Blogger is currently working on an Import/Export tool. As of now, it only works within the Blogger family and does not work with Friendster or WordPress exports.&lt;/p&gt;  &lt;p&gt;Meanwhile, after a lot of research I learnt about a Java application that can migrate WordPress posts to your Blogger. Now, the export of a Friendster blog is fully compatible with this application since Friendster blogs are based on WordPress.&lt;/p&gt;  &lt;p&gt;How do you use this application? It's quite simple but not really for novices. If you're quite bad at using computers, you'd be better off asking your closest geek to help you out. Of course, show him/her this post!&lt;/p&gt;  &lt;p&gt;First, you need to make sure that the latest version of JRE or JDK is installed on your computer. JRE means Java Runtime Environment (or quite simply Java). JDK means Java Development Kit (you will only be installing this if you're programming in Java). If you have JRE, that's fine. You don't need JDK.&lt;/p&gt;  &lt;p&gt;Now you need to find out if typing &amp;quot;java&amp;quot; will work in the command prompt, no matter which folder you are in. Just open Command Prompt, type in &amp;quot;java&amp;quot; and press Enter. You should see a bunch of options and usage instructions. Skip the next two paragraphs&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;But if you see something along the lines of 'bad command' or 'not recognized.' It's time to find out where Java is hiding. Open up &amp;quot;C:\Program Files\Java&amp;quot; and you should see one or more folders. Depending on what you did in the past, there maybe jre folders and jdk folders.&lt;/p&gt;    &lt;p&gt;Choose the folder (jre or jdk) with the highest version and open it. There should be a 'bin' folder inside. Open it. Now you need to copy the full path of this 'bin' folder. You will need this later. It would be something like: &amp;quot;C:\Program Files\Java\jre1.6.0_07\bin&amp;quot;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Next, let's go get the Java app. It's called BlogSync and it can be downloaded &lt;a target="_blank" href="http://code.google.com/p/blogsync-java/downloads/list"&gt;here&lt;/a&gt;. If you want to read the FAQ, it's &lt;a target="_blank" href="http://code.google.com/p/blogsync-java/wiki/BlogsyncFAQ"&gt;here&lt;/a&gt;. Note that the FAQ says you need JDK, but JRE alone is enough.&lt;/p&gt;  &lt;p&gt;Extract the downloaded ZIP file (version 0.3 at the time of writing) and open the file &amp;quot;run.bat&amp;quot; in Notepad. [You guys with Mac or Linux has to deal with &amp;quot;run.sh&amp;quot;] Now there's a line &amp;quot;&lt;strong&gt;set path=e:/jdk1.5.0/bin&lt;/strong&gt;&amp;quot; and there are two cases. If you skipped two paragraphs quoted above, simply add a &amp;quot;rem&amp;quot; command to change this line to &amp;quot;&lt;strong&gt;rem set path=e:/jdk1.5.0/bin&lt;/strong&gt;&amp;quot;. This disables the line.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;But if you found out the location of the bin folder, do not add rem command. Instead change it to a line like this:&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;set path=%path%; &lt;em&gt;C:\Program Files\Java\jre1.6.0_07\bin&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;    &lt;p&gt;But make sure you insert the location of the bin folder you found out earlier, instead of the example I have shown you here.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Save the file and close Notepad. Now double-click run.bat to execute it. If everything goes well, you should see this window:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh6.ggpht.com/send2adtc/SOjfVnp_KqI/AAAAAAAAAFw/ZkXCV2h1NHs/s1600-h/Untitled%5B3%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="BlogSync Main Window" src="http://lh6.ggpht.com/send2adtc/SOjfZASROwI/AAAAAAAAAF0/L4PwPYDBweo/Untitled_thumb%5B1%5D.png?imgmax=800" width="421" height="419" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I've only shown part of the window here. Now click Accounts and enter your Blogger username, password and blogid in the boxes towards the bottom. Best practice is to import posts from an XML file, especially for Friendster, so leave the WordPress settings as they are. [Feel free to try it though, if you use WordPress.]&lt;/p&gt;  &lt;p&gt;The blogid can be found out from the Blogger Dashboard. Links like 'Layout,' 'Settings'&amp;#160; etc. that directly correspond to your blog can give you the blogid. Just check the URL of one such link, and there should be a variable in the URL that gives you the blogid.&lt;/p&gt;  &lt;p&gt;Now is the crucial part. After you click the Save button in Accounts dialog, and click OK to the pop-up message, you must exit BlogSync. Then run it again by double-clicking &amp;quot;run.bat&amp;quot;. Never click the &amp;quot;Save Options&amp;quot; button between this process. [This process needs to be done due to a bug in BlogSync.]&lt;/p&gt;  &lt;p&gt;Ok, assuming you have already logged in to WordPress or Friendster and exported all your posts as an XML, you may click the &amp;quot;Choose Rss File&amp;quot; button and browse to/open that downloaded file. [To export in Friendster, go to &amp;quot;My Blog Home &amp;gt; Manage &amp;gt; Export.&amp;quot;]&lt;/p&gt;  &lt;p&gt;Then adjust the numbers (0 is the oldest post, &lt;strong&gt;but the numbers &lt;u&gt;are not always continuous&lt;/u&gt;&lt;/strong&gt;) in the two number boxes below, then click Read From RSS. I suggest you test the import first using just one or two posts. You may choose to import comment, but I cannot guarantee its functionality.&lt;/p&gt;  &lt;p&gt;Once you see the posts on right side, you may delete what you don't need by selecting them and then right-clicking them. If you're ready, click the &amp;quot;import&amp;quot; button. Keep an eye on the log below.&lt;/p&gt;  &lt;p&gt;Here's the catch about the whole thing. Blogger allows &lt;u&gt;only 50 posts&lt;/u&gt; to be imported per user account &lt;u&gt;everyday&lt;/u&gt;. So if you have a lot of posts, you need to import a set of 50 today, then do the next 50 tomorrow, and so on.&lt;/p&gt;  &lt;p&gt;To repeat the import process, simply adjust the numbers below &amp;quot;Import Comment&amp;quot; checkbox to select a set of 50 posts. Then click the &amp;quot;Read from RSS&amp;quot; button and the &amp;quot;import&amp;quot; button. The number you enter corresponds to postid on the Sync box.&lt;/p&gt;  &lt;p&gt;That's it. Yes, if you have some 1500 posts, it's going to take you a month, but it works! It's the only thing that works right now when you want to move your blog from Friendster to Blogger or WordPress to Blogger.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-4990196954007053328?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/4990196954007053328/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/importing-posts-from-wordpress-or.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4990196954007053328'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4990196954007053328'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/importing-posts-from-wordpress-or.html' title='Importing posts from WordPress or Friendster to Blogger'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh6.ggpht.com/send2adtc/SOjfZASROwI/AAAAAAAAAF0/L4PwPYDBweo/s72-c/Untitled_thumb%5B1%5D.png?imgmax=800' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5705021696237910946</id><published>2008-10-03T23:04:00.001+05:30</published><updated>2008-10-03T23:04:52.117+05:30</updated><title type='text'>Worst Customer Service</title><content type='html'>&lt;p&gt;If there's ever an award for the worst customer service, it should go for Friendster. I have sent them many feedback and comments, and reported problems, but they have never cared enough to get their fingers on the keyboard to answer my feedback and problems personally. All they would do is sit there with one hand on the mouse, and copy/paste one of the pre-fabricated answers. And those answers sometimes don't even relate to the problem I'm reporting.&lt;/p&gt;  &lt;p&gt;Are they really a lazy bunch of snobs?&lt;/p&gt;  &lt;p&gt;And I have made some really useful suggestions in the past two years, but even now, they have never implemented any of them. They are wasting their time in useless stuff like Applications. Friendster, oh dear, stop copying MySpace and Facebook and start doing something useful like giving users what they want!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5705021696237910946?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5705021696237910946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/worst-customer-service.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5705021696237910946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5705021696237910946'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/worst-customer-service.html' title='Worst Customer Service'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-6459396024828949888</id><published>2008-10-03T00:54:00.001+05:30</published><updated>2008-10-03T00:54:35.400+05:30</updated><title type='text'>Messing with the UAC - the Admin Approval Mode</title><content type='html'>&lt;p&gt;Initially when I got Vista, I disabled UAC completely in my account and turned off &lt;em&gt;Security Center&lt;/em&gt; alerts. However, my friend suggested that he can keep the UAC enabled, yet not get the annoying prompts. He did this by enabling the built-in &lt;em&gt;Administrator&lt;/em&gt; account and using it.&lt;/p&gt;  &lt;p&gt;So I thought of fiddling with the hidden settings of UAC to find out if I can re-enable UAC yet get rid of those prompts in my account with administrator privileges. This is my own account, not the built-in &lt;em&gt;Administrator&lt;/em&gt; account.&lt;/p&gt;  &lt;p&gt;The hidden settings can be accessed by typing in &lt;strong&gt;&lt;em&gt;secpol.msc&lt;/em&gt;&lt;/strong&gt; in the Start menu, Run dialog or a command prompt. They are under &lt;em&gt;Local Policies &amp;gt; Security Options&lt;/em&gt;. All the settings concerning UAC start with the words &lt;em&gt;&amp;quot;User Account Control.&amp;quot;&lt;/em&gt; &lt;strong&gt;Note:&lt;/strong&gt; &lt;em&gt;secpol.msc&lt;/em&gt; may not be available in &lt;em&gt;Home Premium&lt;/em&gt; or lower.&lt;/p&gt;  &lt;p&gt;After fiddling around, I found out that what my friend thought he is doing, is actually wrong. One of the settings here is &lt;em&gt;&amp;quot;Admin Approval Mode for the Built-in Administrator account.&amp;quot;&lt;/em&gt; This setting is &lt;em&gt;Disabled&lt;/em&gt; by default, and that means no prompts what-so-ever will be displayed in the built-in &lt;em&gt;Administrator&lt;/em&gt; account.&lt;/p&gt;  &lt;p&gt;However, the very feature of displaying consent prompts is named by &lt;em&gt;Microsoft&lt;/em&gt; as &lt;em&gt;&amp;quot;Admin Approval Mode.&amp;quot;&lt;/em&gt; Therefore, turning this off is &lt;strong&gt;&lt;u&gt;exactly&lt;/u&gt;&lt;/strong&gt; the same as turning UAC off via &lt;em&gt;Control Panel&lt;/em&gt;. If you change the above mentioned setting to &lt;em&gt;Enabled&lt;/em&gt;, even the built-in &lt;em&gt;Administrator&lt;/em&gt; will start to display UAC prompts, just like other accounts.&lt;/p&gt;  &lt;p&gt;There is another setting to about the &lt;em&gt;Admin Approval Mode&lt;/em&gt;, namely &lt;em&gt;&amp;quot;Run all administrators in Admin Approval Mode.&amp;quot;&lt;/em&gt; This setting is &lt;em&gt;Enabled&lt;/em&gt; by default. Now, disabling this will cause the prompts to be no longer displayed in any account. But it also means that UAC is completely turned off. I had UAC turned on prior to changing this setting, and after I changed it, UAC was found to be turned off.&lt;/p&gt;  &lt;p&gt;In fact, turning off UAC in &lt;em&gt;Control Panel&lt;/em&gt; actually toggles the above mentioned setting.&lt;/p&gt;  &lt;p&gt;The &lt;u&gt;only true way&lt;/u&gt; to keep UAC turned on, but get rid of the prompts is by utilizing the setting called &lt;em&gt;&amp;quot;Behavior of the elevation prompt for administrators in Admin Approval Mode.&amp;quot;&lt;/em&gt; The default choice is &lt;em&gt;Prompt for consent&lt;/em&gt;, but you can change this to &lt;em&gt;Elevate without prompting&lt;/em&gt;. It means the UAC prompts are still there, but &lt;em&gt;Windows&lt;/em&gt; automatically clicks the &lt;em&gt;Continue&lt;/em&gt; button for you. (This is just a description to make it easy to understand. You won't see &lt;em&gt;Windows&lt;/em&gt; actually doing it on screen. You won't even see the prompt or the &lt;em&gt;Secure Desktop.&lt;/em&gt;)&lt;/p&gt;  &lt;p&gt;For the above mentioned setting to work for the built-in &lt;em&gt;Administrator&lt;/em&gt; account, the first setting mentioned in this post must be enabled. Otherwise UAC will just be disabled in that account. Also, &lt;em&gt;Security Center&lt;/em&gt; will continue to show that UAC is off, even though it appears turned on in &lt;em&gt;Control Panel&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;Although I did not get any more UAC prompts despite the fact that UAC is still turned on, I ran into other problems with software that I regularly use. Most notably, enabling UAC caused the programs to run underprivileged, and certain programs generated &lt;em&gt;&amp;quot;Access Denied&amp;quot;&lt;/em&gt; errors when trying to access files in drives other that &lt;em&gt;C drive&lt;/em&gt;. The problem did not occur when I ran the programs as &lt;em&gt;Administrator&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;Due to these problems, I reversed all my changes and went back to keeping the UAC turned off. Bottom line, if you know what you are doing with your computer and won't do anything silly to get it infected, an annoying security feature is really unnecessary.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-6459396024828949888?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/6459396024828949888/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/messing-with-uac-admin-approval-mode.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6459396024828949888'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6459396024828949888'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/messing-with-uac-admin-approval-mode.html' title='Messing with the UAC - the Admin Approval Mode'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8893354867334364430</id><published>2008-10-01T18:12:00.001+05:30</published><updated>2008-10-01T18:12:42.333+05:30</updated><title type='text'>Did I just notice that?</title><content type='html'>&lt;p&gt;I'm a regular user of Firefox. But while I was helping someone with their computer, I stumbled upon the new &lt;a target="_blank" href="http://www.microsoft.com/windows/internet-explorer/beta/default.aspx"&gt;Internet Explorer 8 Beta&lt;/a&gt;. So I tried it in my computer.&lt;/p&gt;  &lt;p&gt;And so far, I like it!&lt;/p&gt;  &lt;p&gt;New features I have taken notice include the &lt;a target="_blank" href="http://www.microsoft.com/windows/internet-explorer/beta/features/browse-privately.aspx?tabid=2&amp;amp;catid=1"&gt;InPrivate browsing&lt;/a&gt;. I used Google Chrome for a short while but I dropped it due to instability. However I miss the Incognito feature of Chrome which allowed me to browse websites without leaving a trace. IE8's InPrivate is the answer. It also lets you browse privately by not leaving traces of your browsing on your computer. Close the InPrivate window and IE8 forgets everything in that window.&lt;/p&gt;  &lt;p&gt;Another simply blew my mind as it was the last thing I expected IE to have: &lt;a target="_blank" href="http://www.microsoft.com/windows/internet-explorer/beta/features/enhanced-navigation.aspx?tabid=1&amp;amp;catid=1"&gt;A find toolbar!&lt;/a&gt; IE had always been stuck with the infamous Find dialog which just sticks like a sore thumb out when I press Ctrl-F. I hated this, and I always loved how neatly Firefox shows a find toolbar at the bottom of the page.&lt;/p&gt;  &lt;p&gt;IE8 surprises you with something very similar to Firefox, but at the top, just below the tab bar. But oh man, did I just notice that? I was so used to Firefox's find toolbar that when IE8 tried to surprise me with its own version, it took me a while before I realised it!&lt;/p&gt;  &lt;p&gt;Then there is the brand new feature called &lt;a target="_blank" href="http://www.microsoft.com/windows/internet-explorer/beta/features/enhanced-navigation.aspx?tabid=1&amp;amp;catid=1"&gt;Tab Groups&lt;/a&gt;. If you open a link from a page in a new tab, both the new tab and the original tab are assigned a randomly chosen colour. Thereafter any new tab created by a link in any tab of this colour will have the same colour. It's a bit hard to explain but once you try it, you'll understand. I found a Firefox add-on that can do the same &lt;em&gt;and more&lt;/em&gt;: &lt;a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/5447"&gt;Tab Kit&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;There are many more new features. Check out the website.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8893354867334364430?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8893354867334364430/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/10/did-i-just-notice-that.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8893354867334364430'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8893354867334364430'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/10/did-i-just-notice-that.html' title='Did I just notice that?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3390336444884951760</id><published>2008-06-05T18:27:00.001+05:30</published><updated>2008-06-05T18:27:17.979+05:30</updated><title type='text'>Vista crashes due to Magnifier</title><content type='html'>&lt;p&gt;I just ran a very simple tool that comes in Windows, the Magnifier. But it immediately crashed my Vista Ultimate installation with a Blue Screen of Death (Stop Error). It said something about Video Memory Manager Error. Just before the crash, Vista tried to switch to Basic skin, possibly 16-bit mode. Anyway it's strange that such a simple accessory that comes preinstalled with Windows caused such a serious error. Could be my video card? Let's see what Microsoft has to say about this.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3390336444884951760?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3390336444884951760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/06/vista-crashes-due-to-magnifier.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3390336444884951760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3390336444884951760'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/06/vista-crashes-due-to-magnifier.html' title='Vista crashes due to Magnifier'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1926575713761843758</id><published>2008-04-19T19:35:00.001+05:30</published><updated>2008-04-30T18:32:07.693+05:30</updated><title type='text'>One man's patience with Mac OS X on PC</title><content type='html'>&lt;p&gt;I've always tried many flavours of Linux and pretty much know quite a lot of what anybody should know about Linux. But I never got to try Mac OS X because it uses a completely different computer architecture, isn't free, and would need me to buy a whole MacBook which would cost me the same as 2 Windows laptops...&lt;/p&gt;  &lt;p&gt;... until now!&lt;/p&gt;  &lt;p&gt;Yes, I finally got to experience Mac OS X right in my Tablet PC! Here, I will enumerate my experiences.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font size="4"&gt;Day 0&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;First, I wanted to find a Mac OS X DVD ISO file. I got the latest version 10.5 from &lt;em&gt;[sorry source cannot be mentioned].&lt;/em&gt; It is nicknamed Leopard.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font size="4"&gt;Day 1&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;I was hoping to try Mac on a virtual PC so that I can avoid having to deal with my hard disk and issues like that. Unfortunately... &lt;em&gt;keep reading!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;I downloaded Microsoft Virtual PC 2007, created a new virtual machine, mounted the ISO and started up. Wow. Something is happening. The DVD is booting and files are being loaded.&lt;/p&gt;  &lt;p&gt;After about a minute or so of loading several files, *BOOM* Unrecoverable processor error! Ok this is something I can do absolutely NOTHING about. Clearly, the Virtual PC's processor is not capable enough. The source mentioned that only Intel SSE2/SSE3 processors will work.&lt;/p&gt;  &lt;p&gt;After further fiddling with Virtual PC with no positive results, I tried to find other virtual machine software. I downloaded the free version of VMware Server and tried creating a virtual machine there. DVD loads up and does file loading.&lt;/p&gt;  &lt;p&gt;It proceeds to part 2 of start-up (where M$ crashed) but gets stuck with the error message &amp;quot;ATA disk: checksum cookie not valid.&amp;quot; After a while it spits out some more garbage and throws me into a terminal &lt;em&gt;(hmm that looks familiar... similar to Linux!)&lt;/em&gt; Anyway I can't do anything with the terminal, so after fiddling more with VMware, I gave up on it.&lt;/p&gt;  &lt;p&gt;Next, I searched for emulators and virtual machines that is &lt;em&gt;possibly&lt;/em&gt; designed with Mac OS in mind. I found Pear PC and tried it, but quickly gave up on it since it didn't even showed signs of life. I also tried VirtualBox with &lt;em&gt;no&lt;/em&gt; positive results. And I happened to find a lot more info too.&lt;/p&gt;  &lt;p&gt;In the midst of these, I also put in an empty DVD and fired up InfraRecorder. I burned up the ISO onto the DVD. The virtual machine/emulator solution was looking so hopeless, so I decided I should install to my hard disk, or another hard disk. This was planned for Day 2.&lt;/p&gt;  &lt;p&gt;Ah it's time to go to bed, so I pause my Mac pursuing and visit dreamland.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font size="4"&gt;Day 2&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;One last try with an emulator, I went on to go for a hard disk install. So I selected my 160 GB Maxtor external hard disk. I shrunk the partition to gain a 16 GB unallocated space.&lt;/p&gt;  &lt;p&gt;Then I booted up the DVD I burned on Day 1 and it seemed to start up fine without any problem. It took a while &lt;em&gt;(a hell lot of time)&lt;/em&gt; but it did work! Viola! For the first time, I see the Mac OS X installer! It's quite cool and simple compared to the Windows installers, but it already gives you a taste of what's yet to come! The installer itself runs in a stripped-down Live DVD version of Mac OS X.&lt;/p&gt;  &lt;p&gt;Language selection, preparing installation, and there it is, the welcome message and the top-of-the-screen menu bar, a trademark of Mac OS. I found quite a few utilities can be found in the menu bar, which lets you prepare or troubleshoot your computer. This is something Windows installer lacks. The downside is, only one utility can run at a time and you cannot switch applications (or I don't know how to).&lt;/p&gt;  &lt;p&gt;Anyway I was happy to find the Disk Utility. Loaded it up and I found all my drives and partitions. However I was stumped at the fact that the Disk Utility does not recognize unallocated space in a disk, and thus the space cannot be used to create a new partition. All you can do is redefine the entire layout or reformat an existing partition.&lt;/p&gt;  &lt;p&gt;Well, I booted back to Vista and created an unformatted undefined partition in the 16 GB space. Went back to OS X installer, silently suffering its ridiculously long startup, and I could format this partition to Mac Extended Journalised (yet to find out what a journal does).&lt;/p&gt;  &lt;p&gt;Then I went to installation options. Once again simplicity shines. The core essentials of OS X are grouped into just one item called &amp;quot;Essential System Software,&amp;quot; and are &lt;strong&gt;not&lt;/strong&gt; categorized further.&lt;/p&gt;  &lt;p&gt;Then there is a set of Printer Drivers. Now what's ridiculous is, all these drivers can easily take up 3.43 GB of space, and what's more ridiculous is, they are all installed by default! I mean, you should be allowed to install only the drivers you need, especially since the drivers take a bloating amount of hard disk space!&lt;/p&gt;  &lt;p&gt;Other options were Additional Fonts, Language Translations and X11. That's all! A very simple list. Anyway I installed OS X onto the newly created partition. An optional consistency check was done on the DVD before installation, which took around 10 minutes. Installation took around 20 minutes and everything went well.&lt;/p&gt;  &lt;p&gt;Restart. Set the BIOS to boot from external disk and started it up... fingers crossed...&lt;/p&gt;  &lt;p&gt;&lt;em&gt;*CRASH*&lt;/em&gt;     &lt;br /&gt;MBR Error 3     &lt;br /&gt;MBR Error 1     &lt;br /&gt;Press any key to boot from floppy... &lt;em&gt;[pressed]&lt;/em&gt;     &lt;br /&gt;MBR Error 2     &lt;br /&gt;Press any key to boot from floppy... &lt;em&gt;[the last two lines loop endlessly]&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Oh no, this can't be! Everything was going on so well...&lt;/p&gt;  &lt;p&gt;Emotional side put away, I determined that the installer either did not install a bootloader, or the installed bootloader doesn't work. So I loaded up Vista again and went searching about this error.&lt;/p&gt;  &lt;p&gt;I found some info about running a script in Terminal (one of the utilities) in Mac OS X setup. Got that script and files and jotted down the instructions. This hopefully should solve everything.&lt;/p&gt;  &lt;p&gt;Back to X installer, started up Terminal (oh yes I played with it earlier), changed to Dvorak keyboard (this is important!) Then I tried to follow the instructions. Unfortunately the Terminal in the installer seems overestimated. It does not have commands that are required by the script and the script itself could not be run. Experimenting, I figured how to run the script and it started up. Unluckily again, it didn't really work the way it should. Now instead of the MBR Error, I simply have a blank screen with constant access to the hard disk. It &lt;em&gt;never&lt;/em&gt; changed.&lt;/p&gt;  &lt;p&gt;I also tried other things like creating a new entry in the Vista's boot menu using EasyBCD and loading up chain0 and other files that I thought maybe required. Nothing worked, absolutely nothing.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font size="4"&gt;Day 3&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;I thought up the idea that if I can boot up a Linux live CD, maybe I can make the script run properly and make Mac OS X boot. I tried Parted Magic which has terminal. I had to edit the script a bit to make it on par with Linux, since it was originally designed for the Mac OS X installer. The script now worked better, but it still didn't solve the blank screen problem which remained.&lt;/p&gt;  &lt;p&gt;Giving up on the external hard disk partition, I figured that the only sure-fire way to make this work was to dedicate an entire hard disk to Mac OS X. That way, the hard disk can be redefined using GUID partition table and OS X can be installed &lt;em&gt;AND&lt;/em&gt; run without booting problems. Windows uses MBR partition table, and probably might not support anything else. Linux is also perfectly fine with MBR. But somehow, Mac OS X seems to hate it ;)&lt;/p&gt;  &lt;p&gt;Now I have two options:    &lt;br /&gt;1. Save my hard disk contents as an image or into the external disk, then wipe out my internal hard disk. The drawback is I won't be able to use Windows until I restore the image, and even the restoration is not guaranteed.     &lt;br /&gt;2. Buy a new external hard disk. The drawback is, it costs money! A lot!!&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font size="4"&gt;Day 4&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;I tried to save as an image using Disk Utility in Mac OS X installer, but I could not figure out how I will be restoring it. The Restore tab doesn't accept my hard disk as a destination! I am pretty sure that the hard disk image can probably never be restored and is simply useless. Therefore deleting it.&lt;/p&gt;  &lt;p&gt;Finally I decided to shell out some cash. Well, even if Mac doesn't work, at least I get some extra storage space!&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font size="4"&gt;Day 5&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Did nothing today because I had to attend a function.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font size="4"&gt;Day 6&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Bought a new 160 GB hard disk, with an external casing! Singapore Dollars 105 *OH MY LORD* Anyway I did some asking around and this is the cheapest I could get. And I bought it at the only shop in the whole wide world that charges 2% surcharge for NETS payment; NETS payment usually is free service (you pay the same amount as you would in cash) and has no surcharge.&lt;/p&gt;  &lt;p&gt;Anyway, installed OS X onto the hard disk, with loads of new hope dawning on me. GUID partition table was used, hoping this would solve the problem. Install finished quickly, and I booted...&lt;/p&gt;  &lt;p&gt;*BLANK SCREEN*&lt;/p&gt;  &lt;p&gt;Once again, my hopes were completely shattered. I was heartbroken today more than any other day in the past few. I spent hard cash to get Mac working, but it still doesn't!&lt;/p&gt;  &lt;p&gt;Anyway I switched hard disks and resumed Vista (it was on hibernation ;) and searched for some more info. I found out that Leopard Installer doesn't write the bootloader, which is weird because the older installers do. I also found some option start Terminal in the DVD without starting up the installer, and another one to use a different root device. The option to specify root device means I can start the installed Mac OS X through the DVD.&lt;/p&gt;  &lt;p&gt;Back into the installer, I tried the terminal starting option and checked out fdisk. Turns out I can clean out the hard disk and create an 8MB Darwin Boot partition along with one partition spanning the rest of the disk. So I did and reinstalled (what a long day) Mac OS X on it. Tried it... no hope, still the same.&lt;/p&gt;  &lt;p&gt;I then tried running the installed Mac OS X through the DVD. After a bit of guessing I figured it out and got it up and running! A little progress after 4 days! The Welcome video started playing, but it was nowhere close to being smooth. Then the welcome screen came up, asking for country, keyboard and transfer from old Mac. Skipping the transfer (obviously!) I clicked Continue. My &amp;quot;Mac&amp;quot; hung for a while, then it went blank. Then the Welcome video started playing again! Then back to the country selection. Once again I went through the steps and it repeats. It's like the welcome screen and wizard loops endlessly!&lt;/p&gt;  &lt;p&gt;Argh! I'm almost there! Almost... I remember the squirrel in Ice Age, the scene in which he is almost there reaching out for his nut, then suddenly the wind freezes him! I'm like that. Almost there... frozen!&lt;/p&gt;  &lt;p&gt;I discovered few other things like another source offers a Mac that can be extracted onto a hard disk directly in Windows (no installation). I'm going to try that tomorrow. I'm also thinking of creating a tiny partition at the end of the disk and copying down the install DVD onto both the main partition and the tiny one. The idea is to get the bootloader that's already on the DVD to be written down on the hard disk. Then I will try to install from the second partition onto the first (Gotta be faster than DVD)&lt;/p&gt;  &lt;p&gt;&lt;font size="4"&gt;&lt;strong&gt;&lt;u&gt;Day 7&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;I can't remember much of the day, but I tried the extract to hard disk Mac thing, and it created a 15 GB partition. But it didn't work because it's only for SSE3 processor, and mine is SSE2.&lt;/p&gt;  &lt;p&gt;My new hard disk also started failing SMART test, so now if I want to use it as internal hard disk, I have to bear with pressing F1 key every time I switch on the computer.&lt;/p&gt;  &lt;p&gt;&lt;font size="4"&gt;&lt;strong&gt;&lt;u&gt;A week later&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;I got another version of Mac from another source. This one, everything went well, and I installed Mac into my primary hard disk, where Vista and XP is residing. Fortunately it didn't overwrite the bootloader of my hard disk, so starting Mac OS X was as simple as just adding another entry to the Vista Boot Menu.&lt;/p&gt;  &lt;p&gt;I managed to start up and it works very fine and smoothly. Even the welcome video is very smooth, due to nVidia drivers being used instead of basic drivers. Even my wireless card is being recognised now, because this new version already has the drivers in the DVD.&lt;/p&gt;  &lt;p&gt;But now, here's the problem. Everything works fine for about 10-15 minutes, then suddenly the whole system freezes. The display is frozen, showing what is being shown, the keyboard doesn't work and the whole system responds to absolutely nothing. It always happens, after 10-15 minutes of uptime.&lt;/p&gt;  &lt;p&gt;I'm yet to figure out how I can solve this problem. But, I finally got a working Mac!.. well, almost ;)&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1926575713761843758?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1926575713761843758/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/04/one-man-patience-with-mac-os-x-on-pc.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1926575713761843758'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1926575713761843758'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/04/one-man-patience-with-mac-os-x-on-pc.html' title='One man&amp;#39;s patience with Mac OS X on PC'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-646244859609057898</id><published>2008-02-19T19:24:00.001+05:30</published><updated>2011-09-18T14:31:10.147+05:30</updated><title type='text'>Some things never change (but finally changed)</title><content type='html'>&lt;b&gt;Update:&lt;/b&gt; It did finally change! In Windows 7, the &lt;i&gt;Add Fonts&lt;/i&gt; dialog box is completely missing (or has been made inaccessible). Now, the File menu in the &lt;i&gt;Fonts&lt;/i&gt; folder does not have an &lt;i&gt;Install New Font&lt;/i&gt; option and there's no way to bring up an &lt;i&gt;Add Fonts&lt;/i&gt; dialog box. According to the Windows Help, there are only two ways to install a font. One is to right-click the font and click &lt;i&gt;Install&lt;/i&gt;. The other is to drag the font into the &lt;i&gt;Fonts&lt;/i&gt; folder.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Original Post:&lt;/b&gt; &lt;br /&gt;This has to be the most ridiculous thing about Microsoft Windows. The dialog box below is from Windows 3.1 (earlier?) and still continues to exist even in the lastest Windows Vista in the exact same form. See the drive and folder selection part and icons used there?&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileden.com/files/2006/12/20/534119/Most%20Ridiculous%20Thing%20about%20Microsoft%20Windows.png" target="_blank"&gt;&lt;img alt="Click to Zoom" height="406" src="http://www.fileden.com/files/2006/12/20/534119/Most%20Ridiculous%20Thing%20about%20Microsoft%20Windows.png" width="480" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;Microsoft should do either of the following.   &lt;br /&gt;&lt;ol&gt;&lt;li&gt;Remove this dialog box and the File menu item completely. 99% of people adding new fonts simply drag and drop them into the Fonts folder (or use similar methods).    &lt;/li&gt;&lt;li&gt;If such a feature proves useful, replace this antique dialog box with a standard "Open Files" dialog box which has the ability to select multiple files. See picture below.&lt;/li&gt;&lt;/ol&gt;&lt;a href="http://www.fileden.com/files/2006/12/20/534119/Add%20New%20Font%20Dialog.png" target="_blank"&gt;&lt;img alt="Click to Zoom" height="344" src="http://www.fileden.com/files/2006/12/20/534119/Add%20New%20Font%20Dialog.png" width="480" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-646244859609057898?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/646244859609057898/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/02/some-things-never-change.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/646244859609057898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/646244859609057898'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/02/some-things-never-change.html' title='Some things never change (but finally changed)'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-7476208005616272059</id><published>2008-02-18T21:50:00.001+05:30</published><updated>2008-02-18T21:50:21.883+05:30</updated><title type='text'>Technology continues to improve, but...</title><content type='html'>&lt;p&gt;the keyboard still stays where it is.&lt;/p&gt;  &lt;p&gt;Well, sort of.&lt;/p&gt;  &lt;p&gt;You see all kinds of different keyboards such as multimedia keyboards, gaming keyboards, curved keyboards, split keyboards, foldable keyboards and so on.&lt;/p&gt;  &lt;p&gt;But the most basic thing about the keyboard is the QWERTY layout. All the keyboards you find in your favorite computer store, no matter what special features it has, have this standard layout.&lt;/p&gt;  &lt;p&gt;So what's &lt;strike&gt;wrong&lt;/strike&gt; right about this standard keyboard?&lt;/p&gt;  &lt;p&gt;The QWERTY layout was designed as a quick-fix to solve the jamming problem that occurred in a very early model of typewriters. It was designed in such a way so that the user of the typewriter will not press two adjacent keys one after the other, as this was the source of jamming problem.&lt;/p&gt;  &lt;p&gt;However, the later model of typewriters, and computer keyboards, don't have this jamming problem anymore and pressing two adjacent keys will not jam anything (in the case of typewriter) or has nothing to jam (in the case of keyboard).&lt;/p&gt;  &lt;p&gt;The only thing &amp;quot;right&amp;quot; about this layout is that it has become popular and got standardised. It is a practically random layout with no regard to ergonomics, comfort and repetitive strain injury. The keyboard requires large amounts of finger movement during extensive typing.&lt;/p&gt;  &lt;p&gt;What's better than QWERTY?&lt;/p&gt;  &lt;p&gt;The &lt;em&gt;&lt;strong&gt;all-so-awesome&lt;/strong&gt;&lt;/em&gt; &lt;strong&gt;&lt;font size="4"&gt;Dvorak&lt;/font&gt;&lt;/strong&gt; keyboard layout!&lt;/p&gt;  &lt;p&gt;What's so awesome about this cool layout? It's ergonomically designed, with the objective of minimizing the finger movement of an English typist as much as possible. It greatly reduces the chance of repetitive strain injuries due to extended keyboard layout.&lt;/p&gt;  &lt;p&gt;Mankind, as much as it likes to change, is also afraid of change. Unfortunately this fear means, the acceptance of Dvorak keyboard layout is very rare.&lt;/p&gt;  &lt;p&gt;Many of my friends have seen me use the awesome Dvorak keyboard, but they criticize that it's so strange, troublesome, not easy to set up, and especially that they are unwilling to change. I end up having to set up my laptop with both QWERTY and Dvorak, switching between the two for the sake of my friends.&lt;/p&gt;  &lt;p&gt;Likewise, people are unwilling to change due to them getting used to the randomly designed ergonomically damaging standard QWERTY. Consider it something like eating McDonald's everyday, even though I tell you that it's greasy and unhealthy food. You got so used to the junk food, that you're so not willing to switch to more healthy food. Resistance to changing to Dvorak is something like this. People got so used to the unhealthy junk layout that they are so not willing to change to healthy layout.&lt;/p&gt;  &lt;p&gt;Well, in Dr. August Dvorak's own words, &amp;quot;I'm tired of trying to do something worthwhile for the human race. They simply don't want to change.&amp;quot;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-7476208005616272059?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/7476208005616272059/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/02/technology-continues-to-improve-but.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7476208005616272059'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7476208005616272059'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/02/technology-continues-to-improve-but.html' title='Technology continues to improve, but...'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-6927702892733563091</id><published>2008-01-01T19:17:00.001+05:30</published><updated>2008-01-01T19:17:21.442+05:30</updated><title type='text'>The Dragon (or the over-blown-up balloon?)</title><content type='html'>&lt;p&gt;If you keep blowing air into a balloon, it keeps getting bigger and bigger. But how big can it ever get? How would you solve the problem of the walls getting thinner and weaker? And lastly, how big do &lt;em&gt;&lt;strong&gt;you&lt;/strong&gt;&lt;/em&gt; want it to be?&lt;/p&gt;  &lt;p&gt;Apparently, HP decided to &lt;em&gt;literally&lt;/em&gt; blow up a notebook computer. They nicknamed it &lt;strong&gt;&lt;font size="4"&gt;&amp;quot;The Dragon&amp;quot;&lt;/font&gt;&lt;/strong&gt; and that name matches very well. 20.1&amp;quot; widescreen (WSXGA+ 1680&amp;#215;1050) display. You know how big that is? I saw this notebook &lt;u&gt;for real&lt;/u&gt;, and was asking myself, &amp;quot;Is this a desktop or a laptop?&amp;quot;&lt;/p&gt;  &lt;p&gt;And about getting bigger means weaker, well there are only limited number of units available for sale, because they knew only the &lt;em&gt;&lt;strong&gt;elite and strong&lt;/strong&gt;&lt;/em&gt; would buy such an expensive (SG$ 5,999.00) &lt;em&gt;and&lt;/em&gt; heavy (6.94kg) notebook PC.&lt;/p&gt;  &lt;p&gt;Description and specifications are in the second picture below. For detailed specifications, visit &lt;a title="HP Pavilion HDX9013TX Entertainment Notebook PC (GX918PA) specifications - HP Home &amp;amp; Home Office products" href="http://h10010.www1.hp.com/wwpc/my/en/ho/WF06b/1090709-1116637-1116665-1116665-1116665-80243648-80853218.html" target="_blank"&gt;HP Pavilion website (click here)&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a title="hp-pavilion-hdx-entertainment-notebook-pc-series_400x400" href="http://www.flickr.com/photos/10110367@N05/2153772897/"&gt;&lt;img alt="hp-pavilion-hdx-entertainment-notebook-pc-series_400x400" src="http://static.flickr.com/2228/2153772897_017882aef5.jpg" border="0" /&gt;&lt;/a&gt;&lt;a title="HpPavilion" href="http://www.flickr.com/photos/10110367@N05/2154565966/"&gt;&lt;img alt="HpPavilion" src="http://static.flickr.com/2232/2154565966_04b6f923de.jpg" border="0" /&gt;&lt;/a&gt;    &lt;br /&gt;Price is in Singapore Dollars, approx. US$ 4,145.24&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-6927702892733563091?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/6927702892733563091/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2008/01/dragon-or-over-blown-up-balloon.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6927702892733563091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/6927702892733563091'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2008/01/dragon-or-over-blown-up-balloon.html' title='The Dragon (or the over-blown-up balloon?)'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1701433996120163936</id><published>2007-12-22T23:03:00.001+05:30</published><updated>2007-12-22T23:09:28.881+05:30</updated><title type='text'>Norton sucks - Get over it!</title><content type='html'>&lt;p&gt;I can't believe normal people fall prey for all the nice packaging and advertisements those idiots at &lt;font size="1"&gt;Symantec&lt;/font&gt; make for &lt;font size="1"&gt;Norton Antivirus&lt;/font&gt;. They tell a white lie as though it's the ultimate truth, and people believe it just because it's advertised like &amp;quot;We have the &lt;font size="1"&gt;BEST&lt;/font&gt; anti-virus on earth.&amp;quot; while their product actually &lt;font size="3"&gt;&lt;strong&gt;sucks&lt;/strong&gt;&lt;/font&gt; to the maximum and is in fact the worst you can ever buy.&lt;/p&gt;  &lt;p&gt;1) &lt;font size="1"&gt;Norton Antivirus&lt;/font&gt; is commonly known to slow down computers with their ridiculously designed slow code-base. If you buy a pretty modern normal computer, and try installing &lt;font size="1"&gt;Norton&lt;/font&gt; on it, you'll notice that the computer slows down to being like a snail as soon as u get &lt;font size="1"&gt;Norton&lt;/font&gt; installed.&lt;/p&gt;  &lt;p&gt;2) &lt;font size="1"&gt;Norton&lt;/font&gt; heavily interferes with the proper functioning of not one, not two, but &lt;strong&gt;&lt;u&gt;many&lt;/u&gt;&lt;/strong&gt; popular programs, causing headaches to normal computer users who are not tech-savvy enough to understand what's really happening. This causes them to either blame the problem on the software, or the computer, or &lt;font size="1"&gt;Norton&lt;/font&gt;, or waste their money calling the bloody expensive &lt;font size="1"&gt;Tech Support&lt;/font&gt; lines of &lt;font size="1"&gt;Norton&lt;/font&gt;.&lt;/p&gt;  &lt;p&gt;Guys, I know many of you have been conditioned by the smart brains of the advertising team of &lt;font size="1"&gt;Symantec&lt;/font&gt; that &lt;font size="1"&gt;Norton&lt;/font&gt; is the king of all anti-virus, but you do know that kings are only good in eating loads of food and watching girls dance. Kick the gluttonous king on his butt and get a real soldier, a real knight who fights the real war against viruses and trojans. And I assure you, food &lt;em&gt;(your money)&lt;/em&gt; and girls &lt;em&gt;(speed of your computer)&lt;/em&gt; will not be scarce anymore ;) Get &lt;font size="4"&gt;&lt;a href="http://free.grisoft.com/doc/downloads-products/us/frt/0?prd=aff" target="_blank"&gt;AVG Anti-Virus Free Edition&lt;/a&gt;&lt;/font&gt; for home use: &lt;a href="http://free.grisoft.com/doc/downloads-products/us/frt/0?prd=aff" target="_blank"&gt;Click here!&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1701433996120163936?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1701433996120163936/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/12/norton-sucks-get-over-it.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1701433996120163936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1701433996120163936'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/12/norton-sucks-get-over-it.html' title='Norton sucks - Get over it!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-792642377850630503</id><published>2007-12-21T21:12:00.001+05:30</published><updated>2007-12-21T21:12:07.297+05:30</updated><title type='text'>Inactive Conversation</title><content type='html'>&lt;p&gt;Ever seen this in Windows Live Messenger? I think this is something new:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#ff8080"&gt;This conversation has been inactive and some participants will be removed.&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;And then it randomly removes some participants, I think, until only one (excluding myself) is left.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-792642377850630503?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/792642377850630503/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/12/inactive-conversation.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/792642377850630503'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/792642377850630503'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/12/inactive-conversation.html' title='Inactive Conversation'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3406375746745002201</id><published>2007-12-06T10:12:00.001+05:30</published><updated>2007-12-06T10:12:16.786+05:30</updated><title type='text'>Switching to Windows Live, despite my heavy criticism</title><content type='html'>&lt;p&gt;I totally hated it when the newly introduced &lt;strong&gt;(Integrated) &lt;a href="http://get.live.com/?" target="_blank"&gt;Windows Live&lt;/a&gt; Installer&lt;/strong&gt; would simply not work in my computer. It would hang forever at &amp;quot;Checking for Windows Live programs in your computer.&amp;quot; But a &lt;strong&gt;very kind&lt;/strong&gt; guy saved the life of mine, and everyone else by uploading all the real installers onto a Live SkyDrive (ironically!). If the integrated installer doesn't work for you, you can get all the standalone installers by &lt;a href="http://cid-9e63a4688135fd45.skydrive.live.com/browse.aspx/LiveSuiteEN" target="_blank"&gt;clicking here&lt;/a&gt;. You may need to sign in with your .NET Passport or Windows Live ID.&lt;/p&gt;  &lt;p&gt;Since the installers are named after the class IDs, here is a list to help you find the right one. Note that installing Sign-In Assistant &lt;em&gt;maybe&lt;/em&gt; required for proper functioning of other Live programs.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Sign-In Assistant: {CB5EA99C-8A5B-49F2-9A1A-2EF78BE4DB41} &lt;/li&gt;    &lt;li&gt;Mail: {EDB619FD-4E71-403C-8E99-DFC9CF9DD345} &lt;/li&gt;    &lt;li&gt;Messenger: {508CE775-4BA4-4748-82DF-FE28DA9F03B0} &lt;/li&gt;    &lt;li&gt;Photo Gallery: {AA436FBD-2595-479B-8DDE-E9C36F50D99D} &lt;/li&gt;    &lt;li&gt;Writer: {1F973A7F-3FE4-4D11-A9A2-E869C2899A7D} &lt;/li&gt;    &lt;li&gt;Toolbar: {C6876FE6-A314-4628-B0D7-F3EE5E35C4B4} &lt;/li&gt;    &lt;li&gt;OneCare Family Safety: {4075FCAC-561C-4D4A-BCB5-BA1628CED34B} &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Even though I criticized the Installer so much, I still use 3 Windows Live Programs. In fact I'm typing this post in Windows Live Writer, which is... more about it below.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Windows Live Messenger:&lt;/strong&gt; I'm a heavy chatter, that is, a heavy instant messaging user. Almost all of my friends are on MSN Network, which makes using Windows Live Messenger (the latest name for MSN Messenger) a must. Though I try alternatives like &lt;a href="http://www.trillian.im" target="_blank"&gt;Trillian&lt;/a&gt; and &lt;a href="http://www.meebo.com/" target="_blank"&gt;Meebo&lt;/a&gt; from time to time, I can't live without the Live one (pun unintended).&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Windows Live Writer:&lt;/strong&gt; It's an awesome blog posting and editing program that works so seamlessly with Blogger. You even can see how the post will look like when you're actually typing them out. And you can do everything offline too, in case you're stuck in Africa with no Internet but feel like blogging. There are a lot of plug-ins you can try adding to Live Writer. I used &amp;quot;&lt;a href="http://www.flickr4writer.com/" target="_blank"&gt;Insert Flickr Image&lt;/a&gt;&amp;quot; and &amp;quot;&lt;a href="http://blogs.msdn.com/rahulso" target="_blank"&gt;Insert a smiley!&lt;/a&gt;&amp;quot;     &lt;br /&gt;&lt;img alt="Smile" src="http://messenger.msn.com/MMM2006-04-19_17.00/Resource/emoticons/regular_smile.gif" /&gt;&lt;img alt="Happy" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Windows Live Mail:&lt;/strong&gt; Recently Gmail introduced 5.&lt;em&gt;something&lt;/em&gt; GB of space and IMAP support. IMAP is better that POP3 because it allows full-duplex (two way) communication between client (Live Mail) and server (Gmail), thus enabling the client to be constantly up-to-date with the server seamlessly, and even share features with the server. For example, folders and flagged mails in Live Mail become labels and starred items in Gmail &lt;em&gt;instantly&lt;/em&gt;. Since I've never tried IMAP before (POP3 is a big headache), I gave Windows Live Mail a go (coz I'm bored of Outlook), and so far, I'm &lt;em&gt;really&lt;/em&gt; loving it!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3406375746745002201?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3406375746745002201/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/12/switching-to-windows-live-despite-my.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3406375746745002201'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3406375746745002201'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/12/switching-to-windows-live-despite-my.html' title='Switching to Windows Live, despite my heavy criticism'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8767195807441329497</id><published>2007-11-24T21:12:00.001+05:30</published><updated>2007-11-24T21:12:13.304+05:30</updated><title type='text'>Linux Mint</title><content type='html'>&lt;p&gt;Some screenshots of Linux Mint. Enjoy!&lt;/p&gt;  &lt;p&gt;&lt;a title="Linux - 3D Desktop" href="http://www.flickr.com/photos/10110367@N05/2059249788/"&gt;&lt;img alt="Linux - 3D Desktop" src="http://static.flickr.com/2153/2059249788_f4650c77c0.jpg" align="middle" border="0" /&gt;&lt;/a&gt;     &lt;br /&gt;Linux - 3D Desktop&lt;/p&gt;  &lt;p&gt;&lt;a title="Linux - Minimizing Window" href="http://www.flickr.com/photos/10110367@N05/2059249790/"&gt;&lt;img alt="Linux - Minimizing Window" src="http://static.flickr.com/2373/2059249790_523ccf6ce0.jpg" align="middle" border="0" /&gt;&lt;/a&gt;     &lt;br /&gt;Linux - Minimizing Window&lt;/p&gt;  &lt;p&gt;&lt;a title="Linux - Virtual Desktop" href="http://www.flickr.com/photos/10110367@N05/2059249792/"&gt;&lt;img alt="Linux - Virtual Desktop" src="http://static.flickr.com/2178/2059249792_a3381d48c7.jpg" align="middle" border="0" /&gt;&lt;/a&gt;     &lt;br /&gt;Linux - Virtual Desktop&lt;/p&gt;  &lt;p&gt;&lt;a title="Linux - Moving Window Compression Effect" href="http://www.flickr.com/photos/10110367@N05/2059249794/"&gt;&lt;img alt="Linux - Moving Window Compression Effect" src="http://static.flickr.com/2190/2059249794_9e85130d01.jpg" align="middle" border="0" /&gt;&lt;/a&gt;     &lt;br /&gt;Linux - Moving Window Compression Effect&lt;/p&gt;  &lt;p&gt;&lt;a title="Linux -  Moving Window Stretching Effect" href="http://www.flickr.com/photos/10110367@N05/2059249796/"&gt;&lt;img alt="Linux -  Moving Window Stretching Effect" src="http://static.flickr.com/2154/2059249796_28c7edf407.jpg" align="middle" border="0" /&gt;&lt;/a&gt;     &lt;br /&gt;Linux - Moving Window Stretching Effect&lt;/p&gt;  &lt;p&gt;&lt;a title="Linux - Mint Start Menu" href="http://www.flickr.com/photos/10110367@N05/2059249798/"&gt;&lt;img alt="Linux - Mint Start Menu" src="http://static.flickr.com/2261/2059249798_3a09bdc06c.jpg" align="middle" border="0" /&gt;&lt;/a&gt;     &lt;br /&gt;Linux - Mint Start Menu&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8767195807441329497?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8767195807441329497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/11/linux-mint.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8767195807441329497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8767195807441329497'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/11/linux-mint.html' title='Linux Mint'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5466290200966529192</id><published>2007-11-07T20:35:00.001+05:30</published><updated>2007-11-07T20:35:33.682+05:30</updated><title type='text'>Annoying skipping and chopping problem - Shivering Computer™</title><content type='html'>&lt;p&gt;One day you turn on your computer, start boot into Windows and discover a brand new problem, right from the time the Windows loading bar showed up.&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Booting Windows seems to take longer than last time.&lt;/li&gt; &lt;li&gt;Start-up (after the boot, before the desktop is shown) is very slow.&lt;/li&gt; &lt;li&gt;Windows start-up sound is being very choppy.&lt;/li&gt; &lt;li&gt;Mouse pointer skips a lot when you move it around.&lt;/li&gt; &lt;li&gt;Any video or music that you play becomes choppy.&lt;/li&gt; &lt;li&gt;Basically, the whole computer just freezes, doing the two points above and more, for fraction of a second, every 5-10 seconds.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;If this is your case, there's only one definite solution to this problem. For your reference, I found it in this page: &lt;a href="http://forums.firingsquad.com/firingsquad/board/message?board.id=hardware&amp;amp;thread.id=82373" target="_blank"&gt;Odd XP Problem: Audio and Mouse Skipping and Jittering / Overall system slowness - Hardware Discussions - FiringSquad Forums&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a title="SickComputer-copy" href="http://www.flickr.com/photos/10110367@N05/1903413031/"&gt;&lt;img alt="SickComputer-copy" src="http://static.flickr.com/2105/1903413031_e01582fb76.jpg" border="0"&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;The Prescription (what you need to do):&lt;/p&gt; &lt;ol&gt; &lt;li&gt;In Start Menu (or on Desktop), right click on &lt;em&gt;My Computer &amp;gt; Properties &amp;gt; Hardware &amp;gt; Device Manager&lt;/em&gt;. (Or you can also right click on &lt;em&gt;My Computer &amp;gt; Manage &amp;gt; Device Manager&lt;/em&gt; (under &lt;em&gt;System Tools&lt;/em&gt; on left).&lt;/li&gt; &lt;li&gt;Extend the &lt;em&gt;"IDE ATA/ATAPI Controllers"&lt;/em&gt; group by clicking on the [+] sign.&lt;/li&gt; &lt;li&gt;Right click on &lt;em&gt;"Primary IDE Channel"&lt;/em&gt; and click &lt;em&gt;Uninstall&lt;/em&gt;.&lt;/li&gt; &lt;li&gt;You will be asked to confirm the uninstall. Answer &lt;em&gt;Yes&lt;/em&gt;.&lt;/li&gt; &lt;li&gt;You will then be asked to restart. Answer &lt;em&gt;Yes&lt;/em&gt;. (If computer doesn't do anything, restart manually using Start Menu).&lt;/li&gt; &lt;li&gt;Upon restart (you'll notice faster boot time), Primary IDE Channel and your hard disk drivers will be installed, and you will be asked to restart again. Answer &lt;em&gt;Yes&lt;/em&gt;.&lt;/li&gt; &lt;li&gt;Upon second restart, you'll notice the problem is fully gone for good, plus boot time is much faster.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;I really don't know for sure how Primary IDE Channel is linked with this Shivering Computer™ problem, but from my understanding, I think it is because of IDE channel drivers becoming corrupt due to installation of proprietary Bluetooth drivers or some other software (not sure what). This causes any instance of accessing the hard disk to freeze the computer, because of the corrupt drivers making Windows unable to properly access the hard disk without issues. Reinstalling the hard disk drivers (as you did by steps above) helps restore the drivers to their original version, thus putting an end to this annoying problem.&lt;/p&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5466290200966529192?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5466290200966529192/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/11/annoying-skipping-and-chopping-problem.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5466290200966529192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5466290200966529192'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/11/annoying-skipping-and-chopping-problem.html' title='Annoying skipping and chopping problem - Shivering Computer™'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3552584243385718297</id><published>2007-10-31T15:31:00.002+05:30</published><updated>2008-10-17T12:57:35.028+05:30</updated><title type='text'>Major Update - ASUS A626</title><content type='html'>Okay I got a PDA (Pocket PC) called ASUS A626. It's not a PDA phone though.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3552584243385718297?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3552584243385718297/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/10/major-update-asus-a626.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3552584243385718297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3552584243385718297'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/10/major-update-asus-a626.html' title='Major Update - ASUS A626'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3196153936004098696</id><published>2007-09-01T18:29:00.001+05:30</published><updated>2008-05-20T03:58:39.987+05:30</updated><title type='text'>Original Vista Sidebar in Windows XP or 2003</title><content type='html'>&lt;p&gt;&lt;strong&gt;&lt;u&gt;UPDATE:&lt;/u&gt;&lt;/strong&gt; Information gets outdated as times goes. It seems there is an easier, much faster installer for Vista Sidebar in XP. &lt;a href="http://www.wincert.net/forum/index.php?showtopic=1442" target="_blank"&gt;You can get it here.&lt;/a&gt; It seems to do all the steps below automatically for you, and may even have the latest versions of the components including the sidebar.&lt;/p&gt;  &lt;p&gt;You may have experimented with sidebar mock-ups like Thoosje Sidebar or Yahoo Widgets, but found them to be not as good as Windows Vista Sidebar. Well, now you can get the original Vista Sidebar working in your Windows XP or 2003.&lt;/p&gt;  &lt;p&gt;I have zipped up all the required files into one ZIP file, which can be downloaded by &lt;a href="http://www.fileden.com/files/2006/12/20/534119/My%20Documents/Vista%20Sidebar%20for%20XP.zip"&gt;clicking here&lt;/a&gt;. There are some PDF files in the ZIP file as well, in case you need more information.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Before you begin,&lt;/u&gt;&lt;/strong&gt; you must make sure you have Windows Media Player 11 and Internet Explorer 7 installed in your system. You can find out by opening these programs and going to &amp;quot;Help &amp;gt; About&amp;quot; or a similar menu item. If they are not installed, you can download them here: &lt;a href="http://www.microsoft.com/windows/windowsmedia/player/download/download.aspx" target="_blank"&gt;Windows Media Player 11&lt;/a&gt; and &lt;a href="http://www.microsoft.com/windows/ie/downloads/default.mspx" target="_blank"&gt;Internet Explorer 7&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Step 1. (XP only)&lt;/u&gt; Install Wireless LAN API Hotfix KB918997&lt;/strong&gt;    &lt;br /&gt;Run the included file &amp;quot;1. XP Wireless LAN API (KB918997).exe&amp;quot; to install the hotfix. Follow on-screen instructions. Please note that this is required in Windows XP only. Windows 2003 does not require this hotfix. You can also download it by &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=52A43BAB-DC4E-413F-AC71-158EFD1ADA50&amp;amp;displaylang=en" target="_blank"&gt;clicking here&lt;/a&gt;. A system restart after the installation of the hotfix is mandatory. &lt;strong&gt;&lt;u&gt;Do not&lt;/u&gt;&lt;/strong&gt; skip the restart even though you are allowed to.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Step 2.&lt;/u&gt; Install Visual C++ 2005 Redistributable Package&lt;/strong&gt;    &lt;br /&gt;Run the included file &amp;quot;2. vcredist_x86.exe&amp;quot; to install the package. Follow on-screen instructions. You can also download it by &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=32BC1BEE-A3F9-4C13-9C99-220B62A191EE&amp;amp;displaylang=en" target="_blank"&gt;clicking here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Step 3.&lt;/u&gt; Install Alky for Applications&lt;/strong&gt;    &lt;br /&gt;Open the included ZIP file &amp;quot;3. AfA_final.zip,&amp;quot; browse to either XP or 2003, depending on your version of Windows, and open the file &amp;quot;Installer.msi&amp;quot; to install Alky. Follow on-screen instructions. You can also download the latest version &lt;a href="http://www.fallingleafsystems.com/compatibility/" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Step 4.&lt;/u&gt; Install Vista Sidebar (the BIG step ;)&lt;/strong&gt;    &lt;br /&gt;Run the included file &amp;quot;4. Windows_Sidebar_Installer_August_1-2007.exe&amp;quot; to install the Sidebar application. Follow on-screen instructions. &lt;strong&gt;&lt;u&gt;Do not&lt;/u&gt;&lt;/strong&gt; restart or try to open the Windows Sidebar as you will not be able to proceed to the next two steps if the Sidebar is running. You can also download the installer &lt;a href="http://www.wincert.net/forum/index.php?s=1933ddef6f82df5fbb9c4a3103165f24&amp;amp;showtopic=505" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Step 5.&lt;/u&gt; Copy the included fonts to the Windows Fonts folder&lt;/strong&gt;    &lt;br /&gt;Extract the four files from the &amp;quot;5. Copy to Fonts.zip&amp;quot; ZIP file. Open Control Panel &amp;gt; Fonts (or browse to C:\Windows\Fonts). Find the &lt;em&gt;&lt;strong&gt;four&lt;/strong&gt;&lt;/em&gt; fonts named Segoe UI (Regular, &lt;strong&gt;Bold&lt;/strong&gt;, &lt;em&gt;&lt;strong&gt;Bold Italic&lt;/strong&gt;&lt;/em&gt; and &lt;em&gt;Italic&lt;/em&gt;). If you open any one of them, you will get a completely blank font, which is the reason behind this step. Delete all the &lt;em&gt;four&lt;/em&gt; fonts. Now drag and drop the four extracted files into the Fonts folder (or copy and paste them).&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Step 6.&lt;/u&gt; Update the Sidebar to the latest version (this is long but &lt;u&gt;can be skipped&lt;/u&gt; :D )&lt;/strong&gt;    &lt;br /&gt;Extract all the files and folders from &amp;quot;6. Sidebar.zip&amp;quot; ZIP file. Open My Computer and go to &lt;em&gt;C:&lt;/em&gt; drive &amp;gt; &lt;em&gt;Program Files&lt;/em&gt; folder &amp;gt; &lt;em&gt;Windows Sidebar&lt;/em&gt; folder (or browse to C:\Program Files\Windows Sidebar). If necessary, back-up everything except &lt;em&gt;Gadgets&lt;/em&gt; and &lt;em&gt;Shared Gadgets&lt;/em&gt; folders. Copy the files you extracted before into this folder (use drag-drop or copy/paste), replacing all existing files and folders. (You can also obtain the latest version of these files from a Windows Vista installation.)&lt;/p&gt;  &lt;p&gt;In &lt;em&gt;C:\Program Files\Windows Sidebar,&lt;/em&gt; after you copied the new files, right-click the file &amp;quot;sbdrop.dll&amp;quot; and click &amp;quot;Patch Vista library...&amp;quot; Do the same for &amp;quot;wlsrvc.dll&amp;quot;. Right-click the file &amp;quot;sidebar.exe&amp;quot; and select &amp;quot;&lt;strong&gt;Patch and&lt;/strong&gt; Run Vista executable...&amp;quot;. Within some time, you'll see the sidebar and a new tray icon in the notification area. Right-click &lt;em&gt;this&lt;/em&gt; Windows Sidebar icon and click &amp;quot;Exit&amp;quot;. Confirm the exit by selecting &amp;quot;Start Sidebar when Windows starts&amp;quot; and clicking &amp;quot;Exit Sidebar&amp;quot;.&lt;/p&gt;  &lt;p&gt;Open &lt;em&gt;Command Prompt&lt;/em&gt; by clicking Start &amp;gt; Run, typing &lt;strong&gt;cmd&lt;/strong&gt; and clicking OK. Copy the following set of commands and paste them in &lt;em&gt;Command Prompt&lt;/em&gt; by right-clicking the title-bar and selecting Edit &amp;gt; Paste (You cannot press Ctrl-V in &lt;em&gt;Command Prompt&lt;/em&gt; to paste).&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;cd &amp;quot;%ProgramFiles%\Windows Sidebar\&amp;quot;     &lt;br /&gt;sidebar.exe /RegServer      &lt;br /&gt;.\regsvr32.exe sbdrop.dll      &lt;br /&gt;.\regsvr32.exe wlsrvc.dll      &lt;br /&gt;exit&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Two dialog boxes will appear. They should say that the operations had succeeded. Click OK to both of them, and press Enter at the &lt;em&gt;Command Prompt&lt;/em&gt; to close it (the &amp;quot;exit&amp;quot; command is waiting at the prompt).&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;That's it.&lt;/u&gt;&lt;/strong&gt; You can run Windows Sidebar by opening the shortcut on the Desktop. It will also run at start-up unless you change the options.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3196153936004098696?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3196153936004098696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/09/original-vista-sidebar-in-windows-xp-or.html#comment-form' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3196153936004098696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3196153936004098696'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/09/original-vista-sidebar-in-windows-xp-or.html' title='Original Vista Sidebar in Windows XP or 2003'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3405773340448106088</id><published>2007-08-17T04:10:00.001+05:30</published><updated>2007-12-04T12:43:22.833+05:30</updated><title type='text'>Easier way to link your friends in your blog</title><content type='html'>&lt;p&gt;My friends have been complaining about me not linking their blogs in my blog. I had decided not to link anyone because it involves editing the template for every addition or deletion of a link, which is not a convenient process. Namely, I have to log in to Blogger, choose the right blog, go to it's template HTML, scroll down and find the links, edit the HTML code and make sure everything is fine.&lt;/p&gt;  &lt;p&gt;Then I started thinking of ways to simplify this. First I thought of creating a separate page and storing it in an online server, then embedding it with IFRAME tag of HTML code. But I abandoned this idea since it makes the page dirty with a frame box, and may fail in certain situations. Moreover it still has the HTML coding.&lt;/p&gt;  &lt;p&gt;Then I thought of using the power of JavaScript. So I came up with this idea of a script that automatically creates the list of blogs that I want to link.&lt;/p&gt;  &lt;p&gt;First, you have to create the script. To make things simple, I have a template script, with which you can start off. You can &lt;a href="http://send2adtc.googlepages.com/template.js" target="_blank"&gt;download it by clicking here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;You will be downloading a file called "template.js", which can be renamed to anything else, for example "filename.js", but the extension ".js" (if you see any) must remain. You can open the file in Notepad. The instructions to add the links are available in the file itself, so I hope I don't need to repeat them. There are some examples included to give you an idea of how things should be.&lt;/p&gt;  &lt;p&gt;Next you will have to upload this file to an online server. The server must allow you to directly access your file, that is, you don't need to go through web pages to access the file. If you have &lt;a href="http://mail.google.com/" target="_blank"&gt;a Gmail account&lt;/a&gt; or a Google account, you can upload it to &lt;a href="http://pages.google.com/" target="_blank"&gt;Google Pages&lt;/a&gt;. If not, you can create a &lt;a href="https://www.google.com/accounts/NewAccount" target="_blank"&gt;Google account&lt;/a&gt; or &lt;a href="http://mail.google.com/mail/signup" target="_blank"&gt;Gmail account&lt;/a&gt; for free. Once uploaded, you will have to edit your blog template and include a code to make this work. The following code should be placed wherever you want the list to appear:&lt;/p&gt;  &lt;p&gt;&lt;span style="font-family:Lucida Console;"&gt;&amp;lt;script src="JS-FILE-URL-HERE"&amp;gt;&amp;lt;/script&amp;gt;    &lt;br /&gt;&amp;lt;noscript&amp;gt;JavaScript is either disabled or unsupported in your browser. &amp;lt;a href="http://thehunk.blogspot.com/2007/08/easier-way-to-link-your-friends-in-your.html"&amp;gt;[Easier Linking]&amp;lt;/a&amp;gt;&amp;lt;/noscript&amp;gt;&lt;/span&gt; &lt;/p&gt;  &lt;p&gt;In place of "JS-FILE-URL-HERE" you must put the URL address of the file you had uploaded. Now, whenever you want to add a new link, simply edit the local copy of the file and re-upload it to Google Pages or wherever you had uploaded originally. You can always download the file from Google Pages if you don't have a local copy.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3405773340448106088?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3405773340448106088/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/08/easier-way-to-link-your-friends-in-your.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3405773340448106088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3405773340448106088'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/08/easier-way-to-link-your-friends-in-your.html' title='Easier way to link your friends in your blog'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3587175970389102504</id><published>2007-08-12T11:01:00.001+05:30</published><updated>2007-08-12T11:01:27.390+05:30</updated><title type='text'>Hey, why not send me a TXT through mobiK?</title><content type='html'>&lt;font size="2"&gt;Hi &lt;/font&gt; &lt;p&gt;&lt;font size="2"&gt;Can you join me on mobiK? It's this site offering free TXT messaging. Once you register online - which is REALLY easy - then all our TXT's are free. Plus if you get anyone else to join, then those TXT's are free as well.&lt;/font&gt;  &lt;p&gt;&lt;font size="2"&gt;The best thing is we can TXT from PC to mobile as well as between mobiles. It's really easy to use and takes about three minutes to sign up.&lt;/font&gt;  &lt;p&gt;&lt;font size="2"&gt;Also, they have this deal - whenever you invite new members or get involved with their promotions, they give you some 'K' which you can exchange for all kinds of stuff at their online store.&lt;/font&gt;  &lt;p&gt;&lt;a href="http://www.mobik.com/mobik/client/?do=app.user_registration_step1&amp;amp;inv_id=5483461"&gt;&lt;strong&gt;&lt;font size="4"&gt;Click here to join&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;  &lt;p&gt;&lt;font size="2"&gt;Arun&lt;/font&gt;  &lt;p&gt;&lt;font size="2"&gt;PS.&lt;/font&gt;  &lt;p&gt;&lt;font size="2"&gt;SMS me soon okay? :) ~ADTC&lt;/font&gt;  &lt;p&gt; &lt;div align="center"&gt;&lt;font size="2"&gt;&lt;a href="http://www.mobik.com/mobik/client/?inv_id=5483461" target="_blank"&gt;visit mobiK.com&lt;/a&gt; | &lt;a href="http://www.mobik.com/mobik/client/?do=app.show_terms&amp;amp;inv_id=5483461" target="_blank"&gt;terms &amp;amp; conditions&lt;/a&gt; | &lt;a href="http://www.mobik.com/mobik/client/?do=app.show_privacy&amp;amp;inv_id=5483461" target="_blank"&gt;privacy policy&lt;/a&gt; | &lt;a href="http://www.mobik.com/mobik/client/?do=app.show_contact&amp;amp;inv_id=5483461" target="_blank"&gt;contact us&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3587175970389102504?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3587175970389102504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/08/hey-why-not-send-me-txt-through-mobik.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3587175970389102504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3587175970389102504'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/08/hey-why-not-send-me-txt-through-mobik.html' title='Hey, why not send me a TXT through mobiK?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1059719973804827164</id><published>2007-08-07T06:23:00.001+05:30</published><updated>2007-08-07T06:23:38.128+05:30</updated><title type='text'>What about UAC for restarting?</title><content type='html'>&lt;p&gt;Vista needs permission for trivial stuff that the user already informs it that he/she wants to do. I had been using Vista on my friend's laptop for about half an hour, and I can tell you, I clicked "Continue" in the User Access Control dialog box at least 10 times.&lt;/p&gt; &lt;p&gt;On the contrary, Vista does not permission to do something that I DON'T want it to do! Like a restart after installation of updates. Vista can give you warning any time of the day that it's going to restart in 5 minutes, and it DOES NOT need your permission to restart. Microsoft already gave it the permission! You have no choice but to save your work and close all stuff and either wait for the stupid timer to complete or click "Restart Now". There is no way you can cancel the restarting!&lt;/p&gt; &lt;p&gt;Check this out: &lt;a href="http://blogs.zdnet.com/Berlind/?p=698" target="_blank"&gt;Tech Shakedown #4: Should Vista be able to force an unwanted reboot when it wants to?&lt;/a&gt;&lt;/p&gt; &lt;p&gt;For now, I'll stick to XP, which is so much more easier to use than this 'Wow' junk. I hate being interrupted by 'Wow' dialogs every 5 minutes, asking permission that's already given. And I even&amp;nbsp;HATE to the max if 'Wow' force-restarts the computer without my permission or consent!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1059719973804827164?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1059719973804827164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/08/what-about-uac-for-restarting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1059719973804827164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1059719973804827164'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/08/what-about-uac-for-restarting.html' title='What about UAC for restarting?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-834363520234637943</id><published>2007-08-06T21:30:00.001+05:30</published><updated>2007-08-06T21:30:56.523+05:30</updated><title type='text'>Free Audio Pack</title><content type='html'>&lt;p&gt;Just want to post a quick post about this Free converter I found that is pretty useful!&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.download.com/Free-Mp3-Wma-Converter-Ripper-Cutter/3000-2140_4-10703339.html?tag=lst-3-2" target="_blank"&gt;Download it here.&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-834363520234637943?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/834363520234637943/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/08/free-audio-pack.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/834363520234637943'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/834363520234637943'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/08/free-audio-pack.html' title='Free Audio Pack'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8160730553620364000</id><published>2007-07-17T17:24:00.001+05:30</published><updated>2007-07-17T17:24:03.158+05:30</updated><title type='text'>Mozilla Firefox</title><content type='html'>&lt;p&gt;I switched to Mozilla Firefox recently because Internet Explorer always crashed when&amp;nbsp;I closed it. I really like the streamlining of Internet Explorer 7 and have done the same to Firefox. Surprisingly, Firefox can be even more streamlined than IE7! Here's a screenshot of my Firefox. The menu appears when you click on the only icon on the toolbar.&lt;/p&gt; &lt;p&gt;&lt;a title="firefox-ss" href="http://www.flickr.com/photos/10110367@N05/836012689/"&gt;&lt;img alt="firefox-ss" src="http://static.flickr.com/1153/836012689_fa2abd4ae6.jpg" border="0"&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;A few extensions and customizations to achieve this:&lt;/p&gt; &lt;p&gt;Hiding the menu bar and displaying only the menu icon:&lt;br&gt;&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/3895" target="_blank"&gt;Download Personal Menu&lt;/a&gt;&lt;br&gt;You can hide the menu bar like you would hide any toolbar. View &amp;gt; Toolbars &amp;gt; Menu bar.&lt;br&gt;Choose these options:&lt;br&gt;- Show menus toolbar temporarily by pressing the Alt key: ON&lt;br&gt;- Warn when hiding the Menus toolbar: OFF&lt;br&gt;- Integrate into the menu-switching feature of Menu Bar: OFF&lt;br&gt;- Apply current theme style: ON&lt;br&gt;- Hide drop-marker: ON&lt;br&gt;Rearrange the menu in the "Edit Menu Button" tab to make it look the same as my screenshot. (All these options are of your own preference, no need to strictly follow.)&lt;/p&gt; &lt;p&gt;Removing the Go button in the Address Bar:&lt;br&gt;Go to "about:config" in your Firefox Address Bar (or you can click the Configuration option in your Personal Menu!)&lt;br&gt;Type in "gobutton" in the Filter bar to quickly find the required option.&lt;br&gt;Double-click the option called "browser.urlbar.hideGoButton" until it's value changes to True. (You maybe prompted, for which you can just select True and click OK.)&lt;/p&gt; &lt;p&gt;Tab Bar Customizations:&lt;br&gt;&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/1122" target="_blank"&gt;Download Tab Mix Plus&lt;/a&gt;&lt;br&gt;There are a lot of options, I can't list every one of them, but in summary:&lt;br&gt;- The tab bar should be at the bottom (or top, again this is personal preference). I like it to be at the bottom because it's similar to the Windows Taskbar.&lt;br&gt;- The close button should be only in the current tab, and nowhere else.&lt;br&gt;- There should not be any New Tab button. Instead of this, it should be set that double-clicking on the Tab Bar will create a new tab and right-click menu of the tab bar has a "New Tab" option.&lt;br&gt;- Select only required entries for the right-click menus under the Menu section. I like the "Duplicate Tab" option a lot. Very handy when you want to keep a copy of a page you're viewing while going back in History.&lt;br&gt;- Try the Single Window Mode.&lt;/p&gt; &lt;p&gt;Status Bar cleanup:&lt;br&gt;For each of the Add-ons you have installed that would show an icon in the status bar by default, check for an option to disable it. I disabled AdBlock Plus and GreaseMonkey icons even though I have these extensions installed, because the icons are useless to me. The green P is QuickProxy icon, which I like to keep because clicking on it will allow me to quickly and easily turn off my proxy settings in Firefox.&lt;/p&gt; &lt;p&gt;"It's so streamlined, it seems to make Firefox unusable!" If that's your comment about it, here are a few tips on using Firefox streamlined:&lt;br&gt;- When your hands are near your keyboard, simply hit the Backspace key for going Back. This may not work in some rare cases, so if that happens, try Alt-Left (Alt-Right for Forward) or do the next one:&lt;br&gt;- Right-click on empty space or text on the page with nothing selected. The menu that appears will give you immediate access to Back and Forward items. Reload option&amp;nbsp;and Bookmark option can also be found in this menu. Once you get used to this, you'll find it much faster than clicking the buttons in the toolbar.&lt;br&gt;- Pressing Ctrl-T will also open a new tab. You can easily set TMP such that&amp;nbsp;double-clicking on the tab bar or any tab to open a new tab.&lt;/p&gt; &lt;p&gt;Last, but not the least, EXPERIMENT! TMP extension and Personal Menu,&amp;nbsp;both have a lot of options for you to choose from. Experiment and find out what is best for you. What I said above are my preferences, they need not be yours. Maybe you would find something else to work better for you!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8160730553620364000?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8160730553620364000/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/07/mozilla-firefox.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8160730553620364000'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8160730553620364000'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/07/mozilla-firefox.html' title='Mozilla Firefox'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-7335609383205629967</id><published>2007-07-16T16:29:00.001+05:30</published><updated>2007-07-16T16:29:33.544+05:30</updated><title type='text'>Windows Live Writer Beta</title><content type='html'>&lt;p&gt;I'm posting this from Windows Live Writer. It's even better than Word 2007 and a lot better than the Blogger website's own editor. Although, like Word 2007, WLW also does not have a direct support for uploading images to Blogger, you can insert images using Flickr.&lt;/p&gt; &lt;p&gt;Download WLW here: &lt;a title="http://get.live.com/betas/writer_betas" href="http://get.live.com/betas/writer_betas"&gt;http://get.live.com/betas/writer_betas&lt;/a&gt;&lt;/p&gt; &lt;p&gt;To use Flickr, you need to also download the Flickr4Writer plugin here:&lt;br&gt;&lt;a title="http://gallery.live.com/liveItemDetail.aspx?li=9cc421ec-b22e-45b6-98c4-3fae3846705e&amp;amp;bt=9&amp;amp;pl=8" href="http://gallery.live.com/liveItemDetail.aspx?li=9cc421ec-b22e-45b6-98c4-3fae3846705e&amp;amp;bt=9&amp;amp;pl=8"&gt;http://gallery.live.com/liveItemDetail.aspx?li=9cc421ec-b22e-45b6-98c4-3fae3846705e&amp;amp;bt=9&amp;amp;pl=8&lt;/a&gt;&lt;br&gt;Now you'll find "Insert Flickr Image" option on the sidebar of Windows Live Writer. Please note that uploaded photos must be public otherwise you won't be able to find them when searching with the plugin. Sign up for Flickr at &lt;a href="http://flickr.com"&gt;http://flickr.com&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;To easily upload images to Flickr, you can use the Windows XP's built-in File Publishing Wizard. You must first set it up to show Flickr by running this REG file:&lt;br&gt;&lt;a title="http://www.flickr.com/tools/wizard.reg" href="http://www.flickr.com/tools/wizard.reg"&gt;http://www.flickr.com/tools/wizard.reg&lt;/a&gt;&lt;br&gt;Now you can simply select the files you want to upload, then in the sidebar under "File and Folder Tasks", click "Publish this file (the selected items) to the Web".&lt;br&gt;I believe this solution would also work in Vista though I have not tried it.&lt;/p&gt; &lt;p&gt;For those with other operating systems (Linux/Mac/Windows 98/XP/2000/Vista), you can find more uploading tools here: &lt;a title="http://www.flickr.com/tools/" href="http://www.flickr.com/tools/"&gt;http://www.flickr.com/tools/&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Of course you can always manually upload pictures by logging into Flickr in your web browser. That's it for now.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-7335609383205629967?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/7335609383205629967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/07/windows-live-writer-beta.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7335609383205629967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7335609383205629967'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/07/windows-live-writer-beta.html' title='Windows Live Writer Beta'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-2673538132885413755</id><published>2007-06-13T17:27:00.001+05:30</published><updated>2007-06-13T17:28:52.237+05:30</updated><title type='text'>Want to know more about your computer?</title><content type='html'>Try CPU-Z, it will give you detailed (read: geeky) information about the CPU, Cache, Mainboard, Total Memory and Individual Memory Modules. Very useful software. Download the software &lt;a href="http://www.cpuid.com/download/cpu-z-140.zip"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-2673538132885413755?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/2673538132885413755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/06/want-to-know-more-about-your-computer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2673538132885413755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/2673538132885413755'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/06/want-to-know-more-about-your-computer.html' title='Want to know more about your computer?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3533798204012754105</id><published>2007-06-13T09:22:00.000+05:30</published><updated>2007-06-13T09:31:03.188+05:30</updated><title type='text'>Remember Year 2000?</title><content type='html'>&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;table border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="listItem"&gt;&lt;p&gt;&lt;b&gt; /YEAR=&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="listBullet" valign="top"&gt;•&lt;/td&gt;&lt;td class="listItem"&gt;&lt;p&gt;Instructs the Windows core time function to ignore the year that the computer's real-time clock reports and instead use the one indicated. Thus, the year used in the switch affects every piece of software on the system, including the Windows kernel. Example: /YEAR=2001. (This switch was created to assist in Y2K testing.)&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;table border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="listItem"&gt;&lt;blockquote&gt;From: http://www.microsoft.com/technet/sysinternals/information/bootini.mspx&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;LOL. It seems so funny when we think back now to the year 2K, and all the confusions and predictions we had about changing from 1999 to 2000. And imagine having to change boot.ini every year after 2000! Thank God none of those happened, not even the silliest prediction about Y2K. What predictions they had! I think the two most popular ones are: 1) The world's going to end (plus 'Jesus is coming back' among some Christians) 2) All computers and digital devices would suddenly stop working... Good ole days!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3533798204012754105?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3533798204012754105/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/06/year-instructs-windows-core-time.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3533798204012754105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3533798204012754105'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/06/year-instructs-windows-core-time.html' title='Remember Year 2000?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1188538687535630077</id><published>2007-06-13T07:11:00.000+05:30</published><updated>2008-11-12T21:11:42.465+05:30</updated><title type='text'>Disabling Physical Address Extension</title><content type='html'>&lt;p&gt;&lt;strong&gt;&lt;u&gt;Update for Windows Vista&lt;/u&gt; (Read original article below first.)&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Windows Vista does not have a boot.ini and uses a new form of boot loader. The official way to edit the boot settings is to use the included &amp;quot;bcdedit.exe&amp;quot; command line tool. However, using this tool is not easy and requires an advanced knowledge about using the Command Prompt. A wrong command could create serious problems and even render your computer unbootable.&lt;/p&gt;  &lt;p&gt;NeoSmart Technologies has a tool called &lt;a target="_blank" href="http://neosmart.net/dl.php?id=1"&gt;EasyBCD&lt;/a&gt; which allows you to make changes to the boot loader of a Vista system, just as easily as you would edit boot.ini in an XP system. It provides a GUI front to the bcdedit.exe command line tool, making it very easy to enable or disable boot options. You can even install EasyBCD in Windows XP, if you have your system configured to dual-boot with Vista.&lt;/p&gt;  &lt;p&gt;To disable PAE on Windows Vista, download, install and run EasyBCD. In the 'Advanced Options' page of EasyBCD, Change &amp;quot;DEP/NoExecute&amp;quot; to 'Always Off,' &lt;strong&gt;uncheck&lt;/strong&gt; &amp;quot;Enable PAE (Physical Address Extension)&amp;quot; and click &amp;quot;Apply Settings.&amp;quot;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Original Article for Windows XP&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Have you noticed if you have a line that says &amp;quot;&lt;span style="font-weight: bold"&gt;Physical Address Extension&lt;/span&gt;&amp;quot; in your &lt;span style="font-weight: bold"&gt;System Properties&lt;/span&gt; or System Information? System Properties can be seen by right-clicking My Computer and clicking Properties.    &lt;br /&gt;    &lt;br /&gt;PAE is a pre-requisite for Data Execution Prevention. By doing some research, I have found out that you only require PAE if you meet at least one of the two conditions below. You can safely disable PAE if you don't meet them.    &lt;br /&gt;    &lt;br /&gt;1) You have more than (but not equal to) 4 GB of RAM. (I only have 1 GB, just recently upgraded).    &lt;br /&gt;2) You &lt;span style="font-weight: bold"&gt;want&lt;/span&gt; to use DEP capabilities of your processor. (I don't really think DEP is useful at all, I feel it's more harmful than useful as it can crash any program that it suspects. I'd rather trust a full-fledged anti-virus program than DEP.)    &lt;br /&gt;In other cases, it's best to turn PAE off as it will increase processing performance and hard drive access speeds.    &lt;br /&gt;    &lt;br /&gt;Many people have asked how to turn off PAE, but not many have found definite solutions. It is because of the confusion of the &lt;span style="font-weight: bold"&gt;/PAE&lt;/span&gt; attribute in &lt;span style="font-weight: bold"&gt;boot.ini&lt;/span&gt; file present in the root of the C drive (or wherever your Windows is installed). This option is most likely &lt;span style="font-weight: bold"&gt;not&lt;/span&gt; present in your boot.ini file. Turning PAE off is very simple though. You just need to change the /NoExecute=OptIn or /NoExecute=OptOut option to &lt;span style="font-weight: bold"&gt;/NoExecute=AlwaysOff&lt;/span&gt; and save boot.ini file. This will disable DEP, and in turn, it will also disable PAE because if DEP is not enabled, PAE is not required anymore.    &lt;br /&gt;    &lt;br /&gt;Restart your computer and check if PAE is still enabled. Mine was immediately disabled, but if for some strange reason (provided you have 4GB or below of RAM) it is still enabled, you can also try adding the option &lt;span style="font-weight: bold"&gt;/NoPAE&lt;/span&gt; to the same line as the /NoExecute option. But be warned that this forces PAE to be disabled, even when Windows determines PAE is required for things other than DEP.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1188538687535630077?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1188538687535630077/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/06/disabling-physical-address-extension.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1188538687535630077'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1188538687535630077'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/06/disabling-physical-address-extension.html' title='Disabling Physical Address Extension'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3267542121496324374</id><published>2007-06-06T20:36:00.000+05:30</published><updated>2007-06-06T20:42:23.762+05:30</updated><title type='text'>Joost, the hottest TV!</title><content type='html'>Joost! That's nothing like your average Internet TV application. It's super hot, with loads of channels for free! And the video is so high-quality you'd think you're watching a VCD or even an actual TV. Moreover the interface is very slim and slick. There are a few bugs in the current beta, but I love it!&lt;br /&gt;&lt;br /&gt;I only hope that even after they go out of beta and release the software, they would keep the software and service free, and most (if not all) of the channels free to watch. And I hope that there will be more and more channels including regular TV channels. Right now I have not found any of the regular TV channels screening in Joost. There are also no technology-related channels like the Discovery on real TV.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.joost.com"&gt;http://www.joost.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Anyone want invites, contact me.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3267542121496324374?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3267542121496324374/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/06/joost-hottest-tv.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3267542121496324374'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3267542121496324374'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/06/joost-hottest-tv.html' title='Joost, the hottest TV!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8492004237376470527</id><published>2007-05-19T08:48:00.000+05:30</published><updated>2007-05-19T08:56:32.488+05:30</updated><title type='text'>Self-destruction</title><content type='html'>Go to &lt;a href="http://www.netdisaster.com/go.php?mode=bomb&amp;destruction=massive&amp;amp;sound=on&amp;amp;url=http://www.netdisaster.com/"&gt;this link&lt;/a&gt; ... enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8492004237376470527?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8492004237376470527/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/05/self-destruction.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8492004237376470527'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8492004237376470527'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/05/self-destruction.html' title='Self-destruction'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8143210423487817467</id><published>2007-05-09T21:19:00.000+05:30</published><updated>2007-05-09T21:20:18.507+05:30</updated><title type='text'>Joost invitation</title><content type='html'>I want a Joost invitation. Can anyone give me?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8143210423487817467?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8143210423487817467/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/05/joost-invitation.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8143210423487817467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8143210423487817467'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/05/joost-invitation.html' title='Joost invitation'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-8093879240622550286</id><published>2007-04-27T16:34:00.000+05:30</published><updated>2007-04-27T16:41:56.573+05:30</updated><title type='text'>Running Linux on Windows</title><content type='html'>I'm currently running Linux on Windows XP. In fact, I'm typing this inside Linux, which is running through VMWare Player. It's a cool software that virtualizes an entire PC inside my computer enabling me to run Linux parallel to Windows. I did some research on doing so and found another software called CoLinux. It seemed promising but had to do a lot of setup and that was a big headache. And it didn't work.So I turned to this software. It's cool and I have a running "Damn Small Linux" distro right inside Windows XP. I can switch between Linux and Windows any time. There is another one called andLinux which supposedly should work straight out of the box though it's based on CoLinux.&lt;br /&gt;&lt;br /&gt;That's it for now. I'm also using Qwerty to Dvorak Online Converter since the Linux distro is in Qwerty mode, and changing it to Dvorak doesn't work until restart, and nothing is saved, so on restart it will revert to qwerty anyway.&lt;br /&gt;&lt;br /&gt;Thanks for reading. Take care.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-8093879240622550286?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/8093879240622550286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/04/running-linux-on-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8093879240622550286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/8093879240622550286'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/04/running-linux-on-windows.html' title='Running Linux on Windows'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-7715500997225917749</id><published>2007-04-23T18:16:00.000+05:30</published><updated>2007-04-23T18:23:12.637+05:30</updated><title type='text'>March and April Updates</title><content type='html'>Microsoft Bob - A failed attempt of Microsoft at creating a "user-friendly" software. Rare to get now. It was developed it the 1990s. Search for it and if you can get it, do try. Little kids will like it, as it will be a fun way for them to use your computer.&lt;br /&gt;&lt;br /&gt;RiverPast Video Cleaner Pro - What I use to convert videos from one format to another. User friendly and straight forward. For simple as well as advanced users.&lt;br /&gt;&lt;br /&gt;Windows Defender - Anti-spyware for free, from Microsoft.&lt;br /&gt;&lt;br /&gt;MidpX J2ME Emulators Package - Play Java mobile games on your computer! (also Midp2Exe)&lt;br /&gt;&lt;br /&gt;MatchUp - A concentration game from Microsoft.&lt;br /&gt;&lt;br /&gt;And of course, Vista Transformation Pack (see last post :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-7715500997225917749?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/7715500997225917749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/04/march-and-april-updates.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7715500997225917749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7715500997225917749'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/04/march-and-april-updates.html' title='March and April Updates'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-1949625164832024648</id><published>2007-04-23T16:35:00.000+05:30</published><updated>2007-04-23T16:53:43.085+05:30</updated><title type='text'>Give your XP a Vista make-over</title><content type='html'>Bored with the old XP look? Friends talking about the cool Vista interface and you have no money to shell out for it? Get the Vista Transformation Pack. Though it can't bring all the eyecandy to your XP screen, it can still do a pretty good job.&lt;br /&gt;I installed Vista Transformation Pack 6.&lt;br /&gt;- Disabled VisualTooltip and Styler.&lt;br /&gt;- Was forced to disable Sidebar because it started hanging. I hope it will be fine tomorrow :P&lt;br /&gt;- Created a new theme called "Windows Aero Black" because transparent window borders is not available in XP, and you will have to buy WindowBlinds if you want to recreate that effect.&lt;br /&gt;The default blue theme is so dirty without the transparency effect.&lt;br /&gt;Here's the Black msstyles file: &lt;a href="http://www.fileden.com/files/2006/12/20/534119/My%20Documents/Windows%20Aero%20Black.msstyles"&gt;http://www.fileden.com/files/2006/12/20/534119/My%20Documents/Windows%20Aero%20Black.msstyles&lt;/a&gt;&lt;br /&gt;Go to C:\Windows\Resources\Themes&lt;br /&gt;Copy the folder Windows Aero, rename the copy as Windows Aero Black.&lt;br /&gt;Open the new folder Windows Aero Black, and delete the "Windows Aero.msstyles" file.&lt;br /&gt;Download the Windows Aero Black.msstyles file (link above) and save it here in this folder.&lt;br /&gt;Go check out the Appearance tab of Desktop Properties. There will be a new theme called "Windows Aero Black". Enjoy :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-1949625164832024648?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/1949625164832024648/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/04/give-your-xp-vista-make-over.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1949625164832024648'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/1949625164832024648'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/04/give-your-xp-vista-make-over.html' title='Give your XP a Vista make-over'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-7498251892699991337</id><published>2007-03-05T22:08:00.000+05:30</published><updated>2007-03-05T22:25:44.349+05:30</updated><title type='text'>February Updates</title><content type='html'>Wow! It's been long since I last posted in this blog. Here are my computer-related updates from February.&lt;br /&gt;&lt;br /&gt;Blue Coat K9 Web Protection - Those who are worried about children visiting illegal websites, or want to stop visiting immoral websites, use this strong filtering software. It is one of the leading filtered Internet solutions, but compared to others, it is offered completely free for home use. Get it at &lt;a href="http://www.k9webprotection.com/"&gt;www.k9webprotection.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;SpeedSwitchXP (Centrino/SpeedStep capable laptops only) - If you have uninstalled the proprietary power management softwares (Acer Power Management, Dell Power Management, Toshiba Power Management) and thus reverted back to the default power management of Windows XP, then you're missing out on one important feature. You can add this feature into the default power management of Windows using SpeedSwitchXP. The feature is reducing the CPU clock speed during reduced usage and thus maximising battery life even further. Get it at &lt;a href="http://www.diefer.de/speedswitchxp"&gt;http://www.diefer.de/speedswitchxp&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Windows Live Messenger 8.1 - If you use this, you may or may not have seen some of your friends having a green "i'm" (with blue apostrophe) somewhere in their nickname. It looks pretty over there, but that's not all about it. The "i'm" stands for "i'm making a difference". If you are in United States, and you have it in your nickname, for every conversation you have, you will be donating to a charity organisation of your choice. You can which one you want, by going to this page: &lt;a href="http://messengersays.spaces.live.com/blog/cns!5B410F7FD930829E!25315.entry"&gt;http://messengersays.spaces.live.com/blog/cns!5B410F7FD930829E!25315.entry&lt;/a&gt;&lt;br /&gt;Of course, if you are outside US, you can still add the emoticon, but it will not produce donation (they say so in that page, but this may change in the future).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-7498251892699991337?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/7498251892699991337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/03/february-updates.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7498251892699991337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/7498251892699991337'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/03/february-updates.html' title='February Updates'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-4865775320145367435</id><published>2007-01-27T15:58:00.002+05:30</published><updated>2010-11-01T10:31:31.350+05:30</updated><title type='text'>Automatic Caps Lock Toggle</title><content type='html'>You must have seen blogs and personal profiles where a lot of girls (and maybe a few guys, but I'm not one among them) type lIkE tHiS? Have you wondered how they manage to do the tedious task of pressing and leaving the Shift key for every alternative letter?&lt;br /&gt;&lt;br /&gt;Well (on the other hand) are you one of those girls (and guys) who do that, like to do that, but are so frustrated that you have to do that to get that "beautiful blog page" you got? Fear not, for help is here.&lt;br /&gt;&lt;br /&gt;I created this Automatic Caps Lock Toggle application (or ToggleCaPs, for short) in Visual Basic. It is also (a bit) intelligent as it only toggles Caps Lock when you type alphabetic keys (A-Z). You can download it by &lt;a href="http://send2adtc.googlepages.com/ToggleCaPs.zip"&gt;clicking here&lt;/a&gt;. Just extract the ZIP file into a folder and run the ToggleCaPs application. Create a shortcut to it on the Desktop if you like it!&lt;br /&gt;&lt;br /&gt;Note that this application does not contain any virus. But since it does  keyboard hooking, your anti-virus may warn that it could be a virus. &lt;u&gt;Do  not be alarmed!&lt;/u&gt; Add the &lt;i&gt;dll&lt;/i&gt; file as an exception. (Keyboard hooking maybe used by virus applications to monitor your keyboard presses system-wide. My application also does this, however it is not with any malignant intent.)&lt;br /&gt;&lt;br /&gt;I didn't do all the work in making that Caps Lock Toggle Application though. Credits go to Konstantin Tretyakov for some parts of the code. I had to merge two seperate code sets together and remove unnecessary parts to get this working. They are, for your reference:&lt;br /&gt;1. &lt;a href="http://www.freevbcode.com/ShowCode.Asp?ID=1004"&gt;Toggle CapsLock Key&lt;/a&gt;&lt;br /&gt;2. &lt;a href="http://www.freevbcode.com/ShowCode.asp?ID=728"&gt;Key Logger Based on a Global Keyboard Hook.&lt;/a&gt;&lt;br /&gt;PS: If you are a developer and want the code for ToggleCaPs, drop me a comment.&lt;br /&gt;&lt;br /&gt;HaPpY tYpInG!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-4865775320145367435?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/4865775320145367435/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/01/automatic-caps-lock-toggle.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4865775320145367435'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4865775320145367435'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/01/automatic-caps-lock-toggle.html' title='Automatic Caps Lock Toggle'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-5838289392907355595</id><published>2007-01-02T11:40:00.000+05:30</published><updated>2007-01-02T12:03:11.294+05:30</updated><title type='text'>Google takes over the world!</title><content type='html'>&lt;strong&gt;Disclaimer:&lt;/strong&gt; This is a joke :P&lt;br /&gt;&lt;br /&gt;You know the book of Revelation talks about a great (presumably evil) leader taking over the entire world? Some people think it is Osama. Some think it is George Bush. Some, European Union. Some, a supercomputer with highest AI. Some, Bill Gates.&lt;br /&gt;&lt;br /&gt;But I think it's gonna be... &lt;span style="font-size:180%;"&gt;&lt;span style="color:#3366ff;"&gt;G&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;o&lt;/span&gt;&lt;span style="color:#ffff33;"&gt;o&lt;/span&gt;&lt;span style="color:#3366ff;"&gt;g&lt;/span&gt;&lt;span style="color:#33cc00;"&gt;l&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;e&lt;/span&gt;!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Once upon a time, Microsoft Windows was the only operating system in a home computer, and Bill Gates was the ruler of the computer world. Today, many are fighting back his dictatorship.&lt;br /&gt;&lt;br /&gt;But one freedom fighter is going beyond the limits. Once he was merely a &lt;a href="http://www.google.com/"&gt;spider&lt;/a&gt;, quietly crawling the web and eating poor fly(er)s caught in it. Now he is doing much more than just crawling.&lt;br /&gt;&lt;br /&gt;He took over the world, virtually: &lt;a href="http://earth.google.com/"&gt;Google Earth&lt;/a&gt;&lt;br /&gt;He took over your favorite browser: &lt;a href="http://toolbar.google.com/?utm_source=en-et-more&amp;utm_medium=et&amp;amp;utm_campaign=en"&gt;Google Toolbar&lt;/a&gt;&lt;br /&gt;He took over your alarm clock and your newspaper boy: &lt;a href="http://www.google.com/alerts"&gt;Google Alerts&lt;/a&gt;&lt;br /&gt;He replaced your friend who knows each and every spot and all directions in your place: &lt;a href="http://maps.google.com/maps"&gt;Google Maps&lt;/a&gt;&lt;br /&gt;He took over your mouth: &lt;a href="http://www.google.com/talk"&gt;Google Talk&lt;/a&gt;&lt;br /&gt;He took over your mouth, once again: &lt;a href="http://www.blogger.com/"&gt;Blogger&lt;/a&gt;&lt;br /&gt;He took over the chemicals (with which he was able to take over everything else): &lt;a href="http://labs.google.com/"&gt;Labs&lt;/a&gt;&lt;br /&gt;He took over your address: &lt;a href="http://gmail.google.com/"&gt;GMail&lt;/a&gt;&lt;br /&gt;He took over your computer: &lt;a href="http://pack.google.com/intl/en/pack_installer.html?hl=en&amp;gl=us&amp;amp;utm_source=en_US-et-more&amp;utm_medium=et&amp;amp;utm_campaign=en_US"&gt;Pack&lt;/a&gt;&lt;br /&gt;He took over your Internet connection: &lt;a href="http://webaccelerator.google.com/"&gt;Web accelerator&lt;/a&gt;&lt;br /&gt;He's the professor you're a student of, lifelong: &lt;a href="http://scholar.google.com/"&gt;Scholar&lt;/a&gt;&lt;br /&gt;He's watching what you gossip!: &lt;a href="http://groups.google.com/"&gt;Google Groups&lt;/a&gt;&lt;br /&gt;He's not your average language tutor: &lt;a href="http://www.google.com/language_tools"&gt;Translate&lt;/a&gt;&lt;br /&gt;He's watching your photos, so better take nice ones: &lt;a href="http://picasa.google.com/#utm_source=en-us-more&amp;utm_campaign=en-pic&amp;amp;utm_medium=et"&gt;Picasa&lt;/a&gt;&lt;br /&gt;He's not stopping: &lt;a href="http://www.google.com.sg/intl/en/options/"&gt;More Google Products&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.google.com.sg/search?hl=en&amp;q=Stop+Google&amp;amp;meta="&gt;Somebody stop him!!!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;Ah I'm bored...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-5838289392907355595?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/5838289392907355595/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2007/01/google-takes-over-world.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5838289392907355595'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/5838289392907355595'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2007/01/google-takes-over-world.html' title='Google takes over the world!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-3429518388706385507</id><published>2006-12-26T18:28:00.000+05:30</published><updated>2006-12-26T19:10:53.739+05:30</updated><title type='text'>Hide or remove Search box in Internet Explorer 7</title><content type='html'>People like me, would like to have a long address bar. People like me, won't EVER use the search box of IE7 regularly. If you are one among people like me, and want to hide or remove that search box that you never use, and is therefore taking up valuable space, here is how to do it! Close all instances of Internet Explorer 7 before doing this. (You may need to copy this information below to Notepad before doing so.)&lt;br /&gt;&lt;strong&gt;EDIT:&lt;/strong&gt; Towards the end, there is valuable information about how to disable the annoying Security Risk message.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Shortcut:&lt;/strong&gt;&lt;br /&gt;Click &lt;strong&gt;Start&lt;/strong&gt; &gt; &lt;strong&gt;Run&lt;/strong&gt;.&lt;br /&gt;Paste the following line in the Run box.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;REG ADD "HKCU\Software\Policies\Microsoft\Internet Explorer\InfoDelivery\Restrictions" /V NoSearchBox /T REG_DWORD /F /D 1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Click &lt;strong&gt;OK&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Direct way: &lt;/strong&gt;&lt;br /&gt;Click &lt;strong&gt;Start&lt;/strong&gt; &gt; &lt;strong&gt;Run&lt;/strong&gt;&lt;br /&gt;Type &lt;span style="font-family:courier new;"&gt;regedit&lt;/span&gt; and click &lt;strong&gt;OK&lt;/strong&gt;.&lt;br /&gt;Navigate to the following folder:&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;My Computer\HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\InfoDelivery\Restrictions&lt;/span&gt;&lt;br /&gt;If you cannot find &lt;span style="font-family:courier new;"&gt;InfoDelivery&lt;/span&gt; and/or &lt;span style="font-family:courier new;"&gt;Restrictions&lt;/span&gt; folder, create it/them by right-clicking on an empty area and selecting &lt;strong&gt;New&lt;/strong&gt; &gt; &lt;strong&gt;Key&lt;/strong&gt;&lt;br /&gt;Once you're in &lt;span style="font-family:courier new;"&gt;Restrictions&lt;/span&gt; folder, right-click an empty space and select &lt;strong&gt;New&lt;/strong&gt; &gt; &lt;strong&gt;DWORD Value&lt;/strong&gt;.&lt;br /&gt;Name the value as &lt;span style="font-family:courier new;"&gt;NoSearchBox&lt;/span&gt;.&lt;br /&gt;Click on an empty area, then double-click on the new value you just created (&lt;span style="font-family:courier new;"&gt;NoSearchBox&lt;/span&gt;).&lt;br /&gt;Enter &lt;span style="font-family:courier new;"&gt;1&lt;/span&gt; in the &lt;strong&gt;Value data&lt;/strong&gt; box.&lt;br /&gt;Click &lt;strong&gt;OK&lt;/strong&gt;, and close Registry Editor.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How to disable the "Security Settings at Risk" alert.&lt;/strong&gt;&lt;br /&gt;If you have customized your security settings in Internet Explorer 7, you will always be greeted by the highly annoying "Your security setting level puts your computer at risk" message, until you reset the settings back to default. Here is how to disable this message entirely:&lt;br /&gt;Click &lt;strong&gt;Start&lt;/strong&gt; &gt; &lt;strong&gt;Run&lt;/strong&gt;.&lt;br /&gt;Type in &lt;span style="font-family:courier new;"&gt;gpedit.msc&lt;/span&gt; and click &lt;strong&gt;OK&lt;/strong&gt;.&lt;br /&gt;If you want to disable this for the whole computer (not recommended), start with "&lt;strong&gt;Computer Configuration&lt;/strong&gt;".&lt;br /&gt;If you only want to disable this for your own account (ideal choice), start with "&lt;strong&gt;User Configuration&lt;/strong&gt;".&lt;br /&gt;Navigate to the folder called "&lt;span style="font-family:courier new;"&gt;Administrative Templates\Windows Components\Internet Explorer&lt;/span&gt;".&lt;br /&gt;On the right pane, find the setting called "&lt;strong&gt;Turn off the Security Settings Check feature&lt;/strong&gt;".&lt;br /&gt;Double-click it, and select "&lt;strong&gt;Enabled&lt;/strong&gt;".&lt;br /&gt;Click &lt;strong&gt;OK&lt;/strong&gt; and close Group Policy window.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-3429518388706385507?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/3429518388706385507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/12/hide-or-remove-search-box-in-internet.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3429518388706385507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/3429518388706385507'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/12/hide-or-remove-search-box-in-internet.html' title='Hide or remove Search box in Internet Explorer 7'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-9017769291701075699</id><published>2006-12-24T20:41:00.000+05:30</published><updated>2006-12-24T21:02:10.916+05:30</updated><title type='text'>E-mail, E-news</title><content type='html'>Well, G-news, to be more specific. This is what the latest introduction from Google Labs should be called as. But, they named it, the &lt;a href="http://reader.google.com/"&gt;"Google Reader"&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Are you the kind of guy who finds out a new blog, pledges about visiting it every day, bookmarks it, and forgets about it the very next day? Then fear not! Google Reader is here to help!&lt;br /&gt;&lt;br /&gt;"But hey why Google Reader? Why not some other reader software?"&lt;br /&gt;&lt;br /&gt;Because...&lt;br /&gt;&lt;br /&gt;Google Reader's interface is very much similar in structure to G-mail. So reading your RSS feeds in Google Reader would be more like reading your regular mail. (This requires you to turn on the "List View", but don't worry, it's permanent change, and just a click away.) Unread items are white, read items are grayed out. You can star items and apply labels to them.&lt;br /&gt;&lt;br /&gt;Google Reader is web based. So you can read your RSS feeds on any computer connected to the Internet, just as with G-mail.&lt;br /&gt;&lt;br /&gt;Google Reader has podcast support. And videos (like YouTube) embedded in feed contents can be displayed in the Reader interface itself.&lt;br /&gt;&lt;br /&gt;And of course, there are goodies like predefined sets of feeds for you to start with.&lt;br /&gt;&lt;br /&gt;So go ahead! If you have Gmail or a Google account, you already have access to Google Reader. Subscribe to all your podcasts and blog RSS feeds in Google Reader and never miss an update, no matter where you are! It's as simple as G-mail!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-9017769291701075699?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/9017769291701075699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/12/e-mail-e-news.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/9017769291701075699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/9017769291701075699'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/12/e-mail-e-news.html' title='E-mail, E-news'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-4599232688351881235</id><published>2006-12-18T17:01:00.000+05:30</published><updated>2006-12-18T17:10:28.987+05:30</updated><title type='text'>Blogger Beta</title><content type='html'>Have you upgraded your Blogger account to the new &lt;a href="http://beta.blogger.com"&gt;Blogger Beta&lt;/a&gt;? If not, you're missing out on these:&lt;br /&gt;&lt;br /&gt;Linking with Google (Gmail) unified account. You don't need to remember your Blogger account details any more. You will be signing into Blogger using your Google account.&lt;br /&gt;&lt;br /&gt;On the fly serving. Now the pages are no longer "published" as they used to be. Blogger Beta simply stores a database of your posts and everything, and when someone requests a page, Blogger creates it on demand and gives it them. You'll notice the difference when you have lots of posts. Previously, making a template change required you to republish, and that would take lot of time. Now there is no more republishing. A change in template is reflected immediately after the template is saved.&lt;br /&gt;&lt;br /&gt;Layout. You can replace your template with the new layout system, which allows you to edit your layout directly rather than messing up with the HTML code behind it. Note that upgrading to layout requires you to lose all changes you made to your previous template. You'll have to manually add all the extras back on the layout. Blogger will save a copy of your template when you upgrade.&lt;br /&gt;&lt;br /&gt;Labels: See below and you'll find labels for this post. This is one feature which Blogger had been lacking for a long time. Many other blogging website provided labelling system by default. Only now, is Blogger able to provide the same.&lt;br /&gt;&lt;br /&gt;There are others like a new Dashboard, etc. Upgrade and you'll notice the difference.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-4599232688351881235?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/4599232688351881235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/12/blogger-beta.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4599232688351881235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/4599232688351881235'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/12/blogger-beta.html' title='Blogger Beta'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-116562454354024728</id><published>2006-12-09T06:05:00.000+05:30</published><updated>2006-12-09T06:05:43.653+05:30</updated><title type='text'>Microsoft Office 2007</title><content type='html'>&lt;span xmlns=''&gt;&lt;p&gt;I'm blogging this from Microsoft Word 2007. It's got blogging capability and supports several blog providers like Windows Live Spaces, Blogger, SharePoint Blog, Community Server, TypePad, and WordPress. There is also an Others option with which you can post to a provider which is not available in the list. The latest feature of Microsoft Office is the sparkling new Ribbon. This replaces all the toolbars that were prevalent in the previous versions, with a one inch tall bar which can be changed according to the type of operations you do. There are tabs above the ribbon, and additional tabs appear as you work with certain objects. The tabs categorize the buttons, and only one tab can be open at a time. This helps reduce clutter, yet keep the most used functions of Word easily accessible. Excel and Powerpoint follows the same method.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Another new feature about the 2007 Office System is the new file format. But Microsoft took a bad decision to force the format onto the users. The default should have been the older format, and users should have been given a choice to migrate to the newer format if they're ready to do so. Many users still use the older versions of Office, so if you create documents in Office 2007, I would suggest that you save them in the old format. You can change the default format of each application in the Options dialog. Compatibility issues are solved properly by Office. Even if you save in old format, information about latest features that are used in the document are saved alongside, so when you re-edit the document, it is edited as though it is in the new format. It will take some time before everyone starts sharing documents and presentations in the new format.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;A new feature which cannot be properly saved in the old format is the SmartArt. You can create lists of information and format them into a visually appealing chart. There are a lot of options on how you want to represent the data, and you can format the whole SmartArt according to your preferences. These are the most important new features of Microsoft Office. You'll discover more as you work with it. Download the Trial version at the Office website: &lt;a href='http://office.microsoft.com'&gt;http://office.microsoft.com&lt;/a&gt;.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-116562454354024728?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/116562454354024728/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/12/microsoft-office-2007.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116562454354024728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116562454354024728'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/12/microsoft-office-2007.html' title='Microsoft Office 2007'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-116453547989044574</id><published>2006-11-26T15:15:00.000+05:30</published><updated>2006-11-26T15:34:41.423+05:30</updated><title type='text'>Bored of reading stuff on the Internet?</title><content type='html'>Are you bored of reading stuff on the Internet? Especially with your eyes? Let your eyes rest while you let your ears... READ! That's right, you let your ears read... not listen, but read!&lt;br /&gt;&lt;br /&gt;Say hi, to podcasts.&lt;br /&gt;&lt;br /&gt;Well, contrary to popular belief, you don't need an iPod or any MP3 player. You don't need any special podcasting software. Podcast are shared as RSS feeds and almost any of the latest RSS readers can let you listen to them. Internet Explorer 7 has a built in RSS feed reader, and podcast have links to MP3 files of the podcasts. Clicking on them will open them in your favorite media player (Windows Media Player, for example). Maxthon, my favorite browser, embeds a small player on the bottom of it's built-in RSS feed reader which is effectively web-embed version of Windows Media Player.&lt;br /&gt;&lt;br /&gt;The only reason you should be using a software dedicated to podcasts is that you need to download several feeds and store them in your MP3 player/iPod and listen to them when you jog, go to work, or go to school. I don't like that as it's much of a hazzle. It's more convenient for me to listen in my computer, so Maxthon Browser does the job for me.&lt;br /&gt;&lt;br /&gt;As you may have guessed, I have the RSS feed reader on the left of my Maxthon Browser as I am typing this on the right. The reader is playing one podcast I have found. Oh, on a side-note even Firefox has an RSS reader, but I'm unsure about podcast capabilities. If it can't play the podcast itself, I'm sure it can at least open the podcast in your favorite media player.&lt;br /&gt;&lt;br /&gt;So you have either your browser with built-in RSS reader, or have a reader/podcast software. Where do you get the podcasts from? To start with, go to &lt;a href="http://www.podcastalley.com"&gt;http://www.podcastalley.com&lt;/a&gt; (PodcastAlley). There are over 26,000 podcasts in this website, and with a bit of browsing I'm sure you'll find a podcast to your taste. I found three (names are linked to feed URLs): &lt;a href="http://feeds.feedburner.com/dailyaudiobible"&gt;1 Year Daily Audio Bible&lt;/a&gt;, &lt;a href="http://www.DickSummer.net/GoodNight.xml"&gt;Good Night&lt;/a&gt;, &lt;a href="http://www.boredagainchristian.com/index.xml"&gt;The Bored-Again Christian&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;That's it. Enough reading this with your eyes. Time to let them rest, and let your ears take over!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-116453547989044574?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/116453547989044574/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/11/bored-of-reading-stuff-on-internet.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116453547989044574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116453547989044574'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/11/bored-of-reading-stuff-on-internet.html' title='Bored of reading stuff on the Internet?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-116294322769708876</id><published>2006-11-08T05:06:00.000+05:30</published><updated>2006-11-08T15:23:21.276+05:30</updated><title type='text'>Windows Media Player 11</title><content type='html'>&lt;p&gt;Recently I installed Windows Media Player 11.&lt;/p&gt;&lt;p&gt;Notable differences from previous versions of Media Player:&lt;/p&gt;&lt;p&gt;Windows Vista-style interface.&lt;/p&gt;&lt;p&gt;Ability to automatically create playlist, sync list or burn list from your most favorite songs.&lt;/p&gt;&lt;p&gt;Ability to learn your preferences from your use of the next button to skip tracks.&lt;/p&gt;&lt;p&gt;Improved library view with albums, songs, photographs etc, shown in a spirally arranged way.&lt;/p&gt;&lt;p&gt;Maximising does not display the normal Windows titlebar.&lt;/p&gt;&lt;p&gt;Conveniently placed Play, Previous and Next buttons.&lt;/p&gt;&lt;p&gt;Compact mode.&lt;/p&gt;&lt;p&gt;Seperate repeat and shuffle buttons.&lt;/p&gt;&lt;p&gt;EDIT: Ability to resume last played playlist, wherever it was stopped. Useful if you accidentally close WMP.&lt;/p&gt;&lt;p&gt;That's about what I noticed, and it's more aesthetically pleasing. Go ahead! Launch WMP and click "Play Favorites". Skip the tracks you don't like. WMP learns from you.&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.microsoft.com/windows/windowsmedia/player/11/default.aspx"&gt;Click here to download Windows Media Player 11.&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-116294322769708876?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/116294322769708876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/11/windows-media-player-11.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116294322769708876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116294322769708876'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/11/windows-media-player-11.html' title='Windows Media Player 11'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-116161796785990922</id><published>2006-10-23T20:47:00.000+05:30</published><updated>2007-12-31T12:43:35.129+05:30</updated><title type='text'>The D of Dvorak!</title><content type='html'>&lt;p&gt;[UPDATE: Links in this blog post are no longer valid as &amp;quot;shrtn.us&amp;quot; is not an active website anymore. Meanwhile, you can visit: &lt;a title="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard"&gt;http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard&lt;/a&gt; ]&lt;/p&gt;  &lt;p&gt;I did a lot of research for this, and finally made some new improvements on the way you can quickly switch to Dvorak layout on any computer. Basically it just got quicker.   &lt;br /&gt;    &lt;br /&gt;Note: You DO NOT need to type the &amp;quot;http://&amp;quot; part in the Address/Location Bar. Just start from the letter &amp;quot;d&amp;quot;.    &lt;br /&gt;    &lt;br /&gt;&lt;strong&gt;The Quickest Way:&lt;/strong&gt;    &lt;br /&gt;&lt;a href="http://dv.shrtn.us"&gt;http://dv.shrtn.us&lt;/a&gt; - Directly download the Dvorak Assistant Application. &lt;strong&gt;Run it instantly! &lt;/strong&gt;(after Internet Explorer warnings if they appear).    &lt;br /&gt;- Also &lt;u&gt;q.shrtn.us&lt;/u&gt; (shorten qwerty!), &lt;u&gt;v.shrtn.us&lt;/u&gt; (second letter of Dvorak) and &lt;u&gt;m.shrtn.us&lt;/u&gt; (one of the two letters which are in same place in both qwerty and Dvorak layouts; &amp;quot;a&amp;quot; was already occupied by some other website :( )    &lt;br /&gt;    &lt;br /&gt;&lt;strong&gt;Less Quicker, but directly from the author (SourceForge Mirrors):&lt;/strong&gt;    &lt;br /&gt;&lt;a href="http://d1.shrtn.us"&gt;http://d1.shrtn.us&lt;/a&gt; }    &lt;br /&gt;&lt;a href="http://d2.shrtn.us"&gt;http://d2.shrtn.us&lt;/a&gt; } Download the ZIP file. You may need another program    &lt;br /&gt;... and so on upto ... } to extract the application, unless you have Windows XP.    &lt;br /&gt;&lt;a href="http://d14.shrtn.us"&gt;http://d14.shrtn.us&lt;/a&gt; }    &lt;br /&gt;Numbers are sorted according to geographic location of servers.    &lt;br /&gt;1-4 = North America    &lt;br /&gt;5 = South America    &lt;br /&gt;6-11 = Europe    &lt;br /&gt;12, 13 = Asia    &lt;br /&gt;14 = Australia    &lt;br /&gt;    &lt;br /&gt;&lt;strong&gt;Information&lt;/strong&gt;    &lt;br /&gt;&lt;a href="http://dsk.shrtn.us"&gt;http://dsk.shrtn.us&lt;/a&gt; - Wikipedia article about the Dvorak Simplified Keyboard Layout    &lt;br /&gt;- Also &lt;u&gt;d.shrtn.us&lt;/u&gt;    &lt;br /&gt;&lt;a href="http://d0.shrtn.us"&gt;http://d0.shrtn.us&lt;/a&gt; [D Zero] - This page!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-116161796785990922?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/116161796785990922/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/10/d-of-dvorak.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116161796785990922'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/116161796785990922'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/10/d-of-dvorak.html' title='The D of Dvorak!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115935830526381299</id><published>2006-09-27T17:22:00.000+05:30</published><updated>2006-09-27T17:28:25.273+05:30</updated><title type='text'>Microsoft and Google joins hands, Yahoo is out of the game!</title><content type='html'>Go to &lt;a href="http://www.google.com"&gt;www.google.com&lt;/a&gt; and type in "search" (yes that's right, type the word "search") and click on "I'm feeling lucky!"&lt;br /&gt;You'll arrive at Windows Live Search. Now type in "search" in the Live Search page, and click the magnifying glass. You'll see that the very first result is Google!&lt;br /&gt;As for Yahoo, it is the eighth result on Google's "search" results page and it doesn't even appear on Live's "search" results page!&lt;br /&gt;Also try searching for "search" on &lt;a href="http://www.yahoo.com"&gt;www.yahoo.com&lt;/a&gt;!&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115935830526381299?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115935830526381299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/microsoft-and-google-joins-hands-yahoo.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115935830526381299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115935830526381299'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/microsoft-and-google-joins-hands-yahoo.html' title='Microsoft and Google joins hands, Yahoo is out of the game!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115917545108014155</id><published>2006-09-25T14:19:00.000+05:30</published><updated>2006-10-02T09:51:20.436+05:30</updated><title type='text'>Remove advertisements from Windows Live Messenger and Yahoo! Messenger with Voice</title><content type='html'>To remove advertisements and other unwanted features from &lt;strong&gt;Windows Live Messenger&lt;/strong&gt; or &lt;strong&gt;MSN Messenger&lt;/strong&gt;, dowload A-Patch from &lt;a href="http://apatch.ikhost.com/downloads.php"&gt;here&lt;/a&gt;. You will be able to choose which features of Messenger to remove. By default none of the features will be removed, but during install, you will be provided with lists where you can choose.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;em&gt;Non-muslims (non-islams), just ignore the islam-related advertisements in&lt;br /&gt;that website and the software you download. The use of the software does not&lt;br /&gt;require you to convert to Islam religion at all! :P&lt;/em&gt;&lt;/blockquote&gt;&lt;br /&gt;For &lt;strong&gt;Yahoo! Messenger&lt;/strong&gt;,&lt;br /&gt;&lt;strong&gt;UPDATE:&lt;/strong&gt; Disabling Ads in Yahoo! Messenger causes these features to malfunction: Yahoo! Chat, Plug-ins, IMVironments.&lt;br /&gt;NOTE: If you use the Yahoo! Chat feature, add your favourite chat rooms to the favourite list. (Messenger &gt; Yahoo! Chat &gt; Favorite Rooms &gt; Organize Favorites). Once you remove the ads you will not be able to access the full chat room list through "Messenger &gt; Yahoo! Chat &gt; Join a Room..." or "Organize Favorites", but you can still access your favorite rooms through the Favorite rooms list.&lt;br /&gt;&lt;br /&gt;1. Open Notepad.&lt;br /&gt;2. Copy and paste the following in Notepad.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-family:courier new;"&gt;Windows Registry Editor Version 5.00&lt;br /&gt;&lt;br /&gt;[HKEY_CURRENT_USER\Software\yahoo\pager\YUrl]&lt;br /&gt;"First Login Beacon"="*"&lt;br /&gt;"Messenger Help"="*"&lt;br /&gt;"Voice General Help"="*"&lt;br /&gt;"Change Room Banner"="*"&lt;br /&gt;"Address Book"="*"&lt;br /&gt;"Finance Disclaimer"="*"&lt;br /&gt;"Messenger Ad"="*"&lt;br /&gt;"Chat Adurl"="*"&lt;br /&gt;"Calendar Alert Ad URL"="*"&lt;br /&gt;"Conf Adurl"="*"&lt;br /&gt;"Mail Alert Ad URL"="*"&lt;br /&gt;"News Alert Ad URL"="*"&lt;br /&gt;"Personals Alert Ad URL"="*"&lt;br /&gt;"Stock Alert Ad URL"="*"&lt;br /&gt;"Webcam Viewer Ad Medium"="*"&lt;br /&gt;"Webcam Viewer Ad Big"="*"&lt;br /&gt;"Webcam Viewer Ad"="*"&lt;br /&gt;"Webcam Upload Ad"="*"&lt;br /&gt;"Chat Transition Ad"="*"&lt;br /&gt;"N2Phone Adurl"="*"&lt;br /&gt;"Y Content"="*"&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;3. Click "File &gt; Save As...".&lt;br /&gt;4. Select a suitable folder to save in if required. Mostly this should be your Desktop.&lt;br /&gt;5. Enter the file name as "yahoo.reg" or "something.reg" or "anything.reg". (The '.reg' part SHOULD be there.)&lt;br /&gt;6. IMPORTANT: Choose "All Files" in the "Save as type:" box.&lt;br /&gt;7. Click Save button.&lt;br /&gt;8. Close Notepad and go to the folder where you saved it.&lt;br /&gt;9. Double-click the file.&lt;br /&gt;10. Click Yes. Then click OK.&lt;br /&gt;11. Exit and restart Yahoo! Messenger.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115917545108014155?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115917545108014155/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/remove-advertisements-from-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115917545108014155'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115917545108014155'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/remove-advertisements-from-windows.html' title='Remove advertisements from Windows Live Messenger and Yahoo! Messenger with Voice'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115843352203294226</id><published>2006-09-17T00:33:00.000+05:30</published><updated>2006-09-17T00:35:22.033+05:30</updated><title type='text'>IMVU - The World's Greatest 3D Chat</title><content type='html'>&lt;a href="http://www.imvu.com/catalog/web_landing.php?p=power&amp;amp;userId=2787684" target="_blank"&gt;&lt;img height="250" alt="IMVU - The World's Greatest 3D Chat" src="http://www.imvu.com/catalog/web_images/lp_images/ads/KilleyeSchool_250x250.jpg" width="250" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115843352203294226?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115843352203294226/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/imvu-worlds-greatest-3d-chat.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115843352203294226'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115843352203294226'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/imvu-worlds-greatest-3d-chat.html' title='IMVU - The World&apos;s Greatest 3D Chat'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115774986180239495</id><published>2006-09-09T02:39:00.000+05:30</published><updated>2006-09-09T02:41:01.813+05:30</updated><title type='text'>Mona Lisa's Opinion</title><content type='html'>What does Mona Lisa have to say about Dan Brown and his The Da Vinci Code?&lt;br /&gt;&lt;br /&gt;Click &lt;strong&gt;&lt;a href="http://getveepers.com/pulsex/card/jnoaw"&gt;here&lt;/a&gt;&lt;/strong&gt; to listen to her opinion!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115774986180239495?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115774986180239495/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/mona-lisas-opinion.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115774986180239495'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115774986180239495'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/mona-lisas-opinion.html' title='Mona Lisa&apos;s Opinion'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115755582169893071</id><published>2006-09-06T20:42:00.000+05:30</published><updated>2006-09-06T20:51:33.316+05:30</updated><title type='text'>Update: In memory of the Crocodile Hunter</title><content type='html'>Today I got another message from an MSN Messenger user:&lt;br /&gt;&lt;blockquote&gt;It's been two days since Steve Irwin has died, and it's time we pay our last respects to Steve and his family by removing the turtle and the rose from the start of our MSN names, and placing a sun (# ) instead, to symbolise bravery will always be with us. Send this to all of your contacts, and keep Steve's family in your thoughts and praise through those difficult times. [May his soul] rest in peace.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;I have a feeling that this maybe a hoax.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115755582169893071?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115755582169893071/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/update-in-memory-of-crocodile-hunter.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115755582169893071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115755582169893071'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/update-in-memory-of-crocodile-hunter.html' title='Update: In memory of the Crocodile Hunter'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115737870681562935</id><published>2006-09-04T19:29:00.000+05:30</published><updated>2006-09-04T19:35:06.830+05:30</updated><title type='text'>In memory of the Crocodile Hunter</title><content type='html'>"World-renowned Australian "crocodile hunter" and television environmentalist Steve Irwin was killed by a stingray Monday on the famed Great Barrier Reef, police said..."&lt;br /&gt;&lt;br /&gt;&lt;div align="right"&gt;&lt;a href="http://www.channelnewsasia.com/stories/afp_asiapacific/view/228451/1/.html"&gt;Click here to read the full story.&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;If you use MSN Messenger or Windows Live Messenger, please do what this message below says:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;If you haven't heard already, Steve Irwin died today on the 4th of September, on the Barrier Reef, near Cairns... As a sign of respect for the Australian cultural icon, please place a turtle ( tu ) at the start of your nick name, and forward this message to others... &lt;a href="http://www.channelnewsasia.com/stories/afp_asiapacific/view/228451/1/.html"&gt;http://www.channelnewsasia.com/stories/afp_asiapacific/view/228451/1/.html&lt;/a&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;May his soul rest in peace.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115737870681562935?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115737870681562935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/in-memory-of-crocodile-hunter.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115737870681562935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115737870681562935'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/in-memory-of-crocodile-hunter.html' title='In memory of the Crocodile Hunter'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115729783884842204</id><published>2006-09-03T20:49:00.000+05:30</published><updated>2006-10-04T12:00:58.230+05:30</updated><title type='text'>Software I can't live without...</title><content type='html'>These softwares are must-have's for me:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;7-Zip &lt;/strong&gt;- &lt;em&gt;Free, and clean (no adwares).&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Ares Galaxy&lt;/strong&gt; &lt;em&gt;- Download music, video, software, etc through P2P; thousand times faster than LimeWire!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Audiograbber&lt;/strong&gt; &lt;em&gt;- Rip music from CD; full control over ripping options, for advanced users.&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;AVG Free Edition Anti-Virus&lt;/strong&gt; &lt;em&gt;(Previously I used: Avast! Anti-Virus) - FREE FREE FREE! Norton can kiss my... (oops! sorry)&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Download Accelerator Plus (DAP)&lt;/strong&gt; &lt;em&gt;- No more "The connection with the server was reset!"&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Dvorak Assistant&lt;/strong&gt; &lt;em&gt;- The forgotten standard created specifically for computers, NOT typewriters!! -&gt; &lt;/em&gt;&lt;a href="http://www.dvzine.org"&gt;&lt;em&gt;www.dvzine.org&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Lavasoft Ad-Aware SE Personal&lt;/strong&gt;&lt;em&gt; - Spywares, goodbye!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Maxthon Browser&lt;/strong&gt; &lt;em&gt;(Maybe I can exclude this when they release IE7... maybe... maybe not!) - Nothing beats Maxthon! Not even the fox!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Paint.NET&lt;/strong&gt; &lt;em&gt;- Throw that "MS Paint" in Recycle Bin!!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;PowerMenu&lt;/strong&gt; &lt;em&gt;- I want more Power over the&lt;/em&gt; &lt;em&gt;Windows™. [Right click on any title bar after running this.]&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;PrimoPDF&lt;/strong&gt; &lt;em&gt;- Totally free PDF printer, no ads!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;TweakUI PowerToy for Windows XP&lt;/strong&gt; &lt;em&gt;- Open the "Advanced Users Only" cover of Windows, flip the hidden switches!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Windows Live Messenger&lt;/strong&gt; &lt;em&gt;- Friends!!!!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Yahoo! Messenger with Voice&lt;/strong&gt; &lt;em&gt;- More Friends!!!!&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;ZoneAlarm Firewall&lt;/strong&gt; &lt;em&gt;- Burn, baby burn!!!&lt;/em&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115729783884842204?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115729783884842204/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/software-i-cant-live-without.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115729783884842204'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115729783884842204'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/software-i-cant-live-without.html' title='Software I can&apos;t live without...'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115729636907922521</id><published>2006-09-03T20:35:00.001+05:30</published><updated>2009-10-12T20:46:42.210+05:30</updated><title type='text'>Internet Explorer after Slimming Diet Plan</title><content type='html'>It seems like Internet Explorer, the built-in browser of Window operating system, had gone through slimming programs! You should check out the latest in the IE7 line, the pre-release RC1. Its very slim and &lt;i&gt;sexy&lt;/i&gt;! I mean seriously it's &lt;i&gt;sexy&lt;/i&gt;. Though it lacks some important features, it finally has the one special feature that was stealing its popularity by other software - Tabbed Browsing!&lt;br /&gt;&lt;br /&gt;And the interface is very cleaned up having only a few important buttons as compared to BIG size toolbars full of buttons in the previous versions. Moreover the softwares like Maxthon Browser and Avant Browser have even more buttons in toolbars than Internet Explorer 6 by default. I really like this new IE, and I'm blogging this from IE7 RC1. So far the pre-release version has not caused any problem. (If you're not an experienced computer user, refrain from installing beta or pre-release software.)&lt;br /&gt;&lt;br /&gt;People are already suggesting some important features missing, and I voted for them. I hope they implement the suggestions in the release version. You should check this new version of IE. Seriously cool!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115729636907922521?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115729636907922521/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/internet-explorer-after-slimming-diet.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115729636907922521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115729636907922521'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/internet-explorer-after-slimming-diet.html' title='Internet Explorer after Slimming Diet Plan'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115729568705778989</id><published>2006-09-03T20:17:00.000+05:30</published><updated>2006-09-03T20:31:27.070+05:30</updated><title type='text'>Technology makes the world smaller? Not for everyone.</title><content type='html'>Technology makes the world smaller. True. When your father was studying overseas in his teenage years, to keep in touch with his parents, he had to write a letter, buy postage stamp, post it and wait weeks for the reply. Now when you study overseas, you can easily log in to your email account, and go to "Compose Mail" write and send, and the reply comes out within a few days, or sometimes within minutes. You can even chat with your parents in real time using one of the messenger services. Who knows? In the future you might be talking to a real-size holographic image of your son, while he talks to your holographic image overseas!&lt;br /&gt;&lt;br /&gt;The world is becoming smaller, with every passing day. The distance is getting lesser and lesser an issue. To cross the desert, Israelites took years and years, but with aeroplanes we can cross the same desert in hours.&lt;br /&gt;&lt;br /&gt;As technology is improving; parents, siblings, friends, all these people can keep in touch with each other in an easier and better way, despite the geographical distance between them.&lt;br /&gt;&lt;br /&gt;But... there is one particular type of relationship where technology will not be much of a help. This is love relationship! Ask any long distance lovers how mobile phones or instant messengers are helping them communicate to each other. They would say it's not enough. Even the future promise of life-size holographic image cannot make them feel the physical presence of their lover. They can't just wait to get to be actually together, in one place. Science does not give a perfect living, and it can never do that. But God can give a perfect living. With God given the authority, control and configuration of your long distance relationship, it will work out despite the distance! Trust God on this!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115729568705778989?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115729568705778989/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/09/technology-makes-world-smaller-not-for.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115729568705778989'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115729568705778989'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/09/technology-makes-world-smaller-not-for.html' title='Technology makes the world smaller? Not for everyone.'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115483998379354968</id><published>2006-08-06T10:12:00.000+05:30</published><updated>2006-08-06T10:23:03.863+05:30</updated><title type='text'>Want to decorate your Desktop?</title><content type='html'>You can decorate your Desktop with a cute and adorable sunflower if you use Windows Media Player. Just &lt;a href="http://download.microsoft.com/download/d/b/5/db550d76-2f59-47a2-b5f6-9e264d2b0bdb/springflower.wmz"&gt;click here&lt;/a&gt; to download the skin for WMP. Optionally, turn on "Keep the Player on top of other windows" in WMP Options/Preferences.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115483998379354968?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115483998379354968/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/08/want-to-decorate-your-desktop.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115483998379354968'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115483998379354968'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/08/want-to-decorate-your-desktop.html' title='Want to decorate your Desktop?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115397815853988388</id><published>2006-07-27T10:50:00.000+05:30</published><updated>2006-07-27T10:59:18.546+05:30</updated><title type='text'>MSN, Yahoo! joins hands!</title><content type='html'>Yup! Its done. MSN and Yahoo!, as they promised, have started interoperability. But one thing remains. They should implement at least one of the following:&lt;br /&gt;1) Both messengers must be able to actually log into each other's accounts. The idea is to use MSN Messenger alone to log into both MSN and Yahoo accounts at the same time. Or, to use Yahoo Messenger the same way.&lt;br /&gt;2) Import contacts automatically by using the other messenger's log in details. That is if the person enters Yahoo log in details in to MSN Messenger, it should log in, download the contact list and add them up to user's MSN account (maintaining the groups). (In this case, when chatting with the Yahoo contacts from MSN, the other person must be shown the Yahoo ID along with the MSN ID.&lt;br /&gt;&lt;br /&gt;Okay I'm sure Microsoft wouldn't even see this blog, but still I'm putting my wishlist here, because... that's what my blog is for!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115397815853988388?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115397815853988388/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/07/msn-yahoo-joins-hands.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115397815853988388'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115397815853988388'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/07/msn-yahoo-joins-hands.html' title='MSN, Yahoo! joins hands!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115304198662655047</id><published>2006-07-16T14:56:00.000+05:30</published><updated>2011-09-20T16:20:01.308+05:30</updated><title type='text'>How to replace notepad.exe with notepad2.exe</title><content type='html'>&lt;b&gt;Update:&lt;/b&gt;&amp;nbsp;The Setup installer of the latest Notepad2 will automatically replace the Windows Notepad. Also, &lt;a href="http://thehunk.blogspot.com/2010/09/how-to-install-notepad2-and-replace.html"&gt;the method of replacement is very different for Windows 7&lt;/a&gt;, compared to what is described below. Instead of actually replacing the Windows Notepad, a registry hack simply redirects all Notepad requests to Notepad2. The Setup installer uses this registry hack. I am unable to determine if the setup does a replacement in Windows XP as well.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Original Post:&lt;/b&gt;&lt;br /&gt;I searched the Internet on information on how to do that, and I found this nice page: &lt;a href="http://blogs.msdn.com/omars/archive/2004/04/30/124093.aspx"&gt;Click here to see it.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;But both the methods didn't work in my Windows installation, as the file protection dialog box was NEVER appearing. Windows was automatically replacing Notepad2 with the original Notepad without any warning or question. Then I worked around another method. Call it Method 3 if you will.&lt;br /&gt;&lt;br /&gt;NOTE: These instructions apply to Windows XP Service Pack 2 only! My Windows installation is the Tablet PC Edition.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.flos-freeware.ch/notepad2.html"&gt;Download Notepad2&lt;/a&gt; and extract it into a temporary folder.&lt;br /&gt;Close all open windows of Notepad.&lt;br /&gt;Go to My Computer and open C: Drive.&lt;br /&gt;Go to Tools &amp;gt; Folder Options in the menu bar.&lt;br /&gt;Go to View tab.&lt;br /&gt;Under "Hidden files and folders", select "Show hidden files and folders".&lt;br /&gt;Uncheck "Hide extensions for known file types" and "Hide protected operating system files".&lt;br /&gt;Click OK.&lt;br /&gt;Now you should see a new folder in C drive, called i386. Open it.&lt;br /&gt;Rename NOTEPAD.EX_ to NOTEPAD.EX$&lt;br /&gt;Go back to the temporary folder you have Notepad2 in.&lt;br /&gt;Make a copy of Notepad2.exe and rename it to NOTEPAD.EX_&lt;br /&gt;Copy this to C:\i386&lt;br /&gt;Now go to C:\WINDOWS\system32&lt;br /&gt;Rename notepad.exe to notepad.ex$&lt;br /&gt;Make another copy of Notepad2.exe in the temporary folder, and rename it to notepad.exe&lt;br /&gt;Now copy this to C:\WINDOWS\system32&lt;br /&gt;Wait a few seconds to see if it is automatically replaced.&lt;br /&gt;Now it shouldn't be so. If it does get replaced, then try this below. Otherwise go to FINAL STEPS.&lt;br /&gt;&lt;br /&gt;Open Notepad and paste the following in it:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;copy /Y "notepad.exe" "C:\WINDOWS\"&lt;br /&gt;copy /Y "notepad.exe" "C:\WINDOWS\system32\dllcache\"&lt;br /&gt;copy /Y "notepad.exe" "C:\WINDOWS\system32\"&lt;/pre&gt;&lt;br /&gt;Save it as "np.bat" in the temporary folder having Notepad2 (Make sure the "Save as type" is selected as "All files".&lt;br /&gt;IMPORTANT: Close Notepad, and all open windows of Notepad.&lt;br /&gt;Now go to the temporary folder and double click np.bat&lt;br /&gt;This should work.&lt;br /&gt;Now do the final steps below.&lt;br /&gt;&lt;br /&gt;FINAL STEPS:&lt;br /&gt;Go to Tools &amp;gt; Folder Options &amp;gt; View.&lt;br /&gt;Reverse all the changes you had done previously.&lt;br /&gt;Click OK.&lt;br /&gt;Run Notepad by clicking Start &amp;gt; All Programs &amp;gt; Accessories &amp;gt; Notepad.&lt;br /&gt;Is it still the original Notepad, or is it the better-than-the-best Notepad2?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115304198662655047?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115304198662655047/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/07/how-to-replace-notepadexe-with.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115304198662655047'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115304198662655047'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/07/how-to-replace-notepadexe-with.html' title='How to replace notepad.exe with notepad2.exe'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115131581462841878</id><published>2006-06-26T12:14:00.000+05:30</published><updated>2006-06-27T14:36:02.326+05:30</updated><title type='text'>Send SMS in Singapore through Internet</title><content type='html'>Whenever you want to send an SMS through Internet, it is always a better practice to send them through the website of the mobile service provider, whose connection the recipient is using.&lt;br /&gt;&lt;br /&gt;When I searched for such pages on the Internet, I found these for Singapore:&lt;br /&gt;StarHub: &lt;a href="http://websms.starhub.com/websmsn/usr/createMsgSessionPageShow.do?method=initCreateSession"&gt;Click Here&lt;/a&gt;&lt;br /&gt;This is a two-way service, and so the recipient can reply to your message.&lt;br /&gt;&lt;br /&gt;SingTel: &lt;a href="http://home.singtel.com/consumer/msg_center/internet_sms.asp"&gt;For one-way service, Click Here&lt;/a&gt;&lt;br /&gt;You will not receive any reply.&lt;br /&gt;&lt;a href="http://sms.singtel.com/internetsms/"&gt;For two-way service, Click Here&lt;/a&gt;&lt;br /&gt;You will need to register an account before you can use this service.&lt;br /&gt;&lt;br /&gt;M1: &lt;a href="http://msgctr.m1.com.sg/MessageCentre/jsp_en/sendsms_nonsub.jsp"&gt;Click Here&lt;/a&gt;&lt;br /&gt;This is also a one-way service (not sure though), but M1 customers need to activate Internet SMS before they can receive your messages. To activate, they need to send "Insms on" to "8888".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115131581462841878?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115131581462841878/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/06/send-sms-in-singapore-through-internet.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115131581462841878'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115131581462841878'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/06/send-sms-in-singapore-through-internet.html' title='Send SMS in Singapore through Internet'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115121516333487725</id><published>2006-06-25T11:27:00.000+05:30</published><updated>2006-06-25T11:29:23.346+05:30</updated><title type='text'>Librarians' Internet Index</title><content type='html'>This website was recommended by the library of my polytechnic (Temasek).&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.lii.org/"&gt;http://www.lii.org/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115121516333487725?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115121516333487725/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/06/librarians-internet-index.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115121516333487725'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115121516333487725'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/06/librarians-internet-index.html' title='Librarians&apos; Internet Index'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-115047320893901384</id><published>2006-06-16T21:14:00.000+05:30</published><updated>2006-06-16T21:23:28.993+05:30</updated><title type='text'>A ball of dough...</title><content type='html'>You are given a ball of dough.&lt;br /&gt;You have three choices.&lt;br /&gt;Choice 1:&lt;br /&gt;Mould it into a small artefact that means something to you. Bake it so that it will never change its shape from being that beautiful artefact. Place it in your showcase where you have more similar beautiful artefacts.&lt;br /&gt;Choice 2:&lt;br /&gt;Flatten it and make it into a roti. Cook it in a pan and make a delicious gravy to accompany it. Eat it and relish it's taste.&lt;br /&gt;Choice 3:&lt;br /&gt;Crush it in your hand. Go to the nearest dustbin. Throw it in the dustbin.&lt;br /&gt;Which will you choose to do?&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;Have you chosen what you will do with a ball of dough?&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;Have you?&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;Are you sure you won't regret your choice?&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;If you're sure you made the best choice...&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;... know that each new friend you make is a ball of dough in your hands.&lt;br /&gt;You've made your choice. You can't change it now!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-115047320893901384?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/115047320893901384/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/06/ball-of-dough.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115047320893901384'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/115047320893901384'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/06/ball-of-dough.html' title='A ball of dough...'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114967430549571687</id><published>2006-06-07T14:46:00.000+05:30</published><updated>2006-06-07T15:28:26.100+05:30</updated><title type='text'>Meebo.com - Virtual Operating System?</title><content type='html'>You should check out &lt;a href="http://www.meebo.com"&gt;www.meebo.com&lt;/a&gt; ! It's supercool.&lt;br /&gt;Although the only purpose of it is functioning as a multi-protocol (AIM, ICQ, Yahoo, MSN, Jabber and Google Talk) instant messenger, it looks more like an operating system in a browser window!&lt;br /&gt;If Microsoft would take the same concept into action, they can create a real life Windows demo that would instantly run in the browser window through the latest and coolest web technology called AJAX!&lt;br /&gt;Using this technology they can create live demos of their next operating systems in which demo users can click and explore what they want instead of staring at a screen of slides.&lt;br /&gt;And they can have the real experience as though they already have the OS installed, although it's just a webpage!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114967430549571687?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114967430549571687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/06/meebocom-virtual-operating-system.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114967430549571687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114967430549571687'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/06/meebocom-virtual-operating-system.html' title='Meebo.com - Virtual Operating System?'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114478582609873433</id><published>2006-04-12T01:33:00.000+05:30</published><updated>2006-04-12T01:33:46.146+05:30</updated><title type='text'>Dr. August Dvorak</title><content type='html'>&lt;a href="http://content.lib.washington.edu/cgi-bin/viewer.exe?CISOROOT=/imlsmohai&amp;amp;CISOPTR=2101" target="_blank"&gt;Click here&lt;/a&gt; to see an actual black and white photograph of Dr. August Dvorak, the inventor of the &lt;a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" target="_blank"&gt;Dvorak Simplified Keyboard&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;"Dr. August Dvorak, an educational psychologist and professor of education at the University of Washington, teaches a class of typists his new Simplified Keyboard Layout. In May 1932 Dr. Dvorak filed a patent for the new layout, which claimed to result in faster, easier to learn typing. This photo may have been taken for a promotional piece."&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dvzine.org" target="_blank"&gt;Viva La Dvorak!&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114478582609873433?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114478582609873433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/04/dr-august-dvorak.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114478582609873433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114478582609873433'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/04/dr-august-dvorak.html' title='Dr. August Dvorak'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114476333691630657</id><published>2006-04-11T19:18:00.000+05:30</published><updated>2006-04-11T19:27:09.500+05:30</updated><title type='text'>Dvorak vs. Qwerty</title><content type='html'>In the &lt;a href="http://dvzine.org/info/input.html" target="_blank"&gt;Typing Analyst&lt;/a&gt; of DVzine, I put in all the answers I posted in &lt;a href="http://answers.yahoo.com" target="_blank"&gt;Yahoo! Answers&lt;/a&gt; before I began writing this. These are the interesting results I got:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Key-by-key usage analysis&lt;/b&gt;&lt;br /&gt;These charts will give you a general idea of key usage in Dvorak and QWERTY. To get exact information about keystroke counts and percentage of keystrokes on a key, simply hold your mouse over that key.&lt;br /&gt;&lt;table border="0" width="700"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Dvorak&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/tilde-0.gif" alt="0% (0 keystrokes)" title="0% (0 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/one-0.gif" alt="0% (57 keystrokes)" title="0% (57 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/two-0.gif" alt="0% (16 keystrokes)" title="0% (16 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/three-0.gif" alt="0% (5 keystrokes)" title="0% (5 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/four-0.gif" alt="0% (5 keystrokes)" title="0% (5 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/five-0.gif" alt="0% (10 keystrokes)" title="0% (10 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/six-0.gif" alt="0% (3 keystrokes)" title="0% (3 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/seven-0.gif" alt="0% (4 keystrokes)" title="0% (4 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/eight-0.gif" alt="0% (10 keystrokes)" title="0% (10 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/nine-0.gif" alt="0% (65 keystrokes)" title="0% (65 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/zero-1.gif" alt="1% (84 keystrokes)" title="1% (84 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/lbrac-0.gif" alt="0% (7 keystrokes)" title="0% (7 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/rbrac-0.gif" alt="0% (7 keystrokes)" title="0% (7 keystrokes)" width="40"&gt;&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/tab.gif" height="40"&gt;&lt;img src="http://dvzine.org/info/colorout/apost-1.gif" alt="1% (185 keystrokes)" title="1% (185 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/comma-1.gif" alt="1% (161 keystrokes)" title="1% (161 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/period-1.gif" alt="2% (315 keystrokes)" title="2% (315 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/p-2.gif" alt="3% (419 keystrokes)" title="3% (419 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/y-1.gif" alt="2% (335 keystrokes)" title="2% (335 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/f-1.gif" alt="2% (323 keystrokes)" title="2% (323 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/g-1.gif" alt="1% (217 keystrokes)" title="1% (217 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/c-2.gif" alt="3% (498 keystrokes)" title="3% (498 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/r-3.gif" alt="5% (824 keystrokes)" title="5% (824 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/l-2.gif" alt="4% (601 keystrokes)" title="4% (601 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/slash-0.gif" alt="0% (72 keystrokes)" title="0% (72 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/equal-0.gif" alt="0% (11 keystrokes)" title="0% (11 keystrokes)" width="40"&gt;&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/caps.gif" height="40"&gt;&lt;img src="http://dvzine.org/info/colorout/a-4.gif" alt="7% (1086 keystrokes)" title="7% (1086 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/o-4.gif" alt="8% (1304 keystrokes)" title="8% (1304 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/e-5.gif" alt="11% (1745 keystrokes)" title="11% (1745 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/u-2.gif" alt="3% (474 keystrokes)" title="3% (474 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/i-3.gif" alt="6% (1023 keystrokes)" title="6% (1023 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/d-2.gif" alt="3% (546 keystrokes)" title="3% (546 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/h-2.gif" alt="4% (657 keystrokes)" title="4% (657 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/t-5.gif" alt="9% (1407 keystrokes)" title="9% (1407 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/n-3.gif" alt="6% (929 keystrokes)" title="6% (929 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/s-3.gif" alt="6% (933 keystrokes)" title="6% (933 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/dash-1.gif" alt="1% (107 keystrokes)" title="1% (107 keystrokes)" width="40"&gt;&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/lshift.gif" height="40"&gt;&lt;img src="http://dvzine.org/info/colorout/semi-0.gif" alt="0% (39 keystrokes)" title="0% (39 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/q-0.gif" alt="0% (17 keystrokes)" title="0% (17 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/j-0.gif" alt="0% (25 keystrokes)" title="0% (25 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/k-1.gif" alt="1% (205 keystrokes)" title="1% (205 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/x-0.gif" alt="0% (77 keystrokes)" title="0% (77 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/b-1.gif" alt="2% (243 keystrokes)" title="2% (243 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/m-1.gif" alt="2% (372 keystrokes)" title="2% (372 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/w-1.gif" alt="2% (329 keystrokes)" title="2% (329 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/v-1.gif" alt="1% (161 keystrokes)" title="1% (161 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/z-0.gif" alt="0% (22 keystrokes)" title="0% (22 keystrokes)" width="40"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;center&gt;&lt;img src="http://dvzine.org/info/colorout/d-0.gif"&gt;&lt;img src="http://dvzine.org/info/colorout/d-1.gif"&gt;&lt;img src="http://dvzine.org/info/colorout/d-2.gif"&gt;&lt;img src="http://dvzine.org/info/colorout/d-3.gif"&gt;&lt;img src="http://dvzine.org/info/colorout/d-4.gif"&gt;&lt;img src="http://dvzine.org/info/colorout/d-5.gif"&gt;&lt;br /&gt;No usage &amp;gt; &amp;gt; &amp;gt; &amp;gt; Highest usage&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;QWERTY&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/tilde-0.gif" alt="0% (0 keystrokes)" title="0% (0 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/one-0.gif" alt="0% (57 keystrokes)" title="0% (57 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/two-0.gif" alt="0% (16 keystrokes)" title="0% (16 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/three-0.gif" alt="0% (5 keystrokes)" title="0% (5 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/four-0.gif" alt="0% (5 keystrokes)" title="0% (5 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/five-0.gif" alt="0% (10 keystrokes)" title="0% (10 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/six-0.gif" alt="0% (3 keystrokes)" title="0% (3 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/seven-0.gif" alt="0% (4 keystrokes)" title="0% (4 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/eight-0.gif" alt="0% (10 keystrokes)" title="0% (10 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/nine-0.gif" alt="0% (65 keystrokes)" title="0% (65 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/zero-1.gif" alt="1% (84 keystrokes)" title="1% (84 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/dash-1.gif" alt="1% (107 keystrokes)" title="1% (107 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/equal-0.gif" alt="0% (11 keystrokes)" title="0% (11 keystrokes)" width="40"&gt;&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/tab.gif" height="40"&gt;&lt;img src="http://dvzine.org/info/colorout/q-0.gif" alt="0% (17 keystrokes)" title="0% (17 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/w-1.gif" alt="2% (329 keystrokes)" title="2% (329 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/e-5.gif" alt="11% (1745 keystrokes)" title="11% (1745 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/r-3.gif" alt="5% (824 keystrokes)" title="5% (824 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/t-5.gif" alt="9% (1407 keystrokes)" title="9% (1407 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/y-1.gif" alt="2% (335 keystrokes)" title="2% (335 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/u-2.gif" alt="3% (474 keystrokes)" title="3% (474 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/i-3.gif" alt="6% (1023 keystrokes)" title="6% (1023 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/o-4.gif" alt="8% (1304 keystrokes)" title="8% (1304 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/p-2.gif" alt="3% (419 keystrokes)" title="3% (419 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/lbrac-0.gif" alt="0% (7 keystrokes)" title="0% (7 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/rbrac-0.gif" alt="0% (7 keystrokes)" title="0% (7 keystrokes)" width="40"&gt;&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/caps.gif" height="40"&gt;&lt;img src="http://dvzine.org/info/colorout/a-4.gif" alt="7% (1086 keystrokes)" title="7% (1086 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/s-3.gif" alt="6% (933 keystrokes)" title="6% (933 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/d-2.gif" alt="3% (546 keystrokes)" title="3% (546 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/f-1.gif" alt="2% (323 keystrokes)" title="2% (323 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/g-1.gif" alt="1% (217 keystrokes)" title="1% (217 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/h-2.gif" alt="4% (657 keystrokes)" title="4% (657 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/j-0.gif" alt="0% (25 keystrokes)" title="0% (25 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/k-1.gif" alt="1% (205 keystrokes)" title="1% (205 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/l-2.gif" alt="4% (601 keystrokes)" title="4% (601 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/semi-0.gif" alt="0% (39 keystrokes)" title="0% (39 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/apost-1.gif" alt="1% (185 keystrokes)" title="1% (185 keystrokes)" width="40"&gt;&lt;br /&gt;&lt;img src="http://dvzine.org/info/colorout/lshift.gif" height="40"&gt;&lt;img src="http://dvzine.org/info/colorout/z-0.gif" alt="0% (22 keystrokes)" title="0% (22 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/x-0.gif" alt="0% (77 keystrokes)" title="0% (77 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/c-2.gif" alt="3% (498 keystrokes)" title="3% (498 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/v-1.gif" alt="1% (161 keystrokes)" title="1% (161 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/b-1.gif" alt="2% (243 keystrokes)" title="2% (243 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/n-3.gif" alt="6% (929 keystrokes)" title="6% (929 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/m-1.gif" alt="2% (372 keystrokes)" title="2% (372 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/comma-1.gif" alt="1% (161 keystrokes)" title="1% (161 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/period-1.gif" alt="2% (315 keystrokes)" title="2% (315 keystrokes)" width="40"&gt;&lt;img src="http://dvzine.org/info/colorout/slash-0.gif" alt="0% (72 keystrokes)" title="0% (72 keystrokes)" width="40"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;h1&gt;The Dvorak / QWERTY Keyboard Efficiency Analyzer&lt;/h1&gt;&lt;table border="1" cellpadding="0" cellspacing="1" width="600"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;&lt;b&gt;Dvorak&lt;/b&gt;&lt;/center&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;&lt;b&gt;QWERTY&lt;/b&gt;&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Number Row Usage&lt;/td&gt;&lt;td&gt;&lt;center&gt;273 (2%)&lt;/center&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;391 (2%)&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Top Row Usage&lt;/td&gt;&lt;td&gt;&lt;center&gt;3961 (25%)&lt;/center&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;7877 (49%)&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Home Row Usage&lt;/td&gt;&lt;td&gt;&lt;center&gt;10211 (64%)&lt;/center&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;4817 (30%)&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Bottom Row Usage&lt;/td&gt;&lt;td&gt;&lt;center&gt;1490 (9%)&lt;/center&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;2850 (18%)&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Number of hand alternations&lt;/td&gt;&lt;td&gt;&lt;center&gt;26338&lt;/center&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;20541&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Number of same-finger reaches&lt;/td&gt;&lt;td&gt;&lt;center&gt;901&lt;/center&gt;&lt;/td&gt;&lt;td&gt;&lt;center&gt;1361&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114476333691630657?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114476333691630657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/04/dvorak-vs-qwerty.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114476333691630657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114476333691630657'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/04/dvorak-vs-qwerty.html' title='Dvorak vs. Qwerty'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114442386937241178</id><published>2006-04-07T21:00:00.000+05:30</published><updated>2006-04-07T21:01:09.386+05:30</updated><title type='text'>Temasek Polytechnic</title><content type='html'>Want to immerse yourself with the vivid and colourful display of the campus of the institute I'm going to study in? &lt;a href="http://www.tp.edu.sg/tp4u/photo/default.htm"&gt;Click here!!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you still didn't click there, you are missing out on something spectacular!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114442386937241178?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114442386937241178/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/04/temasek-polytechnic.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114442386937241178'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114442386937241178'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/04/temasek-polytechnic.html' title='Temasek Polytechnic'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114435227656492515</id><published>2006-04-07T01:07:00.000+05:30</published><updated>2006-04-07T01:10:15.530+05:30</updated><title type='text'>Everywhere Messenger (Web Messenger)</title><content type='html'>&lt;a href="http://www.e-messenger.net/" target="_blank"&gt;Everywhere Messenger - e-messenger.net&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;"e-Messenger is a &lt;b&gt;web&lt;/b&gt; application that enables you to chat with your MSN, AOL and Yahoo buddies &lt;span style="font-weight: bold;"&gt;without having to install any program or Java applet&lt;/span&gt;. All you need is a JavaScript enabled &lt;b&gt;browser&lt;/b&gt; and you're set to go and use e-Messenger, even if you're behind a &lt;b&gt;firewall&lt;/b&gt;.&lt;br /&gt;&lt;br /&gt;Please note that you must &lt;b&gt;disable your pop-up blocker&lt;/b&gt; for e-Messenger to work correctly. After you have logged in you will be notified if you have a blocker activated for the server you are chatting on. [You can also &lt;b&gt;keep your pop-up blocker enabled as long as you have "e-messenger.net"&lt;/b&gt; (no quotes and no 'www.') &lt;b&gt;in your pop-up blocker's exceptions/allow list&lt;/b&gt;.]&lt;br /&gt;&lt;br /&gt;If you are on the road you can still chat with your buddies using e-Messenger. Every mobile device that supports HTML or WAP can be used.&lt;br /&gt;&lt;br /&gt;&lt;table border="0" width="100%"&gt;  &lt;tbody&gt;&lt;tr&gt;&lt;td&gt; &lt;a href="http://www.passport.net/" target="_blank"&gt;&lt;img src="http://www.e-messenger.net/images/PassportLogo140x44.gif" style="border: 2px solid rgb(51, 153, 204);" width="130" /&gt;&lt;/a&gt;  &lt;br /&gt;&lt;/td&gt; &lt;td valign="top"&gt;&lt;b&gt;MSN&lt;/b&gt;&lt;br /&gt;You'll need a Microsoft .NET Passport. You can &lt;b&gt;register&lt;/b&gt; your FREE .NET Passport today! &lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt; &lt;a href="http://my.screenname.aol.com/" target="_blank"&gt;&lt;img src="http://www.e-messenger.net/images/sn.gif" style="border: 2px solid rgb(51, 153, 204);" /&gt;&lt;/a&gt; &lt;/td&gt; &lt;td valign="top"&gt;&lt;b&gt;AOL&lt;/b&gt;&lt;br /&gt;You'll need an AOL * Netscape * Compuserve Screen Name. You can &lt;b&gt;register&lt;/b&gt; your FREE Screen Name today! &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt; &lt;a href="http://us.rd.yahoo.com/reg/login0/signup_lhs/us//*http://edit.yahoo.com/config/eval_register?.intl=us&amp;new=1&amp;amp;.done=http%3a//my.yahoo.com&amp;.src=&amp;amp;.v=0&amp;.u=cscprat0t9f47&amp;amp;amp;amp;amp;amp;partner=&amp;.p=&amp;amp;promo=&amp;.last=" target="_blank"&gt;&lt;img src="http://www.e-messenger.net/images/yahoo.gif" style="border: 2px solid rgb(51, 153, 204);" /&gt;&lt;/a&gt; &lt;/td&gt; &lt;td valign="top"&gt;&lt;b&gt;Yahoo&lt;/b&gt;&lt;br /&gt;You'll need a Yahoo ID. You can &lt;b&gt;sign up&lt;/b&gt; now for FREE! &lt;/td&gt;&lt;/tr&gt;   &lt;tr&gt;&lt;td colspan="3"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td colspan="3" valign="top"&gt; &lt;b class="title"&gt;Mobile version&lt;/b&gt;&lt;br /&gt;Available at http://mob.e-messenger.net . All you need is a xHTML or WAP 2.0 enabled browser.&lt;br /&gt;&lt;br /&gt;&lt;b class="title"&gt;WAP Version&lt;/b&gt;&lt;br /&gt;A WAP version (for WAP 1.1 or higher) is also available. Just open your WAP Browser on your device and go to http://wap.e-messenger.net&lt;br /&gt;&lt;br /&gt;&lt;b class="title"&gt;Light Version&lt;/b&gt;&lt;br /&gt;Old light version of eMessenger available here:&lt;br /&gt;&lt;a href="http://boston.e-messenger.net/light"&gt;server 1&lt;/a&gt;&lt;br /&gt;&lt;a href="http://atlanta.e-messenger.net/light"&gt;server 2&lt;/a&gt;&lt;br /&gt;                                                              &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;br /&gt;eMessenger is the first, &lt;span style="font-weight: bold;"&gt;web browser-based instant messaging&lt;/span&gt; service since 2003. eMessenger is a privately funded, Netherlands based company. Our patent pending technology enables millions of unique users every month to chat over the web and mobile phones. &lt;span style="font-weight: bold;"&gt;Proprietary and Ajax technology&lt;/span&gt; are used for best user experience. For general information about eMessenger please contact us at &lt;span style="font-style: italic;"&gt;info[at]e-messenger.net&lt;/span&gt;"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114435227656492515?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114435227656492515/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/04/everywhere-messenger-web-messenger.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114435227656492515'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114435227656492515'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/04/everywhere-messenger-web-messenger.html' title='Everywhere Messenger (Web Messenger)'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114401305236433533</id><published>2006-04-03T00:34:00.000+05:30</published><updated>2006-04-03T02:54:12.420+05:30</updated><title type='text'>SMS from Internet, Email or IM to United States Mobile Number</title><content type='html'>It is very, very easy to send a text (SMS) message to an United States mobile number from anywhere in the world, for free. But it is very tricky too. In my desperate attempt to send an SMS to my girlfriend through the Internet, I found a few helpful resources. All of them are free, and MonkeyMaximus is international! If you find more resources, add them as remarks.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;Disclaimer:&lt;/span&gt; I cannot be and should not be held responsible if using any of these resources resulted in any mobile number being harvested for text spamming.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://toolbar1.google.com/send/sms/index.php"&gt;Google SMS&lt;/a&gt;&lt;br /&gt;It supports these cellular carriers: &lt;span style="font-style: italic;"&gt;Alltel, AT&amp;T (converted to Cingular), CellularOne, Cingular, Nextel, Omnipoint, Qwest, Sprint, T-Mobile, Verizon, Virgin Mobile&lt;/span&gt;&lt;br /&gt;The problem here is that, you need to know the carrier. Don't worry! The next resource is the solution to the problem.&lt;br /&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://www.searchbug.com/peoplefinder/landline-or-cellphone.aspx"&gt;SearchBug People Finder - Landline or Cellular Phone Number?&lt;/a&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;"Verify if a phone number is a cellular number or a regular (home or office) land line number. The tool also &lt;/span&gt;&lt;u style="font-style: italic;"&gt;reports telephone company&lt;/u&gt;&lt;span style="font-style: italic;"&gt; and location. Works for both US and Canada. We use first 7 digits of the number to give you the most precise results on the Web."&lt;/span&gt;&lt;br /&gt;&lt;a href="http://decoder.americom.com/"&gt;&lt;span style="font-weight: bold;"&gt;Area Code Decoder&lt;/span&gt;&lt;/a&gt; serves the same purpose, but is also international.&lt;br /&gt;These two resources above may provide false information due to number portability.&lt;br /&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://usc.ztango.com/uscwmss"&gt;US Cellular&lt;/a&gt;&lt;br /&gt;Now I faced another problem. I found out that Google SMS does not support US Cellular, which is what my girlfriend has. But luckily I found this page. If you don't have your own number to put as the From number, put one of the To numbers as the From number. I did that with my girlfriend's number, and it worked! (She replies to me as US Cellular has something like SMS-to-email.)&lt;br /&gt;&lt;br /&gt;You can send through email, but it did not work for me.&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://www.teleflip.com/teleflip/index.jsp"&gt;Teleflip&lt;/a&gt;&lt;br /&gt;A simple way is to send plain text email to 2345557777@teleflip.com (replace the number with your 10 digit phone number).&lt;br /&gt;This will automatically find out the carrier, and forward your message to the appropriate address. If you know the carrier (or find out using the second resource above), then you can send an email directly to these email addresses (where &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt; is the 10 digit phone number):&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Former AT&amp;T customers:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;mmode.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Alltel:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;alltelmessage.com&lt;/span&gt; &lt;span style="font-weight: bold; font-style: italic;"&gt;OR&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;message.alltel.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;CellularOne:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;mobile.celloneusa.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Cingular:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;cingularme.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Nextel:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;messaging.nextel.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Omnipoint:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;omnipointpcs.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Qwest:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;qwestmp.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Sprint:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;messaging.sprintpcs.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;T-Mobile:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;tmomail.net&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Verizon:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;vtext.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Virgin Mobile:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;phonenumber&lt;/span&gt;@&lt;span style="font-weight: bold;"&gt;vmobl.com&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;AOL's AIM claims to be able to send IM2SMS&lt;/span&gt; messages, though this didn't seem to work for me. &lt;span style="font-style: italic;"&gt;"In AIM (or any client that you can log in to AIM with, such as GAIM or Trillian), type +(Number) where number is 1(area code)(7 digit number). For example; an IM to +12223334444 would send a text to (222) 333-4444."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.monkeymaximus.com/"&gt;&lt;span style="font-weight: bold;"&gt;Monkeymaximus | TextNation - Free Text SMS Messaging&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;"Monkeymaximus \ TextNation allows users to send text messages using our website. Users make a custom text message page that they can link to using AIM, Xanga, Blogs, ICQ, YAHOO!, or just ANY place you can put a Link! We also offer a BuddyList feature so that users can have quick access to text messaging their friends. We now allow users to text unregistered users!"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bitbomb.com/"&gt;&lt;span style="font-weight: bold;"&gt;bitBomb.com: Text Message Your Reminders to your Cell Phone&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Here you can schedule messages to be sent to a mobile phone (US/Canada) at a specific date and time. You will need to know the carrier.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://keakaj.com/sms/sms.cgi"&gt;&lt;span style="font-weight: bold;"&gt;Free Web SMS : Sanity Software&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;"I offer a similar free service on my website and support more carriers than Google (including Canada). You can also specify your Sender ID (unlike Google) and send long messages that are automatically split up into multiple pieces."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.pranks.biz/"&gt;&lt;span style="font-weight: bold;"&gt;#1 Cell Phone Prank Site: Play a Joke on Someone - Pranks.biz&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Although this site professes to send prank, you can very well use it to send messages that are not prank/joke. &lt;span style="font-style: italic;"&gt;"Get at your friends by bombing their cell phones with text messages, i.e. spam. Be creative with your text message (and time of sending) to ensure a most memorable prank :)&lt;/span&gt;"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114401305236433533?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114401305236433533/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/04/sms-from-internet-email-or-im-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114401305236433533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114401305236433533'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/04/sms-from-internet-email-or-im-to.html' title='SMS from Internet, Email or IM to United States Mobile Number'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114199373148594562</id><published>2006-03-10T17:40:00.000+05:30</published><updated>2006-03-10T17:58:51.523+05:30</updated><title type='text'>Living For Jesus</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1955/498/1600/LFJ_96.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/1955/498/400/LFJ_96.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Download and use this image as a display picture (avatar) in MSN Messenger, Yahoo Messenger, forums, etc.&lt;br /&gt;PNG Version: &lt;a href="http://www.fileshack.us/files/1414/LFJ_96.png"&gt;http://www.fileshack.us/files/1414/LFJ_96.png&lt;/a&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1955/498/1600/LFJ.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/1955/498/400/LFJ.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Download and use this bigger image for other purposes.&lt;br /&gt;PNG Version: &lt;a href="http://www.fileshack.us/files/1414/LFJ.png"&gt;http://www.fileshack.us/files/1414/LFJ.png&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114199373148594562?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114199373148594562/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/03/living-for-jesus.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114199373148594562'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114199373148594562'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/03/living-for-jesus.html' title='Living For Jesus'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114041214921448429</id><published>2006-02-20T10:39:00.000+05:30</published><updated>2006-02-20T10:39:09.296+05:30</updated><title type='text'>Rolling on the Floor Wiki-ing!</title><content type='html'>If you really want to get a good laugh, read some "factually accurate" articles from the &lt;a href="http://uncyclopedia.org/wiki/Main_Page"&gt;Uncyclopedia&lt;/a&gt;.&lt;br /&gt;Uncyclopedia is a comedic parody of the famous Wikipedia.&lt;br /&gt;&lt;br /&gt;Link: &lt;a href="http://uncyclopedia.org/wiki/Main_Page"&gt;http://uncyclopedia.org/wiki/Main_Page&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114041214921448429?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114041214921448429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/02/rolling-on-floor-wiki-ing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114041214921448429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114041214921448429'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/02/rolling-on-floor-wiki-ing.html' title='Rolling on the Floor Wiki-ing!'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7796619.post-114012925188940289</id><published>2006-02-17T04:04:00.000+05:30</published><updated>2006-02-17T04:04:11.966+05:30</updated><title type='text'>Practice Typing in Firefox</title><content type='html'>If you are well versed with the position of the keys on your keyboard, and type fairly well, you can improve your typing skills if you are using Mozilla Firefox Browser (the same may be true for Thunderbird and Netscape... I really don't know).&lt;br /&gt;&lt;br /&gt;1) Open the webpage (or HTML file or even TXT file) that contains the text that you want to practice typing on.&lt;br /&gt;2) Press Ctrl+F (or click Edit&gt;Find in This Page...)&lt;br /&gt;3) Make sure the cursor is in the text box in the Find bar that appears below. If you want, check "Match case".&lt;br /&gt;4) Find your favorite paragraph and start typing. The paragraph you type will get selected in green according to how much you type. (Note that if the first word of the paragraph is repeated somewhere before it, the paragraph will begin to be selected on completion of second or third word.)&lt;br /&gt;5) When you make a mistake, the paragraph deselects, the Find box becomes red, and a warning appears in the Find bar. Press backspace key until this condition changes back to the normal green selection.&lt;br /&gt;6) When you complete the paragraph, press Shift+Home and press Backspace. (The idea here is to clear the Find text box and prepare it for the next paragraph.)&lt;br /&gt;&lt;br /&gt;TIP: If "Edit &gt; Preferences &gt; Advanced &gt; Accessibility &gt; Begin finding when you begin typing" is checked, you can directly go to step 4 after step 1, and the Find bar will appear automatically.&lt;br /&gt;&lt;br /&gt;Enjoy your typing and tell me when you become a ninja typist using only Firefox (or whatever)!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7796619-114012925188940289?l=thehunk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thehunk.blogspot.com/feeds/114012925188940289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://thehunk.blogspot.com/2006/02/practice-typing-in-firefox.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114012925188940289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7796619/posts/default/114012925188940289'/><link rel='alternate' type='text/html' href='http://thehunk.blogspot.com/2006/02/practice-typing-in-firefox.html' title='Practice Typing in Firefox'/><author><name>ADTC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
