<?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>BabloTech &#187; cool tips</title>
	<atom:link href="http://www.bablotech.com/tag/cool-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bablotech.com</link>
	<description>Technology, Tutorials, Stuff, Tech News.</description>
	<lastBuildDate>Sun, 18 Dec 2011 16:04:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Your PC can talk with notepad.</title>
		<link>http://www.bablotech.com/2009/04/17/your-pc-can-talk-with-notepad/</link>
		<comments>http://www.bablotech.com/2009/04/17/your-pc-can-talk-with-notepad/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 20:51:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips ‘n’ Tricks]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[cool tips]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Vbscript]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.bablotech.com/?p=1842</guid>
		<description><![CDATA[Have you ever used talk it software that can read the text written by you.Now you don&#8217;t need to use any software  only 3 lines of VB code can make your PC talk.You will just need to copy and paste the code in notepad. Now let me share the method of how you can make [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever used talk it software that can read the text written by you.Now you don&#8217;t need to use any software  only 3 lines of VB code can make your PC talk.You will just need to copy and paste the code in notepad.</p>
<p>Now let me share the method of how you can make your PC talk by only using notepad.</p>
<p><span id="more-1842"></span></p>
<p>Click on the following text file link</p>
<p><a href="http://www.bablotech.com/talk.txt" target="_blank">http://www.bablotech.com/talk.txt</a></p>
<p>Copy and paste the code in notepad.</p>
<p>Save the file with a (*.vbs) extension then you will have a VBScript file just double click on that file and it will prompt you for text.Enter the text you wish to hear from your computer and press OK.</p>
<p>You will hear the text your wrote in the dialog box.This is really cool i loved it and hope you will love it too.</p>
<p><strong>Note: </strong>I have tested it in Windows XP and Windows Vista.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bablotech.com/2009/04/17/your-pc-can-talk-with-notepad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to view hidden passwords without using any software.</title>
		<link>http://www.bablotech.com/2009/04/16/how-to-view-hidden-passwords-without-using-any-software/</link>
		<comments>http://www.bablotech.com/2009/04/16/how-to-view-hidden-passwords-without-using-any-software/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 21:05:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips ‘n’ Tricks]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[cool tips]]></category>
		<category><![CDATA[hidden password show]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.bablotech.com/?p=1816</guid>
		<description><![CDATA[You must have seen and used softwares which are capable to show all the passwords hidden behind Asterisks on a webpage but downloading,installing and using a software is always boring and time taking job so finding an another way will be beneficial. Recently i came across a cool javascript that can show all the passwords [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bablotech.com/wp-content/uploads/2009/04/hidden-password.jpg"><img class="alignnone size-medium wp-image-1831" title="hidden-password" src="http://www.bablotech.com/wp-content/uploads/2009/04/hidden-password-300x214.jpg" alt="" width="300" height="214" /></a></p>
<p>You must have seen and used softwares which are capable to show all the passwords hidden behind Asterisks on a webpage but downloading,installing and using a software is always boring and time taking job so finding an another way will be beneficial.</p>
<p>Recently i came across a cool javascript that can show all the passwords hidden behind Asterisks what you need to do is to just simply copy and paste the javascript to the address bar and the hidden password will be shown to you.Isn&#8217;t this a cool and easy way to show and view hidden password rather than using a software.</p>
<p><span id="more-1816"></span></p>
<p>First of all open up the webpage on which you wanna show the hidden passwords and then Just copy and paste the following JavaScript into the address bar of the browser and you are done.</p>
<blockquote><p>javascript:(function(){var%20s,F,j,f,i;%20s%20=%20%22%22;<br />
%20F%20=%20document.forms;%20for(j=0;%20j&lt;F.length;%20++j)<br />
%20{%20f%20=%20F[j];%20for%20(i=0;%20i&lt;f.length;%20++i)<br />
%20{%20if%20(f[i].type.toLowerCase()%20==%20%22password%22)<br />
%20s%20+=%20f[i].value%20+%20%22\n%22;%20}%20}%20if<br />
%20(s)%20alert(%22Passwords%20in%20forms%20on%20this<br />
%20page:\n\n%22%20+%20s);%20else%20alert(%22There%20are<br />
%20no%20passwords%20in%20forms%20on%20this<br />
%20page.%22);})();</p></blockquote>
<p>After copying and pasting the JavaScript given above press the enter key and hidden passwords will be shown to you.</p>
<p>Following is the screenshot of hidden password that is shown the JavaScript given above.</p>
<p><a href="http://www.bablotech.com/wp-content/uploads/2009/04/hidden-password-shown.jpg"><img class="alignnone size-full wp-image-1830" title="hidden-password-shown" src="http://www.bablotech.com/wp-content/uploads/2009/04/hidden-password-shown.jpg" alt="" width="500" height="346" /></a></p>
<p><strong>Note :</strong> I have tested this javascript in IE,Firefox and Opera and it is working perfectly.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.bablotech.com/2009/04/16/how-to-view-hidden-passwords-without-using-any-software/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

