<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Tutorial: Create a Beautiful Password Strength Meter</title>
	<atom:link href="http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Tue, 18 Jun 2013 16:23:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Al</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-77007</link>
		<dc:creator>Al</dc:creator>
		<pubDate>Tue, 25 Dec 2012 16:04:32 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-77007</guid>
		<description><![CDATA[Really great tutorial.  Can&#039;t seem to locate the PSD.  Thanks!!!]]></description>
		<content:encoded><![CDATA[<p>Really great tutorial.  Can't seem to locate the PSD.  Thanks!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ducsu</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-68555</link>
		<dc:creator>ducsu</dc:creator>
		<pubDate>Mon, 29 Oct 2012 02:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-68555</guid>
		<description><![CDATA[I managed to get it working on my site. I noticed when loading on a smartphone(iphone), the arrow &amp; button is not in the center of the meter, It views fine on a pc. Anyone knows how I can fix this?]]></description>
		<content:encoded><![CDATA[<p>I managed to get it working on my site. I noticed when loading on a smartphone(iphone), the arrow &amp; button is not in the center of the meter, It views fine on a pc. Anyone knows how I can fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ducsu</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-63997</link>
		<dc:creator>ducsu</dc:creator>
		<pubDate>Tue, 23 Oct 2012 13:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-63997</guid>
		<description><![CDATA[I am trying to incorporate this sign up form into a password script. However, instead of using an email address, I am using all letters only, excluding special characters. Thus, I need to change the email validation to check for any special characters. Can someone show me how to write this up in the .js file?]]></description>
		<content:encoded><![CDATA[<p>I am trying to incorporate this sign up form into a password script. However, instead of using an email address, I am using all letters only, excluding special characters. Thus, I need to change the email validation to check for any special characters. Can someone show me how to write this up in the .js file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gmornob</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-41554</link>
		<dc:creator>gmornob</dc:creator>
		<pubDate>Sun, 16 Sep 2012 17:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-41554</guid>
		<description><![CDATA[oh that&#039;s great tutorial]]></description>
		<content:encoded><![CDATA[<p>oh that's great tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Palmer</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-41405</link>
		<dc:creator>Dan Palmer</dc:creator>
		<pubDate>Tue, 04 Sep 2012 13:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-41405</guid>
		<description><![CDATA[Hi xTG,

Just thought I&#039;d try and explain briefly:

Complexify works out the mathematical complexity of breaking the password. It actually does the real sums to work out how difficult that process would be based on the different range of characters you&#039;ve used, and the length.

It turns out, when you work it out, that the length of the password contributes far more to making it secure than adding special characters. For example, if you use a 10 character password with lowercase letters and numbers, the complexity is (26+10)^10 which is 3.6*10^15. However, if you use just lower case letters but have 12 characters, the complexity is 9.5*10^16, which is an order of magnitude higher!

While it might seem a little counter-intuitive because of how people are educated about password security, I can assure you that it is mathematically sound.]]></description>
		<content:encoded><![CDATA[<p>Hi xTG,</p>
<p>Just thought I'd try and explain briefly:</p>
<p>Complexify works out the mathematical complexity of breaking the password. It actually does the real sums to work out how difficult that process would be based on the different range of characters you've used, and the length.</p>
<p>It turns out, when you work it out, that the length of the password contributes far more to making it secure than adding special characters. For example, if you use a 10 character password with lowercase letters and numbers, the complexity is (26+10)^10 which is 3.6*10^15. However, if you use just lower case letters but have 12 characters, the complexity is 9.5*10^16, which is an order of magnitude higher!</p>
<p>While it might seem a little counter-intuitive because of how people are educated about password security, I can assure you that it is mathematically sound.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sohaan</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-41379</link>
		<dc:creator>sohaan</dc:creator>
		<pubDate>Sun, 02 Sep 2012 08:17:12 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-41379</guid>
		<description><![CDATA[Great job Martin i really love this plugin but 1 thing which i think would make this plugin really interesting would be to move the needle all the way to end when password field gets the focus  like we see in cars &amp; bikes when we key in the ignition  the speedometer pointer goes all the way to end please tell me how can i get this effect 
thanks.]]></description>
		<content:encoded><![CDATA[<p>Great job Martin i really love this plugin but 1 thing which i think would make this plugin really interesting would be to move the needle all the way to end when password field gets the focus  like we see in cars &amp; bikes when we key in the ignition  the speedometer pointer goes all the way to end please tell me how can i get this effect<br />
thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-41214</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Wed, 22 Aug 2012 09:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-41214</guid>
		<description><![CDATA[Make sure you guys add the autocomplete=&quot;off&quot; parameter to the form, or the yellow Chrome box will mess the style up!]]></description>
		<content:encoded><![CDATA[<p>Make sure you guys add the autocomplete=&quot;off&quot; parameter to the form, or the yellow Chrome box will mess the style up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andreas</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-40687</link>
		<dc:creator>Andreas</dc:creator>
		<pubDate>Wed, 25 Jul 2012 15:29:03 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-40687</guid>
		<description><![CDATA[Very nice, thank you!]]></description>
		<content:encoded><![CDATA[<p>Very nice, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sitebee</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-40585</link>
		<dc:creator>Sitebee</dc:creator>
		<pubDate>Sat, 21 Jul 2012 20:45:44 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-40585</guid>
		<description><![CDATA[Oh wow, that`s beautiful. great work indeed.]]></description>
		<content:encoded><![CDATA[<p>Oh wow, that`s beautiful. great work indeed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dadada</title>
		<link>http://tutorialzine.com/2012/06/beautiful-password-strength-indicator/#comment-40579</link>
		<dc:creator>dadada</dc:creator>
		<pubDate>Sat, 21 Jul 2012 13:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=2216#comment-40579</guid>
		<description><![CDATA[Cool ,very nice design....]]></description>
		<content:encoded><![CDATA[<p>Cool ,very nice design....</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 283/288 objects using apc
Content Delivery Network via cdn.tutorialzine.com

 Served from: tutorialzine.com @ 2013-06-19 00:13:07 by W3 Total Cache -->