<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Software, Tools, Tips, Tricks</title>
	<atom:link href="http://techtooltip.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techtooltip.wordpress.com</link>
	<description>Something That Works For Me</description>
	<lastBuildDate>Sat, 07 Jan 2012 05:03:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='techtooltip.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Software, Tools, Tips, Tricks</title>
		<link>http://techtooltip.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://techtooltip.wordpress.com/osd.xml" title="Software, Tools, Tips, Tricks" />
	<atom:link rel='hub' href='http://techtooltip.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How To Integrate Emacs &amp; Cscope To Browse Linux Kernel Source Code</title>
		<link>http://techtooltip.wordpress.com/2012/01/06/how-to-integrate-emacs-cscope-to-browse-linux-kernel-source-code/</link>
		<comments>http://techtooltip.wordpress.com/2012/01/06/how-to-integrate-emacs-cscope-to-browse-linux-kernel-source-code/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:47:09 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cscope]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[emacs+cscope]]></category>
		<category><![CDATA[Source code browsers]]></category>
		<category><![CDATA[xcscope]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=397</guid>
		<description><![CDATA[This year I am going to study Linux kernel,  As a first step I grabbed a copy of Understanding the Linux Kernel By Daniel P. Bovet, Marco Cesati. The problem started when I had to go through actual code. I &#8230; <a href="http://techtooltip.wordpress.com/2012/01/06/how-to-integrate-emacs-cscope-to-browse-linux-kernel-source-code/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=397&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This year I am going to study Linux kernel,  As a first step I grabbed a copy of <a title="Understanding the Linux Kernel By Daniel P. Bovet, Marco Cesati" href="http://shop.oreilly.com/product/9780596000028.do" target="_blank">Understanding the Linux Kernel By Daniel P. Bovet, Marco Cesati</a>. The problem started when I had to go through actual code. I tried to use usual command line utilities to locate files and code inside the kernel source tree. Though it is not impossible, it is very time consuming and inefficient way to  browse the kernel source. Withing an hour of doing this I was sure that there ought to be a better way&#8230; and the better way is to use <a title="Cscope home page" href="http://cscope.sourceforge.net/" target="_blank">cscope</a> source code browser and best way is to integrate it with <a title="GNU Emacs" href="http://www.gnu.org/software/emacs/" target="_blank">emacs </a>(or vi).</p>
<p style="text-align:justify;">This post is about cscope integration with emacs, for more details about cscope itself please refer to <a title="Cscope home page" href="http://cscope.sourceforge.net/" target="_blank">cscope home page</a>  and <a title="Cscope man page" href="http://cscope.sourceforge.net/cscope_man_page.html" target="_blank">cscope man page</a>.</p>
<p style="text-align:justify;"><em><strong>Installation:</strong></em></p>
<p style="text-align:justify;">To get started we need to install emacs, cscope and xcscope emacs extension. As per cscope documentation the emacs support for cscope is provided in <strong><strong><strong>cscope/contrib/xcscope</strong></strong></strong> folder, however the ubuntu package did not have this folder as part of cscope package. It is provided as additional package called cscope-el (The cscope-el package installs /usr/share/emacs23/site-lisp/cscope/xcscope.elc). So install all these packages using:</p>
<p><pre class="brush: plain;">
sudo apt-get install emacs23 cscope cscope-el
</pre></p>
<p style="text-align:justify;">Download the required kernel source tar ball from kernel.org, I wanted linux-2.6.11.12. It can be downloaded using wget as:</p>
<p><pre class="brush: plain;">
cd ~/Downloads
wget ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.11.12.tar.bz2
</pre></p>
<p style="text-align:justify;"> <strong><em></em></strong><em><strong>Configuration:</strong></em></p>
<p style="text-align:justify;">We need to configure emacs to load cscope support, edit your ~/.emacs or ~/.emacs.d/init.el to include following line.</p>
<p><pre class="brush: plain;">
(require 'xcscope)
</pre></p>
<p style="text-align:justify;"><em><strong>Generate Cscope Database:</strong></em></p>
<p style="text-align:justify;">There are two ways to generate cscope database from kernel source, first is to use kernel make file and second is to use cscope directly. But first we need to extract the kernel source from the downloaded tar ball as given below.</p>
<p><pre class="brush: plain;">
cd ~/Downloads
tar -jxvf linux-2.6.11.12.tar.bz2
</pre></p>
<p style="text-align:justify;"><strong>Method1:</strong> Generate cscope database using kernel make file, by using this method, list of files to be scanned by cscope is also generated by kernel make file. The file containing this list is named <em>cscope.files</em>. This is safer method if you don&#8217;t know which files to be included.</p>
<p><pre class="brush: plain;">
cd ~/Downloads/linux-2.6.11.12
make cscope
</pre></p>
<p><strong>Method2: </strong>Generate cscope database directly using cscope.</p>
<p style="text-align:justify;">In this method you can either scan all files in the current folder recursively by passing -R command line option to cscope or  you need to create a file named <em>cscope.files</em>  which can either contain list of files to be scanned (one file on each line) or using the special find construct as explained in <a title="Using cscope on large project" href="http://cscope.sourceforge.net/large_projects.html" target="_blank">Using cscope on large project</a> page. The following command will scan the complete kernel source code tree, the -k option ensures that include files in /usr/include are ignored while building the database.</p>
<p><pre class="brush: plain;">
cd ~/Downloads/linux-2.6.11.12
cscope -b -q -k -R
</pre></p>
<p style="text-align:justify;">Irrespective of the method the database file named cscope.out will be created.</p>
<p><em><strong>Browsing the code:</strong></em></p>
<p style="text-align:justify;">To browse the code from emacs, first we need to tell the location of the database. This is done by executing command &#8220;M-x cscope-set-initial-directory&#8221; and specify the directory containing the cscope database. This step is <em><strong>not required</strong></em> if emacs is lanuched from the same directory.</p>
<p style="text-align:justify;">Once the initial directory is set, you can search the code for given symbol using &#8220;M-x cscope-find-this-symbol&#8221; command, the text near cursor will be the default symbol to find. You can move through the results using p (previous match) and n (next match) keys, the corresponding files are opened in other buffer in emacs. Example output for symbol KERN_ALERT is shown below.</p>
<div id="attachment_400" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2012/01/find_symbol_example.jpeg"><img class="size-medium wp-image-400 " title="Emacs and Xcscope Find Symbol Output" src="http://techtooltip.files.wordpress.com/2012/01/find_symbol_example.jpeg?w=300&#038;h=216" alt="" width="300" height="216" /></a><p class="wp-caption-text">Emacs and Xcscope Find Symbol Output</p></div>
<p style="text-align:justify;">The other useful commands include:</p>
<p style="text-align:justify;">Find symbol.<br />
Find global definition.<br />
Find functions calling a function.<br />
Find called functions (list functions called from a function).<br />
Find text string.<br />
Find egrep pattern.<br />
Find a file.</p>
<p style="text-align:justify;">For a complete list of commands supported by xcscope please refer to <a title="Xcscope man page." href="http://linux.die.net/man/1/xcscope" target="_blank">xcscope man page.</a></p>
<p style="text-align:justify;"><em><strong>What didn&#8217;t Work for Me:</strong></em></p>
<p style="text-align:justify;">Using xcscope.el: If you download the xcscope.el and try to add it in emacs through config file as:</p>
<p><pre class="brush: plain;">
(load-file &quot;/usr/share/emacs/site-lisp/xcscope.el&quot;)
(require 'xcscope)
</pre></p>
<p style="text-align:justify;">I got the following error at emacs startup:</p>
<p><pre class="brush: plain;">
Warning (initialization): An error occurred while loading `/home/dzambare/.emacs.d/init.el':

File error: Cannot open load file, xcscope

To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file.  Start Emacs with
the `--debug-init' option to view a complete error backtrace.
</pre></p>
<p style="text-align:justify;">The solution is to get rid of this file and install cscope-el package as explain in Installation section above.</p>
<p><em><strong>Alternate Interface:</strong></em></p>
<p>You can also use cscope&#8217;s inbuilt console based UI to browse and edit files. It can be launched by following command from the directory containing cscope database. The screenshot below shows how it looks like.</p>
<p><pre class="brush: plain;">
cscope -d
</pre></p>
<div id="attachment_402" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2012/01/cscope_ui.jpeg"><img class="size-medium wp-image-402" title="Cscope in-build user interface" src="http://techtooltip.files.wordpress.com/2012/01/cscope_ui.jpeg?w=300&#038;h=227" alt="Cscope in-build user interface" width="300" height="227" /></a><p class="wp-caption-text">Cscope in-build user interface</p></div>
<p style="text-align:justify;"><em><strong>End Notes:</strong></em></p>
<ol>
<li>Even though this post is related to Linux kernel source, same method will work fine for any c project.</li>
<li>Cscope scans all files only during first run, during subsequent executions it will only scan the files changed since last run.</li>
<li>When you invoke first emacs command related to cscope it will automatically invokes cscope to make the database up to date.</li>
<li>Example of xcscope key binding are provided in <a title="Xcscope man page." href="http://linux.die.net/man/1/xcscope" target="_blank">xcscope man page</a></li>
</ol>
<p><em><strong>Version Nos of Key Components:</strong></em></p>
<ul>
<li><strong>OS:</strong> Kubuntu 11.10</li>
<li><strong>Cscope:</strong>  15.7a</li>
<li><strong>Xcscope:</strong> 15.7a</li>
</ul>
<p><em><strong>Links Related to This Post:</strong></em></p>
<ul>
<li><a title="Cscope home page" href="http://cscope.sourceforge.net/" target="_blank">cscope home page</a></li>
<li><a title="Cscope man page" href="http://cscope.sourceforge.net/cscope_man_page.html" target="_blank">cscope man page</a></li>
<li><a title="GNU Emacs" href="http://www.gnu.org/software/emacs/" target="_blank">GNU emacs</a></li>
<li><a title="Xcscope man page." href="http://linux.die.net/man/1/xcscope" target="_blank">xcscope man page</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/397/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=397&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2012/01/06/how-to-integrate-emacs-cscope-to-browse-linux-kernel-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2012/01/find_symbol_example.jpeg?w=300" medium="image">
			<media:title type="html">Emacs and Xcscope Find Symbol Output</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2012/01/cscope_ui.jpeg?w=300" medium="image">
			<media:title type="html">Cscope in-build user interface</media:title>
		</media:content>
	</item>
		<item>
		<title>The New Look, Yet Again</title>
		<link>http://techtooltip.wordpress.com/2011/03/04/the-new-look-yet-again/</link>
		<comments>http://techtooltip.wordpress.com/2011/03/04/the-new-look-yet-again/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 11:19:23 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[postaweek2011]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=349</guid>
		<description><![CDATA[When I changed the theme last time the main reason was readability and interestingly this time also I am changing the theme for the same reason. I usually use laptop or LCD screen to view my blog and it was &#8230; <a href="http://techtooltip.wordpress.com/2011/03/04/the-new-look-yet-again/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=349&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">When I changed the theme <a title="The old new look" href="http://techtooltip.wordpress.com/2008/10/20/the-new-look/" target="_blank">last time</a> the main reason was readability and interestingly this time also I am changing the theme for the same reason. I usually use laptop or LCD screen to view my blog and it was never appeared to me that I should have checked the same theme on CRT screen as well. I happened to view my blog using CRT screen and it was not readable. The contrast and font size was making it very difficult to read. So I decided to give it a new look again. This time I am giving up on my obsession for orange color <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and opted for no nonsense theme.</p>
<p style="text-align:justify;"><em><strong>What is in it for you:</strong></em></p>
<p style="text-align:justify;">The new theme is <a title="Twenty Ten Homepage" href="http://theme.wordpress.com/themes/twentyten/" target="_blank">Twenty Ten</a> and I have chose this theme because:</p>
<ol style="text-align:justify;">
<li>It has bigger font</li>
<li>It uses only four colors and they are White (Text Background), Black (Text Color), Blue (Not visited links) and Purple (Visited links) which gives it a good old plain HTML look and very good contrast.</li>
<li>It also has an option to select the background color, which helped me to improve the contrast even further.</li>
<li>It has 1 side bar and 4 bottom bars. I have used the side bar for widgets of general interest and bottom bars for not so general widgets.</li>
<li>This division of widgets will give you clutter free experience, keeping things you need frequently easily accessible.</li>
<li>It has custom menu and I have used it to allow selection of frequently used categories based on the history.</li>
<li>This theme looks same while editing the post so that I can make out how the end result will look like while preparing a post.</li>
</ol>
<p>I hope it will improve your experience, you are most welcome to provide your suggestions.</p>
<div id="_mcePaste" class="mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;overflow:hidden;text-align:justify;">
<p>/techtooltip.wordpress.com/2008/10/20/the-new-look/</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/349/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=349&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2011/03/04/the-new-look-yet-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>
	</item>
		<item>
		<title>mp3splt &#8211; Splits mp3/ogg Files In Jiffy</title>
		<link>http://techtooltip.wordpress.com/2011/02/15/mp3splt/</link>
		<comments>http://techtooltip.wordpress.com/2011/02/15/mp3splt/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 15:38:28 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[Cross Platfrom]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows Software]]></category>
		<category><![CDATA[CBR]]></category>
		<category><![CDATA[Cross Platform]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[mp3 split]]></category>
		<category><![CDATA[postaweek2011]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VBR]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=319</guid>
		<description><![CDATA[Do you have an mp3/ogg file(s) longer then 10 minutes and your mp3 player does not have seek functionality? It is very very painful to fast forward/rewind (if available)  to the required position in the file, isn&#8217;t it? Now it &#8230; <a href="http://techtooltip.wordpress.com/2011/02/15/mp3splt/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=319&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Do you have an mp3/ogg file(s) longer then 10 minutes and your mp3 player does not have seek functionality? It is very very painful to fast forward/rewind (if available)  to the required position in the file, isn&#8217;t it? Now it doesn&#8217;t make sense to change your mp3 player just because it can not seek to required position in the file, so what else can you do? Split the single long file in multiple short files, right? This gives you a flexibility to over come player&#8217;s limitation and still reach the required point quickly.</p>
<p style="text-align:justify;">Splitting mp3 files can be very time consuming with the traditional method</p>
<ul style="text-align:justify;">
<li>When you open a file that you want to split,  it takes time to decode the file. For longer files you might drop the idea of splitting the file before it can be decoded.</li>
<li>Next you need to select different sections, if you are doing it manually you will try to find the logical point to break the file which takes time again (This is good thing though).</li>
<li>Now you need to save each chunk, while saving it needs to be encoded and that can also take lot of time.</li>
<li>You need to decide the bit rate, sample rate, number of channels, etc etc while using this method. Everyone may not be familiar with all these concepts and end up with bad quality or huge files.</li>
</ul>
<p style="text-align:justify;">If you agree with these disadvantages get yourself <a title="mp2splt on Sourceforge" href="http://mp3splt.sourceforge.net/mp3splt_page/home.php" target="_blank">mp3splt</a>. This utility can split mp3(and ogg) files without decoding and encoding them which make it very very fast.  Also it work perfectly fine for both constant bit rate (CBR) and variable bit rate (VBR) mp3 files.</p>
<p style="text-align:justify;"><strong><em>mp3splt Features:</em></strong></p>
<ul style="text-align:justify;">
<li>Split mp3 and ogg files from a begin time to an end time <em>without decoding</em></li>
<li>Split automatically with silence detection</li>
<li>Split by a fixed time length</li>
<li>Split in equal time tracks</li>
<li>Split an album with splitpoints from the freedb.org server</li>
<li>Split an album with local .XMCD, .CDDB or .CUE file</li>
<li>Recursive multiple files split</li>
<li>Supports both ID3v1 &amp; ID3v2 tags</li>
<li>Output file names can be derived using ID3 tags</li>
<li>Audacity labels file support</li>
<li>Split files created with Mp3Wrap or AlbumWrap</li>
<li>Split concatenated mp3 files</li>
<li>Support for mp3 VBR (variable bit rate)</li>
<li>Specify output directory for split files</li>
<li>Supports Linux, MAC OS and Windows</li>
<li>GNU GPL License</li>
<li>GTK based GUI front end (mp3splt-gtk)</li>
<li>Excellent Documentation</li>
</ul>
<p style="text-align:justify;"><strong><em>Installation:</em></strong></p>
<p style="text-align:justify;">Installation on Linux is very easy as pre-built packages are available for most distributions. It is also available in standard Ubuntu repositories, windows version is available as Zip file which does not need any installation or as windows installer.</p>
<p style="text-align:justify;"><strong><em><em>Usage Instructions:</em></em></strong></p>
<p style="text-align:justify;">As mentioned in feature list even though this is GPL product, it has very good documentation which provides detailed explanation about each and every option and examples. The documentation is so good that I will skip the usage instructions for this post. This documentation can be accessed though man command or <a title="mp3splt online man pages" href="http://mp3splt.sourceforge.net/mp3splt_page/documentation/man.html" target="_blank">online</a>.</p>
<p style="text-align:justify;"><strong><em>Endnotes:</em></strong></p>
<p style="text-align:justify;">I have used only basic split mode i.e. split one file into multiple tracks of same length. I have tried this for both CBR and VBR (using frame mode) mp3 files.</p>
<p style="text-align:justify;">I tested it for ID3 tags updates and output file names.</p>
<p style="text-align:justify;">I haven&#8217;t tested it for wrap and ogg files.</p>
<p style="text-align:justify;">Split points are noticeable while playing the files back to back, I am not sure whether this is the problem with my player or the option I used.</p>
<p style="text-align:justify;">mp3splt is good tool for splitting the mp3 files, if you want to do advanced processing like bit rate change, filtering, volume leveling consider using <a title="Advanced Audio File Editor" href="http://audacity.sourceforge.net/" target="_blank">Audacity </a>instead.</p>
<p style="text-align:justify;"><strong><em>Links Related To This Post</em>:</strong></p>
<ul style="text-align:justify;">
<li><a title="mp3splt on Sourceforge" href="http://mp3splt.sourceforge.net/mp3splt_page/home.php" target="_blank">mp3splt home page</a></li>
<li><a title="Online man pages for mp3splt" href="http://mp3splt.sourceforge.net/mp3splt_page/documentation/man.html" target="_blank">mp3splt online man pages</a></li>
<li><a title="GTK Frontend for mp3splt" href="http://mp3splt.sourceforge.net/mp3splt_page/screenshots.php" target="_blank">mp3splt-gtk screenshots</a></li>
<li><a title="Audacity one of the best audio file editors" href="http://audacity.sourceforge.net/" target="_blank">Audacity &#8211; advanced audio editor</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/319/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=319&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2011/02/15/mp3splt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>
	</item>
		<item>
		<title>MultiGet &#8211; Multi Platform, Multi Threaded File Downloader/Accelerator</title>
		<link>http://techtooltip.wordpress.com/2011/02/06/multiget-multi-platform-file-downloaderaccelerator/</link>
		<comments>http://techtooltip.wordpress.com/2011/02/06/multiget-multi-platform-file-downloaderaccelerator/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:13:17 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[Cross Platfrom]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[Cross Platform]]></category>
		<category><![CDATA[Download Accelerator]]></category>
		<category><![CDATA[Internet Tools]]></category>
		<category><![CDATA[Multi Part Downloader]]></category>
		<category><![CDATA[Multi Threaded Downloader]]></category>
		<category><![CDATA[Multiget]]></category>
		<category><![CDATA[postaweek2011]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=290</guid>
		<description><![CDATA[Once upon a time when my primary operating system was Windows 95, 98 and I was using dial up Internet connection with maximum speed of 19.2 kbps. The most essential software was Download Accelerator Plus (popularly know as DAP) from &#8230; <a href="http://techtooltip.wordpress.com/2011/02/06/multiget-multi-platform-file-downloaderaccelerator/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=290&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Once upon a time when my primary operating system was Windows 95, 98 and I was using dial up Internet connection with maximum speed of 19.2 kbps. The most essential software was <a title="Download Accelerator Plus Homepage" href="http://www.speedbit.com/dap/">Download Accelerator Plus</a> (popularly know as DAP) from Speedbit.</p>
<p style="text-align:justify;">Even though the average downloaded file size was much less compared to today&#8217;s standard, it was very much essential to have a software that can speed up the download and allow us to resume the broken download from the point it was broken.</p>
<p style="text-align:justify;">After that I made my primary operating system as Linux and I don&#8217;t know why I never felt the need of download accelerator any more. Perhaps I was used to download anything and everything when I started or may be I started using torrents more or the average Internet connection speed is increasing day by day (but so is the average download size).</p>
<p style="text-align:justify;">Any ways I felt the need of download accelerator recently while trying to download  one of the Linux distro, because torrent ports were blocked by proxy. I started my search for download accelerator with following requirements</p>
<ul style="text-align:justify;">
<li>It should be open source, preferably GPL (Sorry DAP I am not one of those 200 millions, one good change results in lot more good things)</li>
<li>It should allow me to download multiple parts of the file at  the same time, also called as multi-threaded downloading.</li>
<li>It should allow me to specify multiple  mirrors.</li>
<li>It should  allow me to stop and resume the download as per my convenience.</li>
<li>Should support command line operations.</li>
<li>Batch processing support is preferable (not necessary as with command line support any scripting language can add this feature).</li>
</ul>
<p style="text-align:justify;">My search ended at <a title="Multiget On Sourceforge" href="http://multiget.sourceforge.net/index.html" target="_blank">Multiget</a> it met my each and every requirement so well that I felt that tools is developed for me. So I will not list the features separately.</p>
<p style="text-align:justify;"><em><strong>Installation:</strong></em></p>
<p style="text-align:justify;">I used my Kubuntu system to test Multiget, the installation was very easy as Multiget is available in standard Ubuntu repositories, so my installation needed just following 2 lines</p>
<p><pre class="brush: plain;">
sudo apt-get update
sudo apt-get install multiget
</pre></p>
<p style="text-align:justify;">This will install Multiget and it can be launched fromApplications-&gt;Internet menu of Kubuntu. For other operating systems please refer to <a title="Download Options for Multiget" href="http://sourceforge.net/projects/multiget/files/" target="_blank">multiget download page</a>.</p>
<p style="text-align:justify;"><em><strong>Configuration:</strong></em></p>
<p style="text-align:justify;">Multiget configuration is very simple and is limited to just one page as shown  below. This dialog can be opened from Options-&gt;Settings menu or by shortcut Ctrl+S.</p>
<p style="text-align:justify;">&nbsp;</p>
<div id="attachment_297" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2011/02/multiget_configuration.jpg"><img class="size-medium wp-image-297  " style="border:1px solid black;" title="Multiget Configuration Dialog" src="http://techtooltip.files.wordpress.com/2011/02/multiget_configuration.jpg?w=300&#038;h=277" alt="Multiget Configuration Dialog" width="300" height="277" /></a><p class="wp-caption-text">Multiget - Configuration Dialog</p></div>
<p style="text-align:justify;">The first section mainly deals with default setting for a task such as number of concurrently running task, sessions/thread/parts for each task and default location for saving the downloaded files.  Multiget can also monitor clipboard for URL and you can set the ignored and accepted extensions filter as per your need.s Rest of the settings need not be changed for basic uses.</p>
<p style="text-align:justify;">The proxy configuration is separate to allow different proxies for different tasks, Multiget supports SOCKS version 4, 4a and 5 proxy, ftp proxy, http proxy. The proxy configuration dialog&#8217;s snapshot is shown below. Proxy configuration dialog can be opened using Option-&gt;Proxy Admin or by shortcut Ctrl + T.</p>
<div id="attachment_299" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2011/02/multiget_proxyconfiguration.jpg"><img class="size-medium wp-image-299  " style="border:1px solid black;" title="Multiget Proxy Configuration" src="http://techtooltip.files.wordpress.com/2011/02/multiget_proxyconfiguration.jpg?w=300&#038;h=240" alt="Multiget Proxy Configuration" width="300" height="240" /></a><p class="wp-caption-text">Multiget - Proxy Configuration</p></div>
<p style="text-align:justify;">As said earlier you can configured multiple proxies and select any one of them while starting a task.</p>
<p style="text-align:justify;"><em><strong>Adding New Task:</strong></em></p>
<p style="text-align:justify;">New task can be added in multiple ways</p>
<ul style="text-align:justify;">
<li>The simplest and easiest way to add new task is to just copy the URL (Provided Clipboard monitoring is enabled and copied URL matches filter specifications), Multiget automatically detects this and opens New task dialog.</li>
<li>By dropping and URL on drop window (If enabled)</li>
<li>From Multiget window, open new task dialog using menu option Task -&gt;New or by shortcut Ctrl+N.</li>
</ul>
<p style="text-align:justify;">This should open a new task dialog as shown below:</p>
<div id="attachment_298" class="wp-caption aligncenter" style="width: 293px"><a href="http://techtooltip.files.wordpress.com/2011/02/multiget_newtask.jpg"><img class="size-medium wp-image-298  " style="border:1px solid black;" title="Multiget New Task Addition" src="http://techtooltip.files.wordpress.com/2011/02/multiget_newtask.jpg?w=283&#038;h=300" alt="Multiget New Task Addition" width="283" height="300" /></a><p class="wp-caption-text">Multiget - New Task Addition</p></div>
<p>You can add additional mirrors, change the save location, number of sessions, authentication credentials (if required) and choose  proxy server here. Note that this dialog can be opened again anytime when task is not running to change these parameters.</p>
<p style="text-align:justify;"><em><strong>Checking Progress:</strong></em></p>
<p style="text-align:justify;">Multiget provides detailed information about the running task and it&#8217;s different sessions/threads. This can be seen by selecting the running task and different options in info pane. Status bar also provides overview of current status such as number of running tasks, number of waiting tasks and download speed.</p>
<p style="text-align:justify;">You can also change number of sessions at runtime by selecting running task and menu options Tasks-&gt;+Thread &amp; Tasks-&gt;-Thread or by shortcuts Ctrl + +, Ctrl + &#8211; respectively.</p>
<p style="text-align:justify;">Following two snapshots shows Progress and Thread information as provided by Multiget. Note that thread information is available only for running tasks.</p>
<div id="attachment_300" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2011/02/multiget_runningtaskprogress.jpg"><img class="size-medium wp-image-300 " style="border:1px solid black;" title="Multiget Running Task's Progress" src="http://techtooltip.files.wordpress.com/2011/02/multiget_runningtaskprogress.jpg?w=300&#038;h=205" alt="Multiget Running Task's Progress" width="300" height="205" /></a><p class="wp-caption-text">Multiget - Running Task&#039;s Progress</p></div>
<p style="text-align:justify;">&nbsp;</p>
<div id="attachment_301" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2011/02/multiget_runningtaskthreadinfo.jpg"><img class="size-medium wp-image-301 " style="border:1px solid black;" title="Multiget Running Task Thread Information" src="http://techtooltip.files.wordpress.com/2011/02/multiget_runningtaskthreadinfo.jpg?w=300&#038;h=205" alt="Multiget Running Task Thread Information" width="300" height="205" /></a><p class="wp-caption-text">Multiget - Running Task&#039;s Thread Information</p></div>
<p style="text-align:justify;"><em><strong>System Try Control:</strong></em></p>
<p style="text-align:justify;">Multiget also provides very handy system tray menu which can be used to enable/disable frequently used features, Start/Stop all tasks and set the bandwidth apart from other options. The System Try Menu is shown below.</p>
<p style="text-align:justify;">&nbsp;</p>
<div id="attachment_302" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2011/02/multiget_systemtraymenu.jpg"><img class="size-medium wp-image-302 " style="border:1px solid black;" title="Multiget - System Tray Menu" src="http://techtooltip.files.wordpress.com/2011/02/multiget_systemtraymenu.jpg?w=300&#038;h=214" alt="Multiget - System Tray Menu" width="300" height="214" /></a><p class="wp-caption-text">Multiget - System Tray Menu</p></div>
<p style="text-align:justify;"><em><strong>Final Thoughts:</strong></em></p>
<p style="text-align:justify;">If you download lot of huge files and your primary platform is Linux, this is the must have software.</p>
<p style="text-align:justify;">I liked it for its very simple interface and features set. For all options discussed above, there are toolbar icons as well which make it very very user friendly.</p>
<p style="text-align:justify;">The only limitation (if you can say it) is that maximum number of sessions/threads per file are limited to 10 but i guess its OK considering our social responsibility on Internet.</p>
<p style="text-align:justify;">Happy Downloading!!!</p>
<p><em><strong>Links Related to This Post:</strong></em></p>
<ul>
<li><a title="Multiget Homepage" href="http://multiget.sourceforge.net/" target="_blank">Multiget Home Page</a></li>
<li><a title="Download Accelerator Plus Homepage" href="http://www.speedbit.com/dap/" target="_blank">Download Accelerator Plus</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/290/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=290&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2011/02/06/multiget-multi-platform-file-downloaderaccelerator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2011/02/multiget_configuration.jpg?w=300" medium="image">
			<media:title type="html">Multiget Configuration Dialog</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2011/02/multiget_proxyconfiguration.jpg?w=300" medium="image">
			<media:title type="html">Multiget Proxy Configuration</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2011/02/multiget_newtask.jpg?w=283" medium="image">
			<media:title type="html">Multiget New Task Addition</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2011/02/multiget_runningtaskprogress.jpg?w=300" medium="image">
			<media:title type="html">Multiget Running Task&#039;s Progress</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2011/02/multiget_runningtaskthreadinfo.jpg?w=300" medium="image">
			<media:title type="html">Multiget Running Task Thread Information</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2011/02/multiget_systemtraymenu.jpg?w=300" medium="image">
			<media:title type="html">Multiget - System Tray Menu</media:title>
		</media:content>
	</item>
		<item>
		<title>tinySpell &#8211; Check Spellings Anywhere</title>
		<link>http://techtooltip.wordpress.com/2011/01/22/tinyspell/</link>
		<comments>http://techtooltip.wordpress.com/2011/01/22/tinyspell/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 15:44:40 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[Windows Software]]></category>
		<category><![CDATA[postaweek2011]]></category>
		<category><![CDATA[Spell Check]]></category>
		<category><![CDATA[Spelling]]></category>
		<category><![CDATA[tinySpell]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=272</guid>
		<description><![CDATA[Have you ever looked at some of the comments in your old code  and felt bad about the spelling mistakes? While programming we also make use of  abbreviation and short substitutes  for some words (e.g. using &#8220;val&#8221; for &#8220;Value&#8221;, &#8220;rev&#8221; &#8230; <a href="http://techtooltip.wordpress.com/2011/01/22/tinyspell/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=272&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Have you ever looked at some of the comments in your old code  and felt bad about the spelling mistakes? While programming we also make use of  abbreviation and short substitutes  for some words (e.g. using &#8220;val&#8221; for &#8220;Value&#8221;, &#8220;rev&#8221; for &#8220;Revision&#8221;). Compilers help us to ensure that the code is spelled correctly (by correct I mean we are consistently making the same spelling mistake:)). This might be acceptable and required in the code but comments should be written in non-programmer&#8217;s language, your code can be read by non-programmers as well (Don&#8217;t agree? Feel free to do drop me a line).</p>
<p style="text-align:justify;">Any ways the point is, there can be lot of spelling mistakes in the code and comments because of two main reasons. First, we concentrate more on programing and second, most editors do not have inbuilt spell checking. Needless to say, if any application used for editing/creating text does not have inbuilt spell check, there will be a fair chance for having spelling mistakes in the final output.</p>
<p style="text-align:justify;">This is where <a title="Tinyspell Home Page" href="http://tinyspell.numerit.com/" target="_blank">tinySpell</a> comes to rescue. As its name suggests, it is a tiny background utility which allows user to check spellings anywhere in any MS Windows application.</p>
<p style="text-align:justify;">It checks spellings as user types and notify the user when it detects any misspelled words. How you want to be notified is  configurable. After detection it also allows user to correct the spelling mistakes. The exact method used to get the list of corrections is configured by the user. I have configured down arrow key for this purpose to be consistent with other spell checkers and to make it easier to select between suggested corrections.</p>
<p style="text-align:justify;">tinySpell can also check spellings for the text copied in clipboard. <span style="text-decoration:underline;">Truly speaking I haven&#8217;t tried it yet myself, let&#8217;s take authors word for it.</span></p>
<p style="text-align:justify;">If you are thinking that, there is something always running in the background to check the spellings  and I also have inbuilt spell checker in some applications which can not be disabled, how co-operative tinySpell is in this case? and what will happen here? Good Point! You wouldn&#8217;t like to be notified for same spelling mistakes twice, would you? Well, you can configure tinySpell to disable spell check in particular application. It allows user to disable spell checking based on either window name or application name. You can also enable/disable tinySpell all together if required.</p>
<p style="text-align:justify;">One more thing worth mentioning about this utility is, it needs very less system resources. I am always paranoid about installing background applications/services which will go on forever for this reason.</p>
<p><em><strong>tinySpell Feature:</strong></em></p>
<ul>
<li>Checks spelling in any Windows application</li>
<li>Checks spelling as you type it</li>
<li>Configure spell check alert</li>
<li>Configurable correction mechanism</li>
<li>User can add words to the dictionary</li>
<li>User and select application for which tinySpell should be enabled and disabled</li>
<li>Global enable/disable</li>
<li>Efficient use of system resources</li>
<li>Available as portable version which does not need any installation</li>
<li>Can be enabled to start on power on</li>
</ul>
<p style="text-align:justify;"><em><strong>Links Related to This Post:</strong></em></p>
<ul>
<li><a title="Tinyspell Home Page" href="http://tinyspell.numerit.com/" target="_blank">tinySpell home page</a></li>
<li><a title="Download options for tinySpell" href="http://tinyspell.numerit.com/#download" target="_blank">tinySpell Download</a></li>
</ul>
<p><em><strong>Declaimer:</strong></em></p>
<p style="text-align:justify;">This review is based on version 1.9.30 of tinySpell free variant. This review <span style="text-decoration:underline;"><strong>does not</strong></span> cover <a title="Paid version with more features" href="http://tinyspell.numerit.com/#variants" target="_blank">tinySpell+</a> which is paid version of tinySpell with more features.  <em><strong> </strong></em></p>
<p style="text-align:justify;"><em><strong>End Note:</strong></em></p>
<blockquote><p>&#8220;<em>My friend, machine never does or thinks of doing anything wrong or bad, the man behind the machine is responsible&#8221; &#8211; <a title="Va Pu Kale, Marathi Writer" href="http://www.facebook.com/pages/Vapu-Kale-va-pu-kale/106338899436325" target="_blank">Va Pu Kale</a></em></p>
</blockquote>
<p style="text-align:justify;">What&#8217;s the purpose of this quote? Well, there can be spelling  mistakes in this post as well but  don&#8217;t blame Firefox spell checker or tinySpell for them. Feel free to help me in correcting them though.</p>
<div id="_mcePaste" class="mcePaste" style="position:absolute;left:-10000px;top:675px;width:1px;height:1px;overflow:hidden;">Checks spelling in any Windows application<br />
Checks spelling on-the-fly (alerts if the last typed word was misspelled)<br />
Checks spelling of text that is copied to the clipboard<br />
Allows you to specify applications for which tinySpell is disabled or enabled<br />
Allows you to add words to the dictionary<br />
Optionally beeps on error (beep sound can be easily set to any wav file)<br />
Optionally displays a spelling tip (see example)<br />
Provides easy access to on-line web services<br />
(Search, Dictionary, Thesaurus, Encyclopedia) (see here)<br />
Opens replacements list with a simple mouse click or a hot-key<br />
Optionally copies the selected replacement word to the clipboard<br />
Optionally inserts the selected replacement word into the document<br />
new in 1.9.30: Optionally ignores text that is typed in password fields<br />
(supported browsers: Internet Explorer, Firefox (Mozilla), Safari)<br />
new in 1.9.30: Checks for updates with options to download and install new versions<br />
Easy Enable/Disable<br />
Uses little system resources</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/272/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=272&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2011/01/22/tinyspell/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>
	</item>
		<item>
		<title>I am posting every week in 2011!</title>
		<link>http://techtooltip.wordpress.com/2011/01/04/i-am-posting-every-week-in-2011-2/</link>
		<comments>http://techtooltip.wordpress.com/2011/01/04/i-am-posting-every-week-in-2011-2/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 04:51:56 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[postaweek2011]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=259</guid>
		<description><![CDATA[It&#8217;s a new year and time for new resolution. I generally don&#8217;t make any new year resolutions but when I came across The DailyPost challenge, I couldn&#8217;t stop myself to resolve that I will post at least once every week &#8230; <a href="http://techtooltip.wordpress.com/2011/01/04/i-am-posting-every-week-in-2011-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=259&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">It&#8217;s a new year and time for new resolution. I generally don&#8217;t make any new year resolutions but when I came across <a href="http://dailypost.wordpress.com/">The DailyPost</a> challenge, I couldn&#8217;t stop myself to resolve that I will post at least once every week in 2011.</p>
<p style="text-align:justify;">Yesterday in <a title="Permanent Link: 2010 in review" rel="bookmark" href="../2011/01/03/2010-in-review/">2010 in review</a> entry, I posted the summary of how I did in 2010. Even-though I have plenty of readers, I posted only once in 2010. So this is the right time for me to take up this challenge.</p>
<p style="text-align:justify;">I hope that I will be able to balance the quality and quantity.</p>
<p style="text-align:justify;">If you already read my blog, I hope you’ll encourage me with comments and likes, and good will along the way.</p>
<p style="text-align:justify;">Feel free to suggest topics and software reviews I can do for you.</p>
<p style="text-align:justify;">Have a great year ahead.</p>
<p style="text-align:justify;">- excogitator</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/259/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=259&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2011/01/04/i-am-posting-every-week-in-2011-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>
	</item>
		<item>
		<title>2010 in review</title>
		<link>http://techtooltip.wordpress.com/2011/01/03/2010-in-review/</link>
		<comments>http://techtooltip.wordpress.com/2011/01/03/2010-in-review/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 05:00:30 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[2010 Summary]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=252</guid>
		<description><![CDATA[Wish all my readers a very happy new year. Hope to see you again this year. The stats helper monkeys at WordPress.com mulled over how this blog did in 2010, and here&#8217;s a high level summary of its overall blog &#8230; <a href="http://techtooltip.wordpress.com/2011/01/03/2010-in-review/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=252&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wish all my readers a very happy new year. Hope to see you again this year.</p>
<p>The stats helper monkeys at WordPress.com mulled over how this blog did in 2010, and here&#8217;s a high level summary of its overall blog health:</p>
<p><img style="border:1px solid #ddd;background:#f5f5f5;padding:20px;" src="http://s0.wp.com/i/annual-recap/meter-healthy5.gif" alt="Healthy blog!" width="250" height="183" /></p>
<p>The <em>Blog-Health-o-Meter™</em> reads Wow.</p>
<h2>Crunchy numbers</h2>
<p><a href="http://techtooltip.files.wordpress.com/2008/09/cutecomcommunicationannotations.jpg"><img style="max-height:230px;float:right;border:1px solid #ddd;background:#fff;margin:0 0 1em 1em;padding:6px;" src="http://techtooltip.files.wordpress.com/2008/09/cutecomcommunicationannotations.jpg?w=288" alt="Featured image" /></a></p>
<p>About 3 million people visit the Taj Mahal every year.  This blog was viewed about <strong>49,000</strong> times in 2010.  If it were the Taj Mahal, it would take about 6 days for that many people to see it.</p>
<p>In 2010, there was <strong>1</strong> new post, growing the total archive of this blog to 24 posts. There were <strong>2</strong> pictures uploaded, taking up a total of 55kb.</p>
<p>The busiest day of the year was November 23rd with <strong>252</strong> views. The most popular post that day was <a style="color:#08c;" href="http://techtooltip.wordpress.com/2008/09/12/using-host-serial-port-from-guest-in-virtual-box/">How To Use Host Serial Port From Guest In VirtualBox</a>.</p>
<h2>Where did they come from?</h2>
<p>The top referring sites in 2010 were <strong>forums.virtualbox.org</strong>, <strong>forum.xda-developers.com</strong>, <strong>linuxquestions.org</strong>, <strong>google.com</strong>, and <strong>vinci.wordpress.com</strong>.</p>
<p>Some visitors came searching, mostly for <strong>virtualbox serial port</strong>, <strong>virtualbox usb driver</strong>, <strong>virtualbox com port</strong>, <strong>virtualbox tools</strong>, and <strong>virtualbox usb filter</strong>.</p>
<h2>Attractions in 2010</h2>
<p>These are the posts and pages that got the most views in 2010.</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">1</div>
<p><a style="margin-right:10px;" href="http://techtooltip.wordpress.com/2008/09/12/using-host-serial-port-from-guest-in-virtual-box/">How To Use Host Serial Port From Guest In VirtualBox</a> <span style="color:#999;font-size:8pt;">September 2008</span><br />
42 comments</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">2</div>
<p><a style="margin-right:10px;" href="http://techtooltip.wordpress.com/2008/09/22/how-to-use-host-usb-device-from-guest-in-virtual-box/">How To Use Host USB Device From Guest In VirtualBox</a> <span style="color:#999;font-size:8pt;">September 2008</span><br />
22 comments</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">3</div>
<p><a style="margin-right:10px;" href="http://techtooltip.wordpress.com/2008/09/18/swftools-create-extract-manipulate-swf-files/">SWFTools &#8211; Create, Extract and Manipulate SWF Files</a> <span style="color:#999;font-size:8pt;">September 2008</span><br />
4 comments</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">4</div>
<p><a style="margin-right:10px;" href="http://techtooltip.wordpress.com/2009/07/24/sun-xvm-virtualbox-seamless-windows/">Sun xVM VirtualBox Seamless Windows</a> <span style="color:#999;font-size:8pt;">July 2009</span><br />
1 comment</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">5</div>
<p><a style="margin-right:10px;" href="http://techtooltip.wordpress.com/2008/09/16/lightscreen/">Lightscreen &#8211; Screen Capture Tool</a> <span style="color:#999;font-size:8pt;">September 2008</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/252/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=252&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2011/01/03/2010-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>

		<media:content url="http://s0.wp.com/i/annual-recap/meter-healthy5.gif" medium="image">
			<media:title type="html">Healthy blog!</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2008/09/cutecomcommunicationannotations.jpg?w=288" medium="image">
			<media:title type="html">Featured image</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Automate Disk Cleanup and Defragmentation In Windows XP</title>
		<link>http://techtooltip.wordpress.com/2010/09/21/how-to-automate-disk-cleanup-and-defragmentation-in-windows-xp/</link>
		<comments>http://techtooltip.wordpress.com/2010/09/21/how-to-automate-disk-cleanup-and-defragmentation-in-windows-xp/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 08:47:03 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[Windows Software]]></category>
		<category><![CDATA[Cleanup Manager]]></category>
		<category><![CDATA[Defrag]]></category>
		<category><![CDATA[Hard Disk Clean Up]]></category>
		<category><![CDATA[Scheduled Tasks]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=241</guid>
		<description><![CDATA[Whenever we talk about maintaining Windows XP installation the most common concern is that the system gets slower by every passing day.  Answer to this very common problem is also very common which is defragment your hard disk regularly. I &#8230; <a href="http://techtooltip.wordpress.com/2010/09/21/how-to-automate-disk-cleanup-and-defragmentation-in-windows-xp/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=241&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Whenever we talk about maintaining Windows XP installation the most common concern is that the system gets slower by every passing day.  Answer to this very common problem is also very common which is defragment your hard disk regularly. I am not sure whether it really solves the problem but lets find a way to do it as easily as we can.</p>
<p style="text-align:justify;">I will not get into details of fragmentation in this post as it is already explained in my other post <a title="JKDefrag – An Intelligent Defragmenter " href="http://techtooltip.wordpress.com/2008/09/23/jkdefrag-an-intelligent-defragmenter-for-windows/" target="_blank">here</a>. Its is always a good idea to perform defragmentation after performing disk cleanup. This helps in two ways, first it will help us to remove all unwanted data on the hard disk (which might in turn make it perform better) and second it will reduce the time required to complete defragmentation.</p>
<p style="text-align:justify;">I wanted to automate the whole process so that I don&#8217;t have to remember doing it.  It is very easy to perform the defragmentation without any intervention by invoking it through command line but that is not the case with clean up utility. The disk cleanup utility asks us to select what data to cleanup. So I started looking for a solution to execute cleanup manager without human intervention.</p>
<p style="text-align:justify;"><em><strong>Cleanup Manager Configuration:</strong></em></p>
<p style="text-align:justify;">Cleanup manager is used to remove unwanted files (temporary internet files, temporary installation files, other temporary file, compression etc). To setup cleanup manager to run automatically we need to use following command:</p>
<p><pre class="brush: plain;">
cleanmgr /sageset:n
</pre></p>
<p style="text-align:justify;">Where &#8220;n&#8221; can be any value from 0 to 65535. This index is used to choose between different configurations for cleanup manager when it is invoked to perform the actual cleanup activity. Lets assume that we are setting it to 1. This command will open a dialog box which will let you choose which files to delete as part of this configuration.</p>
<div id="attachment_243" class="wp-caption aligncenter" style="width: 262px"><a href="http://techtooltip.files.wordpress.com/2010/09/cleanupmanagerconfiguration.jpg"><img class="size-medium wp-image-243" title="Cleanup Manager Configuration" src="http://techtooltip.files.wordpress.com/2010/09/cleanupmanagerconfiguration.jpg?w=252&#038;h=300" alt="Cleanup Manager Configuration" width="252" height="300" /></a><p class="wp-caption-text">Cleanup Manager Configuration</p></div>
<p style="text-align:justify;">Whatever options you mark in this dialog will be examined when cleanup manager is executed with this configuration.</p>
<p style="text-align:justify;">To run the cleanup manager with this configuration it can be invoked as:</p>
<p><pre class="brush: plain;">
cleanmgr /sagerun:n
</pre></p>
<p style="text-align:justify;">Please note that there is no option to select the drive letter here, the cleanup will be performed on all local drives with chosen configuration.</p>
<p style="text-align:justify;"><em><strong>Defragmenter  Configuration:</strong></em></p>
<p style="text-align:justify;">As it is defrag utility is capable of executing for command line without any intervention, I also enable verbose output to examine the log after the task is completed.</p>
<p><pre class="brush: plain;">
defrag c: -v &gt; CDriveReport.txt
</pre></p>
<p style="text-align:justify;">The above example shows command to defragment &#8220;C&#8221; drive and save the report in CDriveReport.txt.</p>
<p style="text-align:justify;"><em><strong>Putting It All Together In A Batch File:</strong></em></p>
<p style="text-align:justify;">In order to automate these tasks we need to create a batch file which would look something like this:</p>
<p><pre class="brush: plain;">
@ REM Run the cleanup utility
cleanmgr /sagerun:1

@ REM Defrag C Drive
defrag c: -v &gt; CDriveReport.txt

@ REM Defrag D Drive
defrag D: -v &gt; DDriveReport.txt
</pre></p>
<p style="text-align:justify;">You might have to add/delete lines for defrag command as applicable.</p>
<p style="text-align:justify;"><em><strong>Creating A Schedule For This Activity:</strong></em></p>
<p style="text-align:justify;">Now we have everything required to create a schedule to perform this activity as given time automatically.</p>
<p style="text-align:justify;">To create new scheduled task</p>
<ol>
<li>Go to Control Panel -&gt; Scheduled Tasks -&gt; Add Scheduled Task.</li>
<li>This will open a wizard, just click next here.</li>
<li>Now you will see list of application, but we don&#8217;t want any of them so click on browse and select the batch file we have created above and click next.</li>
<li>In the next screen you need to select the frequency at which you want to execute this task. I would choose weekly. Click next.</li>
<li>On the next screen select the time and day(s) as you wish and click next.</li>
<li>The next screen will ask you for password, you can either enter the password here or change the settings to run this task only when you have logged later in advanced options. I would skip entering the password and click on next.</li>
<li>On the next screen mark the checkbox to open advanced properties and click Finish. If you haven&#8217;t entered the password it might give you an warning, just click OK, we are going to set it right.</li>
<li>This will open the advanced property screen as shown below. Mark the checkbox marked &#8220;Run only if logged on&#8221;</li>
<li>You can also create multiple schedules in Schedule tab.</li>
</ol>
<div id="attachment_244" class="wp-caption aligncenter" style="width: 277px"><a href="http://techtooltip.files.wordpress.com/2010/09/scheduledtasksettings.jpg"><img class="size-medium wp-image-244" title="Scheduled Task Settings" src="http://techtooltip.files.wordpress.com/2010/09/scheduledtasksettings.jpg?w=267&#038;h=300" alt="Scheduled Task Settings" width="267" height="300" /></a><p class="wp-caption-text">Scheduled Task Settings</p></div>
<p style="text-align:justify;">You can get the defragmentation logs in the same folder as your batch file.</p>
<p style="text-align:justify;">That&#8217;s about it, you can relax now as you don&#8217;t have to worry about cleaning up and defragmenting your hard disk any more.</p>
<p style="text-align:justify;"><em><strong>Caution:</strong></em></p>
<p style="text-align:justify;">Please note that everything you have asked to cleanup will be cleaned up and there is no way to get that data back. So be careful about what you have chosen during cleanup manager configuration.</p>
<p style="text-align:justify;"><em><strong>Links Related to This Post:</strong></em></p>
<ul>
<li><a title="Automating Disk Cleanup Tool in Windows" href="http://support.microsoft.com/kb/253597" target="_blank">Automating Disk Cleanup Tool in Windows</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/241/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=241&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2010/09/21/how-to-automate-disk-cleanup-and-defragmentation-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2010/09/cleanupmanagerconfiguration.jpg?w=252" medium="image">
			<media:title type="html">Cleanup Manager Configuration</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2010/09/scheduledtasksettings.jpg?w=267" medium="image">
			<media:title type="html">Scheduled Task Settings</media:title>
		</media:content>
	</item>
		<item>
		<title>Sun xVM VirtualBox Seamless Windows</title>
		<link>http://techtooltip.wordpress.com/2009/07/24/sun-xvm-virtualbox-seamless-windows/</link>
		<comments>http://techtooltip.wordpress.com/2009/07/24/sun-xvm-virtualbox-seamless-windows/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 11:52:27 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Seamless Mode]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Virtual Box]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=221</guid>
		<description><![CDATA[Let’s get to the point directly, when we start a new virtual machine it will be started in the new VirtualBox window. This main window in turn acts as a desktop for the guest OS, this way the guest windows &#8230; <a href="http://techtooltip.wordpress.com/2009/07/24/sun-xvm-virtualbox-seamless-windows/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=221&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Let’s get to the point directly, when we start a new virtual machine it will be started in the new VirtualBox window. This main window in turn acts as a desktop for the guest OS, this way the guest windows are confined within the boundary of main VirtualBox window. Alternatively we can enable the full screen mode and complete host desktop will be replaced with the guest desktop. This reminds us that we are using the virtual machine. What if we don’t’ want to be reminded of this fact at all?</p>
<p style="text-align:justify;"><strong><em>Background:</em></strong></p>
<p style="text-align:justify;">Ok, in my setup I have Windows XP host and Kubuntu as guest. I use Kubuntu to do development of my hobby projects for AVR microcontrollers. For some reason I was not able to access the emulator through VirtualBox. To solve this problem I used to compile the programs in Kubuntu and download them to my target hardware using Windows application. Needless to say that I have to constantly switch between the Virtual machine and main desktop. This was more cumbersome when guest was switched to full screen mode. Somehow I wanted to have the Bash shell window used for compilation (in Kubuntu) just next to my windows application (AVR Studio), so that I can switch between them just by clicking on the title bar.</p>
<p style="text-align:justify;"><strong><em>Where There Is A Wish There Is A Way:</em></strong></p>
<p style="text-align:justify;">With VirtualBox Seamless windows mode we can do just what I wanted. That is it will hide the VirtualBox window and place the application windows owned by guest right on host’s desktop. As you can’t see  any evidence of virtual machine running, so you will not be reminded of it. To make it more clear let&#8217;s say you have same OS running on both host and guest, I bet you will not be able to differentiate between host and guest applications.</p>
<p style="text-align:justify;"><strong><em>Virtual Box Setup &amp; Requirement:</em></strong></p>
<p style="text-align:justify;">You can use seamless windows feature if you are using VirtualBox version 1.5 or above. You must also install Guest Additions to enable seamless windows. This information is correct for VirtualBox 3.0.2, for specific version please refer to VirtualBox User Manual for you version.</p>
<p style="text-align:justify;"><strong>How to Get It Working:</strong></p>
<p style="text-align:justify;">From this point onwards I assume that you have installed guest additions and have already started the virtual machine. Also note that in following example my host OS is Windows XP and guest is Kubuntu.</p>
<p style="text-align:justify;">Step1: Ok I will start with the windows desktop showing couple of windows applications running. In the snapshot below you can see that I have opened Windows Explorer, Windows Notepad  and Windows command prompt. The virtual machine is running as well but it is minimized. </p>
<p><a href="http://techtooltip.files.wordpress.com/2009/07/01_hostdesktop.jpg"></a></p>
<div id="attachment_214" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2009/07/01_hostdesktop.jpg"><img class="size-medium wp-image-214" title="Host Desktop With Windows Applications" src="http://techtooltip.files.wordpress.com/2009/07/01_hostdesktop.jpg?w=300&#038;h=187" alt="Host Desktop With Windows Applications" width="300" height="187" /></a><p class="wp-caption-text">Host Desktop With Windows Applications</p></div>
<p style="text-align:justify;">Step2: In the following snapshot I have restored the VirtualBox window. Inside VirtualBox windows you can see that I have opened Dolphin, Kate and Bash shell. If you look at this snapshot the guest windows are restricted within the Virtual Box window.  Our aim is remove this boundary.</p>
<div id="attachment_215" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2009/07/02_hostdesktopwithvirtualbox.jpg"><img class="size-medium wp-image-215" title="Host Desktop With VirtualBox Maximized" src="http://techtooltip.files.wordpress.com/2009/07/02_hostdesktopwithvirtualbox.jpg?w=300&#038;h=187" alt="Host Desktop With VirtualBox Maximized" width="300" height="187" /></a><p class="wp-caption-text">Host Desktop With VirtualBox Maximized</p></div>
<p style="text-align:justify;">Step3: Let the magic begin, Select &#8220;<strong>Seamless Mode</strong>&#8221; entry from the &#8221;<strong>Machines</strong>&#8221; menu of VirtualBox window as shown below. It can also be activites by using shortcut key &#8220;<strong>Host +  L</strong>&#8220;</p>
<div id="attachment_216" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2009/07/03_seamlessenable.jpg"><img class="size-medium wp-image-216" title="Enable Seamless Mode" src="http://techtooltip.files.wordpress.com/2009/07/03_seamlessenable.jpg?w=300&#038;h=221" alt="Enable Seamless Mode" width="300" height="221" /></a><p class="wp-caption-text">Enable Seamless Mode</p></div>
<p style="text-align:justify;">Step4: VirtualBox will provide you with the information cum confirmation box, Click on &#8220;<strong>Switch</strong>&#8220;. I am sure after reading this blog you would also want to check the &#8220;Do not show this message again&#8221; before confirmation. The confirmation dialog box is shown below.</p>
<div id="attachment_217" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2009/07/04_seamlessconfirmation.jpg"><img class="size-medium wp-image-217" title="Seamless Mode Confirmation" src="http://techtooltip.files.wordpress.com/2009/07/04_seamlessconfirmation.jpg?w=300&#038;h=239" alt="Seamless Mode Confirmation" width="300" height="239" /></a><p class="wp-caption-text">Seamless Mode Confirmation</p></div>
<p style="text-align:justify;">Step5: Voila!!!, As you can see that VirtualBox will remove the background window and place the guest applications directly on host&#8217;s desktop. You can arrange them the way you want and switch between then with just a click of mouse. In the following snapshot I have arranged Dolphin windows just above Windows Explorer, Kate window next to Notepad and Shell window above command prompt.  I love it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p style="text-align:justify;">If you have taskbars for both host and the guest, taskbar corrosponding to selected window will get the focus automatically. In this snapshot you can see that Kubuntu taskbar is visible.</p>
<div id="attachment_218" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2009/07/05_hostandguesttogether.jpg"><img class="size-medium wp-image-218" title="Host And Guest Windows Together" src="http://techtooltip.files.wordpress.com/2009/07/05_hostandguesttogether.jpg?w=300&#038;h=187" alt="Host And Guest Windows Together" width="300" height="187" /></a><p class="wp-caption-text">Host And Guest Windows Together</p></div>
<p style="text-align:justify;">Step 6: Following snapshot shows that the desktop still belongs to the host (see final thoughts (1) below). You can see the windows context menu in the center and windows taskbar at the bottom.</p>
<div id="attachment_219" class="wp-caption aligncenter" style="width: 310px"><a href="http://techtooltip.files.wordpress.com/2009/07/06_hostandguesttogetherhostdesktop.jpg"><img class="size-medium wp-image-219" title="Desktop Still Belongs to Host" src="http://techtooltip.files.wordpress.com/2009/07/06_hostandguesttogetherhostdesktop.jpg?w=300&#038;h=187" alt="Desktop Still Belongs to Host" width="300" height="187" /></a><p class="wp-caption-text">Desktop Still Belongs to Host</p></div>
<p>Step7: To exit the Seamless mode you can either press &#8220;<strong>Host + L</strong>&#8221; or press &#8220;<strong>Host + Home&#8221;</strong> to disable it through &#8220;<strong>Machine</strong>&#8220; menu. </p>
<p><strong><em>Final Thoughts:</em></strong></p>
<ol>
<li>You can not drag and drop between guest and host windows, That would be a great feature though. However if you drag the item from any of the guest application and drop it over desktop it will be copied on <strong>guest&#8217;s</strong> desktop.</li>
<li>You can start more guest application using its start menu or through bash shell and they will still be shown in seamless mode.</li>
<li>The keyboard will automatically follow the selected OS, for example if you have selected the Dolphin window, Windows Key has no effect.</li>
<li>In the seamless mode you can acccess the VirtualBox menu using &#8220;<strong>Host + Home</strong>&#8221; key.</li>
<li>Alt-Tab application switcher does not recognize guest windows but treat them as a single window.</li>
</ol>
<p>That&#8217;s it for this post I like the way it works but if VirtualBox team can enable the drag and drop between Guest and Host and make the Alt-Tab application switcher aware of Seamless mode it will be perfect.</p>
<p style="text-align:justify;"><em><strong>Links Related to This Post:</strong></em></p>
<ul style="text-align:justify;">
<li><a title="Virtual Box Homepage" href="http://www.virtualbox.org/" target="_blank">VirtualBox</a></li>
<li><a title="My other VirtualBox related posts" href="http://techtooltip.wordpress.com/tag/Virtual-box/" target="_blank">My other VirtualBox related posts</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/221/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=221&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2009/07/24/sun-xvm-virtualbox-seamless-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2009/07/01_hostdesktop.jpg?w=300" medium="image">
			<media:title type="html">Host Desktop With Windows Applications</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2009/07/02_hostdesktopwithvirtualbox.jpg?w=300" medium="image">
			<media:title type="html">Host Desktop With VirtualBox Maximized</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2009/07/03_seamlessenable.jpg?w=300" medium="image">
			<media:title type="html">Enable Seamless Mode</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2009/07/04_seamlessconfirmation.jpg?w=300" medium="image">
			<media:title type="html">Seamless Mode Confirmation</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2009/07/05_hostandguesttogether.jpg?w=300" medium="image">
			<media:title type="html">Host And Guest Windows Together</media:title>
		</media:content>

		<media:content url="http://techtooltip.files.wordpress.com/2009/07/06_hostandguesttogetherhostdesktop.jpg?w=300" medium="image">
			<media:title type="html">Desktop Still Belongs to Host</media:title>
		</media:content>
	</item>
		<item>
		<title>VirtualBox 2: How To Pass Through USB Devices To Guests On An Ubuntu 8.10 Host (From HowtoForge)</title>
		<link>http://techtooltip.wordpress.com/2009/04/06/virtualbox-2-how-to-pass-through-usb-devices-to-guests-on-an-ubuntu-810-host-from-howtoforge/</link>
		<comments>http://techtooltip.wordpress.com/2009/04/06/virtualbox-2-how-to-pass-through-usb-devices-to-guests-on-an-ubuntu-810-host-from-howtoforge/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 15:08:02 +0000</pubDate>
		<dc:creator>excogitator</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Offsite Articles]]></category>
		<category><![CDATA[Virtual Box]]></category>
		<category><![CDATA[USB Pass Through]]></category>

		<guid isPermaLink="false">http://techtooltip.wordpress.com/?p=212</guid>
		<description><![CDATA[This short guide shows how you can pass through USB devices (such as a USB flash drive) to VirtualBox guests on an Ubuntu 8.10 VirtualBox 2 host. USB support is available only in the VirtualBox PUEL (closed-source) edition, not in &#8230; <a href="http://techtooltip.wordpress.com/2009/04/06/virtualbox-2-how-to-pass-through-usb-devices-to-guests-on-an-ubuntu-810-host-from-howtoforge/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=212&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This short guide shows how you can pass through USB devices (such as a USB flash drive) to VirtualBox guests on an Ubuntu 8.10 VirtualBox 2 host. USB support is available only in the VirtualBox PUEL (closed-source) edition, not in the OSE edition, so make sure you have the PUEL edition installed.</p>
<p>via <a href="http://www.howtoforge.com/virtualbox-2-how-to-pass-through-usb-devices-to-guests-on-an-ubuntu-8.10-host">VirtualBox 2: How To Pass Through USB Devices To Guests On An Ubuntu 8.10 Host | HowtoForge &#8211; Linux Howtos and Tutorials</a>.</p>
<p>Credit for this post goes to Falko Timme.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techtooltip.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techtooltip.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techtooltip.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techtooltip.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techtooltip.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techtooltip.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techtooltip.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techtooltip.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techtooltip.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techtooltip.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techtooltip.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techtooltip.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techtooltip.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techtooltip.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techtooltip.wordpress.com&amp;blog=4573415&amp;post=212&amp;subd=techtooltip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techtooltip.wordpress.com/2009/04/06/virtualbox-2-how-to-pass-through-usb-devices-to-guests-on-an-ubuntu-810-host-from-howtoforge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/486f21fcbfbc23e1bcd9235fd6dd3662?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">excogitator</media:title>
		</media:content>
	</item>
	</channel>
</rss>
