<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Online Diary &#187; Tips n Tricks</title>
	<atom:link href="http://www.venukb.com/category/tips-n-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.venukb.com</link>
	<description>Tech News,Gadgets,Reviews,Eclipse and more</description>
	<lastBuildDate>Sat, 26 Mar 2011 17:45:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Google Calendar Sync with Outlook 2010</title>
		<link>http://www.venukb.com/2009/12/15/google-calendar-sync-with-outlook-2010/</link>
		<comments>http://www.venukb.com/2009/12/15/google-calendar-sync-with-outlook-2010/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:01:56 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.venukb.com/2009/12/15/google-calendar-sync-with-outlook-2010/</guid>
		<description><![CDATA[I use Google Calendar Sync to synchronize my Outlook calendar items with Google Calendar and this worked fine until I upgraded to Office 2010. Google Calendar Sync did not like Outlook 2010 and I was no longer able to synchronize calendar items. I was almost tempted to go back to Outlook 2007 and then I [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I use <a href="http://www.google.com/support/calendar/bin/answer.py?hl=en&amp;answer=89955">Google Calendar Sync</a> to synchronize my Outlook calendar items with Google Calendar and this worked fine until I upgraded to <a href="http://www.microsoft.com/office/2010/en/default.aspx">Office 2010</a>.</p>
<p>Google Calendar Sync did not like Outlook 2010 and I was no longer able to synchronize calendar items. I was almost tempted to go back to Outlook 2007 and then I found a thread to resolve this issue</p>
<p>Follow these steps to get Google Sync work with Outlook 2010</p>
<ol>
<li>Backup Outlook.exe. If you have done a default install of Office 2010, the file can be found at <code>C:\Program Files\Microsoft Office\Office14</code> </li>
<li>Close Outlook if its already running and ensure that Outlook.exe is not listed in Task Manager </li>
<li>Edit Outlook.exe in a Hex Editor </li>
<li>Replace text <code>14.0.0</code> with <code>12.0.0</code> </li>
<li>Save the file. </li>
<li>Start Outlook and ensure that its still functioning </li>
<li>Start Google Calendar Sync and you should see sync back in action. </li>
</ol>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=509&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2009/12/15/google-calendar-sync-with-outlook-2010/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>How To: Activate or Deactivate a Service on Linux</title>
		<link>http://www.venukb.com/2008/06/13/how-to-activate-or-deactivate-a-service-on-linux/</link>
		<comments>http://www.venukb.com/2008/06/13/how-to-activate-or-deactivate-a-service-on-linux/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 18:53:02 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/2008/06/13/how-to-activate-or-deactivate-a-service-on-linux/</guid>
		<description><![CDATA[A service is a long running executable which does require any user intervention and is configured to start when the operating system is booted. On Windows, the services are managed via services.msc and you can also communicate with a NT service using the SC tool. On Linux the services can be controlled via the chkconfig [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">A</span> service is a long running executable which does require any user intervention and is configured to start when the operating system is booted.</p>
<p>On Windows, the services are managed via <code><strong>services.msc</strong></code> and you can also communicate with a NT service using the <a href="http://www.venukb.com/2008/02/21/howto-delete-a-windows-service">SC tool</a>.</p>
<p>On Linux the services can be controlled via the <code>chkconfig</code> command line tool. </p>
<p>Usage details of <code><strong>chkconfig</strong></code>&#160; is shown below:</p>
<p class="note">chkconfig &#8211;list [name]    <br />chkconfig &#8211;add &lt;name&gt;     <br />chkconfig &#8211;del &lt;name&gt;     <br />chkconfig [--level &lt;levels&gt;] &lt;name&gt; &lt;on|off|reset&gt;</p>
<p><code>Add</code> and <code>Del</code> options are used to create or delete services for management. A service can be activated or deactivated using the <code>on</code> or <code>off</code> flags. Note that you have to mention the <em>runlevel</em> using the <code>--level</code> option.</p>
<p>The absensce of this runlevel will lead to the settings being applied to the current runlevel.</p>
<p>The <code>&lt;name&gt;</code> argument refers to the name of the service and this can be found by referring to the <code>/etc/init.d</code> director on Linux, which is a central repository for all startup scripts.</p>
<p>Also note that chkconfig modifies the data on /etc/rc[0-6].d directories and not the actual startup scripts.</p>
<p>A much faster way of enabling or disabling Linux services is by using the <code>ntsysv</code> command.</p>
<p><a title="Ntsysv" href="http://www.flickr.com/photos/venukb/2572901077"><img height="307" src="http://farm4.static.flickr.com/3118/2572901077_15b9c94536.jpg" width="412" /></a></p>
<p>The command lists the services available on the repository (/etc/init.d) and enables the user to disable/enable services in one shot.</p>
<p>Also if the service name looks too cryptic, you can always press F1 to get more information about the selected service.</p>
<p>As with chkconfig, if you need to control the services at multiple runlevel&#8217;s you need to invoke <code>ntsysv</code> with the <code>--level</code> argument</p>
<p class="note"><code><strong>ntsysv --level 345</strong></code> will configure the services on runlevel 3, 4 and 5.</p>
<p>If you are a Linux newbie, Linux.com has an <a href="http://www.linux.com/articles/114107">excellent introduction to Services, runlevel&#8217;s and rc.d scripts</a>.</p>
<p class="alert">Note: In <a href="http://www.debian.org" target="_blank">Debian</a>, services are managed using the <code>update-rc.d</code> command</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=488&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/06/13/how-to-activate-or-deactivate-a-service-on-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Safely Remove USB Hardware</title>
		<link>http://www.venukb.com/2008/06/11/safely-remove-usb-hardware/</link>
		<comments>http://www.venukb.com/2008/06/11/safely-remove-usb-hardware/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 18:40:32 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/2008/06/11/safely-remove-usb-hardware/</guid>
		<description><![CDATA[I have been reading in many posts which mention special tools to help in ejecting/removing a USB disk. The Windows &#8220;Safely Remove Hardware&#8221; feature has been notorious for hiding itself after installing the new hardware. You do have the option of Ejecting the hardware; however this becomes a pain if you are working with multiple [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">I</span> have been reading in <a href="http://www.makeuseof.com/tag/5-awesome-apps-to-make-things-easier-on-a-usb-drive/">many posts</a> which mention <a href="http://quick.mixnmojo.com/usb-disk-ejector">special tools</a> to help in ejecting/removing a USB disk. </p>
<p>The Windows &#8220;Safely Remove Hardware&#8221; feature has been notorious for hiding itself after installing the new hardware. </p>
<p>You do have the option of Ejecting the hardware; however this becomes a pain if you are working with multiple USB devices.</p>
<p><a title="cruzer by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/697105958/"><img class="right frame" height="104" alt="cruzer" src="http://farm2.static.flickr.com/1323/697105958_17436ecbca_m.jpg" width="240"/></a></p>
<p>Also in Windows XP, one USB device might list multiple entries in the Remove Hardware dialog. In Windows Vista there is a option to filter the device components.</p>
<h3>Do you really need to eject the USB Hardware ?</h3>
<p>Most of the USB Disks are <em>optimized for safe removal</em> and in my opinion you rarely need to use the &#8220;Eject&#8221; or &#8220;Safely Remove Hardware&#8221; feature. </p>
<p>To confirm this setting do the following</p>
<ol>
<li>Right Click on the removable disk and select Properties  </li>
<li>Click on the Hardware Tab, select the removable disk and click on the Properties button  </li>
<li>Click on the Policies Tab and you should see the following window<br /><a title="USB Policy" href="http://www.flickr.com/photos/venukb/2568442108/"><img height="237" alt="USB Policy" src="http://farm4.static.flickr.com/3105/2568442108_68d8a9e433.jpg" width="408"/></a>  </li>
<li>As you can see from the available options, the disk is either optimized for quick removal or for performance and most of the disks by default are optimized for quick removal. </li>
</ol>
<p>With write caching disabled by default for most of the USB disks, you really don&#8217;t need to worry about ejecting or safely removing the USB hardware.</p>
<p class="note"><strong>Note</strong>: Unlike USB drives, the hard drives have write caching enabled by default for better performance and hence are susceptible to data loss or corruption on power outage.<br /><a title="usb2 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2567655969/"><img height="262" alt="usb2" src="http://farm4.static.flickr.com/3060/2567655969_1b363755af.jpg" width="309"/></a></p>
<p>If you are still not comfortable unplugging the USB disk without Ejecting, you can always add a shortcut on your desktop to quickly access the <em>Safely Remove Hardware</em> dialog</p>
<p>The target of the shortcut should point to:</p>
</p>
<pre>RunDll32.exe shell32.dll,Control_RunDLL hotplug.dll</pre>
<p>Alternatively you can install utilities such as <a href="http://quick.mixnmojo.com/usb-disk-ejector">USB Disk Ejector</a> which simplify the above task.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=487&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/06/11/safely-remove-usb-hardware/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Woopra Web Analytics</title>
		<link>http://www.venukb.com/2008/06/10/woopra-web-analytics/</link>
		<comments>http://www.venukb.com/2008/06/10/woopra-web-analytics/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 19:50:12 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.venukb.com/2008/06/10/woopra-web-analytics/</guid>
		<description><![CDATA[Web Analytic tools are must have for anybody running a website since they give interesting insight into your site’s traffic patterns. Woopra Web Analytics was mentioned/reviewed by so many sites that I had to give it a try. After signing up for Woopra, I immediately proceeded towards the downloads page. I installed the Desktop Client [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Web Analytic tools are must have for anybody running a website since they give interesting insight into your site’s traffic patterns. </p>
<p><a href="http://www.woopra.com/">Woopra Web Analytics</a> was mentioned/reviewed by so many sites that I had to give it a try.</p>
<p>After signing up for Woopra, I immediately proceeded towards the <a href="http://www.woopra.com/download/">downloads</a> page. I installed the <a href="http://static.woopra.com/woopra_windows.exe">Desktop Client</a> (for which I had to upgrade the JRE on my system to 1.6) and also installed the WordPress Plug-in. </p>
<p><a title="Woopra" href="http://www.flickr.com/photos/venukb/2565634366/"><img height="48" alt="woopra" src="http://farm4.static.flickr.com/3055/2565634366_60dddfde6f_m.jpg" width="202" align="right"/></a></p>
<p>Only after installing the WP Plugin did I realize that I had to have an &#8220;<em>Invitation Code</em>&#8221; to use Woopra ! </p>
<p>Without an code you need to wait till Woopra inspects and approves your site !</p>
<p>I don&#8217;t understand as to why Woopra lets users download the software even before the user has added a site and has a valid <em>Website ID</em>!&nbsp; </p>
<p>I let out my frustration on <a href="http://www.twitter.com/venukb">Twitter</a> and looks like someone at Woopra has been tracking tweets on their application. My site was immediately approved ! (It might have been just coincidence as well <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<h3>Woopra Client</h3>
<p>Woopra Client application has been written in Java and does make extensive use of the <a href="http://image4j.sourceforge.net/">Image4J library</a> to render the pretty looking UI. </p>
<p><a title="Woopra Analytics" href="http://www.flickr.com/photos/venukb/2565634278/"><img height="220" alt="Woopra Analytics" src="http://farm4.static.flickr.com/3186/2565634278_d202d185c5.jpg" width="372"/></a></p>
<p>The combination of Blue, Green, Yellow and White colors on the UI does manage to create an <em>optical illusion</em> ! </p>
<p>Not sure as to what prompted the Woopra team to use this as the default color scheme. The other color schemes included in the UI are also of not much help.</p>
<p><strong>What I liked ?</strong></p>
<ul>
<li>Live traffic view including the Geographical view. It lets users see the active users and the number of pages they visited on your site.  </li>
<li>Starting a conversation with the &#8220;online&#8221; visitor (Some visitors might find this annoying <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )  </li>
<li>Visitor Tagging  </li>
<li>Geo Overlay on the Analytics Tab<br /><a title="Geo overlay" href="http://www.flickr.com/photos/venukb/2565653704/"><img height="173" alt="Geo overlay" src="http://farm4.static.flickr.com/3048/2565653704_279719cc03.jpg" width="365"/></a></li>
</ul>
<p><strong>What I did not like ?</strong></p>
<ul>
<li>The need to install the client software on every other system  </li>
<li>The UI Color Scheme  </li>
<li>The Dashboard view  </li>
<li>A scrolling bar status bar which is so annoying and yes there is no option to disable it or pause it !</li>
</ul>
<p>Also the visitor count data displayed by Woopra was only 75% of what I saw on <a href="http://www.google.com/analytics">Google Analytics</a> or <a href="http://www.venukb.com/2007/05/01/mint-flexible-web-analytics-program/">Mint</a>. Not sure on the kind of visitors being dropped by Woopra !</p>
<p>Till Woopra fixes the above issues and improves the UI of the client I would recommend anyone to try out <a href="http://www.venukb.com/2007/05/01/mint-flexible-web-analytics-program/">Mint Web Analytics</a>. </p>
<p>I am a big fan of this app for a number of reasons including</p>
<ul>
<li>Ability to view the Analytics data on a Single page  </li>
<li>Live Traffic Data  </li>
<li>Best looking user interface  </li>
<li>Filtering/Analysis of data by third party Pepper&#8217;s  </li>
<li>Ability to host on your own server</li>
</ul>
<p>Have you tried Woopra ? What is your view on Woopra ? </p>
<p>What analytics software do you use to track your site visitors? </p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=486&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/06/10/woopra-web-analytics/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cell Broadcast on HTC Touch</title>
		<link>http://www.venukb.com/2008/04/24/cell-broadcast-on-htc-touch/</link>
		<comments>http://www.venukb.com/2008/04/24/cell-broadcast-on-htc-touch/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 18:19:53 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/04/24/cell-broadcast-on-htc-touch/</guid>
		<description><![CDATA[Cell Broadcast also know as Short Message Service &#8211; Cell Broadcast (SMS-CB) is a service designed for delivery of messages to multiple users in a specified area. Unlike SMS Point to Point which is manly a one to one service Cell Broadcast is a one to many service. Some mobile operators use Cell Broadcast for [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Cell Broadcast also know as <em>Short Message Service &#8211; Cell Broadcast (SMS-CB)</em> is a service designed for delivery of messages to multiple users in a specified area. Unlike SMS Point to Point which is manly a one to one service Cell Broadcast is a one to many service. </p>
<p>Some mobile operators use Cell Broadcast for communicating the area code of the antenna cell to the mobile user (via channel 050), for nationwide or citywide alerting, weather reports, mass messaging, location based news, etc. The service might not be supported by all the operators; even some of the handsets don&#8217;t have the capability to receive Cell Broadcast messages.</p>
<p>One of the readers on my earlier post on <a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/" target="_blank">HTC Touch</a> wanted to know whether the Cell Broadcast service could be enabled on HTC. The service can be enabled easily on a Nokia or a Sony Ericsson phone and isn&#8217;t so easy to configure on HTC. </p>
<h3>Steps to enable Cell Broadcast on HTC Touch</h3>
<ol>
<li>Navigate to the following screen on the device
<pre>Start -&gt; Settings -&gt; Phone -&gt; More</pre>
</li>
<li>Check the &#8220;Enable&#8221; box under the Broadcast Channels
<p><a title="Cell Info on HTC Touch" href="http://www.flickr.com/photos/venukb/2437371788/"><img height="322" alt="Cell Info on HTC Touch" src="http://farm3.static.flickr.com/2003/2437371788_1a63c7b15c.jpg" width="244"/></a>
</li>
<li>Click on the &#8220;Settings&#8221; to bring up the following screen
<p><a title="Cell Info on HTC Touch" href="http://www.flickr.com/photos/venukb/2437371848/"><img height="324" alt="Cell Info on HTC Touch" src="http://farm3.static.flickr.com/2033/2437371848_d36014ff5e.jpg" width="243"/></a> </p>
<p class="note">-&gt; Check &#8220;Receive channel list&#8221;<br />-&gt; Set Language to &#8220;All Languages&#8221;<br />-&gt; Create a new item with any name and channel number set to 050 or 50</p>
</li>
<li>You should immediately see the Cell Broadcast messages being displayed as message alerts. 
</li>
<li>Cell Broadcast messages as <em>message alerts</em> are annoying and if you want the same to appear on the home screen, install the <a href="http://www.chi-tai.info/cs_BatteryStatus_XDA_Neo_WM5_iM_cs.htm" target="_blank"><strong>BatteryStatus</strong></a> application. Once installed, the application has an option to display the Cell broadcast messages on the &#8220;Today&#8221; screen<br />You can even optionally set the alignment for the broadcast messages.<br /> <a title="BatteryStatus" href="http://www.flickr.com/photos/venukb/2436552825/"><img height="240" alt="htcbat3" src="http://farm4.static.flickr.com/3160/2436552825_984b202be6_m.jpg" width="186"/></a>
</li>
<li>Once the above setting is done, you should see the Broadcast messages on the home screen as shown below (The message is next to the battery status)
<p><a title="htcbat4 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2437372016/"><img height="129" alt="htcbat4" src="http://farm4.static.flickr.com/3077/2437372016_783a45b2a5_m.jpg" width="238"/></a></li>
</ol>
<p class="alert">Note: The display of Broadcast messages is a battery sucker ! As you can see from the above image, the battery was fully charged before I enabled the broadcast feature. Within a day, the battery drained to 18% ! Every time a message is received, the display light is turned on and this is one major battery drainer. </p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=468&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/04/24/cell-broadcast-on-htc-touch/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Must have software for Windows</title>
		<link>http://www.venukb.com/2008/04/20/must-have-software-for-windows/</link>
		<comments>http://www.venukb.com/2008/04/20/must-have-software-for-windows/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 19:37:10 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/04/20/must-have-software-for-windows/</guid>
		<description><![CDATA[I happened to reinstall the OS on my system (yet again) and there is a set of software that I install after every OS re-install. In fact I have a &#8220;Must Have&#8221; directory which has all the software&#8217;s that I use on a day to day basis. Here is my list of &#8220;must have&#8221; applications [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">I</span> happened to reinstall the OS on my system (yet again) and there is a set of software that I install after every OS re-install. In fact I have a &#8220;<em>Must Have</em>&#8221; directory which has all the software&#8217;s that I use on a day to day basis.  </p>
<p>Here is my list of &#8220;must have&#8221; applications for Windows. I am also mentioning it in the order of install of these applications.<br />
<h3><a href="http://www.kaspersky.com">Kaspersky Antivirus</a></h3>
</p>
<p>The first thing to do after reinstalling an OS (or before you connect to the Internet) is to install a good Antivirus&nbsp; and a AntiSpyware application.<a title="Kaspersky" href="http://www.flickr.com/photos/venukb/2425695896/"><img height="244" alt="Kaspersky" src="http://farm4.static.flickr.com/3113/2425695896_5b8d62cf6a.jpg" width="305" align="right"/></a> I currently have a 2 year subscription of <a href="http://www.kasperksy.com">Kaspersky</a> and its one of the best AV applications that I have used so far. </p>
<p>There are a lot of quality free Antivirus software out there, but this has been one area where I am not willing to take risk by opting for a free alternative. I&#8217;ve had bad experience using some of the free alternatives and even some of the paid ones such as Norton gave me a lot of trouble. </p>
<p>Kaspersky takes the least amount of memory and CPU and also does the best job when finding/detecting viruses. No wonder its rated <a href="http://anti-virus-software-review.toptenreviews.com/" rel="nofollow">in the top</a> in <a href="http://antivirus.about.com/od/antivirussoftwarereviews/tp/aatpavwin.htm" rel="nofollow">almost all</a> the Antivirus reviews !</p>
<p>For spyware, as of now I am relying on Windows Defender which comes pre-installed with Vista ! Not sure if I am taking a risk here <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3><a href="http://www.mozilla.com/en-US/firefox/">Mozilla Firefox</a></h3>
<p>Unfortunately the OS (Windows XP/Vista) does <strong>not</strong> come pre-installed with this powerful browser and I do have to install it separately ! <a title="Firefox" href="http://www.flickr.com/photos/venukb/278937243/"><img height="77" alt="Firefox" src="http://farm1.static.flickr.com/120/278937243_67ae222107_o.png" width="266" align="right"/></a>Also thanks to the continuous updates, I always download the latest version rather than choosing the installable in my &#8220;Must Have&#8221; directory !</p>
<p>Few years back if you happened to visit a browsing center, you would only find IE installed on all the systems. When I used to ask about Firefox, I always used to get &#8220;What is that&#8221; expression ! Now I see that Firefox is also installed by default. Yes more users are now aware of this browser and rightly so !</p>
<p>I am not going to explain the choice of this browser; If you are a Firefox user you know the reason, if you are not, you better switch and start using Firefox !</p>
<p>And if you also happen to reinstall your system OS every now and then, do remember to backup the bookmarks via the Bookmark Manager !</p>
<h3><a href="http://www.rarsoft.com/">WinRar</a></h3>
<p>This is again a shareware application, but I do have a registered copy of WinRar and its way better than WinZip. Especially while handling the CAB or the JAR files I find WinRar very useful. <a href="http://www.7-zip.org/">7Zip</a> is a free alternative if you don&#8217;t want to shell out money for WinRar.</p>
<h3><a href="http://www.freedownloadmanager.org/">Free Download Manager</a></h3>
<p><a title="Free Download Manager" href="http://www.flickr.com/photos/venukb/2424976955/"><img style="margin: 5px 0px 0px" height="260" alt="Free Download Manager" src="http://farm4.static.flickr.com/3149/2424976955_17005b25dd.jpg" width="202" align="right"/></a></p>
<p>When it comes to download managers, you again have a lot of options. I have tried most of them and have finally settled on Free Download Manager. It has the best user interface and does not run any Ads ! </p>
<p>I do find the community options annoying is one feature that I turn off during the installation. </p>
<p>Do remember to run the &#8220;Optimization master&#8221; (found under options menu) to get the best download experience possible via FDM !</p>
<h3><a href="http://www.launchy.net/">Launchy</a></h3>
<p>If you are keyboard junkie then you would definitely like <a href="http://www.launchy.net">Launchy</a>. It&#8217;s one powerful application launcher and have written more about this app in my earlier post.</p>
<p class="note"><a href="http://venukb.com/blog/2007/12/21/launchy-20/">Read my earlier post on Launchy !</a></p>
<h3><a href="http://www.venukb.com/2008/01/10/newsgator-providing-its-rss-readers-for-free/">FeedDemon</a></h3>
<p>I hate web based RSS readers, they are slow and UI is sluggish compared to the desktop based readers. Of the desktop based readers, I love FeedDemon for its simple yet powerful user interface and the synchronization feature ! What more, its <a href="http://www.venukb.com/2008/01/10/newsgator-providing-its-rss-readers-for-free/">free</a> and a must have if you don&#8217;t like Google Reader <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p class="note"><a href="http://www.venukb.com/2007/06/16/feeddemon-worth-buying/">Read my earlier post on FeedDemon !</a></p>
<h3><a href="http://www.videolan.org/vlc/">VLC Media Player</a>/<a href="http://www.apple.com/itunes">iTunes</a></h3>
<p><a title="VLC Media Player" href="http://www.flickr.com/photos/venukb/2425896164/"><img height="128" alt="VLC Media Player" src="http://farm4.static.flickr.com/3283/2425896164_b6807b0aed_m.jpg" width="128" align="right"/></a>Ah ! I hate the inbuilt Windows Media Player ! I end up seeing the &#8220;codec&#8221; error almost every time I play a video (which is not AVI ! ). </p>
<p>This is when VLC Media Player comes to my rescue ! It&#8217;s a highly portable <strong>multimedia player</strong> for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, etc) as well as DVDs, VCD&#8217;s, and various streaming <strong>(</strong>RTSP<strong>)</strong> protocols.</p>
<p>I also install iTunes to manage my <a href="http://www.venukb.com/2007/04/24/bose-sounddock-speakers-for-ipod/">iPod</a> and the loaned <a href="http://www.venukb.com/2008/03/29/iphone-experience-breaking-activating-and-unlocking/">iPhone</a> !</p>
<p class="note">Notable Alternative: <a href="http://www.inmatrix.com/files/zoomplayer_download.shtml" rel="nofollow">Zoom Player</a></p>
<h3><a href="http://www.google.com/talk/">Google Talk</a></h3>
<p>Google Talk is the only IM client that I use ! Yes I&#8217;m done with Yahoo Messenger and Windows Live Messenger ! Google Talk is light on memory and has almost all the features I need from a IM client; Presence, Chat History, Sharing files etc. And I love the way it delivers IM even though I have logged in from more than one location !</p>
<h3><a href="http://www.ccleaner.com/">CCleaner</a></h3>
<p>This app might not be required as soon as you re-install the OS, but does come in handy over the period of time. The default &#8220;Disk cleanup&#8221; feature in Windows does almost nothing compared to CCleaner ! And yes it does the cleanup work pretty fast too !</p>
<h3><a href="http://www.textpad.com/">TextPad</a></h3>
<p>TextPad saves you the pain of installing an editor for every other file format ! Want to open a CSS file, PHP file, HTML file,&nbsp; a properties file or even a file with no extension, TextPad comes in handy. </p>
<p class="note">Notable Alternatives: <a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a> and <a href="http://www.pspad.com/">PSPad</a> </p>
<h3><a href="http://get.live.com/photogallery/overview">Windows Live Photo Gallery</a></h3>
<p>Live photo gallery is one of the applications from the Live family that is worth loading. No Google love here;I prefer this app over <a href="http://picasa.google.com/">Picasa</a> for a number of reasons ! </p>
<p class="note"><a href="http://www.venukb.com/2007/09/19/windows-live-photo-gallery/">Read my earlier post on Photo Gallery to know why !</a>&nbsp; </p>
<h3><a href="http://www.utorrent.com/">µTorrent</a></h3>
<p>If you download a lot of stuff from torrent a lightweight <a href="http://en.wikipedia.org/wiki/BitTorrent_%28protocol%29">BitTorrent</a> client is a must ! Even though I don&#8217;t download much data from Torrent sites, I have used µTorrent a couple of times ! </p>
<p>The install size is pretty small and even the memory usage is pretty low compared to the other BitTorrent clients !</p>
<h3><a href="http://www.foxitsoftware.com/pdf/rd_intro.php" target="_blank">Foxit PDF Reader</a></h3>
<p>Adobe Acrobat Reader is a pain to use; its slow and more often than not it freezes the browser (including Firefox). Though there are extensions in Firefox to avoid this, nothing has been done to improve the Reader loading speed. It&#8217;s one of the reasons I have settled on Foxit for opening PDF documents. Its amazingly fast and its a must have if you open a lot of PDF documents !</p>
<p class="note"><a href="http://www.venukb.com/2007/04/03/foxit-open-pdfs-faster/" target="_blank">Read my earlier post on Foxit !</a></p>
<p class="alert">Note: The below mentioned applications might make more sense if you author a blog</p>
<h3><a href="http://filezilla-project.org/">FileZilla</a></h3>
<p>There are a lot of quality FTP clients for windows and I have settled on FileZilla for its simplicity. You have a site manager feature, if you do connect to a lot of different FTP servers and transferring of files between the server and client is damn easy (Even drag and drop onto the server is supported)</p>
<h3><a href="http://winscp.net/eng/index.php">WinSCP</a></h3>
<p><a href="http://winscp.net/eng/index.php">WinSCP</a> is a free SFTP and SCP client for Windows. Unlike FTP clients, there aren&#8217;t many quality clients out there supporting SCP on Windows. When I edit any of the files on my server I always do it via WinSCP. Editing a file on the server opens the same on a SCP editor and a save on the file automatically puts back the file on the server.</p>
<p>WinSCP also has come in handy for me to transfer files between my iPhone and the PC !</p>
<p>The good thing about WinSCP is that it does come with a <a href="http://winscp.net/download/winscp410.exe">standalone version</a> which can be copied and run from your USB drive !</p>
<h3><a href="http://get.live.com/writer/overview">Windows Live Writer</a></h3>
<p>Almost every blog writer has fell in love with this Microsoft product ! Live Writer simplifies the task of writing and publishing posts ! </p>
<p class="note"><a href="http://www.venukb.com/2006/08/17/windows-live-writer-powerful-desktop-based-weblog-client/">Read this to know why Live writer rocks !</a></p>
<p class="alert">The following is the other list of software that I install and have mentioned separately since they are not the &#8220;must have&#8221;</p>
<ol>
<li>
<div class="note"><a href="http://www.venukb.com/2008/02/29/sharepod/">SharePod</a> &#8211; Used to copy songs between iPod and PC</div>
</li>
<li>
<div class="note"><a href="http://www.venukb.com/2007/05/10/eusing-free-registry-cleaner/">Eusing Registry Cleaner</a></div>
</li>
<li>
<div class="note"><a href="http://www.flickr.com/tools/">Flickr Uploadr</a></div>
</li>
<li>
<div class="note"><a href="http://www.venukb.com/2008/03/11/ebay-desktop/ ">eBay Desktop</a></div>
</li>
<li>
<div class="note"><a href="http://www.twhirl.org/">Twhirl Twitter Client</a></div>
</li>
<li>
<div class="note"><a href="http://www.poweriso.com/">PowerISO</a></div>
</li>
</ol>
<p>What does your list look like ?</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=466&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/04/20/must-have-software-for-windows/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Cleaning up your Gmail emails</title>
		<link>http://www.venukb.com/2008/04/16/cleaning-up-your-gmail-emails/</link>
		<comments>http://www.venukb.com/2008/04/16/cleaning-up-your-gmail-emails/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 17:35:42 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/04/16/cleaning-up-your-gmail-emails/</guid>
		<description><![CDATA[I am sure many would be surprised with the title of this post. Gmail for one provides with almost 6.6GB of space and its keeps growing every day. It would be amazingly difficult to fill up this space. Even on the Gmail&#8217;s home page, you would see this marketing statement: Over 6628.815124 megabytes (and counting) [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">I</span> am sure many would be surprised with the title of this post. Gmail for one provides with almost 6.6GB of space and its keeps growing every day. It would be amazingly difficult to fill up this space. </p>
<p>Even on the Gmail&#8217;s home page, you would see this marketing statement:</p>
<p>
<pre>Over 6628.815124 megabytes (and counting) of free storage so
you'll never need to delete another message.</pre>
</p>
<p>So why would anyone want to clean up/delete the mails on his/her Gmail account ? </p>
<p>I for one find it annoying to store unwanted mails; Note that I am not talking of spam mails and referring to marketing mails etc which are genuine but unwanted !</p>
<p>These mails just fill up your pages and most importantly show up while I am searching for important mails. </p>
<h3>So how to clean up your Gmail ?</h3>
<p>Most of the time I ensure that I delete the mails as soon as I see them; however some of them still manage to live in my inbox. This is how I clean up my inbox.</p>
<ol>
<li>Click on a message which I find &#8220;unwanted&#8221;
</li>
<li>Click on &#8220;<strong>Filter Messages like these</strong>&#8221; option (Snapshot shown below)<br /><a title="gmailclean by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2418254995/"><img height="339" alt="gmailclean" src="http://farm3.static.flickr.com/2166/2418254995_1846a7bd19.jpg" width="425"/></a>
</li>
<li>The above option was introduced to ease the creation of Filter/labels and for some reason the filtered messages pages doesn&#8217;t have a &#8220;<strong>delete</strong>&#8221; option !
</li>
<li>This is where the <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;ctx=mail&amp;answer=6594">Gmail keyboard shortcuts</a> come in handy <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Select all the message and <strong>press #. </strong>The selected messaged are deleted !</li>
</ol>
<p>So even though there are no menu options to operate on the filtered mails, the keyboard shortcuts still does work !</p>
<p>Do you delete your Gmail acccount emails ?</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=465&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/04/16/cleaning-up-your-gmail-emails/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Twitter Clients for iPhone</title>
		<link>http://www.venukb.com/2008/04/15/twitter-clients-for-iphone/</link>
		<comments>http://www.venukb.com/2008/04/15/twitter-clients-for-iphone/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 19:36:32 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/04/15/twitter-clients-for-iphone/</guid>
		<description><![CDATA[Twitter is a web service which helps you to communicate and stay connected through quick exchange of messages. Its supposedly one of the fastest growing phenomena on the Internet. Until few days back, accessing Twitter service from iPhone was possible only via the safari web browser. Following are the 4 web based Twitter Clients for [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">T</span><a href="http://twitter.com/">witter</a> is a web service which helps you to communicate and stay connected through quick exchange of messages. Its supposedly one of the fastest growing phenomena on the Internet. </p>
<p>Until few days back, accessing Twitter service from iPhone was possible only via the safari web browser. Following are the 4 web based Twitter Clients for iPhone:</p>
<h3></h3>
<h3>Twitter Mobile</h3>
<p><a href="http://m.twitter.com/">Twitter Mobile</a> is the official version of the mobile client. The User interface is basic (hence loads faster) and it lacks a lot of features available on normal web based client. </p>
<p>The following snapshot shows the <strong>only</strong> 4 options available on the mobile client.</p>
<p><a title="Twitter Mobile" href="http://www.flickr.com/photos/venukb/2414361242/"><img height="312" alt="Twitter Mobile" src="http://farm4.static.flickr.com/3137/2414361242_db151925ec.jpg" width="208"/></a></p>
<h3>Pocket Tweets</h3>
<p>The user interface of <a href="http://pockettweets.com/">PocketTweets</a> is pretty good with buddy icons and the available timelines. However the good looking interface took a toll on the loading speed. It was amazingly slow even when I used the client over Wi-Fi</p>
<p><a title="PocketTweets for iPhone" href="http://www.flickr.com/photos/venukb/2414355488/"><img height="312" alt="PocketTweets for iPhone" src="http://farm4.static.flickr.com/3134/2414355488_8576646c70.jpg" width="208"/></a></p>
<h3>Hahlo</h3>
<p><a href="http://www.hahlo.com">Hahlo</a> has a much better user interface compared to PocketTweets and it also loaded up pretty fast. The home page is kind of not that user friendly and would have liked if it could directly showed the friends timeline. </p>
<p><a title="Hahlo Twitter Client for iPhone" href="http://www.flickr.com/photos/venukb/2414361308/"><img height="312" alt="Hahlo Twitter Client for iPhone" src="http://farm4.static.flickr.com/3226/2414361308_c9a83a8c2f.jpg" width="208"/></a></p>
<h3>iTweet</h3>
<p>iTweet has all the features but not the right user interface. I found it too difficult to use; only a few tweets are displayed and the application menu itself took a lot of space on the screen. </p>
<p><a title="iTweet for iPhone" href="http://www.flickr.com/photos/venukb/2414361422/"><img height="312" alt="iTweet for iPhone" src="http://farm3.static.flickr.com/2357/2414361422_6d45f6cb7e.jpg" width="208"/></a></p>
<p>Following are the <strong>2 native twitter clients</strong> available for iPhone:</p>
<h3>Mobile Twitter</h3>
<p><a href="http://apps.npike.net/MobileTwitter/">MobileTwitter</a> is a native twitter applications developed by Nicholas Pike and is available on the STE source. The native client loaded the tweets pretty fast and unlike the web clients you don&#8217;t have to enter the login credentials again and again.</p>
<p>The only issue with this client is the positioning of the options menu with respect to the iPhone keyboard which pops up while posting a tweet. Many a times I ended up clicking on an option rather than typing a character !</p>
<p><a title="mobiletwitter by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2414417234/"><img height="322" alt="mobiletwitter" src="http://farm3.static.flickr.com/2142/2414417234_6f36023c4f.jpg" width="224" align="left"/></a></p>
<p><a title="mobiletwitter1 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2414417326/"><img style="margin: 0px" height="322" alt="mobiletwitter1" src="http://farm4.static.flickr.com/3241/2414417326_a4c10b7062.jpg" width="224"/></a></p>
<p>Features:</p>
<ul>
<li>Your timeline (you + those you follow)  </li>
<li>Direct messages  </li>
<li>Replies  </li>
<li>Everyone  </li>
<li>Updating your Twitter status  </li>
<li>Reply directly to tweets from MobileTwitter  </li>
<li>Open Tweets in MobileSafari (handy for clicking on links..)  </li>
<li>Direct message authors of tweets  </li>
<li>TwitPic.com integration  </li>
<li>Manual refresh </li>
</ul>
<h3>Twinkle</h3>
<p>Twinkle is very similar to MobileTwitter in terms of features and User interface. One interesting feature in Twinkle is the &#8220;Location&#8221; feature using which you can check on the tweets posted by people near to you. If you don&#8217;t find any tweets you can always change the distance <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a title="snap_190725 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2413627919/"><img height="321" alt="snap_190725" src="http://farm4.static.flickr.com/3019/2413627919_5d91522b17.jpg" width="224" align="left"/></a></p>
<p><a title="snap_190741 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2414453428/"><img style="margin: 0px" height="320" alt="snap_190741" src="http://farm3.static.flickr.com/2243/2414453428_c796eaf56f.jpg" width="224"/></a></p>
<p>&nbsp;</p>
<p>If you know of any other Twitter client for iPhone, please suggest the same via the comment form.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=463&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/04/15/twitter-clients-for-iphone/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Moving from Dreamhost to Media Temple</title>
		<link>http://www.venukb.com/2008/04/08/moving-from-dreamhost-to-media-temple/</link>
		<comments>http://www.venukb.com/2008/04/08/moving-from-dreamhost-to-media-temple/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 15:16:44 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/04/08/moving-from-dreamhost-to-media-temple/</guid>
		<description><![CDATA[Exactly an year back I wrote about moving this blog from GoDaddy to Dreamhost. The story continues and this year I have moved to Media Temple (referral link). I had considered Media Temple last year, however the site revenues weren&#8217;t enough to match the rates quoted by Media Temple. Even this time around I thought [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Exactly an year back I wrote about moving this blog from <a href="http://www.venukb.com/2007/04/07/moved-to-dreamhost/">GoDaddy to Dreamhost</a>. The story continues and this year I have moved to <a href="http://mediatemple.net/go/order/?refdom=venukb.com">Media Temple</a> (referral link).</p>
<p>I had considered Media Temple last year, however the site revenues weren&#8217;t enough to match the rates quoted by Media Temple. Even this time around I thought a lot before choosing&nbsp; Media Temple. I did see a lot of negative reviews on Media Temple but I guess you would see that for every other hosting provider. </p>
<p>You need to use the service to come to a conclusion and MT does have a 30 day money back guarantee option.</p>
<p><strong><u>Why shift from Dreamhost ?</u></strong></p>
<p><a title="dreamhost by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2398036133/"><img height="63" alt="dreamhost" src="http://farm3.static.flickr.com/2231/2398036133_2bf0f52a23_o.png" width="187" align="right"/></a></p>
<p>One main reason was the downtime that this site experienced while running on <a href="http://www.dreamhost.com/r.cgi?208138">Dreamhost</a>. At one point of time, the <a href="http://www.pingdom.com">pingdom</a> service used to report a downtime almost every day. </p>
<p>The site speed also was no way near to normal and this definitely affected the pageviews (People who come via search engine referral would hesitate to explore the site, if the landing page is too slow)</p>
<p>One positive thing about Dreamhost is the quality of support. I got response for almost all my support queries and unlike the site response time, I have no complaints on the support response time ! </p>
<p><strong><u>Isn&#8217;t MT expensive ?</u></strong></p>
<p><a title="mediatemple" href="http://www.flickr.com/photos/venukb/2398865462/"><img height="70" alt="mediatemple" src="http://farm4.static.flickr.com/3158/2398865462_d088afb178_o.png" width="259" align="right"/></a></p>
<p>Some of the best hosting options would cost around <strong>10-12$/month</strong> and MT quotes around<strong> 20$/month</strong>. </p>
<p>However if you do a 1 year pre-payment you do save 40$. I used a coupon code and saved another 15% to finally end up with <strong>14$/month</strong> charge which in my opinion isn&#8217;t too much if your site is monetized.</p>
<p>And you do have the option of reselling the hosting and this can also help in bringing down the monthly expense.</p>
<p><u><strong>Isn&#8217;t moving data a pain ?</strong></u></p>
<p>Moving all the data from one server to another is a time consuming task and is one of the reasons users would hesitate to switch to a different hosting. Unlike my previous move from GoDaddy to Dreamhost, this time around I had a lot of data to move ! </p>
<p>Transferring the data from Dreamhost to my local system and then transferring it back to Media Temple would have definitely taken time. However I used one simple yet powerful <strong>SCP command</strong> to transfer the files within 10 minutes !</p>
<p>For e.g. to move my entire domain related files (not the database), I just executed the following command from the SSH terminal on my Dreamhost server</p>
<p>
<pre>scp -r venukb.com <span class="mh-email">u<a href='http://www.google.com/recaptcha/mailhide/d?k=01qwvqE3zj4z-q9tB6d1_Y8w==&amp;c=FGs2IpIpPy4solXGUlDtkSNg4ob36v5T1wYOxvhSWSoM5HJC3yCqKdccEx37-qv_' onclick="window.open('http://www.google.com/recaptcha/mailhide/d?k=01qwvqE3zj4z-q9tB6d1_Y8w==&amp;c=FGs2IpIpPy4solXGUlDtkSNg4ob36v5T1wYOxvhSWSoM5HJC3yCqKdccEx37-qv_', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@mediatempleaccessdomain:/backup</span></pre>
</p>
<p class="alert"><strong>Note:</strong> For the above approach to work, you need to signup with MT and should have received the Access Domain related data and the login credentials for the access domain</p>
<p>I also dumped the database using <code>mysqldump</code> and again used SCP to move the SQL files onto the MT server. </p>
<p>The transfer was done at a blazing speed of 2MB/second. Once the data was moved, all I had to do was to move the domain related files to the MT specific server paths and restoring the SQL data on to the newly created MySQL database on MT grid.</p>
<p>You can even test the new setup by modifying your hosts file on Windows (i.e. I pointed venukb.com to the new MT server) and once its tested you can go ahead and modify the name servers to point to the new domain (This modification in the DNS will take some time to propagate)</p>
<p><u><strong>Is MT worth the price ?</strong></u></p>
<p>It just been 2 days and I am not in the state to comment on the hosting performance and support. In a few days I should be able to make a good judgement on MT and will definitely keep you posted <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If anybody is already on MT, let me know how your experience has been till now (I do read a lot of posts where people write about moving to MT, but have seen very few who have written about the actual experience ! )</p>
<p>Meanwhile for all those keeping a tab on this blog&#8217;s RSS feed, please do open up this post in a browser and let me know if the site is loading up fast <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . It&#8217;s also an opportunity for you to checkout the new theme running on this blog <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=462&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/04/08/moving-from-dreamhost-to-media-temple/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Fluency &#8211; Best Admin Theme for WordPress</title>
		<link>http://www.venukb.com/2008/04/03/fluency-best-admin-theme-for-wordpress/</link>
		<comments>http://www.venukb.com/2008/04/03/fluency-best-admin-theme-for-wordpress/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 09:39:12 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/04/03/fluency-best-admin-theme-for-wordpress/</guid>
		<description><![CDATA[WordPress 2.5 was released some days back and I upgraded to the same with some minor hiccups. There were high expectations from me and everybody with respect to the Admin user interface. I for one was totally disappointed when I found out that the menu items in the interface were taking almost 50% on my [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://wordpress.org/">WordPress 2.5</a> was released some days back and I <a href="http://www.venukb.com/2008/03/30/upgraded-to-wordpress-25/">upgraded to the same</a> with some minor hiccups. There were high expectations from me and everybody with respect to the Admin user interface.</p>
<p>I for one was totally disappointed when I found out that the menu items in the interface were taking almost 50% on my 15&#8243; widescreen.</p>
<p><a title="Wordpress 2.5 Admin Interface" href="http://www.flickr.com/photos/venukb/2374719582/"><img height="315" alt="wp2.5" src="http://farm3.static.flickr.com/2156/2374719582_43982e11aa.jpg" width="439"/></a></p>
<p>Also I found that it was not just me complaining; Many found that the new admin interface was not that user friendly including Dean Robinson who came up with <a href="http://deanjrobinson.com/projects/fluency-admin/">Fluency Admin Theme</a> for WordPress 2.5. The theme moves the main options to a sidebar and the sub-options to the top (screenshot below)</p>
<p><a title="Fluency Admin Theme " href="http://www.flickr.com/photos/venukb/2384945530/"><img height="302" alt="Fluency Admin Theme for WordPress" src="http://farm3.static.flickr.com/2298/2384945530_a0519187c0.jpg" width="447"/></a></p>
<p>It just looks so neat and it even simplifies the user navigation. The only limitation of this theme is that it works only with CSS2 compliant browsers i.e. Firefox, Safari and IE8. If support is added for the other browsers, it should definitely qualify to become the official theme for WordPress Admin UI !</p>
<p>Thanks to <a href="http://www.rhythmicdissonance.com/">Raj Gaurav</a> for pointing me to this plugin!</p>
<p class="alert"><a href="http://deanjrobinson.com/projects/fluency-admin/">Download Fluency Admin Plugin</a></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=460&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/04/03/fluency-best-admin-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>iPhone in India &#8211; Breaking, Activating and Unlocking</title>
		<link>http://www.venukb.com/2008/03/29/iphone-experience-breaking-activating-and-unlocking/</link>
		<comments>http://www.venukb.com/2008/03/29/iphone-experience-breaking-activating-and-unlocking/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 13:03:29 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/03/29/iphone-experience-breaking-activating-and-unlocking/</guid>
		<description><![CDATA[A 16 GB iPhone just made its way to my home today all the way from an US store. Even though I had &#8220;experienced&#8221; iPhone by reading about it and by seeing tons of videos on YouTube, using it live was a totally different experience. iPhone is an amazing, astounding, remarkable, wonderful, incredible, marvelous product [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>A <a href="http://www.venukb.com/wp-admin/www.apple.com/iphone">16 GB iPhone</a> just made its way to my home today all the way from an US store. Even though I had &#8220;experienced&#8221; iPhone by reading about it and by seeing tons of videos on <a href="http://www.youtube.com">YouTube</a>, using it live was a totally different experience.</p>
<p>iPhone is an <em>amazing</em>, <em>astounding</em>, <em>remarkable</em>, <em>wonderful</em>, <em>incredible</em>, <em>marvelous </em>product from Apple!</p>
<p>The sad fact is that I can use this phone only for the next 20 days after which my brother would take ownership! (He is the actual owner of this phone)</p>
<p><a title="iPhone (2) by venukb, on Flickr" href="http://farm3.static.flickr.com/2298/2370312721_d98b3a364b_d.jpg"><img src="http://farm3.static.flickr.com/2298/2370312721_2cd145b8a1_m_d.jpg" alt="iPhone (2)" width="180" height="240" align="right" /></a></p>
<p>Sadder is the fact that I have to return using my <a href="http://www.venukb.com/wp-admin/www.venukb.com/blog/2007/07/24/htc-touch-smartphone">HTC Touch</a>. Believe me, <a href="http://www.venukb.com/wp-admin/www.venukb.com/blog/2007/07/24/htc-touch-smartphone">HTC Touch</a> UI is nothing compared to iPhone; same goes for the user experience.</p>
<p><span style="text-decoration: underline;"><strong>Using iPhone in India</strong></span></p>
<p>We all know that iPhone is available only in a few select countries and its also bound/locked to a particular carrier in that country. And if you are not lucky to be in that country, the only way to use an iPhone is by &#8220;hacking&#8221; it.</p>
<p>I spent almost 3-4 hours by going through the various forums to find the safest way of hacking the iPhone.</p>
<p>As you read more and more into these forums, rather than being informed, you end up in a confused state. You really can&#8217;t decide as to what method to use to hack your 500$ iPhone.</p>
<p>I am in no way an iPhone hacking expert but this is what I understood by going through tons of articles and forum posts. (Disclaimer: The information might not be 100% accurate)</p>
<p>First thing is to understand some of the terminologies associated with hacking the iPhone.</p>
<div style="background-color: #c1e2ca">
<p><strong>Jailbreak</strong> <strong>-</strong> It is the method used to set the iPhone OS file system in read/write mode. You can install third party applications only on a &#8220;jailbroken&#8221; iPhone.</p>
<p><strong>Activate</strong> &#8211; Before you can use any of iPhone features, you must activate iPhone by signing up for a service plan with the iPhone service carrier in your area and registering iPhone with the network.</p>
<p><strong>Unlock &#8211; </strong>A procedure used to make the iPhone work with any GSM Carrier and involves hacking the baseband on iPhone.</div>
<p>If you are planning to use iPhone in India you need to do all of the above. For some legal users of iPhone hacking might only involve &#8220;Jailbreak&#8221; which allows them to install third party applications.</p>
<p><strong><span style="text-decoration: underline;">Tools to hack iPhone</span></strong></p>
<p>After going through the various forums, I narrowed down onto two tools to hack the iPhone (on Windows)</p>
<ol>
<li><a href="http://www.downloadziphone.org/">ZiPhone 2.6b</a></li>
<li><a href="http://www.ipluspwns.com/?q=node">iPlus 2.0b</a></li>
</ol>
<p>There is one set of users who have had success with ZiPhone and there is one set which believes that iPlus is the safest way of hacking iPhone.</p>
<p>The way ZiPhone breaks iPhone is different from the way iPlus does; ZiPhone permanently downgrades the bootloader from version 4.6 to 3.9 whereas iPlus downgrades it to a fake blank 3.9 bootloader. With iPlus you have an option to go back to 4.6 bootloader which is probably required to shield against future firmware updates from Apple.</p>
<p>Many believe that iPlus2.0b is the safest way to hack iPhone; however note that there is one issue found with using Fake Blank Bootloader. More details <a href="http://www.iclarified.com/entry/comments.php?enid=805#commentsanchor">on this post</a>. The issue is more of a warning and might occur only if you try to downgrade to 1.0.0 or 1.1.1 firmware.</p>
<p>ZiPhone has a very nice user interface and it almost tempted me to use it rather than iPlus. (Note: ZiPhone is probably an ideal tool to break <strong>iPod Touch</strong>)</p>
<p><a title="ziphone by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2371078648/"><img src="http://farm4.static.flickr.com/3246/2371078648_3e136cede0.jpg" alt="ziphone" width="465" height="265" /></a></p>
<p>However the inability to restore back 4.6 bootloader prompted me to use <a href="http://www.ipluspwns.com/?q=node">iPlus2.0b</a> with the international payload. Though iPlus2.0b is command line driven, it did its work of breaking, activating and unlocking the iPhone with zero trouble.</p>
<p>The iPhone is currently activated on Airtel network and it should also work with the following service providers:</p>
<ul>
<li>Spice</li>
<li>Vodafone</li>
<li>CellOne</li>
</ul>
<p><a title="iPhone on Airtel" href="http://www.flickr.com/photos/venukb/2374075667/"><img src="http://farm4.static.flickr.com/3062/2374075667_3a883f1c48_m.jpg" alt="snap_002457" width="160" height="240" align="left" /></a></p>
<p><a title="iPhone on Spice, Vodafone, CellOne" href="http://www.flickr.com/photos/venukb/2374913334/"><img style="margin: 0px 0px 0px 15px" src="http://farm3.static.flickr.com/2234/2374913334_3cee09a0d4_m.jpg" alt="snap_002552" width="160" height="240" /></a></p>
<p>For using iPlus2.0, I followed the instructions given on this post:</p>
<ul>
<li><a href="http://www.hackthatphone.com/114/iphone_114_true_unlock_windows.html">How to activate, jailbreak and unlock 1.1.4 firmware with iPlus (3.9 / 4.6 bootloader)</a></li>
</ul>
<p>Also note that I skipped the loading of 1.1.4 firmware; You can skip this after confirming that you have 1.1.4 version of the firmware on your iPhone. To confirm the firmware version, you need to type in this code: <strong>*3001#12345#*</strong></p>
<p>Also if you are not comfortable with this command line interface, the same developers of iPlus have come up with <a href="http://www.ipluspwns.com/?q=node/144">iLiberty+.</a></p>
<p><a title="iliberty by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2371086354/"><img src="http://farm3.static.flickr.com/2168/2371086354_dc9a619ed0_o.jpg" alt="iliberty" width="469" height="343" /></a></p>
<p>This UI wrapper for iPlus was released a week back and I thought it might be risky to try out a new untested tool. However I do like the concept of iLiberty+ where they have tried to design it as an extensible tool; users can download and place the payloads of their choice and select the same from the &#8220;Advanced&#8221; tab.</p>
<p><a title="iliberty1 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2371112056/"><img src="http://farm4.static.flickr.com/3224/2371112056_19f635d794.jpg" alt="iliberty1" width="464" height="325" /></a></p>
<div style="background-color: #c1e2ca">
<p>Here are some useful links and read these before trying to hack your iPhone.</p>
<ul>
<li><a href="http://www.hackthatphone.com/114/iphone_114_true_unlock_windows.html">How to activate, jailbreak and unlock 1.1.4 firmware with iPlus (3.9 / 4.6 bootloader)</a></li>
<li><a href="http://www.ipluspwns.com/?q=node/139">How to Jailbreak/Activate/Unlock the iPhone using iLiberty+ (Windows)</a></li>
<li><a href="http://www.ipluspwns.com/?q=node/101">How to Jailbreak/Activate/Unlock the iPhone using iLiberty+ (Mac)</a></li>
<li><a href="http://www.ipluspwns.com/?q=node/190">Cautions Against Using ZiPhone</a></li>
<li><a href="http://www.hackthatphone.com/114/iphone_114_unlock_mac.html">iNDependence Jail-Break/Unlock for Mac</a></li>
<li><a href="http://www.ipluspwns.com/?q=node/129">Upgrading from 3.9FB Bootloader back to 4.6 Original</a></li>
</ul>
</div>
<p><strong>Disclaimer</strong>: This post is just my experience of breaking iPhone using iPlus2.0, if you bricked your iPhone using iPlus2.0 or ZiPhone I am not liable <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=457&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/03/29/iphone-experience-breaking-activating-and-unlocking/feed/</wfw:commentRss>
		<slash:comments>77</slash:comments>
		</item>
		<item>
		<title>Acer &#8211; Updating BIOS</title>
		<link>http://www.venukb.com/2008/03/22/acer-updating-bios/</link>
		<comments>http://www.venukb.com/2008/03/22/acer-updating-bios/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 19:51:15 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/03/22/acer-updating-bios/</guid>
		<description><![CDATA[The BIOS on my Acer 1694 laptop was 3 years old and I did manage to find an updated version of the same on the Acer support web site. However ever after trying for about say 10 times, I couldn&#8217;t upgrade the BIOS from Windows Vista. The upgrade from Vista always ended with a blue [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The BIOS on my Acer 1694 laptop was 3 years old and I did manage to find an updated version of the same on the Acer support web site. However ever after trying for about say 10 times, I couldn&#8217;t upgrade the BIOS from Windows Vista. </p>
<p>The upgrade from Vista always ended with a blue screen and a system restart. I even booted from the Vista DVD and got into the command console (using Alt + F10 on the License screen) and tried updating the BIOS using command line; again blue screen followed by a system restart !! </p>
<p>After digging through some forums I realized that the BIOS could only be updated via XP which meant that I had to install XP again !</p>
<p>Installing XP from Acer Vendor DVD means that I would have to loose the primary partition (C:\) since the DVD does a ghost copy of Windows XP to C:\. Vista was also unfortunately hosted on this primary partition <img src='http://www.venukb.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Acer does come with a hidden partition which can be used to do a Disk to Disk (D2D) recovery and you can invoke this by pressing Alt+F10 during the BIOS setup. </p>
<p><a title="Acer Disk To Disk Recovery" href="http://www.flickr.com/photos/venukb/2349812977/"><img height="85" alt="acerd2d" src="http://farm3.static.flickr.com/2365/2349812977_e663a2d0f2.jpg" width="500" /></a></p>
<p>(If the Alt+F10 option is not invoking the D2D recovery on your Acer laptop, the Acer MBR might have been corrupted or overwritten by some Linux/Vista installation and you have to <a href="http://ezinearticles.com/?How-to-Repair-the-Acer-D2D-Recovery&amp;id=794500">rewrite the Acer MBR again</a>. )</p>
<p>I restored the Acer MBR and tried the Alt+F10 option expecting a D2D menu ! To my shock the D2D recovery started running immediately and started copying files onto to the primary partition without any user confirmation.</p>
<p>I successfully managed to loose the data on my primary partition yet again !!! The only consolation was the fact that D2D helped me in getting XP up and running with all drivers in just 10 minutes !! I also upgraded the BIOS with no trouble; not sure what the trouble with Vista was !</p>
<p>I also realized that it was in my best interest to have both Vista and XP running on the laptop, so that I could switch between them whenever necessary ! However setting up this dual boot was also not straightforward (especially if you have a OEM version of Windows XP); More details on this in the next post !!</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=454&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/03/22/acer-updating-bios/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Calendar</title>
		<link>http://www.venukb.com/2008/03/07/google-calendar/</link>
		<comments>http://www.venukb.com/2008/03/07/google-calendar/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 18:47:47 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/03/07/google-calendar/</guid>
		<description><![CDATA[When Google Calendar was launched in 2006, I didn&#8217;t find anything unique except the &#8220;Quick Add&#8221; feature. I might not have spent too much time exploring the powerful features of Google calendar then, but I am sure that most of them would agree that there was no single compelling feature in Google Calendar. At that [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When Google Calendar was <a href="http://www.techcrunch.com/2006/04/12/google-calendar-is-live/" target="_blank">launched in 2006</a>, I didn&#8217;t find anything unique except the &#8220;<a href="http://www.google.com/support/calendar/bin/answer.py?answer=36604" target="_blank">Quick Add</a>&#8221; feature. I might not have spent too much time exploring the powerful features of Google calendar then, but I am sure that most of them would agree that there was no single compelling feature in Google Calendar.</p>
<p>At that time, my usage of Calendar was also pretty limited; However age is catching up with me and I really had to start using a calendar to keep track of my day to day events. (I am not going to write in detail about these events, but these were the ones which made me realize that I was getting old <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p>When I again checked on Google Calendar, 2 features caught my attention.</p>
<p><strong><u>Getting Notifications via SMS</u></strong></p>
<p>You can set your mobile number in the Calendar setting and get event notifications on the mobile as SMS.</p>
<p><a href="http://www.flickr.com/photos/venukb/2315092434" title="Mobile Setup on Google Calendar"><img src="http://farm3.static.flickr.com/2163/2315092434_0b59fd946c.jpg" height="137" width="492" /></a></p>
<p>This feature is definitely useful for users with regular phones (With Smartphones you generally have the ability to synch your calendar and tasks). You can configure the time before which you wish to receive the event notifications.</p>
<p><a href="http://www.flickr.com/photos/venukb/2314276175" title="Google Calendar"><img src="http://farm3.static.flickr.com/2223/2314276175_76311b0773.jpg" height="83" width="487" /></a></p>
<p><strong><u>Synchronizing with Microsoft Outlook</u></strong></p>
<p>Google has now launched a new <a href="http://www.google.com/support/calendar/bin/answer.py?answer=89955">Calendar Sync utility</a> which allows you to sync events between Google Calendar and Microsoft Outlook Calendar. You&#8217;ll be able to determine the direction of &#8220;sync&#8221;, as well as the sync frequency.</p>
<p><a href="http://www.flickr.com/photos/venukb/2315117344/" title="Google Calendar Sync"><img src="http://farm3.static.flickr.com/2360/2315117344_9dce76b33d.jpg" alt="Image_venukb" height="315" width="298" /></a></p>
<p>Till now, there wasn&#8217;t a straightforward way to setup the sync between Google Calendar and MS Outlook Calendar. This new utility make it really simple to setup the sync and is a treat for people using Outlook and Google Calendar.</p>
<p>With the above 2 features, I have become a &#8220;regular&#8221; user of Google Calendar and is now firmly positioned as my second favorite Google app <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (The first one being Gmail !)</p>
<p>Talking of favorite Google applications, here is how it stacks up for me: (Note: I have not considered Search as an &#8220;app&#8221;, for me Google is the default search engine ! )</p>
<ol>
<li>Gmail</li>
<li>Google Calendar</li>
<li>Google Docs and Spreadsheets</li>
<li>Google Notebook</li>
<li>Google Reader</li>
</ol>
<p>What are your favorite Google applications ?</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=450&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/03/07/google-calendar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SharePod</title>
		<link>http://www.venukb.com/2008/02/29/sharepod/</link>
		<comments>http://www.venukb.com/2008/02/29/sharepod/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 19:34:49 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/02/29/sharepod/</guid>
		<description><![CDATA[In one of my earlier post I covered some of the tools that can be used to copy songs from iPod to PC. Most of the tools available are shareware and there are very few free quality applications. Sharepod is one such quality application for iPod. It&#8217;s a lightweight music management tool for iPod which [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In one of <a href="http://www.venukb.com/2007/04/07/copy-songs-from-ipod-to-pc/">my earlier post</a> I covered some of the tools that can be used to copy songs from iPod to PC. Most of the tools available are shareware and there are very few free quality applications.</p>
<p><a href="http://www.sturm.net.nz/website.php?Section=iPod+Programs&amp;Page=SharePod">Sharepod</a> is one such quality application for iPod. It&#8217;s a lightweight music management tool for iPod which you can run from within the iPod disk. This circumvents the necessity of having iTunes on every other system for managing your iPod.</p>
<p><a href="http://www.flickr.com/photos/venukb/2283167943/" title="Sharepod"><img src="http://farm4.static.flickr.com/3213/2283167943_9da018ce40.jpg" width="500" height="445" alt="Image_venukb" /></a></p>
<p>Below is the list of Sharepod features which might motivate you to install and use it <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <span style="font-family: Wingdings"></span></p>
<ul>
<li>Track tag editing</li>
<li>Video import support</li>
<li>iPod Shuffle supportDrag and drop tracks to Explorer</li>
<li>Completely rewritten codebase to safely import files to your iPod</li>
<li>Play Count, Last Played Date support</li>
<li>Volume Adjustment support</li>
<li>Faster loading/sorting time!</li>
<li>Built-in Media Player</li>
<li>Tag Editor to edit track tags : Title, Artist, Genre, Volume Adjustment, Media Type etc.</li>
</ul>
<p>SharePod has almost all the features available on iTunes and has the additional ability to backup/copy songs from iPod to PC.</p>
<p>If you know any other such quality free tools for  iPod, please feel free to suggest the same in the comments section.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=448&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/02/29/sharepod/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HowTo : Delete a Windows Service</title>
		<link>http://www.venukb.com/2008/02/21/howto-delete-a-windows-service/</link>
		<comments>http://www.venukb.com/2008/02/21/howto-delete-a-windows-service/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 10:51:24 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/02/21/howto-delete-a-windows-service/</guid>
		<description><![CDATA[Many a times I have been in a situation where I need to delete a windows service and every time I end up &#8220;googling&#8221; to find the easiest/fastest way of doing this. Most of the posts in the search result talk about modifying the windows registry to delete the service, which isn&#8217;t always foolproof. The [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Many a times I have been in a situation where I need to delete a windows service and every time I end up &#8220;googling&#8221; to find the easiest/fastest way of doing this. Most of the posts in the search result talk about modifying the windows registry to delete the service, which isn&#8217;t always foolproof.</p>
<p>The easisest way of deleting a service is by using the <strong>sc.exe</strong> command line tool. This tools comes bundled with Windows and is probably the easiest way of maintaining and administering Windows Services. </p>
<p>Lets take an example of a totally useless service on Windows: Windows Search Service.</p>
<p>The first thing to do is to get the name of the Windows Service; What is shown in the service list (Control Panel -&gt; Administrative Tools -&gt; Services) is the Display name and this cannot be used as an input to sc.exe. The example service we have chosen has the name &#8220;WSearch&#8221; as shown below:</p>
<p><a title="Windows Search" href="http://www.flickr.com/photos/venukb/2280856505/"><img height="225" alt="service" src="http://farm3.static.flickr.com/2306/2280856505_e2c57a71c1_o.png" width="367"/></a></p>
<p>To delet the above service all I need to do is to execute the following command</p>
<p><code>sc delete WSearch</code></p>
<p>The SC tool comes in handy for many operations other than delete. A detailed description of this tool can be found in the following knowledge base article.</p>
<p><a title="http://support.microsoft.com/kb/251192" href="http://support.microsoft.com/kb/251192">http://support.microsoft.com/kb/251192</a></p>
<p>P.S.</p>
<p>You can always disable a service, but if you are in a situation where you need to delete a service, the above tool definitely comes in handy. </p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=446&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/02/21/howto-delete-a-windows-service/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Configuring Synergy</title>
		<link>http://www.venukb.com/2008/01/12/configuring-synergy/</link>
		<comments>http://www.venukb.com/2008/01/12/configuring-synergy/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 14:05:45 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/01/12/configuring-synergy/</guid>
		<description><![CDATA[Synergy is an open source software lets you easily share a single mouse and keyboard between multiple computers with different operating systems, each with its own display, without special hardware. It&#8217;s intended for users with multiple computers on their desk. I have a similar setup at work and till now I was struggling while switching [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://synergy2.sourceforge.net/" target="_blank">Synergy</a> is an open source software lets you easily share a single mouse and keyboard between multiple computers with different operating systems, each with its own display, <em>without</em> special hardware.</p>
<p>It&#8217;s intended for users with multiple computers on their desk. I have a similar setup at work and till now I was struggling while switching between the desktop PC and the notebook. You could remote desktop to one of the computers, however you would loose out on using both the display units.</p>
<p><a title="Workplace by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2187376270/"><img height="375" alt="Workplace" src="http://farm3.static.flickr.com/2031/2187376270_0741aa2a24.jpg" width="500"/></a></p>
<p>The <a href="http://synergy2.sourceforge.net/running.html">official documentation</a> for configuring Synergy isn&#8217;t that straightforward. Here is how I configured Synergy between 2 computers running Windows.</p>
<ol>
<li>Install the software on all the computers that will share the keyboard and mouse. In my case I installed the windows version of Synergy on both the desktop and notebook.  </li>
<li>Configure the <em>synergy</em>&nbsp;<em>server</em> on the PC to which the keyboard and the mouse is connected.
<ul>
<li>Start Synergy and select &#8220;Share this computers keyboard and mouse(server)&#8221; option  </li>
<li>Open the configuration dialog by clicking on &#8220;Configure&#8221;</li>
</ul>
<p><a title="Synergy server configuration" href="http://www.flickr.com/photos/venukb/2186811919"><img style="margin: 0px 0px 0px 40px" height="262" src="http://farm3.static.flickr.com/2195/2186811919_f245f8d919.jpg" width="346"/></a>  </li>
<li>Configure the &#8220;<strong>Screens</strong>&#8221; and the &#8220;<strong>Links</strong>&#8220;. For my above setup, I configured 2 screen and 2 links as shown below.
<p><a title="Synergy Screens and Links configuration" href="http://www.flickr.com/photos/venukb/2186827115"><img height="301" src="http://farm3.static.flickr.com/2368/2186827115_270704745d.jpg" width="436"/></a>
<p>Note that synergy recommends to input the computer name as the screen name. If you don&#8217;t have DNS configured, you can also input the IP addresses in the &#8220;Alias&#8221; box while configuring the screens.</p>
<p>The links section tell synergy about the position of the configured screens. As you can see from the above image, its not enough to indicate that the laptop is on the left of the desktop. I also need to configure a link saying that the desktop is on the right of the laptop.</p>
</li>
<li>
<p>Click on &#8220;Start&#8221; to start the synergy server.</p>
</li>
<li>
<p>On the client side (i.e. on my laptop), I just need to instruct synergy to use another computer&#8217;s keyboard and mouse. </p>
<p><a title="Synergy Client Configuration" href="http://www.flickr.com/photos/venukb/2187624458"><img height="127" src="http://farm3.static.flickr.com/2134/2187624458_9b4b52cd72.jpg" width="412"/></a></p>
</li>
</ol>
<p>Once the client successfully connects to the Synergy server, you can easily switch between the 2 computers. When the mouse is moved to the leftmost part of the desktop screen, it automatically switches onto the laptop screen. All further keyboard strokes are also directed towards the laptop.</p>
<p>If you are a keyboard junkie like me, you might also want to configure the &#8220;Hotkeys&#8221; on the server as shown below</p>
<p><a title="Synergy Hotkeys" href="http://www.flickr.com/photos/venukb/2186847805"><img height="97" src="http://farm3.static.flickr.com/2125/2186847805_3c309d7cfa.jpg" width="465"/></a></p>
<p>I have one key configured to bring the laptop to focus and another to bring the desktop into focus. You can also configure <a href="http://synergy2.sourceforge.net/autostart.html">synergy as a service</a> so that its started automatically when you log in. </p>
<p>(<a href="http://www.mattcutts.com/">Matt Cutts</a> has written a post titled <a href="http://www.mattcutts.com/blog/how-to-configure-synergy-in-six-steps/">How to configure synergy in 6 steps</a> to help you setup synergy between 2 computers running Windows and <a href="www.venukb.com/blog/2007/05/27/ubuntu-fiesty-fawn/">Ubuntu</a>.)</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=443&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/01/12/configuring-synergy/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Pointui &#8211; iPhone UI for Windows Mobile</title>
		<link>http://www.venukb.com/2008/01/06/pointui-iphone-ui-for-windows-mobile/</link>
		<comments>http://www.venukb.com/2008/01/06/pointui-iphone-ui-for-windows-mobile/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 11:25:38 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2008/01/06/pointui-iphone-ui-for-windows-mobile/</guid>
		<description><![CDATA[Pointui (pronounced point-you-i) is a software which brings in a total new user experience on Windows Mobile 5/6 powered devices. Techcrunch notes that this software is probably more for the users who are envious of iPhone; The UI navigation does look very much on the lines of iPhone, but again iPhone is not just about [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.pointui.com/">Pointui</a> (pronounced point-you-i) is a software which brings in a total new user experience on Windows Mobile 5/6 powered devices. <a href="http://www.techcrunch.com/2007/12/31/pointui-launches-for-those-with-iphone-envy/">Techcrunch</a> notes that this software is probably more for the users who are envious of iPhone; The UI navigation does look very much on the lines of iPhone, but again iPhone is not just about the easy navigation.</p>
<p>As we all know the basic user interface of Windows Mobile sucks big time and it hasn&#8217;t improved much in Windows Mobile 6. <a href="http://gizmodo.com/gadgets/what.s-wrong-with-windows-mobile/whats-wrong-with-windows-mobile-and-how-wm7-and-wm8-are-going-to-fix-it-333536.php">This post by Gizmodo</a> discusses some of the flaws in the current version mobile OS and also confirms that Microsoft will probably work on these in the future version of Windows Mobile.</p>
<p>I have been using Pointui on my HTC Touch for the past 2 days and I should say I am not un-impressed by the <strong>free</strong> program. Yes, Pointui is free.</p>
<p>Pointui helps you to go around the OS using finger swipes and it takes some time for one to come in terms with this interface.</p>
<p><u>Home Screen </u></p>
<p><a href="http://www.flickr.com/photos/venukb/2171627892"  title="Pointui"><img src="http://farm3.static.flickr.com/2061/2171627892_8054a20622.jpg" align="right" height="419" width="249" /></a></p>
<p>The home screen does have all the widgets that will help you quickly launch the most commonly used programs on the devices. It also has options to quickly access the phone settings, change volume levels and lock/unlock the phone.</p>
<p>You can also slide at the center of the home screen to access the time/calendar and your outlook task list.</p>
<p>However it lacks the following:</p>
<p>1. There is no way to &#8220;theme&#8221; the home screen. The blue background really looked awkward on my HTC  Touch I couldn&#8217;t find any way of changing this.</p>
<p>2. Windows Mobile 6 has a new feature via which lists the active running programs and you can selectively kill each process or stop all the applications (In windows mobile 5, the same was accomplished more painfully by going into the settings menu). The Pointui home screen removes access to this feature.</p>
<p>3. The battery icon doesn&#8217;t tell you if its being charged.</p>
<p>Some screenshots which might inspire you to try out Pointui <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><u>Settings Screen and Applications Screen</u></p>
<p><a href="http://www.flickr.com/photos/venukb/2170913005" title="Settings Screen"><img src="http://farm3.static.flickr.com/2015/2170913005_d984df02eb.jpg" align="left" height="256" width="194" /></a></p>
<p><a href="http://www.flickr.com/photos/venukb/2171711380" title="Programs"><img src="http://farm3.static.flickr.com/2041/2171711380_64926ff3f2.jpg" style="margin: 0px 0px 0px 15px" height="257" width="196" /></a></p>
<p><u>Unlocking using Pointui</u></p>
<p><a href="http://www.flickr.com/photos/venukb/2171716104" title="Unlocking using Pointui"><img src="http://farm3.static.flickr.com/2177/2171716104_0e1283555c.jpg" height="260" width="193" /></a></p>
<p><u>More Help</u></p>
<p>When Pointui is launched for the first time, it also launches the automated help. The video of the same is embedded below.</p>
<p><embed src="http://www.youtube.com/v/5pUBWYErW3s&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"></embed>You can always access this help via &#8220;Settings -&gt; Help&#8221;.</p>
<p class="alert"><strong><a href="http://www.pointui.com/Home.aspx">Download Pointui for Windows Mobile</a></strong></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=439&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2008/01/06/pointui-iphone-ui-for-windows-mobile/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Launchy 2.0</title>
		<link>http://www.venukb.com/2007/12/21/launchy-20/</link>
		<comments>http://www.venukb.com/2007/12/21/launchy-20/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 04:58:03 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/12/21/launchy-20/</guid>
		<description><![CDATA[One of my favorite tools, Launchy just got upgraded to 2.0. As the website says, Launchy is an utility desinged to help us forget about the start menu in Windows. I have recommeneded this tool to many of my friends and&#160; not one of them have complained about it. Its like a &#8220;must have&#8221; tool [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>One of my favorite tools, <a href="http://www.launchy.net/" target="_blank">Launchy</a> just got upgraded to 2.0. As the website says, Launchy is an utility desinged to help us forget about the start menu in Windows. I have recommeneded this tool to many of my friends and&nbsp; not one of them have complained about it. Its like a &#8220;must have&#8221; tool for Windows.</p>
<p>The new version has been completely written in QT and hence the old plug-ins and skins will no longer work. The old configuration will also be wiped with the upgrade to 2.0</p>
<p><a title="launchy1 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2126420536/"><img height="125" alt="launchy1" src="http://farm3.static.flickr.com/2175/2126420536_14a21a1844.jpg" width="311"/></a></p>
<p>The options are now merged into a single preference dialog.</p>
<p><a title="launchy2 by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/2125644489/"><img height="382" alt="launchy2" src="http://farm3.static.flickr.com/2332/2125644489_5f3ef22643.jpg" width="460"/></a>&nbsp;</p>
<p>Anyone who wants to realize the true power of Launchy, should also read the &#8220;<strong>Readme.pdf</strong>&#8221; file once.</p>
<p> I have written more about Launchy is some of my earlier posts:</p>
<ul>
<li><a href="http://www.venukb.com/2006/11/16/launchy-quicksilver-for-windows/">Launchy &#8211; QuickSilver for Windows</a>  </li>
<li><a href="http://www.venukb.com/2007/01/27/launchy-out-of-beta/">Launchy &#8211; Out of Beta</a></li>
</ul>
<p>And if you still didn&#8217;t like launchy (which according to me is impossible), try out the other alternatives</p>
<ul>
<li><a href="http://www.venukb.com/2007/05/30/keybreeze-quickly-launch-applications/" target="_blank">Keybreeze</a>  </li>
<li><a href="http://www.venukb.com/2006/07/12/colibri/" target="_blank">Colibri</a></li>
</ul>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=436&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/12/21/launchy-20/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows Mobile Device Center</title>
		<link>http://www.venukb.com/2007/10/28/windows-mobile-device-center/</link>
		<comments>http://www.venukb.com/2007/10/28/windows-mobile-device-center/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 17:31:55 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/10/28/windows-mobile-device-center/</guid>
		<description><![CDATA[After upgrading to Windows Vista, setting up the communication between Vista and my HTC Touch was a PITA ! And I would like give the entire credit of this pain to Vista ! On Windows XP, Activesync did a very good job in syncing with the smartphone and I also managed to synchronize over Bluetooth. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>After upgrading to Windows Vista, setting up the communication between Vista and my HTC Touch was a PITA ! And I would like give the entire credit of this pain to Vista !</p>
<p>On Windows XP, Activesync did a very good job in syncing with the smartphone and I also managed to <a href="http://www.venukb.com/2007/08/07/setup-activesync-via-bluetooth/">synchronize over Bluetooth</a>. When I plugged in the handset (via USB) to the vista upgraded laptop, the windows mobile device center opened up and showed the connection status as &quot;Connected&quot;. </p>
<p>The dialog box looked something like this:</p>
<p><a title="WMDC" href="http://www.flickr.com/photos/venukb/1792843146"><img height="155" src="http://farm3.static.flickr.com/2188/1792843146_320ec31ab2.jpg" width="269" /></a></p>
<p>Open &quot;Windows Mobile Device Center&quot; and you are treated with a dialog box with 2 check boxes (as shown above)</p>
<p>The &quot;<strong>Waiting</strong>&quot; status actually turned into &quot;<strong>Connected</strong>&quot; and the Storage card of the mobile phone (with the HTC Touch Photo) was also listed in Windows Explorer. Vista just gave me a feeling that everything was setup with no issues. However I couldn&#8217;t sync contacts/notes etc and I couldn&#8217;t even explore the device. </p>
<p>Initially I thought that the unlocking of the &quot;SIM Locked&quot; phone might have caused this problem and I even did a hard reset on my device. I started WMDC with lot of hope only to see the dreaded box again <img src='http://www.venukb.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>It took a lot of time for me to realize that the connection was never setup properly. (I found this out from the Activesync status report on the handset)</p>
<p>I went through a lot of forum threads and none of them had a concrete solution for the above problem. In one of the threads I read about running Windows Update after connecting your handset.</p>
<p>On doing this, Vista update suggested that there was an &quot;optional&quot; update for Windows Mobile Device Center. After I ran this update, I was presented with a totally new looking Windows Mobile Device Center.</p>
<p><a title="Snagit Capture for Flickr" href="http://www.flickr.com/photos/venukb/1792134739"><img height="356" src="http://farm3.static.flickr.com/2242/1792134739_38bd15ddab.jpg" width="479" /></a></p>
<ul>
<li>Programs and Services allowed me to get updates of WMDC.</li>
<li>Pictures,Music and Video option allowed me to import pictures and music from the handset</li>
<li>File Management allowed me to explore the device</li>
<li>Mobile Device Setting allowed me to setup a &quot;Sync&quot; partnership with the device. </li>
</ul>
<p>So all that was required to fix the problem was to run Windows update ! But wait ! I ran windows update and the WMDC update never showed up !!! This is why I blamed vista in the first place for the pain it caused. The update showed up only when I connected the device which in a way was weird.</p>
<p>So if any of you guys are having trouble setting up WMDC, run the Windows update after connecting the device ! I even managed to <a href="http://www.venukb.com/2007/08/07/setup-activesync-via-bluetooth/">&quot;Sync&quot; over bluetooth</a> with no issues.</p>
<p>Let me know if any of you have still trouble setting up a sync partnership between your handset and WMDC running on Vista !</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=427&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/10/28/windows-mobile-device-center/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Unlocking HTC Touch</title>
		<link>http://www.venukb.com/2007/10/15/unlocking-htc-touch/</link>
		<comments>http://www.venukb.com/2007/10/15/unlocking-htc-touch/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 18:13:59 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/10/15/unlocking-htc-touch/</guid>
		<description><![CDATA[When I bought the HTC Touch Smartphone I was never told by the reseller that it was locked onto Airtel Network in India. Only after seeing some of the comments left on my earlier post, I realized that it was a SIM locked phone. Recently when I traveled to Beijing, I felt the pain of [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When I bought the <a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/">HTC Touch Smartphone</a> I was never told by the reseller that it was locked onto Airtel Network in India. Only after seeing some of the comments left on my <a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/">earlier post</a>, I realized that it was a SIM locked phone.</p>
<p>Recently when I traveled to Beijing, I felt the pain of having a SIM Locked phone. I had all my contacts and other details on this phone and yet it wasn&#8217;t useful when I needed it the most.</p>
<p><a title="htcorig by venukb, on Flickr" href="http://www.flickr.com/photos/venukb/878639230/"><img height="286" alt="htcorig" src="http://farm2.static.flickr.com/1053/878639230_b5d24b8896.jpg" width="205" align="right" /></a></p>
<p>When I inserted the China Mobile SIM onto the phone, I was prompted to enter the &quot;Unlock Code&quot;. A search for the unlocking procedure on Google pointed me to a lot of paid sites which were ready to send the unlock code on a payment of 20$.</p>
<p>However I did stumble upon a thread in XDA Developers forum which helped me to easily unlock my HTC Touch ! (free of cost)</p>
<h3>Instructions for Unlocking HTC Touch</h3>
<p>1. Use ActiveSync to copy the following files onto your phone</p>
<ul>
<li>Cert_SPCS.cab </li>
<li>EnableRapi.cab </li>
</ul>
<p>2. Install the above 2 applications on your phone by clicking on the CAB</p>
<p>3. Unzip <strong>Touch_Unlock.zip </strong>on your PC&#160; and run <strong>Unlock_Touch.exe (</strong>See that the ActiveSync connection between the PC and the mobile is still up<strong>)</strong></p>
<p>4. A file <em><strong>unlock_code.txt</strong></em> will be generated which will have the 8 digit unlock code (Ignore any other digits if generated.)</p>
<p class="alert"><strong>Download</strong>: <a href="http://cid-1ef5b6c87869ffee.skydrive.live.com/self.aspx/Public/Touch_Unlock.zip.zip">Cert_SPCS.cab/EnableRapi.Cab/Touch_Unlock.zip</a></p>
<p>More information can be found on the following official thread on XDA Forum.</p>
<pre><a title="http://forum.xda-developers.com/showthread.php?t=328221" href="http://forum.xda-developers.com/showthread.php?t=328221">http://forum.xda-developers.com/showthread.php?t=328221</a></pre>
<p>The procedure was quite simple and thanks a ton to Rishi, the guy who submitted the procedure on the XDA forum <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Unlocking HTC Touch Dual</h3>
<p>Many visitors have landed on this post searching for a unlock solution for HTC Touch Dual.</p>
<p>Going by the comments on this thread, it seems like the Unlock solution for Touch mentioned above does not work for HTC Touch Dual.</p>
<p>I spent some time on XDA forums and finally found this thread which lists the procedure to CID unlock the HTC Touch Dual</p>
<pre><a title="http://forum.xda-developers.com/showthread.php?t=355730" href="http://forum.xda-developers.com/showthread.php?t=355730">http://forum.xda-developers.com/showthread.php?t=355730</a></pre>
<p>CID Unlock is also referred to as the vendor lock and is done by the&#160; manufacturer to prevent installation of ROM not released by them.</p>
<p>After unlocking using the procedure, you can flash any ROM of your choice. </p>
<pre><a title="http://forum.xda-developers.com/showthread.php?t=355397" href="http://forum.xda-developers.com/showthread.php?t=355397">http://forum.xda-developers.com/showthread.php?t=355397</a></pre>
<p><strong>Note</strong>: Use the above procedure at your own risk. I will not be responsible for any damage caused by the files attached in the procedure.</p>
<p>If you know about any other procedure/tools to unlock HTC Touch/Dual, please feel free to suggest the same in the comments section.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=421&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/10/15/unlocking-htc-touch/feed/</wfw:commentRss>
		<slash:comments>153</slash:comments>
		</item>
		<item>
		<title>Windows Live Writer Beta 3</title>
		<link>http://www.venukb.com/2007/09/10/windows-live-writer-beta-3/</link>
		<comments>http://www.venukb.com/2007/09/10/windows-live-writer-beta-3/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 17:32:10 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/09/10/windows-live-writer-beta-3/</guid>
		<description><![CDATA[Windows Live Writer Beta 3 was released a few days back and this is one tool from Microsoft that deserves a lot of praise. It definitely simplifies the task of writing posts for your blog. Beta 3 has the following new features: &#160; &#160; Insert videos using new &#8216;Insert Video&#8217; dialog Upload images to Picasaweb [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Windows Live Writer Beta 3 was released a few days back and this is one tool from Microsoft that deserves a lot of praise. It definitely simplifies the task of writing posts for your blog.</p>
<p>Beta 3 has the following new features:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<ul>
<li>
<p>Insert videos using new <strong>&#8216;Insert Video&#8217;</strong> dialog <br /><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/1355347611/"><img height="351" alt="insert video" src="http://farm2.static.flickr.com/1395/1355347611_bb1e02bce7.jpg" width="296"/></a></p>
</li>
<li>
<p>Upload images to <a href="http://picasaweb.google.com/home">Picasaweb</a> when publishing to your <a href="http://www.blogger.com">Blogger</a> blog</p>
</li>
<li>
<p>Publish <a href="http://en.wikipedia.org/wiki/XHTML">XHTML</a>-style markup</p>
</li>
<li>
<p>Use Writer in 28 additional languages</p>
</li>
<li>
<p>Print your posts</p>
</li>
<li>
<p>Justify-align post text</p>
</li>
<li>
<p>Better image handling (fewer blurry images)</p>
</li>
<li>
<p>Resolved <a href="http://windowslivewriter.spaces.live.com/blog/cns%21D85741BB5E0BE8AA%211368.entry">installation issues</a> from last release</p>
</li>
<li>
<p>Many other bug fixes and enhancements</p>
</li>
</ul>
<p><u>More on Windows Live Writer</u></p>
<ul>
<li><a href="http://www.venukb.com/2006/08/17/windows-live-writer-powerful-desktop-based-weblog-client/">WLW &#8211; Powerful Desktop Based Weblog Client</a>  </li>
<li><a href="http://www.venukb.com/2007/06/01/windows-live-writer-reloaded/">Live Writer Beta 2 Reviewed</a> </li>
</ul>
<p>If you are still using your favorite blogging platform&#8217;s web based console to write posts, its high time you switched to <a href="http://get.live.com/betas/writer_betas">Windows Live writer</a> !</p>
<div class="alert"><strong><a href="http://g.live.com/1rebeta/en-us/WLInstaller.exe">Download Windows Live Writer</a></strong></div>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=416&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/09/10/windows-live-writer-beta-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Currports &#8211; View active TCP/UDP ports</title>
		<link>http://www.venukb.com/2007/08/17/currports-view-active-tcpudp-ports/</link>
		<comments>http://www.venukb.com/2007/08/17/currports-view-active-tcpudp-ports/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 16:58:29 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/08/17/currports-view-active-tcpudp-ports/</guid>
		<description><![CDATA[The other day one of the application server&#160;wouldn&#8217;t start up because of a required port being used by another application. This, I am sure is of the common problem faced by many developers The task manager in Windows shows only the active processes and gives no detail on the ports opened by these processes. One [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The other day one of the application server&nbsp;wouldn&#8217;t start up because of a <em>required port</em> being used by another application. This, I am sure is of the common problem faced by many developers <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The task manager in Windows shows only the active processes and gives no detail on the ports opened by these processes. One of the ways to find the process using a port of your interest is to use the <strong>netstat</strong> command.</p>
<p>The <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/netstat.mspx?mfr=true"><strong>netstat</strong></a> command on windows can be used to list the TCP connections, ports on which the computer is listening, Ethernet statistics, the IP routing table etc. </p>
<p>The <strong>netsat -b </strong>option can be used to list the process name that is using a port. (Not sure why this option is not mentioned in the <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/netstat.mspx?mfr=true">Microsoft Documentation</a>)</p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/1149768467/"><img height="108" alt="netstat1" src="http://farm2.static.flickr.com/1301/1149768467_896e80a33f.jpg" width="500"/></a></p>
<p>However the <em>command is so slow</em> that you could probably restart windows couple of times !</p>
<p>(On Linux/Unix use <strong>nestat -p </strong>to list the processes names along with the list of active TCP/UDP ports)</p>
<p><a href="http://www.nirsoft.net/utils/cports.html">Currports</a> is a stand-alone application that doesn&#8217;t require any installation process or any additional DLLs. The cports.exe executable can be&nbsp;run from any location&nbsp;including your USB drive.</p>
<p>The following snapshot pretty much summarizes the features available on Currports !</p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/1149768013/"><img height="390" alt="filter1" src="http://farm2.static.flickr.com/1156/1149768013_02c7819b8c.jpg" width="484"/></a></p>
<p>If there&nbsp;are better alternative applications, please feel free to suggest the same.</p>
<div class="alert"><strong><a href="http://www.nirsoft.net/utils/cports.html">Download Currports</a></strong> </div>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=411&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/08/17/currports-view-active-tcpudp-ports/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Shozu &#8211; Upload photos from your mobile</title>
		<link>http://www.venukb.com/2007/08/11/shozu-upload-photos-from-your-mobile/</link>
		<comments>http://www.venukb.com/2007/08/11/shozu-upload-photos-from-your-mobile/#comments</comments>
		<pubDate>Fri, 10 Aug 2007 18:42:11 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[Shozu]]></category>
		<category><![CDATA[Sony-Ericsson]]></category>
		<category><![CDATA[Windows-Mobile]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/08/11/shozu-upload-photos-from-your-mobile/</guid>
		<description><![CDATA[The camera on my old Sony Ericsson T630 was totally hopeless. Also the amount of memory was so low that after every few photos, I had to move it out to make some space for new ones. However the same is not true with my new HTC Touch. The 2MP camera doesn&#8217;t take the best [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The camera on my old Sony Ericsson T630 was totally hopeless. Also the amount of memory was so low that after every few photos, I had to move it out to make some space for new ones.</p>
<p>However the same is not true with my new <a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/">HTC Touch</a>. The 2MP camera doesn&#8217;t take the best of the pictures but its a very handy feature to have in a mobile device. The 1GB memory does take care of storing the photos for a long time.</p>
<p>(<em>God! I am talking about HTC so much these days; For those who are bored with these HTC posts, please bear with me</em> <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p><strong>Here is a look at the HTC Camera Interface:</strong></p>
<p><a href="http://www.flickr.com/photos/venukb/1072864093/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1294/1072864093_d31ce259de.jpg" alt="htccamera" height="272" width="448" /></a></p>
<p>You can set the resolution for the photos and set white balance depending on the lighting conditions. The max 2M resolution setting has a image output with resolution of 1600*1200 which isn&#8217;t too bad and the photos were definitely worth uploading to my <strong><a href="http://www.flickr.com/photos/venukb">Flickr Account</a></strong></p>
<p>One of the mobile tools recommended by Flickr is <a href="http://www.shozu.com/flickr/">Shozu</a>. Also I had seen <a href="http://scobleizer.com/">Scoble</a> using this service extensively to upload the photos taken on his Nokia N95 !</p>
<p><strong><u>Installation</u></strong></p>
<ol>
<li>Sign-up/Register on Shozu</li>
<li>Select your mobile device (<a href="http://www.shozu.com/portal/tour.do?operation=whyuse&amp;tourmode=tmimg#" title="Shozu - Compatible Phones">List of Compatible phones</a>)</li>
<li>Once you complete the registration, a SMS will be sent with a link pointing to the Shozu application which is compatible with your mobile device.</li>
</ol>
<p><strong><u>Shozu on Windows Mobile 6</u></strong></p>
<p>Shozu isn&#8217;t the easiest of applications to use; However it does accomplish the task of uploading and tagging your photos. Here are few screenshots of Shozu User Interface.</p>
<p><a href="http://www.flickr.com/photos/venukb/1073919914/" title="Shozu"><img src="http://farm2.static.flickr.com/1369/1073919914_ceb7271e1f_o.png" alt="shozu1" align="left" height="257" width="195" /></a></p>
<p><a href="http://www.flickr.com/photos/venukb/1073058871/" title="Shozu"><img src="http://farm2.static.flickr.com/1347/1073058871_d2176f0693.jpg" style="margin: 0px 0px 0px 15px" alt="shozu2" height="273" width="204" /></a></p>
<p>As you can note from the above screenshots, Flickr isn&#8217;t the only destination for your camera photos. You can upload to a host of locations including <a href="http://www.blogger.com">Blogger</a>, <a href="http://www.wordpress.org">WordPress</a>, <a href="http://www.facebook.com">Facebook</a>, <a href="http://www.webshots.com">Webshots</a>, FTP site etc.</p>
<p><a href="http://www.flickr.com/photos/venukb/1073147435/" title="Shozu Supported Services"><img src="http://farm2.static.flickr.com/1304/1073147435_a7b122af8d.jpg" alt="shozu3" height="165" width="376" /></a></p>
<p>And its not just photos, you can even <strong>upload videos</strong> and <strong>backup your contacts</strong> with Shozu!! With Shozu application installed on your mobile device, you don&#8217;t have to copy the photos to a intermediate location like your PC.</p>
<p>Checkout some of the photos taken on HTC and uploaded via Shozu <strong><a href="http://www.flickr.com/photos/venukb/tags/shozu/">here</a></strong> !</p>
<p>Do you use your <a href="http://en.wikipedia.org/wiki/Camera_phone">camera phone</a> to take pictures ? How do you copy/archive/upload these pictures ?</p>
<p class="alert"><strong><a href="http://www.shozu.com/portal/">Try Shozu</a></strong></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=410&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/08/11/shozu-upload-photos-from-your-mobile/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Setup ActiveSync via Bluetooth</title>
		<link>http://www.venukb.com/2007/08/07/setup-activesync-via-bluetooth/</link>
		<comments>http://www.venukb.com/2007/08/07/setup-activesync-via-bluetooth/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 20:08:03 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/08/07/setup-activesync-via-bluetooth/</guid>
		<description><![CDATA[ActiveSync, a synchronization program developed by Microsoft allows a mobile device to be synchronized with a Desktop PC. Other than syncing your contacts, calendar, tasks and notes you can also sync the Emails on the Exchange server. ActiveSync also allows you to Copy files between PC and the Mobile Device Install/Uninstall Mobile Applications ActiveSync can [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>ActiveSync,</strong> a synchronization program developed by <a href="http://www.microsoft.com"></a><a href="http://www.microsoft.com">Microsoft</a> allows a mobile device to be synchronized with a Desktop PC. Other than syncing your contacts, calendar, tasks and notes you can also sync the Emails on the Exchange server.</p>
<p>ActiveSync also allows you to</p>
<ol>
<li>Copy files between PC and the Mobile Device  </li>
<li>Install/Uninstall Mobile Applications </li>
</ol>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/1030836987/"><img height="245" alt="bluetooth1" src="http://farm2.static.flickr.com/1303/1030836987_c84df97f49.jpg" width="290" align="right"/></a>ActiveSync can also be used to connect to a <strong>network or Internet</strong>. The connected device can use the computer&#8217;s network connection as if it were its own. You can use this feature to perform tasks such as downloading non-Outlook e-mail messages or to browse the Internet.</p>
<p>The above feature was the primary reason I wanted to setup a ActiveSync partnership via Bluetooth on my <a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/">HTC Touch Smartphone</a>. The device did have Wi-Fi capabilities;however the minute I turned it on, it used to suck the handset battery big time !</p>
<p>Fortunately Bluetooth wasn&#8217;t that damaging on the battery and hence is an ideal way to sync with your PC and also happens to be the best way to connect to Internet as well !!</p>
<p><strong>Here is a step by step guide to setup ActiveSync via Bluetooth</strong></p>
<p><em>(Note that the snapshots and features correspond to <strong>ActiveSync 4.5</strong> and a <strong>Windows Mobile 6</strong> powered Device)</em></p>
<ol>
<li><u>Setup a Bluetooth partnership between the device and PC</u><br />I am not going to write in detail about this step. The above process essentially involves turning on the Bluetooth on both your PC and Handset, making them discoverable and adding the Bluetooth device to the &#8220;Devices&#8221; list. Optionally you can also setup a secure partnership by associating a passkey.  </li>
<li><u>Add Incoming Bluetooth COM port on your PC<br /></u>The Bluetooth Settings on your PC has a tab to configure the Bluetooth COM ports. Add one Incoming port (device initiates the connection) as shown below<br /><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/1031690782/"><img height="369" alt="activesync3" src="http://farm2.static.flickr.com/1249/1031690782_5aa3163a4f.jpg" width="340"/></a>  </li>
<li>Set the Bluetooth COM port in the ActiveSync connection settings dialog.<br /><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/1030894015/"><img height="259" alt="activesync4" src="http://farm2.static.flickr.com/1431/1030894015_458bfc7921.jpg" width="327"/></a>  </li>
<li>On your Handset go to <strong>Start -&gt; Settings -&gt; Connections -&gt; Bluetooth</strong>  </li>
<li>Your PC should be listed in the Devices Tab (If <strong>step 1</strong> was successfully done)  </li>
<li>Click on the PC device in the list to open the &#8220;Partnership Settings&#8221; screen. After clicking on the &#8220;Refresh&#8221; button, you should see a &#8220;ActiveSync&#8221; service listed as shown below<br /><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/1031829450/"><img height="271" alt="activesync5" src="http://farm2.static.flickr.com/1194/1031829450_1086eb9332.jpg" width="204"/></a>  </li>
<li>Open ActiveSync on your Mobile Device : <strong>Start -&gt; Programs -&gt; ActiveSync</strong>  </li>
<li>Click on <strong>Menu -&gt; Connect via Bluetooth</strong> ! If the ActiveSync partnership has been configure properly as described above, you should see activity on ActiveSync running both on PC and the mobile device. If your PC is connected to the Internet, the same will also be used by your Bluetooth connected mobile device. </li>
</ol>
<p>If you had any trouble getting the ActiveSync to work via Bluetooth, feel free to raise the issue in the comments section <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=408&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/08/07/setup-activesync-via-bluetooth/feed/</wfw:commentRss>
		<slash:comments>73</slash:comments>
		</item>
		<item>
		<title>Tabbed Windows Console</title>
		<link>http://www.venukb.com/2007/08/05/tabbed-windows-console/</link>
		<comments>http://www.venukb.com/2007/08/05/tabbed-windows-console/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 15:07:09 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[Poderosa]]></category>
		<category><![CDATA[Putty]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/08/05/tabbed-windows-console/</guid>
		<description><![CDATA[If you are used to a tabbed browser or a tabbed text editor you would also love a tabbed Windows console. As we all know the windows console isn&#8217;t the prettiest of the applications nor its usable when it comes to selecting text or pasting text. (I am not sure if the console application has [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you are used to a tabbed browser or a tabbed text editor you would also love a <strong>tabbed Windows console</strong>. As we all know the windows console isn&#8217;t the prettiest of the applications nor its usable when it comes to selecting text or pasting text. (I am not sure if the console application has been improved on Windows Vista)</p>
<p>The <a href="http://sourceforge.net/project/showfiles.php?group_id=43764">Console project on SourceForge.net</a> is one handy application if you use the windows console a lot. Features include</p>
<ul>
<li>Multiple Tabs</li>
<li>Text Editor like Text Selection</li>
<li>Customizable console &#8211; You can configure the background color, image and transparency levels</li>
<li>Keyboard shortcuts &#8211; If you are  keyboard junkie, you would appreciate this feature too <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p><a href="http://www.flickr.com/photos/venukb/1017649251/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1203/1017649251_12e38dc038.jpg" alt="console1" height="265" width="386" /></a></p>
<p>One of the nice things about this console application is that you could<strong> configure multiple console types</strong> defining a custom look and feel for each of them. The keyboard shortcut can then be used to create a new console of your choice.</p>
<p><a href="http://www.flickr.com/photos/venukb/1017676609/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1160/1017676609_44c271e58b.jpg" alt="console3" align="left" height="243" width="209" /></a></p>
<p><a href="http://www.flickr.com/photos/venukb/1017677001/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1158/1017677001_da0c868c44_o.png" style="margin: 0px 0px 0px 15px" alt="console4" height="180" width="180" /></a></p>
<p>If you are looking for a similar <strong>tabbed Telnet/SSH console</strong> checkout <a href="http://www.venukb.com/2006/09/20/poderosa-alternative-to-putty/">Poderosa which is a nice but not stable alternative to Putty</a>.</p>
<div class="alert"><strong><a href="http://sourceforge.net/projects/console">Download Tabbed Console</a></strong></div>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=407&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/08/05/tabbed-windows-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keyboard applications for Windows Mobile</title>
		<link>http://www.venukb.com/2007/08/01/keyboard-applications-for-windows-mobile/</link>
		<comments>http://www.venukb.com/2007/08/01/keyboard-applications-for-windows-mobile/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 17:06:38 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Windows-Mobile]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/08/01/keyboard-applications-for-windows-mobile/</guid>
		<description><![CDATA[One important feature expected from a Touch screen based Windows mobile Smartphone is the ability to quickly input text. Be it composing a SMS/MMS or taking a note or composing a word document, a powerful keyboard application is a must on a Smartphone/Pocket PC. I quickly got adjusted to the Touch based navigation on my [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>One important feature expected from a <strong>Touch screen based</strong> Windows mobile Smartphone is the<strong> ability to quickly input text</strong>. </p>
<p>Be it composing a SMS/MMS or taking a note or composing a word document, a powerful keyboard application is a must on a Smartphone/Pocket PC.</p>
<p>I quickly got adjusted to the Touch based <strong>navigation</strong> on my newly purchased <a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/">HTC Touch Smartphone</a>, however when it came to composing a SMS using my fingers, I failed miserably !</p>
<p>I had to either take support from the Stylus (which I didn&#8217;t want to) or I had to search for a better powerful keyboard alternative for my phone.HTC did market the Touch phone as the first touch based Smartphone, but they forgot to provide a better text input user interface !</p>
<p>By default the <strong>Windows Mobile OS</strong> came with the following methods of text input.</p>
<p><strong><u>Keyboard</u></strong></p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/975754674/"><img height="256" alt="KeyboardFinal1" src="http://farm2.static.flickr.com/1120/975754674_6e74807435.jpg" width="193"/></a></p>
<p>Unless you have very small fingers, the only way to work with the above keyboard is by relying on the stylus supplied with the device.</p>
<p><strong><u>Letter Recognizer/Block Recognizer</u></strong></p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/974895543/"><img height="252" alt="keyboardfinal2" src="http://farm2.static.flickr.com/1390/974895543_8ae1ec618b.jpg" width="192"/></a></p>
<p>On this interface, even your small fingers wouldn&#8217;t be of help. The only way to use this interface is again via the stylus attached with the device.</p>
<p><strong><u>Transcriber</u></strong></p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/974895917/"><img height="258" alt="Transcriber" src="http://farm2.static.flickr.com/1203/974895917_1931e2a04e.jpg" width="193"/></a></p>
<p>The Transcriber application is Microsoft&#8217;s award winning application that uses Transcriber technology to bring you unprecedented recognition accuracy and ease of use.</p>
<blockquote><p>Transcriber employs advanced fuzzy logic and neural net techniques that allow it to recognize your handwriting with unparalleled accuracy and speed. Think your handwriting is too messy for Transcriber to make sense of it</p>
</blockquote>
<p style="border-right: 2px dotted; border-top: 2px dotted; font-size: 15px; border-left: 2px dotted; border-bottom: 2px dotted; background-color: #ffffa0; text-align: center"><strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a8b343c3-2eee-41e3-9339-f7b303f4b386&amp;displaylang=en">Download Transcriber</a></strong></p>
<p>Once you get used to the Transcriber, this method might be the <strong>most effective</strong> among the above 4 methods. However like in Letter/Block Recognizer, you are forced to use the stylus in Transcriber mode too <img src='http://www.venukb.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><strong><u>Alternative Touch Based Keyboards</u></strong></p>
<p>Here are <strong>2 alternative keyboards</strong> which saves you from using the Stylus.</p>
<p><strong>HTC T9 Phonepad<a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/974896351/"><img height="253" alt="phonepad" src="http://farm2.static.flickr.com/1101/974896351_2402660364.jpg" width="192" align="right"/></a></strong></p>
<p><a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/">HTC </a>supposedly started licensing T9 text input capabilities and included a software input method for their devices that let you easily type out text using common T9 techniques.</p>
<p>This was a great feature for phones that only had touch screens since you could use your thumb to type out messages in much the same way you would do so on a standard numeric keypad using T9. However it was abandoned by HTC for some odd reasons. I was finally able to grab hold of the CAB file for the phone pad in XDA developers forum</p>
<p>After using it for a more than a week, I should say that this is probably the <strong>most efficient and fastest way</strong> of inputting text on a touch based device.</p>
<p>I couldn&#8217;t locate the forum thread which had the cab, so here is the link to the T9 Phonepad application.</p>
<p style="border-right: 2px dotted; border-top: 2px dotted; font-size: 15px; border-left: 2px dotted; border-bottom: 2px dotted; background-color: #ffffa0; text-align: center"><strong><a title="T9 PhonePad Download" href="http://cid-1ef5b6c87869ffee.skydrive.live.com/self.aspx/Public/phonepad_atom_wwe.cab">Download T9 PhonePad</a> (1.46 MB)</strong></p>
<p><strong>Full Screen Keyboard</strong></p>
<p>Unlike T9 Phonepad, <a href="http://www.spbsoftwarehouse.com/products/fsk/?en">Spb&#8217;s Full Screen Keyboard</a> is not a free application. However at 10$ its worthy every penny ! Unlike other input methods it covers the entire screen area and has keys large enough to be typed with finger-tips rather than with a stylus.</p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/974897173/"><img height="274" alt="fullscreenkeyboard" src="http://farm2.static.flickr.com/1114/974897173_857f1bbb2f.jpg" width="452"/></a></p>
<p>Additionally the <strong>dictionary</strong>-<strong>based</strong> correction algorithms allow users to reduce the number of misprints significantly.</p>
<p><strong>Other notable applications</strong></p>
<p>There are 2 more applications worth mentioning even though they are not touch based applications. They rely on the stylus but have some unique features which help you to input the text at a pretty fast rate.</p>
<p><a href="http://http://www.tengo.net/index.html">TenGO</a></p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/venukb/976640626/"><img height="255" alt="tengo" src="http://farm2.static.flickr.com/1373/976640626_01b002196e.jpg" width="193"/></a></p>
<p><a href="http://www.resco.net/pocketpc/keyboard/">Resco KeyBoard </a></p>
<p>If you know about any additional keyboard applications useful for Touch based device, please do leave your suggestions in the comments section.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=405&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/08/01/keyboard-applications-for-windows-mobile/feed/</wfw:commentRss>
		<slash:comments>87</slash:comments>
		</item>
		<item>
		<title>How To: Make your blog mobile browser compatible</title>
		<link>http://www.venukb.com/2007/07/26/how-to-make-your-blog-mobile-browser-compatible/</link>
		<comments>http://www.venukb.com/2007/07/26/how-to-make-your-blog-mobile-browser-compatible/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 17:46:30 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Windows-Mobile]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/07/26/how-to-make-your-blog-mobile-browser-compatible/</guid>
		<description><![CDATA[After launching the Internet browser on my HTC Touch, the first site I opened was of my own blog. The browser almost came to halt while loading the home page. When I loaded other sites such as GMail, Flickr, Google Search one thing I noticed was that all these sites had a page compatible with [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>After launching the Internet browser on my HTC Touch, the first site I opened was of my <a href="http://www.venukb.com">own blog</a>. The browser almost came to halt while loading the home page.</p>
<p>When I loaded other sites such as <a href="http://www.gmail.com">GMail</a>, <a href="http://m.flickr.com">Flickr</a>, Google Search one thing I noticed was that all these sites had a page compatible with the mobile browser. The content fitted exactly to the bounds of the handset display. Images were kept to minimal, so was the content !</p>
<p>A search for <a href="http://www.google.com/search?rls=en&amp;q=wordpress%2Bmobile">WordPress+mobile on Google</a> took me to <a href="http://alexking.org/projects/wordpress">Alex Kings WordPress Mobile Edition</a> plug-in for <a href="http://www.wordpress.org">WordPress</a>. The package consists of a WordPress <strong>plug-in</strong> which detects requests from Mobile Browsers. It also has a WordPress <strong>theme</strong> which takes care of rendering your site on the mobile browser.</p>
<p>You can easily read all the posts with no need for horizontal scrolling. The page fits your device display perfectly.</p>
<p>Here are some snapshots of my blog opened in IE mobile browser.</p>
<p><a href="http://www.flickr.com/photos/venukb/906509329/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1359/906509329_872e8ce927.jpg" alt="mobile3" height="356" width="259" /></a></p>
<p>Even the images fit nicely into the display width. You almost have the same experience as reading on your normal web browser.</p>
<p><a href="http://www.flickr.com/photos/venukb/907361704/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1101/907361704_a9ccd38505.jpg" alt="mobile2" height="372" width="277" /></a></p>
<p>And if somebody is still interested in seeing the original page (loaded with ads and sidebar), you can always exit the mobile edition and view the standard browser edition.</p>
<p><strong>Is your site mobile browser friendly ?</strong> If not install and activate Alex Kings WordPress Mobile Edition Plug-in. Probably I should start tagging my buddies to install and activate this plug-in <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="alert"><a href="http://alexking.org/projects/wordpress/plugins/wp-mobile.zip"><strong>Download WordPress Mobile Edition</strong></a></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=401&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/07/26/how-to-make-your-blog-mobile-browser-compatible/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MMS Configuration for Airtel</title>
		<link>http://www.venukb.com/2007/07/26/mms-configuration-for-airtel/</link>
		<comments>http://www.venukb.com/2007/07/26/mms-configuration-for-airtel/#comments</comments>
		<pubDate>Wed, 25 Jul 2007 19:11:24 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Airtel]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[MMS]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Sony-Ercisson]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/07/26/mms-configuration-for-airtel/</guid>
		<description><![CDATA[After switching over to HTC Touch, I did have a tough time configuring MMS on the handset. Matters were made worse by Airtel&#8217;s &#8220;amazing&#8221; customer care service. Initially I was told that the settings would be sent to my phone and that this would avoid the pain of doing the manual configuration. The settings never [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>After switching over to <a href="http://www.venukb.com/2007/07/24/htc-touch-smartphone/">HTC Touch</a>, I did have a tough time configuring MMS on the handset. Matters were made worse by Airtel&#8217;s &#8220;amazing&#8221; customer care service.</p>
<p>Initially I was told that the settings would be sent to my phone and that this would avoid the pain of doing the manual configuration. The settings never came; after few more calls to the customer service, I realized that my old Sony Ericsson phone was still registered in Airtel&#8217;s database and they were trying to send the wrong setting.</p>
<p>I finally was able to manually configure the settings <strong>not</strong> with the help of Google but with little assistance from <a href="http://www.nowsms.com">NowSMS</a>.</p>
<p>So if you are stuck with configuring MMS for Airtel on a Windows Mobile device this is what you need to do:</p>
<p><strong><u>Activate MMS (if you haven&#8217;t)</u></strong></p>
<p>To Activate MMS, send a SMS with text &#8220;MMS ACTIVE&#8221; to 121.</p>
<p><strong><u>Configure the GPRS Connection</u></strong></p>
<ol>
<li>Go to Start -&gt; Settings -&gt; Connections</li>
<li>Click on the Connections item<br />
<a href="http://www.flickr.com/photos/venukb/897217873/" title="MMS Configuration"><img src="http://farm2.static.flickr.com/1277/897217873_1741dd38a9_m.jpg" alt="mms1" height="226" width="172" /></a></li>
<li>Add a new <strong>modem connection</strong> under <strong>MyISP</strong></li>
<li>Input a name for the connection</li>
<li>Select the modem as &#8220;Cellular Line (GPRS)&#8221;<br />
<a href="http://www.flickr.com/photos/venukb/898069794/" title="MMS Modem Connection"><img src="http://farm2.static.flickr.com/1100/898069794_cd53c4f828_m.jpg" alt="mms2" height="224" width="168" /></a></li>
<li>Click next and Input Access Point Name(APN) : <strong>airtelmms.com<br />
</strong><a href="http://www.flickr.com/photos/venukb/898070116/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1008/898070116_cea4b9d96d_m.jpg" alt="mms3" height="222" width="168" /></a></li>
</ol>
<p><u><strong>Configure MMS Options</strong></u></p>
<p>The MMS option screen was kind of hidden and I am not sure if its the same on Windows Mobile 5 as well. Here is how you access the &#8220;hidden&#8221; MMS options</p>
<ol>
<li>Start -&gt; Messaging -&gt; SMS/MMS</li>
<li>Menu -&gt; New MMS</li>
<li>Select a Blank Template</li>
<li>Menu -&gt; Options -&gt; MMS Options<br />
<a href="http://www.flickr.com/photos/venukb/897218745/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1010/897218745_0960d4f15c_m.jpg" alt="mms4" height="226" width="168" /></a></li>
</ol>
<p>Its kind of weird that I had to create a New MMS message to view the MMS options screen.</p>
<p>Select <strong>Servers</strong> tab and enter the information as shown on the below screen (This information is what I got from <a href="http://www.nowsms.com">NowSMS</a>)</p>
<p><a href="http://www.flickr.com/photos/venukb/898070668/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1219/898070668_31b5da1424_o.png" alt="mms5" height="321" width="241" /></a></p>
<p>Note that the Server name can be anything. Also the MMS connection should be pointing to the new modem connection that was created with APN airtelmms.com. This is accomplished by setting it in the &#8220;Connect via&#8221; box.</p>
<p>Once the configuration is done, set this new server configuration as the <strong>default</strong>.</p>
<p>That&#8217;s it <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You are now all set to send and receive MMS messages. Also the above steps can be used to configure MMS for any mobile operator, only the settings (Gateway,Server Address etc) would change and this data has to be got from the service provider.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=400&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/07/26/mms-configuration-for-airtel/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Preventing Comment Spam</title>
		<link>http://www.venukb.com/2007/07/13/preventing-comment-spam/</link>
		<comments>http://www.venukb.com/2007/07/13/preventing-comment-spam/#comments</comments>
		<pubDate>Thu, 12 Jul 2007 18:36:41 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[Bad-Behavior]]></category>
		<category><![CDATA[Spam-Karma]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/07/13/preventing-comment-spam/</guid>
		<description><![CDATA[The recent problem of spam comments bypassing the Akismet filter made me realize that its too bad to rely completely on one service. For one I spent considerable amount of valuable time deleting comments. The other problem was created when these spam comments made their way as &#8220;subscription comments&#8221; and I got many mails from [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The recent problem of <a href="http://www.venukb.com/2007/07/10/whats-with-akismet/" title="Akismet">spam comments bypassing the Akismet</a> filter made me realize that its too bad to rely completely on <strong>one</strong> service.</p>
<p>For one I spent considerable amount of valuable time deleting comments. The other problem was created when these spam comments made their way as &#8220;subscription comments&#8221; and I got many mails from users asking me the steps to un-subscribe for the comments.</p>
<p><a href="http://www.flickr.com/photos/venukb/789383309/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1398/789383309_42959a9613_o.png" alt="nospam" align="right" height="273" width="176" /></a></p>
<p>Here are some of the <strong>alternatives</strong> to prevent comment spam:</p>
<p><u><a href="http://www.venukb.com/2006/08/28/bad-behavior/"><strong>Bad Behavior</strong></a></u></p>
<blockquote><p>Akismet focuses only on handling Comment/Pingback/Trackback spam. Your blog might be subject to other attacks such as email harvesting, automated cracking attempts etc.</p>
<p><a href="http://error.wordpress.com/2006/07/04/bad-behavior-2/">Bad Behavior</a>, conceived in 2005 as a fingerprinting method for HTTP requests, has proven shockingly effective at identifying and blocking the kind of attacks described above. So with Bad Behavior activated, you would see far less comments filtered by Akismet. In a way Bad Behavior reduced the work load of Akismet.</p></blockquote>
<p><u><a href="http://unknowngenius.com/blog/wordpress/spam-karma/"><strong>Spam Karma</strong></a></u></p>
<blockquote><p><a href="http://www.shivaranjan.com">Shiv</a> is of the opinion that <a href="http://unknowngenius.com/blog/wordpress/spam-karma/">Spam Karma</a> is much better than Akismet. But other than Shiv, I haven&#8217;t heard of too many people voicing the same opinion. Is Spam Karma a worthy alternative to Akismet ? Opinions please <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p><u><a href="http://beingmrkenny.co.uk/wordpress/plugins/extended-comment-options/"><strong>Extended Comment Options</strong></a></u><strong> </strong></p>
<blockquote><p>This <a href="http://beingmrkenny.co.uk/wordpress/plugins/extended-comment-options/">WordPress plug-in</a> allows you to switch comments and/or pings on or off for batches of existing posts. Once the plug-in is activated, there is a new options page added via which you could control comments on your older posts.</p>
<p>As far as I am concerned, I would hate to switch off commenting on older posts. Most of my posts at least have no connection to the date it was written and hence it doesn&#8217;t make sense disabling comments !</p></blockquote>
<p><strong><u>WordPress Comment Management</u></strong></p>
<blockquote><p>Now this is one options which I completely overlooked. WordPress itself has a pretty good Comment moderation and comment blacklist feature. This can be accessed via &#8220;<strong>Discussion&#8221; on WordPress options page.</strong></p>
<p>In comment moderation, you can add list of words commonly used by the spammers. If a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the <strong>moderation queue</strong>. You can input one word or IP per line. It will match inside words, so &#8220;press&#8221; will match &#8220;WordPress&#8221;.</p>
<p>Comment blacklist does the same thing except for the fact that it marks the comment as spam rather than adding it to the &#8220;Comment Moderation&#8221; list.</p>
<p>Using the above 2 options, I could have easily marked/moderated hundreds of comments with text: <strong>&#8220;Nice&#8221; &amp; &#8220;interesting&#8221; </strong></p></blockquote>
<p>Any other options to prevent comment spam ?</p>
<p>P.S. <a href="http://www.benh.org/techblog">Benedict </a>has confirmed that Akismet is back in action. Irrespective of this, I would definitely adopt the above options except using the Extended Comment options plug-in.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=396&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/07/13/preventing-comment-spam/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Domain Tools</title>
		<link>http://www.venukb.com/2007/07/06/domain-tools/</link>
		<comments>http://www.venukb.com/2007/07/06/domain-tools/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 17:55:29 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[domaintools]]></category>
		<category><![CDATA[whois]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/07/06/domain-tools/</guid>
		<description><![CDATA[Amit of Labnol suggested couple of useful sites on this post which help you to get more information about a domain. I particularly liked Whoishostingthis.com which helps you to quickly have a look at the hosting provider of a particular domain. I would like to recommend the following 2 sites. Whois.sc Whois.sc was recently renamed [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Amit</strong> of <strong>Labnol</strong> suggested <a href="http://labnol.blogspot.com/2007/07/how-to-find-name-of-web-hosting-company.html" target="_blank">couple of useful sites on this post</a> which help you to get more information about a domain. I particularly liked <a href="http://whoishostingthis.com/" target="_blank">Whoishostingthis.com</a> which helps you to quickly have a look at the hosting provider of a particular domain.</p>
<p>I would like to recommend the following 2 sites.</p>
<p><strong><u>Whois.sc</u></strong> </p>
<p><a href="http://www.whois.sc" target="_blank"><strong>Whois.sc</strong></a> was recently renamed to <a href="http://www.domaintools.com" target="_blank"><strong>Domain Tools</strong></a>. Domain Tools has been tracking whois history for quite some time now (<strong>since 2000</strong>). The information provided by the Domain tools whois service is exhaustive. </p>
<p><u>The information is categorized into</u></p>
<ul>
<li><strong>Front Page Information</strong> &#8211; Website Title, Title Relevancy, SEO Score etc  </li>
<li><strong>Indexed Data</strong> &#8211; Alexa Trend and Ranking  </li>
<li><strong>Server Data</strong> &#8211; Details about the server where the site is hosted.  </li>
<li><strong>Registry Data</strong> &#8211; Domain registration data including the Name servers  </li>
<li><strong>DomainTools Exclusive</strong> &#8211; This information was the one I found very useful. You actually come to know of how many sites are on your shared hosting space. My site seems to be sharing load with <strong>23 other sites</strong>. When this site was hosted on <a href="http://www.godaddy.com" target="_blank">Godaddy</a>, it was a whooping <strong>3350 sites</strong> !!!</li>
</ul>
<p><a href="http://farm2.static.flickr.com/1320/739669957_9483b96b7c_d.jpg" target="_blank" atomicselection="true"><img style="margin: 0px 0px 0px 40px" src="http://farm2.static.flickr.com/1320/739669957_9483b96b7c_d.jpg"/></a> </p>
<p><strong>If you are on shared hosting, do check as to how many other sites are sharing your server <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p><strong><u>Instant Domain Search</u></strong></p>
<p>Although there are lot of sites which help you in searching for domains, Instant Domain Search stands out. Its a free service that <strong>instantly</strong> (literally) checks for .<strong>com .net and .org sites.</strong> </p>
<p><img src="http://farm2.static.flickr.com/1236/740575890_3b58431caa_d.jpg"/> </p>
<p>If you are planning to buy a domain, bookmark this site <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Are there any other better whois and domain search tools ? </strong></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=391&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/07/06/domain-tools/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>PortableApps &#8211; Alternative to U3</title>
		<link>http://www.venukb.com/2007/07/03/portableapps-alternative-to-u3/</link>
		<comments>http://www.venukb.com/2007/07/03/portableapps-alternative-to-u3/#comments</comments>
		<pubDate>Tue, 03 Jul 2007 15:20:02 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Cruzer]]></category>
		<category><![CDATA[PortableApps]]></category>
		<category><![CDATA[Sandisk]]></category>
		<category><![CDATA[U3]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/07/03/portableapps-alternative-to-u3/</guid>
		<description><![CDATA[In yesterdays post on Sandisk Cruzer Micro, I was mentioning how U3 Smart technology allows you to carry your favorite PC programs on the flash drive. Turns out that U3 is not the only technology available to accomplish this task. There is an open source project called PortableApps using which you could turn any flash [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In yesterdays post on <strong><a title="Sandisk Cruzer Micro" href="http://www.venukb.com/blog/2007/07/02/sandisk-cruzer-micro/" target="_blank">Sandisk Cruzer Micro</a></strong>, I was mentioning how <strong>U3 Smart technology</strong> allows you to carry your favorite PC programs on the flash drive.</p>
<p>Turns out that U3 is not the only technology available to accomplish this task. There is an open source project called <strong><a title="PortableApps" href="http://portableapps.com/" target="_blank">PortableApps</a></strong> using which you could turn any<strong> flash drive/iPod into a &#8220;U3 smart&#8221; device</strong>.</p>
<blockquote><p>A <strong>portable app is a computer program</strong> that you can carry around with you on a portable device and use on any <strong>Windows</strong> computer. When your<a href="http://farm2.static.flickr.com/1138/706479656_6167aa169a_d.jpg" target="_blank"><img src="http://farm2.static.flickr.com/1138/706479656_6167aa169a_d.jpg" align="right"/></a> <strong>USB flash drive</strong>, <strong>portable hard drive</strong>, <strong>iPod</strong> or other portable device is plugged in, you have access to your software and personal data just as you would on your own PC. And when you unplug the device, none of your personal data is left behind.</p>
</blockquote>
<p>Even though you can run the<strong> PortableApps along with U3</strong>, I decided to first test it on my <a href="http://www.venukb.com/tags/ipod" target="_blank"><strong>iPod</strong></a>. There are <strong>3 different flavors</strong> of installation available.</p>
<table cellspacing="0" cellpadding="2" width="458" border="1">
<tbody>
<tr>
<td valign="top" width="140">PortableApps <strong>Standard</strong></td>
<td valign="top" width="72">90MB</td>
<td valign="top" width="244">
<p>Includes</p>
<ul>
<li><strong>ClamWin</strong> Portable (antivirus)  </li>
<li><strong>Mozilla Firefox</strong> &#8211; Portable Edition (web browser)  </li>
<li><strong>Gaim</strong> Portable (instant messaging)  </li>
<li>OpenOffice.org Portable (office suite)  </li>
<li><strong>Sudoku</strong> Portable (puzzle game)  </li>
<li>Mozilla <strong>Sunbird</strong> &#8211; Portable Edition (calendar/task manager)  </li>
<li>Mozilla <strong>Thunderbird</strong> &#8211; Portable Edition (email client) </li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="139">PortableApps <strong>Lite</strong></td>
<td valign="top" width="74">30MB</td>
<td valign="top" width="243">Uses <strong>AbiWord Portable</strong> (word processor) instead of OpenOffice.org</td>
</tr>
<tr>
<td valign="top" width="139">PortableApps <strong>Base</strong></td>
<td valign="top" width="76">800KB</td>
<td valign="top" width="241">Stripped down package with just the<strong> PortableApps Menu</strong>, PortableApps <strong>Backup utility</strong> and custom folders, icons and autorun</td>
</tr>
</tbody>
</table>
<p><strong><u>Installation</u></strong></p>
<p><strong>Download</strong> any of the above 3 flavors and <strong>extract the contents to the root of your flash drive</strong>.</p>
<p><strong><u>PortableApps Menu</u></strong></p>
<p>Unlike U3 Launchpad, <strong>PortableApps Menu</strong> doesÂ <strong>not</strong>Â have the ability to auto-launch when the flash drive is connected to the PC.</p>
<p><a title="Portable Apps" href="http://farm2.static.flickr.com/1051/706447288_49f0190786_d.jpg" target="_blank"><img src="http://farm2.static.flickr.com/1051/706447288_49f0190786_d.jpg"/></a></p>
<p>The PortableApp application are of &#8220;<strong>paf</strong>&#8221; format and can be installed via the<strong> PortableApps Menu</strong>. The number of Portable applications is limited and is listed on <a href="http://portableapps.com/apps" target="_blank">this page</a>.</p>
<p class="alert"><strong><a title="PortableApps Download" href="http://portableapps.com/suite" target="_blank">Download PortableApps</a></strong></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=388&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/07/03/portableapps-alternative-to-u3/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Printing online photos</title>
		<link>http://www.venukb.com/2007/06/22/printing-online-photos/</link>
		<comments>http://www.venukb.com/2007/06/22/printing-online-photos/#comments</comments>
		<pubDate>Fri, 22 Jun 2007 17:59:42 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[iTasveer]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Picasquare]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/22/printing-online-photos/</guid>
		<description><![CDATA[My mom still believes that that her roll film camera is much better than the digital camera that I have. The explanation that she gave was that even though digital cameras can store tons of photos on the memory card, she rarely sees any of them being printed !! I did try to explain that [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>My mom still believes that that her <strong>roll film camera</strong> is much better than the <strong>digital camera</strong> that I have. The explanation that she gave was that even though digital cameras can store tons of photos on the memory card, she rarely sees any of them being printed !!</p>
<p>I did try to explain that photographs taken with the film <strong>fade with age</strong> and the digital ones <strong>retain the clarity and the color</strong> even after many years.</p>
<p>That said, if the hard drive which stores these photos crashes, you loose the photos forever, unless you have made a backup.</p>
<p>I use <strong><a href="http://www.flickr.com/photos/venukb" target="_blank">Flickr Pro</a></strong> account to <strong>backup my photos</strong>. The Pro account allows <strong>permanent archiving of high resolution images</strong>. Again not relying completely on an &#8220;online&#8221; service, I have backed up the photos on my 30GB iPod too !! (I need to buy an external hard drive soon <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>You can easily share photos using Flickr and other similar services. But how to <strong>share photos to people who don&#8217;t have access to Internet</strong> ? Getting the photos printed does make sense in this case.</p>
<p>One way to get the digital photos printed (at least in India) is to copy the photos onto a <strong>USB stick (or write to a CD)</strong> and take them to a photo studio. Alternatively some of these studios have an <strong>online service</strong> which allows you to upload the photos and order for a print.</p>
<p><a href="http://farm2.static.flickr.com/1302/590843057_8cf8e49f00_d.jpg" target="_blank" atomicselection="true"><img src="http://farm2.static.flickr.com/1302/590843057_8cf8e49f00_d.jpg" align="right"/></a> Having already uploaded all my photos to Flickr, I went in search of a online photo printing service <strong>which integrates with Flickr</strong>. </p>
<p>Flickr does have an option of &#8220;<strong>ordering prints</strong>&#8220;, however there seems to be only one non-regional partner named <strong><a href="http://www.qoop.com/" target="_blank" rel="nofollow">QOOP</a></strong>. The company is based in California and they have to ship printed photos to India; this might turn out to be a time consuming and expensive proposition.</p>
<p>After little bit of &#8220;<em>googling</em>&#8221; I found 2 online photo printing services based in <strong>India</strong></p>
<ul>
<li><strong>iTasveer</strong> &#8211; <a title="http://www.itasveer.com/" href="http://www.itasveer.com/" rel="nofollow">http://www.itasveer.com/</a>  </li>
<li><strong>Picsquare</strong> &#8211; <a title="http://www.picsquare.com/" href="http://www.picsquare.com/" rel="nofollow">http://www.picsquare.com/</a></li>
</ul>
<p>Both the services, once authorized, allow you to pull photos from <strong>Flickr</strong>.</p>
<p><strong>iTasveer</strong> seems to be a better service compared to <strong>PicSquare</strong>. The user interface of iTasveer is much more easier to use/navigate compared to Picsquare. </p>
<p>Also iTasveer is much more faster and has additional tools to modify the photos (crop etc).</p>
<p>On the pricing front, <strong>iTasveer</strong> is more expensive compared to <strong>PicSquare</strong> (PicSquare is running a promotion program till June 30). If you are also planning to print your online digital photos, I would definitely recommend iTasveer. I only hope they reduce the pricing a little bit.</p>
<p><strong>How do you manage your digital photos ? How do you back it up ? How do you get the photos printed ?</strong></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=383&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/22/printing-online-photos/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Showing Top Commentators</title>
		<link>http://www.venukb.com/2007/06/16/showing-top-commentators/</link>
		<comments>http://www.venukb.com/2007/06/16/showing-top-commentators/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 18:23:55 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/16/showing-top-commentators/</guid>
		<description><![CDATA[The sidebar now displays the list of Top commentators for this blog. This has been overdue from some time now. Nate Sanden&#8217;s Top commentator plugin eased the task of showing the top commentators. It is currently shown only on the home page. In order to accommodate this list on my 2 column theme, I have [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The sidebar now displays the list of <strong>Top commentators</strong> for this blog. This has been overdue from some time now.</p>
<p>Nate Sanden&#8217;s <a href="http://www.pfadvice.com/wordpress-plugins/show-top-commentators/" title="Top Commentators Plugin" target="_blank" rel="nofollow"><strong>Top commentator plugin</strong></a> eased the task of showing the top commentators. It is currently shown only on the home page.</p>
<p>In order to accommodate this list on my <strong>2 column theme</strong>, I have also decided to move the <strong><a href="http://www.venukb.com/blogroll/" title="Blogroll on Online Diary" target="_blank">Blogroll to a separate page</a></strong>.</p>
<p>(Thanks to <strong>Shankar</strong> for pointing out the <strong><a href="http://blog.shankarganesh.com/2007/06/12/blogroll-page-wordpress-plugin/" title="Blogroll Plugin" target="_blank">Blogroll Plugin</a></strong>)</p>
<p>Note: If you are using the Top Commentators plugin, you should also have a look at the 9 options that could be tweaked by editing the plugin. (Unfortunately, the plugin doesn&#8217;t come with a preference page.</p>
<p>I especially found the following options useful:</p>
<p><span id="more-380"></span></p>
<blockquote><p><strong><em>reset</em> (â€™hourlyâ€™, â€˜dailyâ€™, â€˜weeklyâ€™, â€˜monthlyâ€™, â€˜yearlyâ€™, â€˜#â€™)<br />
</strong>This tells the plugin how often it should reset the comment count for users. For example: If you choose monthly, only comments from the current month will be counted towards a visitors comment count. If you use an integer such as 30, it will show all commentators for the last 30 days.</p>
<p><strong><em>limit</em> (any positive integer (1 &#8211; infinity))</strong><br />
This will limit the maximum number of users you want shown.</p>
<p><strong><em>filter_users</em> (comma seperated list of usernames)<br />
</strong>This will filter out any usernames you donâ€™t want shown. For example: â€˜Administrator,Adminâ€™.</p>
<p><strong><em>filter_user_ids</em> (comma seperated list of user idâ€™s)</strong><br />
This will filter out any user_ids you donâ€™t want shown. For example: â€˜1,2â€². 1 is almost always the â€˜Adminâ€™ user.</p>
<p><strong><em>number_of_comments</em> (y=yes, n=no)</strong><br />
If you want to only display the commentators name and not the number of comments he/she has made, set this to â€˜nâ€™.</p></blockquote>
<p>List of Top commentators:</p>
<ul>
<li>ranjitsinh</li>
</ul>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=380&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/16/showing-top-commentators/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Website Load Time Tester</title>
		<link>http://www.venukb.com/2007/06/11/website-load-time-tester/</link>
		<comments>http://www.venukb.com/2007/06/11/website-load-time-tester/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 16:46:46 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Pingdom]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/11/website-load-time-tester/</guid>
		<description><![CDATA[Pingdom is a service which provides tools to monitor web sites, E-Mail Servers, FTP servers and a multitude of other services. Though I didn&#8217;t find the service that useful, they do seem to have introduced a nice little tool (free) to check the page loading speed. http://www.pingdom.com/tools/fpt/?url=www.venukb.com/blog (Replace the &#8220;url&#8221; parameter with the URL of [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><a title="Pingdom" href="http://www.pingdom.com" target="_blank" rel="nofollow">Pingdom</a></strong> is a service which provides tools to monitor web sites, E-Mail Servers, FTP servers and a multitude of other services. </p>
<p>Though I didn&#8217;t find the service that useful, they do seem to have introduced a nice little tool (free) to check the <strong>page loading speed</strong>. </p>
<p><a title="http://www.pingdom.com/tools/fpt/?url=www.venukb.com/blog" href="http://www.pingdom.com/tools/fpt/?url=www.venukb.com/blog"><strong>http://www.pingdom.com/tools/fpt/?url=www.venukb.com/blog</strong></a></p>
<p>(Replace the &#8220;<strong>url</strong>&#8221; parameter with the <strong>URL</strong> of your site)</p>
<p>The <strong>Full Page Test loads</strong>Â the complete HTML page including all objects : images, CSS, JavaScripts, RSS, Flash and frames/iframes). It mimics the way a page is loaded in a web browser.  </p>
<p>The load time of all objects is shown <strong>visually with time bars</strong>. It will help in finding the culprit script/image which is probably affecting the page load of your website.  </p>
<p><img src="http://farm2.static.flickr.com/1317/540789250_aad29d7660_d.jpg"/>  </p>
<p>Meanwhile <strong>Pingdom.com</strong> is linking to a <strong>red site</strong> according to <a title="Secure Browsing" href="http://www.venukb.com/blog/2006/07/25/secure-browsing/" target="_blank"><strong>Mcafee SiteAdvisor</strong></a> !!  </p>
<p><img src="http://farm2.static.flickr.com/1424/540897923_feb36975bc_d.jpg"/>  </p>
<p><strong>More details here:</strong> <br /><a title="http://www.siteadvisor.com/sites/pingdom.com" href="http://www.siteadvisor.com/sites/pingdom.com">http://www.siteadvisor.com/sites/pingdom.com</a></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=374&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/11/website-load-time-tester/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Active@ File Recovery &#8211; Recover deleted files and partitions</title>
		<link>http://www.venukb.com/2007/06/10/active-file-recovery-recover-deleted-files-and-partitions/</link>
		<comments>http://www.venukb.com/2007/06/10/active-file-recovery-recover-deleted-files-and-partitions/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 13:15:14 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/10/active-file-recovery-recover-deleted-files-and-partitions/</guid>
		<description><![CDATA[Contrary to what most people think, deletion of file on windows does not&#160;mean permanent loss of the data.&#160; When the file is deleted, its not &#8220;shredded&#8221;; Instead, the table of contents that points out the location of the file is erased.&#160; To put in more simpler words, the attribute of the space used by the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Contrary to what most people think, <strong>deletion of file</strong> on windows does not&nbsp;mean <strong>permanent loss of the data</strong>.&nbsp; </p>
<p>When the file is deleted, its not &#8220;shredded&#8221;; Instead, the table of contents that points out the location of the file is erased.&nbsp; To put in more simpler words, the attribute of the space used by the deleted file is changed from &#8220;occupied&#8221; to &#8220;available&#8221;.</p>
<p>Eventually, the hard drive will write new data over the area where the old file is located.</p>
<p><strong>File Recovery utilities</strong> take advantage of the fact that the <strong>deletion of file in windows is reversible.</strong> </p>
<p><strong><a title="recover deleted files" href="http://www.file-recovery.net/" target="_blank">Active@ File Recovery</a></strong> is a powerful software utility, designed to restore accidentally deleted files and directories.&nbsp; It allows you to recover files that have <img src="http://farm2.static.flickr.com/1251/538587957_87de5c4ccd_m_d.jpg" align="right"/>been deleted from the <strong>Recycle Bin</strong>, as well as the ones deleted <strong>bypassing</strong>&nbsp;the Recycle Bin (e.g. <strong>Shift-Delete</strong>).  </p>
<p>Active@ File Recovery helps you to restore data residing on hard drives or floppy drives formatted in any of the following file systems:</p>
<ul>
<li>FAT12&nbsp;  </li>
<li>FAT16  </li>
<li>FAT32&nbsp;  </li>
<li>NTFS&nbsp;  </li>
<li>NTFS5 </li>
</ul>
<p><strong><u>User Interface</u></strong></p>
<p><img src="http://farm2.static.flickr.com/1279/538528280_af8af8e8d4_d.jpg"/> </p>
<p><strong><a title="data recovery software" href="http://www.file-recovery.net" target="_blank">Active@ File Recovery</a></strong> provides users with 2 options for scanning deleted files</p>
<ul>
<li><strong>QuickScan</strong>  </li>
<li><strong>SuperScan</strong> </li>
</ul>
<p><strong><u>QuickScan</u></strong></p>
<p>QuickScan is a fast and basic scan. Most deleted&nbsp;files and folders&nbsp;can be found using this method. After you have scanned a drive, you can tell what state your deleted files and folders are in by the color of the icons</p>
<p><img src="http://farm2.static.flickr.com/1434/538539228_3171f56d14_d.jpg"/> </p>
<p><strong><u>SuperScan</u></strong></p>
<p><strong>SuperScan</strong> is a much slower and thorough scan. It processes the <strong>whole hard drive</strong> surface detecting&nbsp;all possible deleted data. </p>
<p>If, after running <strong>QuickScan</strong> you did not find your deleted files you should go ahead and try <strong>SuperScan</strong>.</p>
<p>You can also use <strong>SuperScan</strong>&nbsp;to <strong>recover a partition</strong> or<strong> logical drive</strong> that you know has been <strong>deleted</strong> or <strong>damaged</strong>. In other words, if you <strong>do not see</strong> a logical drive listed under a device node in the <b>Local System Devices</b> list, it is time to use <b>SuperScan</b>.&nbsp;</p>
<p>If a disk has been <strong>severely damaged</strong> and partitions and files are not found, you should turn on the <strong>File types to be recognized based on signatures</strong> option. </p>
<p><img src="http://farm2.static.flickr.com/1369/538665741_3943ee6490_d.jpg"/> </p>
<p>Provided that the files are <strong>not fragmented</strong>, Active@ Scan technology would detect the file signatures and would try to <strong>reconstruct files of certain types</strong>.</p>
<p><strong><u>Other Features</u></strong></p>
<ul>
<li><strong>Previewing recovered image files</strong> &#8211; This option is enabled for most of the popular image formats.  </li>
<li>Re-assemble deleted or damaged <a title="RAID" href="http://en.wikipedia.org/wiki/RAID" target="_blank"><strong>RAID</strong></a>  </li>
<li><strong>Saving</strong> QuickScan/SuperScan results  </li>
<li>Recovery of compressed, fragmented and encrypted files on NTFS  </li>
<li>Creating Disk Image &#8211; A mirror copy of your logical or physical drive.</li>
</ul>
<p class="alert"><strong><a title="Download Active@ File Recovery" href="http://www.file-recovery.net/download.htm" target="_blank">Try Active@ File Recovery</a></strong></p>
<p><strong>P.S.</strong> Check the &#8220;<strong>Concepts</strong>&#8221; section in the built-in help of Active@ File Recovery. It has got some amazing information on File Systems and how recovery software works!</p>
<p><strong>Disclaimer:</strong> This is a sponsored review.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=373&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/10/active-file-recovery-recover-deleted-files-and-partitions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux Command Line Tips</title>
		<link>http://www.venukb.com/2007/06/10/linux-command-line-tips/</link>
		<comments>http://www.venukb.com/2007/06/10/linux-command-line-tips/#comments</comments>
		<pubDate>Sat, 09 Jun 2007 19:48:04 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/10/linux-command-line-tips/</guid>
		<description><![CDATA[PixelBeat has nice compilation of some of the commonly used Linux terminal commands. The commands are also categorized and should help in finding the right command/command usage for the task at had. Link: http://www.pixelbeat.org/cmdline.html Also note the comment in the above page: Examples marked with â€¢ are valid/safe to paste without modification into a terminal, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>PixelBeat</strong> has nice compilation of some of the commonly used<strong> Linux terminal commands</strong>. The commands are also categorized and should help in finding the right command/command usage for the task at had.</p>
<p><strong>Link:</strong> <a title="http://www.pixelbeat.org/cmdline.html" href="http://www.pixelbeat.org/cmdline.html">http://www.pixelbeat.org/cmdline.html</a></p>
<p>Also note the comment in the above page:</p>
<blockquote><p>Examples marked with â€¢ are valid/safe to paste without modification into a terminal, soyou may want to keep a terminal window open while reading this so you can cut &#038; paste.</p>
</blockquote>
<p><strong>Don&#8217;t forget to Bookmark it for future reference !</strong></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=372&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/10/linux-command-line-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Platinum &#8211; Professional Backup Tool</title>
		<link>http://www.venukb.com/2007/06/08/backup-platinum-professional-backup-tool/</link>
		<comments>http://www.venukb.com/2007/06/08/backup-platinum-professional-backup-tool/#comments</comments>
		<pubDate>Thu, 07 Jun 2007 19:45:13 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/08/backup-platinum-professional-backup-tool/</guid>
		<description><![CDATA[Backup in the world of Information Technology refers to the process of making copies of data. This copy of the data would be useful in the event of a data loss.&#160; Virus attacks, hard disk failure or accidents are the primary reasons for data loss. Most of the PC users have one PC at max [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Backup</strong> in the world of Information Technology refers to the <strong>process of making copies of data</strong>. This copy of the data <a title="backup to DVD" href="http://www.backup-platinum.com" target="_blank" atomicselection="true"><img src="http://farm2.static.flickr.com/1009/534902751_e5117b2723_m_d.jpg" align="right"/></a>would be useful in the event of a <strong>data loss</strong>.&nbsp; </p>
<p>Virus attacks, hard disk failure or accidents are the primary reasons for data loss. Most of the PC users have one PC at max and the data is generally stored in a single hard drive. </p>
<p>The most common way of backing up data is to either <strong>write it to a CD/DVD</strong> or <strong>to copy on to a secondary hard drive/USB drive</strong>.&nbsp;If you have a hosting space you can backup data even on to this server. One of the problem that I face while backing up data is doing the&nbsp; <strong>incremental backup</strong>.</p>
<p><strong><a title="backup to DVD" href="http://www.backup-platinum.com" target="_blank">Backup Platinum</a>&nbsp;</strong>is a powerful tool that provides <strong>professional</strong> quality backup of your data to a local drive, LAN, CD/DVD writing device or a remote FTP server. </p>
<p>Other than easing the basic backup functionality, Backup Platinum also can be used to <strong>synchronize files</strong> between two computers on&nbsp;a network or with a <strong>remote FTP server</strong>. The backup operation can also be <strong>automated</strong> using the powerful and flexible <strong>scheduler</strong>.&nbsp;</p>
<p><strong><u>User Interface</u></strong></p>
<p><img src="http://farm2.static.flickr.com/1050/534962317_bc9f119ecc_d.jpg"/> </p>
<p>Backup platinum uses a <strong>wizard approach</strong> to define the backup items. While defining the backup item, you can also specify the location for the backup(DVD/FTP etc)&nbsp;and also the time for the backup operation.</p>
<p><strong><u>Quick Run on the New Item Wizard</u></strong></p>
<p>In the <strong>first step</strong> of the wizard, you input the name for the Backup Item. Also you should choose the type of the item. Type can be either of</p>
<ul>
<li><strong>Backup</strong> &#8211; Select this option if you want to backup your data  </li>
<li><strong>Synchronization</strong> &#8211; Select this type if you want to synchronize data between two different locations.</li>
</ul>
<p>(Note: The other pages described below are related to the &#8220;Backup&#8221; option)</p>
<p>The <strong>second page</strong> of the wizard allows you to add the <strong>files/folders/registry keys</strong>.</p>
<p><img src="http://farm2.static.flickr.com/1051/534889946_96318989da_d.jpg"/> </p>
<p>One of the nice things about this page is that there are set of <strong>pre-defined items</strong> such as <strong>Registry Key/Address book/Window setting</strong> etc which probably are some of the critical data from any user&#8217;s perspective.</p>
<p><strong>Page three</strong> of the wizard allows you to <strong>choose the backup destination path.</strong> </p>
<p><img src="http://farm2.static.flickr.com/1304/534890046_c5f2555fde_d.jpg"/> </p>
<p>The wizard page presents a user friendly to input the data for the selected configuration. For E.g. If you select <strong>FTP</strong>, you can input all the server details and you can even create new directories from within the wizard page.</p>
<p><strong>Page 4</strong> of the wizard allows you to specify the <strong>storage options</strong>. The feature to highlight here is the ability to <strong>create self extracting ZIP files</strong> which again could be secured by setting a <strong>password</strong>. </p>
<p><img src="http://farm2.static.flickr.com/1083/534889998_ee766193ca_d.jpg"/>&nbsp;</p>
<p><strong>Page 5</strong> of the wizard allows you to <strong>schedule the backup operation</strong>. </p>
<p><img src="http://farm2.static.flickr.com/1300/535010037_b8338f6be0_d.jpg"/>&nbsp;</p>
<p><strong>Page 6</strong> of the wizard provides a <strong>summary of the options</strong> selected in the previous 5 pages.</p>
<p>(The highlight of the wizard pages is the User Interface design of the wizard&nbsp;pages. Its <strong>neat</strong>, <strong>simple</strong> and <strong>powerful</strong>)</p>
<p>The <strong>synchronization</strong> feature is also very powerful. You can synchronize your <strong>work PC and home PC</strong> or your <strong>laptop and desktop PC</strong> on the fly. In case of data loss, you can <strong>restore by the click of a button</strong>. </p>
<p class="alert"><strong><a title="Download Backup Platinum" href="http://www.backup-platinum.com/download.shtml" target="_blank">Try Backup Platinum</a></strong></p>
<p><strong>Disclaimer: </strong>This is a sponsored review.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=371&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/08/backup-platinum-professional-backup-tool/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To: Browse remote files in Eclipse IDE</title>
		<link>http://www.venukb.com/2007/06/06/how-to-browse-remote-files-in-eclipse-ide/</link>
		<comments>http://www.venukb.com/2007/06/06/how-to-browse-remote-files-in-eclipse-ide/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 19:20:32 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/06/how-to-browse-remote-files-in-eclipse-ide/</guid>
		<description><![CDATA[Eclipse.org always amaze me with the kind of tooling that they go on adding to the Eclipse Platform. Few months back when I was browsing the different projects in Eclipse, I stumbled on Remote System Explorer (RSE) Remote System Explorer is part of Target Management which in turn in a subproject of Device Software Development [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a title="Eclipse" href="http://www.eclipse.org" target="_blank">Eclipse.org</a> always amaze me with the kind of tooling that they go on adding to the Eclipse Platform. Few months back when I was browsing the different projects in Eclipse, I stumbled on <strong>Remote System Explorer</strong> (RSE)</p>
<p><strong>Remote System Explorer</strong> is part of <a title="Target Management" href="http://www.eclipse.org/dsdp/tm/" target="_blank">Target Management</a> which in turn in a subproject of Device Software Development Platform (<a title="Eclipse DSDP" href="http://www.eclipse.org/dsdp/" target="_blank">DSDP</a>). </p>
<p>The purpose of the Target Management project is to creates data models and frameworks to <strong>configure</strong> and <strong>manage</strong> <em>remote systems</em>, their <em>connections</em>, and their <em>services</em>.</p>
<p>Remote System Explorer helps in </p>
<ul>
<li>Creating connections to remote Linux/Unix Servers  </li>
<li>Exploring the remote file system  </li>
<li>Editing and saving remote files  </li>
<li>Open shells and execute commands  </li>
<li>Search for files on the remote system</li>
</ul>
<p><strong><u>Installation</u></strong></p>
<ul>
<li><strong>Download</strong> the RSE plugin from the following link (Please check against the version of Eclipse that you are using)<a title="http://download.eclipse.org/dsdp/tm/downloads/" href="http://download.eclipse.org/dsdp/tm/downloads/">http://download.eclipse.org/dsdp/tm/downloads/</a>  </li>
<li><strong>Install</strong> the RSE plugin. I would recommend to <a title="Install Eclipse Plugins" href="http://venukb.com/blog/2006/08/20/install-eclipse-plugins-the-easy-way/" target="_blank">install the plugin using the &#8220;links&#8221; concept</a>  </li>
<li>If the plugin is properly installed you should be able to see a new &#8220;<strong>Remote System Explorer</strong>&#8221; perspective added to the workspace</li>
</ul>
<p><strong><u>Configuration</u></strong></p>
<p>(<strong>Note</strong>: I have a slightly old version of RSE at my workplace. The wizard data might differ in the new version)</p>
<p>The default <strong>Remote System Explorer view</strong> shows your system&#8217;s <strong>local file system</strong> by <strong>default</strong>.</p>
<p> <img src="http://farm2.static.flickr.com/1354/531977376_5a0bbada28_m_d.jpg"/> </p>
<p>You can additionally <strong>configure/add</strong> new connections via the &#8220;<strong>New Connection</strong>&#8221; dialog</p>
<p> <img src="http://farm2.static.flickr.com/1042/531977426_c7cb38248c_d.jpg"/> </p>
<p>Input the<strong> host name </strong>and <strong>connection name</strong> (optionally you can input connections description)</p>
<p><img src="http://farm2.static.flickr.com/1409/531989392_e199d62847_d.jpg"/> </p>
<p>Once a new connection is added, you can connect to the sever using the required security credentials. After a successful connection you should be able to <strong>explore the remote system from the Navigator view</strong>. </p>
<p>The remote files can be <strong>opened/edited and saved</strong> from within Eclipse. Default Eclipse editors come into action based on the type of the remote file.</p>
<p><img src="http://farm2.static.flickr.com/1209/532077525_c54291760a_d.jpg"/> </p>
<p>You can <strong>launch a shell</strong> and <strong>execute commands</strong> (Even the environment variables for the shell can be set)</p>
<p> <img src="http://farm2.static.flickr.com/1315/531977326_19ae32e04a_d.jpg"/> </p>
<p>With RSE plugin, my usage of Putty (<a title="Poderosa - Alternative to Putty" href="http://www.venukb.com/blog/2006/09/20/poderosa-alternative-to-putty/" target="_blank">Poderosa</a>) has reduced a little bit. </p>
<p>Even for copying files between the local machine and the remote server, I don&#8217;t need to do FTP/SCP. I just<strong> drag and drop</strong> the files between the remote file system and the local file system.</p>
<p><strong><u>More Tutorials/Documentation</u></strong></p>
<p>The <a title="RSE Tutorial" href="http://dsdp.eclipse.org/help/latest/index.jsp?topic=/org.eclipse.rse.doc.user/gettingstarted/g_start.html" target="_blank"><strong>RSE tutorial</strong></a> and the <a title="Target Management" href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/presentations/2006-9-29_SummitEurope_TMOverview.pdf" target="_blank"><strong>TM Overview slides</strong></a> give more details on the features in RSE. </p>
<p><strong>IBM</strong> also has detailed documentation on Remote System Explorer</p>
<ul>
<li>IBM Remote System Explorer -> <a title="http://www.developer.ibm.com/rational/remote_system_explorer.html" href="http://www.developer.ibm.com/rational/remote_system_explorer.html">http://www.developer.ibm.com/rational/remote_system_explorer.html</a>  </li>
<li>IBM RSE Guide -> <a title="http://www.developer.ibm.com/isv/rational/rse_pres.pdf" href="http://www.developer.ibm.com/isv/rational/rse_pres.pdf">http://www.developer.ibm.com/isv/rational/rse_pres.pdf</a></li>
</ul>
<p>(Note: All the features in IBM RSE might not still be part of Eclipse RSE)</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=370&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/06/how-to-browse-remote-files-in-eclipse-ide/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Windows Live Writer Reloaded</title>
		<link>http://www.venukb.com/2007/06/01/windows-live-writer-reloaded/</link>
		<comments>http://www.venukb.com/2007/06/01/windows-live-writer-reloaded/#comments</comments>
		<pubDate>Thu, 31 May 2007 18:50:25 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[My Favourites]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Live-Writer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/06/01/windows-live-writer-reloaded/</guid>
		<description><![CDATA[Microsoft&#8216;s Windows Live Writer is a powerful desktop based weblog client and is currently the only product I like from Microsoft&#8217;s stable. The initial beta had lot of interesting features which made it a must have for any blogger. Review of Windows Live Writer Beta 1 There are lot of free and licensed desktop weblog [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><a href="http://www.microsoft.com" target="_blank">Microsoft</a></strong>&#8216;s Windows Live Writer is a powerful desktop based weblog client and is currently the only product I like from Microsoft&#8217;s stable. The initial beta had lot of interesting features which made it a must have for any blogger.</p>
<p class="alert"><strong><a title="Windows Live Writer" href="http://www.venukb.com/blog/2006/08/17/windows-live-writer-powerful-desktop-based-weblog-client/" target="_blank">Review of Windows Live Writer Beta 1</a></strong></p>
<p>There are lot of free and licensed desktop weblog clients including <strong><a title="Qumana" href="http://www.qumana.com" target="_blank">Qumana</a></strong> but not a single client is as powerful and feature rich as Live writer. Beta 2 version of Live writer is now available and there are lots of new features added into the new version. </p>
<p><u>Feature Highlights:</u></p>
<ul>
<li>Inline<strong> Spell Checking</strong> &#8211; From now on you no longer need to manually run the spell checker.  </li>
<li>Inserting/<strong>Editing Tables</strong> &#8211; You can insert and edit tables. Nice add-on  </li>
<li>Support for <strong>excerpts</strong> &#8211; &#8220;Split Post&#8221; option now allows you to insert the &#8220;more&#8221; tag in the posts. Previously this could be done only via the HTML Code view  </li>
<li>Better <strong>integration</strong> of local and online edited posts.  </li>
<li>New <strong>look and feel</strong></li>
</ul>
<p><span id="more-365"></span></p>
<p>Checkout the <strong><a title="Windows Live Writer" href="http://windowslivewriter.spaces.live.com/" target="_blank">official post</a></strong> for more interesting features added in Beta2</p>
<p><u>Screenshots</u></p>
<p><img src="http://farm1.static.flickr.com/219/523667553_d410fc7cab_d.jpg"/> </p>
<p><img src="http://farm1.static.flickr.com/252/523674493_4b58d7de77_d.jpg"/> </p>
<p><img src="http://farm1.static.flickr.com/240/523647036_b8fd0c1008_d.jpg"/> </p>
<p class="alert"><a title="Download Windows Live Writer" href="http://writer.live.com/" target="_blank"><strong>Download Windows Live Writer Beta 2</strong></a></p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=365&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/06/01/windows-live-writer-reloaded/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Keybreeze &#8211; Quickly launch applications</title>
		<link>http://www.venukb.com/2007/05/30/keybreeze-quickly-launch-applications/</link>
		<comments>http://www.venukb.com/2007/05/30/keybreeze-quickly-launch-applications/#comments</comments>
		<pubDate>Wed, 30 May 2007 17:53:03 +0000</pubDate>
		<dc:creator>venukb</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Colibri]]></category>
		<category><![CDATA[Launchy]]></category>

		<guid isPermaLink="false">http://www.venukb.com/blog/2007/05/30/keybreeze-quickly-launch-applications/</guid>
		<description><![CDATA[The &#8220;Start Menu&#8221; on my PC generally extends upto 3-4 columns; thanks to all the software/tools that I install/try out. [Note: Screen width is set to 1280 pixels ] On the top of this, Windows XP has a totally useless Start Menu; If I have to quickly launch an application, I spend more time searching [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The &#8220;<strong>Start Menu</strong>&#8221; on my PC generally extends upto 3-4 columns; thanks to all the software/tools that I install/try out. </p>
<p>[Note: Screen width is set to 1280 pixels <img src='http://www.venukb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ]</p>
<p>On the top of this, <strong>Windows XP</strong> has a totally useless Start Menu; If I have to quickly launch an application, I spend more time searching for it rather than using it !</p>
<p><strong>Colibri</strong> did come to my rescue; Using <strong>Colibri</strong> I could quickly launch applications and control panel widgets. </p>
<p class="alert"><u><a title="Colibri" href="http://www.venukb.com/blog/2006/07/12/colibri/"><strong>Read my earlier post to know more about Colibri</strong></a></u></p>
<p><strong>Launchy</strong> is another small little app which helps in quickly launching applications. Unlike Colibri, Launchy also allows you to index folders via which you can even quickly launch documents/folders.</p>
<p>Even in terms of <strong>system resource utilization</strong>, Launchy did a better job than Colibri.</p>
<div class="alert">Read my earlier posts to know more about Launchy
<ul>
<li><a title="Launchy" href="http://www.venukb.com/blog/2006/11/16/launchy-quicksilver-for-windows/"><strong>Launchy &#8211; QuickSilver for Windows</strong></a><strong> </strong> </li>
<li><a title="Launchy - Out of Beta" href="http://www.venukb.com/blog/2007/01/27/launchy-out-of-beta/"><strong>Launchy &#8211; Out of Beta</strong></a></li>
</ul>
</div>
<p><strong><a title="KeyBreeze" href="http://www.keybreeze.com/">KeyBreeze</a></strong> is the new kid on the block. Using KeyBreeze you can:<img src="http://farm1.static.flickr.com/219/521794122_04a4d2ec54_m_d.jpg" align="right"/> </p>
<ul> </ul>
<ul>
<li>Type keywords to open files, folders, and websites.  </li>
<li>Type commands to check the weather, get memory usage, shut down your computer&#8230;  </li>
<li>Search Google, Dictionary.com, Wikipedia, eBay, and other websites by typing <a href="http://www.keybreeze.com/lettercommands.htm">letter commands</a>.
<ul>
<li>Examples: s:mp3s, d:plaudit, w:omega-3, etc.</li>
</ul>
</li>
<li>Type functions to change the display settings of a window.
<ul>
<li>You can hide any window, set a window on top, make a window translucent&#8230; </li>
</ul>
</li>
<li>Make your own functions that paste custom text into any text field.  </li>
<li><a href="http://www.keybreeze.com/macrorecorder.html">Record macros</a> to automate repetitive computer tasks.  </li>
<li><a href="http://www.keybreeze.com/notes.html">Create notes</a> on your desktop; set reminders</li>
</ul>
<p><img src="http://farm1.static.flickr.com/196/521794192_ad1b8feed6_d.jpg"/> </p>
<p>Do checkout the complete list of Keybreeze features <a title="Keybreeze features" href="http://www.keybreeze.com/featurelist.htm" rel="nofollow">here</a>. The <a title="Keybreeze Screenshots" href="http://www.keybreeze.com/screenshots/" rel="nofollow">screenshots</a> page also gives a good overview of the features.</p>
<p>I have been using it for the past 2 days and it does look like a eligible replacement to Launchy. </p>
<p class="alert"><strong><a title="Keybreeze Download" href="http://www.keybreeze.com/download" rel="nofollow">Download KeyBreeze</a></strong></p>
<p>If you want to take your keywords/commands/macros on a USB flash drive, <a title="Keybreeze USB version" href="http://www.keybreeze.com/download/usb/" rel="nofollow"><strong>check this page</strong></a> for more details on the USB version of Keybreeze.</p>
<img src="http://www.venukb.com/?ak_action=api_record_view&id=364&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.venukb.com/2007/05/30/keybreeze-quickly-launch-applications/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

