<?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"
	>
<channel>
	<title>Comments on: PHP Friendly Password Generator</title>
	<atom:link href="http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/</link>
	<description>1111111 * 1111111 = 1234567654321</description>
	<pubDate>Mon, 06 Oct 2008 14:00:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: James Morris</title>
		<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-1230</link>
		<dc:creator>James Morris</dc:creator>
		<pubDate>Fri, 23 May 2008 14:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-1230</guid>
		<description>Thanks, used this code for a project i'm working on.</description>
		<content:encoded><![CDATA[<p>Thanks, used this code for a project i&#8217;m working on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DamionKutaeff</title>
		<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-1087</link>
		<dc:creator>DamionKutaeff</dc:creator>
		<pubDate>Sat, 22 Mar 2008 20:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-1087</guid>
		<description>Hello everybody, my name is Damion, and I'm glad to join your conmunity, 
and wish to assit as far as possible.</description>
		<content:encoded><![CDATA[<p>Hello everybody, my name is Damion, and I&#8217;m glad to join your conmunity,<br />
and wish to assit as far as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: duncanborg</title>
		<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-325</link>
		<dc:creator>duncanborg</dc:creator>
		<pubDate>Fri, 26 Oct 2007 13:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-325</guid>
		<description>Hi,

Was looking for a way to make these easy-to-remember passwords. Thanks for the tip about alternating vowels and consonants.

As I just need an 8 character password with no numbers (and am not concerned about any "fuc"s or "sex"es which might arise, I developed the following one-line generator.

Generation of the initial string using crypt() and uniqueid() is perhaps not the best way in the world, but works fine for me. Just posting this here in case it helps anybody who does not necessarily want a whole function.

echo substr(ereg_replace("([aeiou])[aeiou] ", "\\1", ereg_replace("([^aeiou])[^aeiou] ", "\\1", ereg_replace("[^[:alpha:]]", "", strtolower(crypt(uniqid()).crypt(uniqid()).crypt(uniqid()))))),0,8)."\n";

Amazingly, this mess actually works great! You can change the "8" at the end for different length passwords as required, and adding numbers could also be jigged onto this line of code.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Was looking for a way to make these easy-to-remember passwords. Thanks for the tip about alternating vowels and consonants.</p>
<p>As I just need an 8 character password with no numbers (and am not concerned about any &#8220;fuc&#8221;s or &#8220;sex&#8221;es which might arise, I developed the following one-line generator.</p>
<p>Generation of the initial string using crypt() and uniqueid() is perhaps not the best way in the world, but works fine for me. Just posting this here in case it helps anybody who does not necessarily want a whole function.</p>
<p>echo substr(ereg_replace(&#8221;([aeiou])[aeiou] &#8220;, &#8220;\\1&#8243;, ereg_replace(&#8221;([^aeiou])[^aeiou] &#8220;, &#8220;\\1&#8243;, ereg_replace(&#8221;[^[:alpha:]]&#8221;, &#8220;&#8221;, strtolower(crypt(uniqid()).crypt(uniqid()).crypt(uniqid()))))),0,8).&#8221;\n&#8221;;</p>
<p>Amazingly, this mess actually works great! You can change the &#8220;8&#8243; at the end for different length passwords as required, and adding numbers could also be jigged onto this line of code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alix</title>
		<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-147</link>
		<dc:creator>Alix</dc:creator>
		<pubDate>Wed, 11 Jul 2007 18:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-147</guid>
		<description>Thanks for your feedback, I've just made a live example avaliable - check the link on the post.</description>
		<content:encoded><![CDATA[<p>Thanks for your feedback, I&#8217;ve just made a live example avaliable - check the link on the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sachin Chavan</title>
		<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-140</link>
		<dc:creator>Sachin Chavan</dc:creator>
		<pubDate>Wed, 11 Jul 2007 08:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-140</guid>
		<description>Nice one.

Just try to give an option of testing this online. like dome or something which will help the non technical users.</description>
		<content:encoded><![CDATA[<p>Nice one.</p>
<p>Just try to give an option of testing this online. like dome or something which will help the non technical users.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ebyte.com</title>
		<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-136</link>
		<dc:creator>Ebyte.com</dc:creator>
		<pubDate>Wed, 11 Jul 2007 04:48:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-136</guid>
		<description>Thank you for your nice little function here. Just wanted to let you know that it's been helpful on Ebyte.com for our password reset page.</description>
		<content:encoded><![CDATA[<p>Thank you for your nice little function here. Just wanted to let you know that it&#8217;s been helpful on Ebyte.com for our password reset page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diogo Stuart</title>
		<link>http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-37</link>
		<dc:creator>Diogo Stuart</dc:creator>
		<pubDate>Fri, 15 Jun 2007 02:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.alixaxel.com/wordpress/2007/06/14/php-friendly-password-generator/#comment-37</guid>
		<description>You do some pretty useful stuff, I also think that mnemonic passwords are better for remembering.</description>
		<content:encoded><![CDATA[<p>You do some pretty useful stuff, I also think that mnemonic passwords are better for remembering.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
