<?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 Buzz &#187; Productivity Tips</title> <atom:link href="http://techie-buzz.com/tag/productivity-tips/feed" rel="self" type="application/rss+xml" /><link>http://techie-buzz.com</link> <description>Know your technology head on</description> <lastBuildDate>Fri, 10 Feb 2012 18:35:40 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Trouble with Excel Formulas? Try the Evaluate Formula Tool</title><link>http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html</link> <comments>http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html#comments</comments> <pubDate>Fri, 25 Feb 2011 13:00:37 +0000</pubDate> <dc:creator>Guest Posts</dc:creator> <category><![CDATA[Tips And Tricks]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Productivity Tips]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=44487</guid> <description><![CDATA[Excel has a tool that is very useful when you need to find a problem with a formula, or to understand the calculation process. Have you seen it? Do you know how to use it?]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1328905805w69ytpjjsft5sufy10mscumbag1328905805bns2x08dikiays3sjbj1328905805.fkyou" class="scumbags" /><p><a href="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/excel-ico.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: right; padding-top: 0px; border: 0px;" title="excel-ico" src="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/excel-ico_thumb.png" border="0" alt="excel-ico" width="80" height="60" align="right" /></a>You just wrote an Excel formula and it isn&#8217;t producing the result you expected?  Have no fear &#8211; this article will introduce you to the Evaluate Formula&#8217; tool which you can use to discover why your formula isn&#8217;t working. The Evaluate Formula tool achieves this by showing you the steps Excel takes to calculate your formula.  This is very useful when you need to find a problem with a formula, or to understand the calculation process.</p><h3>Finding the wrong value</h3><h4><span style="font-weight: normal;">Let&#8217;s look how the Evaluate formula&#8217; tool can be used to trace a problem, by looking at the following sample:</span></h4><h4><a href="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/Formula-with-Strange-Result.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Formula with Strange Result" src="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/Formula-with-Strange-Result_thumb.png" border="0" alt="Formula with Strange Result" width="403" height="218" /></a></h4><h4><span style="font-weight: normal;">You can see that something is amiss with the formula in cell C3. The formula adds 1+2+3 (cells A2, A3 and A4) and then divides the result by 3 (cell B3); this should evaluate to 2 (6 divided by 3). But we got 2.4. </span><span style="font-weight: normal;">By opening the Evaluate Formula tool (from the Formula Auditing area of the Formula ribbon), we can work the calculation of this value step by step (click the Evaluate button in the Evaluate Formula dialog to advance):</span></h4><p><a href="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/Evaluate-Formula-Window.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Evaluate Formula Window" src="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/Evaluate-Formula-Window_thumb.png" border="0" alt="Evaluate Formula Window" width="520" height="276" /></a></p><p>Listed are the evaluation steps for the formula above:</p><ul><li>(A2+A3+A4)/B3</li><li>(1+A3+A4)/B3</li><li>(1+2+A4)/B3</li><li>(3+A4)/B3</li><li>(3+3)/B3</li><li>(6)/B3</li><li>6/B3</li><li>6/2.5</li><li>2.4</li></ul><p>First we&#8217;ll examine the mechanics of the display. The underlined part of the formula in each step is the part that will be evaluated in the next step. The italic part of the formula in each step is the part that was evaluated in the previous step.</p><p>In this case, the one-but-last step seems off: we expected B3 to contain 3, but it seems to contain 2.5. The problem is probably that the cell&#8217;s display is set to show zero decimal places:<br /> And there you have it &#8211; we&#8217;ve found the problem. Changing the cell&#8217;s formatting to show decimal places will show that cell B3 contains 2.5.</p><p><a href="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/Fixing-The-Formula-Problem.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Fixing The Formula Problem" src="http://cache.techie-buzz.com/images2/postimg/2be5d7b4eae2_130E6/Fixing-The-Formula-Problem_thumb.png" border="0" alt="Fixing The Formula Problem" width="494" height="497" /></a></p><h3>Summary</h3><h4><span style="font-weight: normal;">This article provides a little taste of how the Formula Evaluation tool can be used to help us fix problems in our formulas. It&#8217;s also a great tool for helping us write formulas, but that discussion can wait for another time.  Can you think of ways this tool can serve you? Please share with us in the commentsâ€¦</span></h4><p><strong>==== About the Author ====</strong></p><h4><span style="font-weight: normal;">Joseph Reese is the founder of <a href="http://www.excel-formulas.com/">Excel-Formulas.com</a> an Excel consulting firm. Head over to his website if you want to improve your performance with Excel.</span></h4> <img src="http://cache.techie-buzz.com/1328905805w69ytpjjsft5sufy10mscumbag1328905805bns2x08dikiays3sjbj1328905805.fkyou" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Trouble with Excel Formulas? Try the Evaluate Formula Tool http%3A%2F%2Fbit.ly%2FeQAKiY via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html&title=Trouble with Excel Formulas? Try the Evaluate Formula Tool" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html&title=Trouble with Excel Formulas? Try the Evaluate Formula Tool" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html&title=Trouble with Excel Formulas? Try the Evaluate Formula Tool" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/microsoft" rel="tag">Microsoft</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/tips-and-tricks" rel="tag">Tips And Tricks</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html" title="Trouble with Excel Formulas? Try the Evaluate Formula Tool">Trouble with Excel Formulas? Try the Evaluate Formula Tool</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Guest Posts on Friday 25th February 2011 08:00:37 AM under <a href="http://techie-buzz.com/category/tips-and-tricks" title="View all posts in Tips And Tricks" rel="category tag">Tips And Tricks</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/tips-and-tricks/excel-evaluate-formula-tool.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Split Files 1.6 â€“ A tool to split your files for easy sharing</title><link>http://techie-buzz.com/softwares/split-files-for-easy-sharing.html</link> <comments>http://techie-buzz.com/softwares/split-files-for-easy-sharing.html#comments</comments> <pubDate>Fri, 08 Jan 2010 16:00:44 +0000</pubDate> <dc:creator>Soumen Halder</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Productivity Tips]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=15069</guid> <description><![CDATA[Split files is a free tool that lets you split big files into small pieces and rejoin them as well. This a freeware that makes this task just a matter of few clicks.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1328905805phhwp1blpb7q2xlvee21scumbag1328905805272dt4d556eama6no081328905805.png" class="scumbags" /><p>How many times have you gotten stuck while sending an ebook to your friend&#8217;s email, just because the file size is bigger than what is allowed ? There are other cases when you need to split some important documents for saving in different places to ensure privacy.</p><p><span id="more-15069"></span>Split Files 1.6 is a nice tool to split files that are big(filesize) and can&#8217;t be sent by email. All you have to do is to locate the file you want to split, locate the directory(on your PC) you want to put the split files and configure splitting options( i.e number of split files or size of a single split file). When you are ready, just press the Split button and you are done.</p><p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="split-files-splitting-files-window" src="http://cache.techie-buzz.com/images/postimg/Spl.6Atooltosplityourfilesforeasysharing_CA04/splitfilessplittingfileswindow.jpg" border="0" alt="split-files-splitting-files-window" width="418" height="427" /></p><p>You can also combine split files using the tool. Just go to the Combine tab and set it up.</p><p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="split-files-combining-files-window" src="http://cache.techie-buzz.com/images/postimg/Spl.6Atooltosplityourfilesforeasysharing_CA04/splitfilescombiningfileswindow.jpg" border="0" alt="split-files-combining-files-window" width="418" height="427" /></p><p>[<a href="http://www.softpedia.com/get/System/File-Management/Split-Files.shtml" target="_blank"><strong>Download Split Files 1.6</strong></a>]</p><h2>Techie Buzz Verdict</h2><p>Well we can&#8217;t deny the fact that, most of the times, file splitting is used in cases of piracy, like creating .torrent files for copyrighted work. We are not encouraging piracy, but in other cases, like splitting a college presentation, an audio track you&#8217;ve made or just an ebook,   this free application works wonders for easy sharing. There are no major reported bugs yet.</p><p><strong>Techie-Buzz Rating</strong> : 4/5 (Good)</p><div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 794px; width: 1px; height: 1px;"><span class="Apple-style-span" style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial,sans-serif; font-size: 13px;">this free application works wonders for easy sharing</span></span></div> <img src="http://cache.techie-buzz.com/1328905805phhwp1blpb7q2xlvee21scumbag1328905805272dt4d556eama6no081328905805.png" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/softwares/split-files-for-easy-sharing.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Split Files 1.6 â€“ A tool to split your files for easy sharing http%3A%2F%2Fbit.ly%2F4BmtQs via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/softwares/split-files-for-easy-sharing.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/softwares/split-files-for-easy-sharing.html&title=Split Files 1.6 â€“ A tool to split your files for easy sharing" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/softwares/split-files-for-easy-sharing.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/softwares/split-files-for-easy-sharing.html&title=Split Files 1.6 â€“ A tool to split your files for easy sharing" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/softwares/split-files-for-easy-sharing.html&title=Split Files 1.6 â€“ A tool to split your files for easy sharing" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/softwares/split-files-for-easy-sharing.html" title="Split Files 1.6 â€“ A tool to split your files for easy sharing">Split Files 1.6 â€“ A tool to split your files for easy sharing</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Soumen Halder on Friday 8th January 2010 11:00:44 AM under <a href="http://techie-buzz.com/category/softwares" title="View all posts in Software" rel="category tag">Software</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/softwares/split-files-for-easy-sharing.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Perform Actions When Copying Text to Clipboard</title><link>http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html</link> <comments>http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html#comments</comments> <pubDate>Tue, 27 Oct 2009 02:41:07 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[Featured Articles]]></category> <category><![CDATA[Freeware]]></category> <category><![CDATA[Portable Software]]></category> <category><![CDATA[Productivity Tips]]></category> <category><![CDATA[Productivity Tools]]></category> <category><![CDATA[Recommended Software]]></category> <category><![CDATA[Useful Tools]]></category><guid isPermaLink="false">http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html</guid> <description><![CDATA[Clipmon monitors the clipboard and offers to perform actions based on copied text. For example, copying URL will allow you to open a browser, copying an email address will promot you to open your default email client and so on.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1328905805vmsephuhw9a820v37nuscumbag13289058056lyv6cevadcy12mvup1328905805.ram" class="scumbags" /><p>Most of the times when we copy a URL, we want to open it in a web browser. When we copy an email address, we want to send a email to someone. When we copy a explorer path, we want to open and browse the folder.</p><p>As you can see, some actions are done to perform another one. Wouldn&#8217;t it be awesome, if we had a intelligent software that could sense what we want to do, and automatically allows us perform those tasks, based on what we copy? You guessed right, we found something that will do that for you.</p><p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="open_browser_when_copying_url" border="0" alt="open_browser_when_copying_url" src="http://cache.techie-buzz.com/images/posts/PerformActionsWhenCopyingTexttoClipboard_1341C/open_browser_when_copying_url.png" width="289" height="122" /> <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="open_mail_client_for_emailing" border="0" alt="open_mail_client_for_emailing" src="http://cache.techie-buzz.com/images/posts/PerformActionsWhenCopyingTexttoClipboard_1341C/open_mail_client_for_emailing.png" width="292" height="107" /></p><p>Clip Monitor is a awesome software, which <strong>will automatically detect what you are copying and offer you to perform the default actions based on the text that has been copied</strong>. For example, if you copy a URL, it will offer you an option to open a web browser that points to that URL. If you copy a email address, it will offer to open the default email client and open a compose email window. If you copy a explorer location, it will offer to open the explorer window and browse to that location.</p><p>In addition to that, if you copy images to clipboard, it will offer you to open your default image editor. If you want to exit the software, just copy the text exitand the software will automatically close itself.</p><h3>Techie Buzz Verdict</h3><p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="techie-buzz-recommended-software[1]" border="0" alt="techie-buzz-recommended-software[1]" align="left" src="http://cache.techie-buzz.com/images/posts/PerformActionsWhenCopyingTexttoClipboard_1341C/techiebuzzrecommendedsoftware1.png" width="200" height="130" /> ClipMon is a awesome software and could turn you into a productive powerhouse, if it comes with more customization and options.</p><p>Even in its current state it is a really useful software, however, greedy as we are, it would be good if the software allowed users to define custom actions based on clipboard text. For example, say I want to open Microsoft word, i just copy word, and it gives me an option to open Microsoft Word. Having an option to predefine actions and keywords would be something that we want the developer to add to this software.</p><p>Rest assured, this is a <a title="Highly Recommended Software by Techie Buzz" href="http://techie-buzz.com/tag/recommended-software" rel="tag" target="_blank">recommended software</a>, without doubt. Go ahead and make yourself more productive.</p><p><strong>Techie Buzz Rating:</strong> 5/5 (Awesome)</p><p><a href="http://www.clipboardmonitor.de/download.htm" target="_blank"><strong>Download ClipMon</strong></a></p> <img src="http://cache.techie-buzz.com/1328905805vmsephuhw9a820v37nuscumbag13289058056lyv6cevadcy12mvup1328905805.ram" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Perform Actions When Copying Text to Clipboard http%3A%2F%2Fbit.ly%2F2pXaSG via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html&title=Perform Actions When Copying Text to Clipboard" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html&title=Perform Actions When Copying Text to Clipboard" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html&title=Perform Actions When Copying Text to Clipboard" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/freeware" rel="tag">Freeware</a>, <a href="http://techie-buzz.com/tag/portable-software" rel="tag">Portable Software</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/productivity-tools" rel="tag">Productivity Tools</a>, <a href="http://techie-buzz.com/tag/recommended-software" rel="tag">Recommended Software</a>, <a href="http://techie-buzz.com/tag/useful-tools" rel="tag">Useful Tools</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html" title="Perform Actions When Copying Text to Clipboard">Perform Actions When Copying Text to Clipboard</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Monday 26th October 2009 10:41:07 PM under <a href="http://techie-buzz.com/category/featured" title="View all posts in Featured Articles" rel="category tag">Featured Articles</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/featured/perform-actions-when-copying-text-to-clipboard.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Google Wave: First Impressions</title><link>http://techie-buzz.com/tech-news/google-wave-first-impressions.html</link> <comments>http://techie-buzz.com/tech-news/google-wave-first-impressions.html#comments</comments> <pubDate>Thu, 01 Oct 2009 05:10:37 +0000</pubDate> <dc:creator>Kaushik</dc:creator> <category><![CDATA[Tech News]]></category> <category><![CDATA[Google News]]></category> <category><![CDATA[Google Wave]]></category> <category><![CDATA[Productivity Tips]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=8686</guid> <description><![CDATA[Google Wave is the new collaborative online technology developed by Google. This First Impressions post collects the various ways you can use Google Wave to implement collaboration and sharing. Check out the immense numbers of ways that Google Wave can help you out with organizational work and sharing with friends!]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/13289058053y45irlxex0y1mvaourascumbag1328905805det0xoltpi87dqyyfm5g1328905805.png" class="scumbags" /><p>Like an excited little kid on his birthday, I practically squealed when I synced my mobile phone&#8217;s email client with my Gmail account and saw that a certain correspondent whose email ID was wave-noreply@google.comhad sent me an email with the subject line Your invitation to preview Google Wave. I jumped out of bed, turned on my laptop and accepted the invite and started Wave-ing. It&#8217;s been a couple of hours since I woke up and I took a break only to brush my teeth and wash my face. I have been Wave-ing since seven in the morning (here).</p><p>Here, I present a visual journey through Wave, captured with screenshots. Since I have no contacts associated in Wave, I cannot tell you how it works as a collaboration platform. It does, however, look very interesting. So without further ado, here are the screenshots with explanations. Click through each picture to see a larger version.</p><p><a href="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/Wave.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="Wave" src="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/Wave_thumb.png" border="0" alt="Wave" width="475" height="357" /></a></p><p>The extreme left side is divided into two bars, Navigation and Contacts and reminds one of Gmail&#8217;s extreme left sidebar. The center is the message view with each message having the picture of the contact who is participating in the wave, while the extreme right bar is the Wave view. Doctor Wave is shown as a contact, while an embedded video of him introducing us to Google Wave is in the Wave bar. Notice the previewsubtitle to Google Wave on the top left.</p><p><a href="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/NewWave.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="NewWave" src="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/NewWave_thumb.png" border="0" alt="NewWave" width="475" height="356" /></a></p><p>Clicking on new wave takes us to a composer that feels similar to Gmail&#8217;s rich text formatter. The screenshot gives an example of some of the features. The first line is the subject line of the Wave. Add participants to the wave by clicking the +&#8217; button, or dragging contacts from the Contacts panel. Add tags and files at the bottom of the Wave for organizing and sharing information, respectively.</p><p><a href="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/Reply.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="Reply" src="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/Reply_thumb.png" border="0" alt="Reply" width="475" height="356" /></a></p><p>You can reply to a message by simply clicking the lower border of that message (known as a blip). The same formatting options are given, while a built-in spell checker allows you to correct your errors (more on this in a following screenie).</p><p><a href="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/EmbedVideo.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="EmbedVideo" src="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/EmbedVideo_thumb.png" border="0" alt="EmbedVideo" width="475" height="356" /></a></p><p>Copy paste a YouTube URL and voila, you get an option to embed the video! Some more multimedia can be embedded, methinks. For the sake of this post, I have stopped at just one.</p><p><a href="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/SpellCheckandVideo.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="SpellCheckandVideo" src="http://cache.techie-buzz.com/images/posts/GoogleWaveFirstImpressions_92BB/SpellCheckandVideo_thumb.png" border="0" alt="SpellCheckandVideo" width="475" height="356" /></a></p><p>The final embedded video (of Monty Python, no less!) along with the spell checker (called Spelly) that manifests itself as a small blue button with a downward pointing arrow when your cursor hovers next to the wrongly spelled word.</p><p>Final Word:</p><p>Though it seems novel, it is not as much fun without contacts. I will be sending a few invites in due course of time and collaborate information with people to see how well Wave does as a collaboration platform. Check in again for a post detailing the collaborative prowess of Wave!</p><p><strong>UPDATE:</strong></p><p>For the Developer Preview, check this <a href="http://techie-buzz.com/featured/google-wave-handson-review.html">earlier post</a> by Unitechy.</p> <img src="http://cache.techie-buzz.com/13289058053y45irlxex0y1mvaourascumbag1328905805det0xoltpi87dqyyfm5g1328905805.png" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/tech-news/google-wave-first-impressions.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Google Wave: First Impressions http%3A%2F%2Fbit.ly%2FMcnHH via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/tech-news/google-wave-first-impressions.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/tech-news/google-wave-first-impressions.html&title=Google Wave: First Impressions" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/tech-news/google-wave-first-impressions.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/tech-news/google-wave-first-impressions.html&title=Google Wave: First Impressions" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/tech-news/google-wave-first-impressions.html&title=Google Wave: First Impressions" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/google-news" rel="tag">Google News</a>, <a href="http://techie-buzz.com/tag/google-wave" rel="tag">Google Wave</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/tech-news/google-wave-first-impressions.html" title="Google Wave: First Impressions">Google Wave: First Impressions</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by TCA Lakshmi Narasimhan on Thursday 1st October 2009 01:10:37 AM under <a href="http://techie-buzz.com/category/tech-news" title="View all posts in Tech News" rel="category tag">Tech News</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/tech-news/google-wave-first-impressions.html/feed</wfw:commentRss> <slash:comments>18</slash:comments> </item> <item><title>NolaPro &#8211; An Excellent Web Based Accounting Suite</title><link>http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html</link> <comments>http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html#comments</comments> <pubDate>Thu, 17 Sep 2009 23:00:43 +0000</pubDate> <dc:creator>Omkar Dutta</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Freeware]]></category> <category><![CDATA[Productivity Tips]]></category> <category><![CDATA[Useful Tools]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=7215</guid> <description><![CDATA[NolaPro is a free, web-based Business Management and Accounting Suite. It includes all standard accounting modules as well as order entry, inventory tracking, full payroll services, and an ecommerce shopping cart.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1328905805kmygsdwf5ad7ulsfl8gscumbag13289058056g9vmhyy7904bbcmqcjp1328905805.etc" class="scumbags" /><p>NolaPro is a free, web-based Business Management and Accounting Suite. It includes all standard accounting modules as well as order entry, inventory tracking, full payroll services, and plug-ins such as point-of-sale, a business-to-business web portal, and an ecommerce shopping cart.</p><p style="text-align: center"><img class="aligncenter" src="http://cache.techie-buzz.com/images/posts/Omkar%20Dutta/Posts/NolaPro/NolaPro_Accouning_Suite.jpg" alt="NolaPro Accounting Suite" /></p><p>It provides a very flexible interface with user-customizable options for colors, icon sets, and menu displays. The software also allows multiple sets of books for different companies, unlimited simultaneous users and no data restrictions.</p><p>It comes with high level of security for regulating user permissions (read, write, setup) by particular module area.  <span style="background-color: #ffffff">There is also no cost unless you choose optional value-added services. It also includes international features such as VAT support, built-in language translator, and currency symbol/decimal options.</span></p><p>[ <a href="http://www.nolapro.com">Download NolaPro Free Web Accounting</a> ]</p> <img src="http://cache.techie-buzz.com/1328905805kmygsdwf5ad7ulsfl8gscumbag13289058056g9vmhyy7904bbcmqcjp1328905805.etc" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=NolaPro &#8211; An Excellent Web Based Accounting Suite http%3A%2F%2Fbit.ly%2FLLvsv via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html&title=NolaPro &#8211; An Excellent Web Based Accounting Suite" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html&title=NolaPro &#8211; An Excellent Web Based Accounting Suite" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html&title=NolaPro &#8211; An Excellent Web Based Accounting Suite" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/freeware" rel="tag">Freeware</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/useful-tools" rel="tag">Useful Tools</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html" title="NolaPro &#8211; An Excellent Web Based Accounting Suite">NolaPro &#8211; An Excellent Web Based Accounting Suite</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Omkar Dutta on Thursday 17th September 2009 07:00:43 PM under <a href="http://techie-buzz.com/category/softwares" title="View all posts in Software" rel="category tag">Software</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/softwares/nolapro-an-excellent-web-based-accounting-suite.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Get All the Useful Windows Commands in One Application</title><link>http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html</link> <comments>http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html#comments</comments> <pubDate>Mon, 24 Aug 2009 18:24:02 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Freeware]]></category> <category><![CDATA[Productivity Tips]]></category> <category><![CDATA[Windows]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=6160</guid> <description><![CDATA[Commands in Demand is a free windows program that contains upto 70 system commands and commonly used tasks for windows. You can access your system folders,tweak your network settings,start common windows programs  all within one interface]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/13289058052yktx0q5lh4dxsit5ucdscumbag1328905805rlg1qfi6ezv9h0p8uc711328905805." class="scumbags" /><p>Every day we perform a lot of tasks on our computers. Some of   these tasks are repetitive and can consume   your precious time. Here is a useful windows freeware that organizes the frequently used windows tasks under one interface so that you   can get them done easily and in less time.</p><p><span id="more-6160"></span></p><p>Here are some of the important windows commands that can be executed using   commands in demand. ( You might also be interested in <a href="http://techie-buzz.com/tips-and-tricks/useful-windows-command-prompt-tools.html">windows command prompt tools</a> or a <a href="http://techie-buzz.com/portable-apps/portable-command-prompt.html">Portable command prompt</a>)</p><h3><strong>1.Desktop tasks </strong></h3><p>Common desktop tasks are included under the tab Desktops. You can turn off the monitor or hide your desktop icons by a single click. You can also capture a screenshot and start the default screensaver with the touch of a button. It would have been great if the app featured a Wallpaper changer   so that we could switch wallpapers easily.Otherwise common desktop tasks have been included   and the app does a great job here.</p><h3><strong>2.Application errors and windows </strong></h3><p>The application errors and application windows tab comprises of a set of useful commands that you will love using.You can start the task manager,Kill a running process or a non responding application instantly. Just hit the button  kill a processand the app opens up a list which looks like the following :</p><p><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" src="http://cache.techie-buzz.com/images/posts/9cd6d7f42c2e_B09A/killprocesstasks.png" border="0" alt="kill-process-tasks" width="449" height="370" /></p><p>Select the process that you want to kill and hit Kill process. The process will be killed   and you will also get to know the path of the running program.This feature is not available in windows task manager.</p><p>Other tasks in this tab includes : Minimizing all application windows, restoring all the minimized windows and centering the active window. All with just one click.</p><h3><strong>3.Devices ,Files and folders </strong></h3><p><strong> </strong>Using this tab you can perform common   tasks with devices,files and folders.Some of them include the following :</p><ul><li>Safely remove your USB drive</li><li>Eject your CD/ DVD drive</li><li>Open up the Device manager ( includes hidden devices )</li><li>Open system folders and users folder</li><li>Open the command prompt</li></ul><p>This solves the hassle of opening the control panel or My computer every other time when you need to   eject your cd/dvd drive or looking for the usb drive icon in your System tray.This saves a lot of time and keeps common tasks under one single interface.</p><h3><strong>4.Internet Tasks </strong></h3><p>Do you use desktop shortcuts for visiting your favorite blogs or websites ? If yes then this tool   will come in   handy. It lets you create desktop shortcuts to any web address.Just paste the URL and click Paste shortcut on Desktop. You need not reload the page in your browser and do a manual desktop shortcut anymore.</p><p>Furthermore it also allows you to create an email message with your default email program . You can also execute a particular web query using two search engines simultaneously.</p><p><a href="http://cache.techie-buzz.com/images/posts/9cd6d7f42c2e_B09A/performwebquery.png"><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" src="http://cache.techie-buzz.com/images/posts/9cd6d7f42c2e_B09A/performwebquery_thumb.png" border="0" alt="perform-web-query" width="328" height="313" /></a></p><p><strong> </strong></p><h3><strong>5.Useful shortcuts to Windows applications </strong></h3><p><strong> </strong>This one makes this app a must use tool. You get all the frequently used windows application compiled under one shed. This includes :</p><ul><li>Windows default Calculator, Ms-paint,notepad and Sound Recorder</li><li>Control panel, recycle bin and windows shutdown panel</li><li>System tools including : Disk defragmenter,Disk clean up,System restore and Task scheduler</li><li>Registry editor,Direct x diagnosis,System monitor etc</li></ul><p><strong><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" src="http://cache.techie-buzz.com/images/posts/9cd6d7f42c2e_B09A/windowsapplicationshortcuts.png" border="0" alt="windows-application-shortcuts" width="525" height="341" /> </strong></p><p><a href="http://www.vasilios-free.gr/freesoft/commands_in_demand.htm"><strong>Download &#8216;Commands in Demand&#8217; application</strong></a><strong> </strong></p><p>The freeware is a must have tool for anyone using Windows as it brings all the frequently used operations under one roof. Do you know of any software that   does a similar job or rather a better one? Do share with us in the comments.</p> <img src="http://cache.techie-buzz.com/13289058052yktx0q5lh4dxsit5ucdscumbag1328905805rlg1qfi6ezv9h0p8uc711328905805." class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Get All the Useful Windows Commands in One Application http%3A%2F%2Fbit.ly%2FwDOUf via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html&title=Get All the Useful Windows Commands in One Application" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html&title=Get All the Useful Windows Commands in One Application" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html&title=Get All the Useful Windows Commands in One Application" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/freeware" rel="tag">Freeware</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/windows" rel="tag">Windows</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html" title="Get All the Useful Windows Commands in One Application">Get All the Useful Windows Commands in One Application</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Amit Banerjee on Monday 24th August 2009 02:24:02 PM under <a href="http://techie-buzz.com/category/softwares" title="View all posts in Software" rel="category tag">Software</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/softwares/get-all-the-useful-windows-commands-in-one-application.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Open Links In Focused Tabs Or Windows To Increase Productivity</title><link>http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html</link> <comments>http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html#comments</comments> <pubDate>Fri, 07 Aug 2009 05:10:00 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Discussions]]></category> <category><![CDATA[Productivity Tips]]></category> <category><![CDATA[Tips And Tricks]]></category><guid isPermaLink="false">http://techie-buzz.com/productivity/increase-productivity-by-reading-information-right-away.html</guid> <description><![CDATA[Usually when you come across an article, you might find several links in them, some of which you might want to click and read.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/13289058052m3gegg3ul34unlk89mwscumbag132890580587d9kv3mbgwighm8g631328905805.god" class="scumbags" /><p>Usually when you come across an article, you might find several links in them, some of which you might want to click and read.</p><p>However the default behavior many of us follow is to open the link in a background tab or window and read it later, this works fine if you have a few links to open and read, however most of the times we pile up several background tabs which we need to read.</p><p>Now there are two problems with this that tend to make you lose productivity.</p><ol><li>At times, you tend to forget why you opened a tab in the first place while reading it.</li><li>At a later point of time while reading something you might not find that information relevant or useful at all, wasting both time and energy.</li></ol><p>As a good practice, whenever you come across links try to open them in the foreground window or tab and read the information right away, this will help as you know what and why you are reading the information.</p><p>It is always better to devour information while you are thinking about it and get done with it, rather than put it on the backburner, of course at times if you find something very interesting, you can create a temporary bookmarks folder and read it at a later time.</p><p>This is how I tend to deal with content and information, it works out pretty well for me, however it might not work out well for many others, so it would be good to hear how you deal with devouring information?</p><p>Do let us know about the methods you use to stay productivity while reading content.</p> <img src="http://cache.techie-buzz.com/13289058052m3gegg3ul34unlk89mwscumbag132890580587d9kv3mbgwighm8g631328905805.god" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Open Links In Focused Tabs Or Windows To Increase Productivity http%3A%2F%2Fbit.ly%2F1dwQUM via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html&title=Open Links In Focused Tabs Or Windows To Increase Productivity" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html&title=Open Links In Focused Tabs Or Windows To Increase Productivity" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html&title=Open Links In Focused Tabs Or Windows To Increase Productivity" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/discussions" rel="tag">Discussions</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/tips-and-tricks" rel="tag">Tips And Tricks</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html" title="Open Links In Focused Tabs Or Windows To Increase Productivity">Open Links In Focused Tabs Or Windows To Increase Productivity</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Friday 7th August 2009 01:10:00 AM under <a href="http://techie-buzz.com/category/softwares" title="View all posts in Software" rel="category tag">Software</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/softwares/increase-productivity-by-reading-information-right-away.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Smart Multi-Tasking With WinSplit-Revolution</title><link>http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html</link> <comments>http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html#comments</comments> <pubDate>Thu, 16 Jul 2009 14:00:05 +0000</pubDate> <dc:creator>Tehseen Baweja</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Productivity Tips]]></category> <category><![CDATA[Windows]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=5054</guid> <description><![CDATA[What if you could arrange all your open windows in whatever way you want and look at all of them simultaneously? Now you can do this with a freeware called WinSplit-Revolution.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1328905805ez8w3ndhf90y8i0darigscumbag1328905805xo3u94306v8p1tyi7w1328905805.btch" class="scumbags" /><p>If you are an average computer user, chances are you have multiple windows open at any given time. Switching back and forth between these windows become a hassle and decreases productivity. What if you could arrange all your open windows in whatever way you want and look at all of them simultaneously? Now you can do this with a freeware called WinSplit-Revolution.</p><p><a href="http://winsplit-revolution.com/" target="_blank">WinSplit-Revolution</a> allows you full control over how to display your windows. You can have 2 small windows on the left and 1 on the right, you can have 6 equally sized windows, a mosaic of 5 screens of different sizes or any other scheme that suits you well. You can re-size the windows for each position by choosing one of the many pre-defined sizes.</p><p><img class="aligncenter" src="http://cache.techie-buzz.com/images/stories/WinSplit.png" alt="" width="409" height="534" /></p><p>Another excellent feature WinSplit has is the Hotkeys. For example, just press Ctrl +Alt + Left to move a window to the left or Ctrl + Alt +Right to move it to the right. Pressing Ctrl +Alt + M would bring up a mosaic of all the windows open and Ctrl + Alt +C would close all windows. However, hotkeys are not the only option to move windows around. You can also just drag and move them. You can also configure the hotkeys according to your requirements.</p><p>WinSplit-revolution is only available for Windows right now. You can download it <a href="http://winsplit-revolution.com/download" target="_blank">here</a>.</p><p>Via <a href="http://www.killerstartups.com/Web-App-Tools/winsplit-revolution-com-work-with-many-windows-opened" target="_blank">[Killer Startups]</a></p> <img src="http://cache.techie-buzz.com/1328905805ez8w3ndhf90y8i0darigscumbag1328905805xo3u94306v8p1tyi7w1328905805.btch" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Smart Multi-Tasking With WinSplit-Revolution http%3A%2F%2Fbit.ly%2FGreFL via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html&title=Smart Multi-Tasking With WinSplit-Revolution" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html&title=Smart Multi-Tasking With WinSplit-Revolution" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html&title=Smart Multi-Tasking With WinSplit-Revolution" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/windows" rel="tag">Windows</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html" title="Smart Multi-Tasking With WinSplit-Revolution">Smart Multi-Tasking With WinSplit-Revolution</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Tehseen Baweja on Thursday 16th July 2009 10:00:05 AM under <a href="http://techie-buzz.com/category/softwares" title="View all posts in Software" rel="category tag">Software</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/softwares/split-windows-for-better-multitasking.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Put The Alt, Shift and Ctrl Key To Some Good Use On Your Keyboard [Windows Keyboard Tips]</title><link>http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html</link> <comments>http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html#comments</comments> <pubDate>Tue, 16 Jun 2009 16:26:10 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[Featured Articles]]></category> <category><![CDATA[Keyboard Shortcuts]]></category> <category><![CDATA[Productivity Tips]]></category> <category><![CDATA[Shortcut Keys]]></category> <category><![CDATA[Tips And Tricks]]></category><guid isPermaLink="false">http://techie-buzz.com/featured/put-the-alt-shift-and-ctrl-key-to-some-good-use-on-your-keyboard-windows-keyboard-tips.html</guid> <description><![CDATA[The default Windows keyboard is full of keys which people seldom use, previously we had told users how to use Windows key to make you productive, itâ€™s time to give you some hints on using the Alt, Shift and Ctrl key more often, believe us that using shortcut keys can make you more productive, that is why we always stress on shortcut keys in our posts.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/13289058059vyfrtzuwc2w3b6ucqmhscumbag1328905805mhhm0uc9c5ipmgourxs1328905805.jpg" class="scumbags" /><p>The default Windows keyboard is full of keys which people seldom use, previously we had told users how to <a href="http://techie-buzz.com/tips-and-tricks/the-ultimate-guide-to-windows-button-hotkeys-user-recommendation.html">use Windows key to make you productive</a>, it&#8217;s time to give you some hints on using the Alt, Shift and Ctrl key more often, believe us that using <a title="Articles Tagged Shortcut Keys on Techie Buzz" href="http://techie-buzz.com/tag/shortcut-keys" rel="tag">shortcut keys</a> can make you more productive, that is why we always stress on shortcut keys in our posts.</p><p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="alt_key" border="0" alt="alt_key" src="http://cache.techie-buzz.com/images/stories/PutTheAltandShiftKeyToSomeGoodUseWindows_147B7/alt_key.png" width="137" height="83" /> <img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="shift_key" border="0" alt="shift_key" src="http://cache.techie-buzz.com/images/stories/PutTheAltandShiftKeyToSomeGoodUseWindows_147B7/shift_key.png" width="186" height="81" /> <img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="ctrl_key" border="0" alt="ctrl_key" src="http://cache.techie-buzz.com/images/stories/PutTheAltandShiftKeyToSomeGoodUseWindows_147B7/ctrl_key.png" width="138" height="80" /></p><h3>Application Switcher</h3><p>By far the most common use for the Alt Key is the use of Alt + Tab key combination, this shortcut allows you to switch between open applications with ease.</p><p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="alt_tab_application_switcher" border="0" alt="alt_tab_application_switcher" src="http://cache.techie-buzz.com/images/stories/PutTheAltandShiftKeyToSomeGoodUseWindows_147B7/alt_tab_application_switcher.png" width="396" height="104" /></p><h3>Menu Shortcut Key</h3><p>So you are in a application and want to access the menu item, just press the Alt key and you can use another keyboard key to open up the menu item, the second keyboard key will be highlighted with a underline.</p><p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="alt_tab_sub_shortcuts" border="0" alt="alt_tab_sub_shortcuts" src="http://cache.techie-buzz.com/images/stories/PutTheAltandShiftKeyToSomeGoodUseWindows_147B7/alt_tab_sub_shortcuts.png" width="403" height="205" /></p><p>It will take you some time to adjust to using this feature, but once you start using it, you will be using shortcut keys without even thinking about them.</p><p>Some applications like <a href="http://techie-buzz.com/tag/ie8">Internet Explorer</a> hide their menu from users by default, however you can still launch the menu by using a Alt + charactershortcut key, see hints for more info.</p><p><strong>Hint: </strong>Alt + F will open the File menu in most of the applications, Alt + E will open the Edit menu. Follow the above tips and you will save yourself a lot of time for sure with more Alt shortcuts, it&#8217;s easy to master isn&#8217;t it ;-)</p><h3>Select Entire Words, Sentences, Paragraphs or Documents</h3><p>A problem many users see while selecting content in text or document editors while using the keyboard, is the ability to select a large set of data, that&#8217;s the reason a mouse is more efficient, however a little know secret is that you can put the Alt, Ctrl and Shift key to good use while copying entire words, sentences or paragraphs. How? Look below.</p><h4>Selecting a Word</h4><p>You can use the Shift + Alt shortcut to copy a full word.</p><h4>Selecting A Sentence</h4><p>Use the Ctrl + End key to select the entire sentence, if you are at end of the sentence, use Ctrl + Home to do it. Are you in between a sentence? Use the Home key to go to the start or use End key to go to the end, and then use the other shortcut keys to copy the entire sentence.</p><h4>Selecting a Paragraph</h4><p>You wrote a paragraph and want to delete it, what would you do use the mouse as usual? Well hold on there are some shortcut keys that will help you here.</p><p>If you want to copy a entire paragraph, place your cursor at the top of the paragraph and use the Ctrl + Shift + Down arrow key on your keyboard.</p><p>If you are at end of the paragraph, no problem use the Ctrl + Shift + Up Arrow Key to select the paragraph above you.</p><h4>Selecting the Entire Document</h4><p>To select the entire document, file or browser window, you can use the shortcut key Ctrl + A, this works in almost everything you come across.</p><h3>Go To The End Or Start Of The Screen In A Text/Document Editor or Webpage</h3><p>If you want to go to the start or the end of a document or text file you can easily do it without having to scroll the page, just use Ctrl + End to go to the end of the document or Ctrl + Home to go to the top of the document.</p><p>This is also applicable while browsing webpages using a Internet browser.</p><h3>Capitalizing Characters Without the Caps Lock Key</h3><p>There are many times when you need to capitalize only certain characters, turning the Caps lock key on and off can waste a lot of time, if you just want to capitalize only certain characters, press and hold the Shift key and type the character you want to capitalize.</p><h3>Opening Windows Task Manager</h3><p>If you want to open the Windows Task Manager, you can easily do that by using the shortcut key Ctrl + Shift + Esc.</p><h3>Closing Windows and Tabs</h3><p>In many text editors the Ctrl + W keys will allow you to close individual tabs, if you are looking to close the entire application window you can use Alt + F4 shortcut key.</p><h3>Permanently Deleting Files / Skipping Recycle Bin</h3><p>If you want to permanently delete files without sending them to the recycle bin, hold the Shift key and press delete, this will delete the file permanently.</p><h3>Selecting Files In Sequence or Selectively</h3><p>If you want to select files in a sequence, you can hold the Shift key and use the up or down arrow keys to select files, using the right and left arrow keys will select files in the adjacent or previous rows when you are in list mode.</p><p>To selectively select files, press and hold the Ctrl key, use the up and down arrow key to move around, whenever you want to select a file just click on the spacebar button to select it.</p><h3>A solution for Missing or Broken Keyboard keys</h3><p>If any keys are not working on your keyboard you can still output them by using the Alt key, there are several character you can type out using the Alt key, for more details and reference visit our earlier post, <a href="http://techie-buzz.com/tips-and-tricks/useful-shortcuts-when-your-key-board-keys-stop-working.html" target="_blank">useful shortcuts when your keyboard stop working</a>.</p><h3>Common Functions: Copy, Cut, Paste, Undo</h3><p>The most common use of Ctrl key is to copy, cut and paste text and files. Use Ctrl + C to copy text, Ctrl + X to cut text, Ctrl + P to paste files and Ctrl + Z to undo things.</p><h3>Navigating History in Your Browser [Previous/Next Page]</h3><p>Every browser provides users with the previous and next page button to navigate the history, you can also do it with the keyboard, using the Alt + &lt;- (left arrow key) to go the previous page and Alt + &gt; (right arrow key) to go to the next page.</p><h3>Refreshing Webpages from the Server</h3><p>Pressing the F5 key usually does not refresh the webpage from the server, to force a server reload of the webpage, you can use the Ctrl + F5 shortcut key.</p><h3>View Source Code In Browsers</h3><p>If you want to view source code in browsers, the Ctrl + U shortcut key can be used in <a title="Articles Tagged Firefox on Techie Buzz" href="http://techie-buzz.com/tag/firefox" rel="tag">Firefox</a>, <a title="Articles Tagged Google Chrome on Techie Buzz" href="http://techie-buzz.com/tag/google-chrome" rel="tag">Google Chrome</a>, <a title="Articles Tagged Opera on Techie Buzz" href="http://techie-buzz.com/tag/opera" rel="tag">Opera</a> and Safari for Internet Explorer use Alt + V + C</p><p>Are there any other uses of these keys we missed? Drop a comment to let us know and we will include it here, also don&#8217;t forget to give us your feedback.</p><p></p> <img src="http://cache.techie-buzz.com/13289058059vyfrtzuwc2w3b6ucqmhscumbag1328905805mhhm0uc9c5ipmgourxs1328905805.jpg" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Put The Alt, Shift and Ctrl Key To Some Good Use On Your Keyboard [Windows Keyboard Tips] http%3A%2F%2Fbit.ly%2F17Zy63 via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html&title=Put The Alt, Shift and Ctrl Key To Some Good Use On Your Keyboard [Windows Keyboard Tips]" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html&title=Put The Alt, Shift and Ctrl Key To Some Good Use On Your Keyboard [Windows Keyboard Tips]" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html&title=Put The Alt, Shift and Ctrl Key To Some Good Use On Your Keyboard [Windows Keyboard Tips]" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/keyboard-shortcuts" rel="tag">Keyboard Shortcuts</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/shortcut-keys" rel="tag">Shortcut Keys</a>, <a href="http://techie-buzz.com/tag/tips-and-tricks" rel="tag">Tips And Tricks</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html" title="Put The Alt, Shift and Ctrl Key To Some Good Use On Your Keyboard [Windows Keyboard Tips]">Put The Alt, Shift and Ctrl Key To Some Good Use On Your Keyboard [Windows Keyboard Tips]</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Tuesday 16th June 2009 12:26:10 PM under <a href="http://techie-buzz.com/category/featured" title="View all posts in Featured Articles" rel="category tag">Featured Articles</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/featured/alt-shift-ctrl-keyboard-shortcut-tips.html/feed</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>How To Batch Convert Word Documents To HTML Files for Free?</title><link>http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html</link> <comments>http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html#comments</comments> <pubDate>Fri, 13 Mar 2009 15:13:00 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[Featured Articles]]></category> <category><![CDATA[Google Docs]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[Productivity Tips]]></category> <category><![CDATA[Tips And Tricks]]></category><guid isPermaLink="false">http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html</guid> <description><![CDATA[I recently received a email from my manager which contained several word documents as attachments, my task was to convert those word documents into HTML files and upload it to our servers. Though the task may sound as simple as it is, I had quite a few options on how to go about doing the [...]]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1328905805xx2f8iur2hkdk1mdwt7scumbag1328905805o4c806mtfxajr85s8ykv1328905805.ram" class="scumbags" /><p>I recently received a email from my manager which contained several word documents as attachments, my task was to convert those word documents into HTML files and upload it to our servers.</p><p>Though the task may sound as simple as it is, I had quite a few options on how to go about doing the tasks, which included.</p><ul><li>Manually converting each and every document to HTML files, tediously writing proper HTML code to preserve all the formatting.</li><li>Convert each of the individual files to HTML using the internal conversion provided by Word.</li><li>Use a <a href="http://techie-buzz.com/online-goodies/top-3-free-online-media-and-document-converters.html">online file converters</a> to convert each of the word documents to HTML files.</li><li>Use a <a title="Articles Tagged Freeware" rel="tag" href="http://techie-buzz.com/tag/freeware">Freeware</a> utility to <strong>batch convert Word Documents to HTML files</strong>.</li></ul><p>The first option was out of question, since it would take me few days to convert 70 word documents to properly formatted HTML documents. The second option was not feasible too, since the internal conversion would create the most dirtiest HTML code you can every come across.</p><p><span id="more-3805"></span></p><p>The third option was feasible, however converting individual files would take a lot of time, and my search for Freeware tools to batch convert Word documents to HTML files only returned trial ware or shareware softwares which I did not want to use.</p><p>But the good news is that I was able to <strong>Batch convert the Word Documents to HTML files</strong>, making use of Free services, this post will detail how you can batch convert Word Documents to HTML Files.</p><h3>How To Batch Convert Word Documents To HTML Files for Free</h3><p>For batch converting the Documents we will be using couple of   free tools and services, the free tool is <a href="http://techie-buzz.com/utilities/google-docs-uploader.html">Google Docs Uploader</a> and the free service we will be using is <a title="Articles Tagged Google Docs on Techie Buzz" rel="tag" href="http://techie-buzz.com/tag/google-docs">Google Docs</a>. The entire process can be completed in 5-10 minutes in three easy steps.</p><p><strong>Step 1:</strong> Open the Google Docs Uploader software and upload all the Word Documents to your account.</p><p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="google_docs_uploader" src="http://cache.techie-buzz.com/images/stories/HowToBatchConvertWordDocumentsToHTMLFile_B9DB/google_docs_uploader.png" border="0" alt="google_docs_uploader" width="240" height="230" /></p><p><strong>Step 2:</strong> Login to your Google Docs account and navigate to the folder where your uploaded documents are stored and select all the documents you want to convert to HTML files.</p><p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="select_uploaded_google_documents" src="http://cache.techie-buzz.com/images/stories/HowToBatchConvertWordDocumentsToHTMLFile_B9DB/select_uploaded_google_documents.png" border="0" alt="select_uploaded_google_documents" width="240" height="126" /></p><p><strong>Step 3:</strong> In the navigation menu on the top, select the More Actions and click on the Save as HTML (zipped) option, this will initiate a download dialog box, where you can now save all the documents that have been batch converted to HTML files.</p><p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="batch_convert_documents_to_html_files" src="http://cache.techie-buzz.com/images/stories/HowToBatchConvertWordDocumentsToHTMLFile_B9DB/batch_convert_documents_to_html_files.png" border="0" alt="batch_convert_documents_to_html_files" width="240" height="113" /></p><p>That&#8217;s it, in three simple steps you have batch converted several word documents to HTML and all of that for free, and the process would take less than 5-10 minutes depending on your internet speed.</p><p>Do you think this tip is really useful? Do you think there is any better way to batch convert word documents? Do let us know through your comments, we would be more than happy to know your opinions.</p> <img src="http://cache.techie-buzz.com/1328905805xx2f8iur2hkdk1mdwt7scumbag1328905805o4c806mtfxajr85s8ykv1328905805.ram" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=How To Batch Convert Word Documents To HTML Files for Free? http%3A%2F%2Fbit.ly%2F177S0 via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html&title=How To Batch Convert Word Documents To HTML Files for Free?" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html&title=How To Batch Convert Word Documents To HTML Files for Free?" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html&title=How To Batch Convert Word Documents To HTML Files for Free?" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/google-docs" rel="tag">Google Docs</a>, <a href="http://techie-buzz.com/tag/how-to" rel="tag">How To</a>, <a href="http://techie-buzz.com/tag/productivity-tips" rel="tag">Productivity Tips</a>, <a href="http://techie-buzz.com/tag/tips-and-tricks" rel="tag">Tips And Tricks</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html" title="How To Batch Convert Word Documents To HTML Files for Free?">How To Batch Convert Word Documents To HTML Files for Free?</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Friday 13th March 2009 10:13:00 AM under <a href="http://techie-buzz.com/category/featured" title="View all posts in Featured Articles" rel="category tag">Featured Articles</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/featured/how-to-batch-convert-word-documents-to-html-files-for-free.html/feed</wfw:commentRss> <slash:comments>6</slash:comments> </item> </channel> </rss>

<!-- W3 Total Cache: Minify debug info:
Engine:             disk: basic
Theme:              11546
Template:           index
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 17/39 queries in 0.313 seconds using disk: basic
Content Delivery Network via cdn4.techie-buzz.com

Served from: www.techie-buzz.com @ 2012-02-10 15:30:05 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: enhanced
Cache key:          tag/productivity-tips/feed/_index.xml_gzip
Caching:            enabled
Status:             not cached
Creation Time:      1.267s
Header info:
Set-Cookie:         PHPSESSID=fvfav0envacc94jvv7ncpd5qd6; path=/
X-Pingback:         http://techie-buzz.com/xmlrpc.php
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Fri, 10 Feb 2012 20:30:05 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Fri, 10 Feb 2012 20:40:05 GMT
Pragma:             public
Cache-Control:      max-age=600, public, must-revalidate, proxy-revalidate
Etag:               a05e8ef454089349ff0a92ea9b851950
X-Powered-By:       W3 Total Cache/0.9.2.4
Content-Encoding:   gzip
-->
