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

<channel>
	<title>Techie Thoughts &#187; Tips&amp;Tricks</title>
	<atom:link href="http://blog.techieant.com/tags/tipstricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.techieant.com</link>
	<description>Open Source, software, hardware, mobile tips and reviews.</description>
	<lastBuildDate>Mon, 12 Oct 2009 09:12:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Making GWT 1.5.x Hosted mode work in Ubuntu Karmic</title>
		<link>http://blog.techieant.com/2009/10/12/making-gwt-1-5-x-hosted-mode-work-in-ubuntu-karmic/</link>
		<comments>http://blog.techieant.com/2009/10/12/making-gwt-1-5-x-hosted-mode-work-in-ubuntu-karmic/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 09:12:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[GWT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.techieant.com/?p=25</guid>
		<description><![CDATA[Since my last post on making hosted mode work on Ubuntu, I had upgraded my laptop to Kubuntu Karmic ( in Beta 1 as of this writing ). While most things worked out of the box ( including wireless, mic / webcam, ZTE AC2726 modem ), I got a problem with a GWT 1.5.3 application [...]]]></description>
			<content:encoded><![CDATA[<p>Since my <a href="http://blog.techieant.com/2009/07/10/making-gwt-hosted-browser-work-in-eclipse-on-ubuntu/">last post on making hosted mode work on Ubuntu</a>, I had upgraded my laptop to Kubuntu Karmic ( in Beta 1 as of this writing ). While most things worked out of the box ( including wireless, mic / webcam, ZTE AC2726 modem ), I got a problem with a GWT 1.5.3 application again.</p>
<p>GWT 1.5.3 hosted mode requires libstdc++5. Kubuntu Karmic doesn&#8217;t ship libstdc++ 5 anymore. </p>
<p>Fortunately, the solution was simple.<br />
Download libstdc++5 package for your architecture from <a href="http://packages.ubuntu.com/jaunty/libstdc++5">Ubuntu Package Archives</a>.<br />
I used <a href="http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-3.3/libstdc++5_3.3.6-17ubuntu1_i386.deb">i386 version</a><br />
</p>
<p>Install the package</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> libstdc++<span style="color: #000000;">5</span>_<span style="color: #000000; font-weight: bold;">*</span>.deb</pre></div></div>

<p>You should now be able to run GWT 1.5.x hosted mode browser running again. ( This might work for GWT 1.6.x as well considering that both use Mozilla 1.7.1x that depends on libstdc++5)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techieant.com/2009/10/12/making-gwt-1-5-x-hosted-mode-work-in-ubuntu-karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Copy contents from file to file in VI editor</title>
		<link>http://blog.techieant.com/2008/04/10/how-to-copy-contents-from-file-to-file-in-vi-editor/</link>
		<comments>http://blog.techieant.com/2008/04/10/how-to-copy-contents-from-file-to-file-in-vi-editor/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 14:11:13 +0000</pubDate>
		<dc:creator>Venkat</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell Scripting]]></category>
		<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Vi]]></category>

		<guid isPermaLink="false">http://blog.techieant.com/2008/04/10/how-to-copy-contents-from-file-to-file-in-vi-editor/</guid>
		<description><![CDATA[Here is the tip to copy contents from one file to another.
1. Press &#8216;ESC&#8217;.
2. Press Shift+&#8221; (double quote).
3. Press &#8216;a&#8217;.
4. Press number of lines you want to copy.
5. Press y followed by another y (yy).
6. Now press : (COLON) to get the vi prompt.
7. Hit e &#8220;destination file name&#8217;
8. Once you enter the destination file, [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the tip to copy contents from one file to another.</p>
<p>1. Press &#8216;ESC&#8217;.<br />
2. Press Shift+&#8221; (double quote).<br />
3. Press &#8216;a&#8217;.<br />
4. Press number of lines you want to copy.<br />
5. Press y followed by another y (yy).<br />
6. Now press : (COLON) to get the vi prompt.<br />
7. Hit e &#8220;destination file name&#8217;<br />
8. Once you enter the destination file, go to the line where you want the copied lines to be inserted.<br />
9. Press &#8216;ESC&#8217;.<br />
10. Press Shift+&#8221;(double quote).<br />
11. Press &#8216;a&#8217;.<br />
12Â  Press &#8216;p&#8217;.</p>
<p>Happy editing <img src='http://blog.techieant.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techieant.com/2008/04/10/how-to-copy-contents-from-file-to-file-in-vi-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: IM Online</title>
		<link>http://blog.techieant.com/2008/01/22/wordpress-plugin-im-online/</link>
		<comments>http://blog.techieant.com/2008/01/22/wordpress-plugin-im-online/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 21:02:54 +0000</pubDate>
		<dc:creator>Venkat</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.techieant.com/2008/01/22/wordpress-plugin-im-online/</guid>
		<description><![CDATA[Want to show your current online status on your blog&#8230; Its very simple&#8230;!!!
IM Online: A neat little Wordpress plugin will show your current online status. It supports most IM services including AOL, MSN, Yahoo, Jabber (inc. Google Talk), Skype and ICQ.
You can show as many or as few IM network icons as you like and [...]]]></description>
			<content:encoded><![CDATA[<p>Want to show your current online status on your blog&#8230; Its very simple&#8230;!!!</p>
<p><strong>IM Online:</strong> A neat little Wordpress plugin will show your current online status. It supports most IM services including AOL, MSN, Yahoo, Jabber (inc. Google Talk), Skype and ICQ.</p>
<p>You can show as many or as few IM network icons as you like and all options are configurable through the control panel.</p>
<p><a href="http://downloads.wordpress.org/plugin/im-online.4.4.zip" target="_blank">Download</a> IM Online</p>
<p><strong>Installation instructions</strong></p>
<ol>
<li>Unzip the downloaded package and drop the IM-Online folder in your Wordpress plugins folder</li>
<li>Log into your WordPress admin panel</li>
<li>Go to Plugins and â€œActivateâ€ the plugin</li>
<li>Go to Presentation, Widgets</li>
<li>Drag the IM Online widget onto your sidebar panel</li>
<li>Click the Widget-Options button (small blue-topped square)</li>
<li>Enter the title for your Widget</li>
<li>Return to the Widget panel and click â€œSave changes Â»â€</li>
<li>Go to Options, then IM Online</li>
<li>Enter your account details for each service you use</li>
<li>Click â€œSave changes Â»â€</li>
<li>Check your blog to see if itâ€™s working!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.techieant.com/2008/01/22/wordpress-plugin-im-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox tricks: Use keywords to speed up bookmarks</title>
		<link>http://blog.techieant.com/2007/12/21/firefox-tricks-use-keywords-to-speed-up-bookmarks/</link>
		<comments>http://blog.techieant.com/2007/12/21/firefox-tricks-use-keywords-to-speed-up-bookmarks/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 18:47:28 +0000</pubDate>
		<dc:creator>Venkat</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blog.techieant.com/2007/12/21/firefox-tricks-use-keywords-to-speed-up-bookmarks/</guid>
		<description><![CDATA[Visiting your favorite sites using Firefox&#8217;s bookmarks is far too much of a chore &#8212; do you really want to do all that mousing around? Instead, you can use keywords to instantly jump to any site you&#8217;ve bookmarked. To do it, after you bookmark a site, right-click on the bookmark, select Properties, type in a [...]]]></description>
			<content:encoded><![CDATA[<p>Visiting your favorite sites using Firefox&#8217;s bookmarks is far too much of a chore &#8212; do you really want to do all that mousing around? Instead, you can use keywords to instantly jump to any site you&#8217;ve bookmarked. To do it, after you bookmark a site, right-click on the bookmark, select Properties, type in a short keyword (or even just a letter or two) in the keyword field and click OK. Now, to visit the site, type in the keyword in Firefox&#8217;s address bar, and you&#8217;ll jump straight to the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techieant.com/2007/12/21/firefox-tricks-use-keywords-to-speed-up-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox tricks: Speed up Firefox with pipelining</title>
		<link>http://blog.techieant.com/2007/12/20/firefox-tricks-speed-up-firefox-with-pipelining/</link>
		<comments>http://blog.techieant.com/2007/12/20/firefox-tricks-speed-up-firefox-with-pipelining/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 18:55:26 +0000</pubDate>
		<dc:creator>Venkat</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blog.techieant.com/2007/12/20/firefox-tricks-speed-up-firefox-with-pipelining/</guid>
		<description><![CDATA[Here&#8217;s a simple way to speed up Web browsing with Firefox &#8212; turn on its hidden pipelining feature. When you turn on pipelining, you send several requests to a Web server at a time, rather than sending them one by one, so you can load multiple items on a page concurrently. By default, pipelining is [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a simple way to speed up Web browsing with Firefox &#8212; turn on its hidden pipelining feature. When you turn on pipelining, you send several requests to a Web server at a time, rather than sending them one by one, so you can load multiple items on a page concurrently. By default, pipelining is turned off in Firefox, but it&#8217;s easy to turn it on:</p>
<p>1. Type about:config into your address bar and hit Enter.</p>
<p>2. In the Filter text box, at the top of the page, type network.http. A list of settings appears, as you can see in the nearby                         figure.</p>
<p>3. Double-click the &#8220;network.http.pipelining&#8221; setting, to change it to true.</p>
<p>4. Double-click the &#8220;network.http.proxy.pipelining&#8221; setting, to change it to true.</p>
<p>5. Double-click the &#8220;network.http.pipelining.maxrequests&#8221; setting, and in the text box that appears, type in 8 and click OK.</p>
<p>Note that not all Web servers can handle pipelining. If for some reason, you find that your performance suffers with it turned                         on, reverse the above steps to turn it off.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techieant.com/2007/12/20/firefox-tricks-speed-up-firefox-with-pipelining/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
