<?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: Regular Expression Help</title>
	<atom:link href="http://meyerweb.com/index.php?year=2004&#038;monthnum=10&#038;day=27&#038;name=regular-expression-help&#038;feed=feed" rel="self" type="application/rss+xml" />
	<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/</link>
	<description>Things that Eric A. Meyer, CSS expert, writes about on his personal Web site; it&#039;s largely Web standards and Web technology, but also various bits of culture, politics, personal observations, and other miscellaneous stuff</description>
	<lastBuildDate>Fri, 10 Feb 2012 18:28:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: DRIVE</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-5031</link>
		<dc:creator>DRIVE</dc:creator>
		<pubDate>Wed, 16 Feb 2005 20:46:11 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-5031</guid>
		<description>&lt;code&gt;
&lt;?php
$hostname = ($_SERVER[&#039;SERVER_NAME&#039;]);
preg_match(&quot;/[^\.\/]+\.[^\.\/]+$/&quot;, $hostname, $matches);
echo &quot;domain name is: {$matches[0]}\n&quot;;
?&gt;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
&lt;?php<br />
$hostname = ($_SERVER['SERVER_NAME']);<br />
preg_match("/[^\.\/]+\.[^\.\/]+$/", $hostname, $matches);<br />
echo "domain name is: {$matches[0]}\n";<br />
?&gt;<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Radic</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1869</link>
		<dc:creator>Gabriel Radic</dc:creator>
		<pubDate>Mon, 15 Nov 2004 17:01:38 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1869</guid>
		<description>Eric, you&#039;re using a Mac, right? Then love your Keychain.</description>
		<content:encoded><![CDATA[<p>Eric, you&#8217;re using a Mac, right? Then love your Keychain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jlcooke</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1681</link>
		<dc:creator>jlcooke</dc:creator>
		<pubDate>Fri, 05 Nov 2004 14:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1681</guid>
		<description>A few things:
 - If this &quot;master password&quot; to &quot;site password&quot; thing is going to work, you need more than just a master password hashed with a website domain name.
   + sitepswd = hash(secret + pswd + domain), where secret is randomly generated and stored in a cookie.
     This is no good for &quot;roaming&quot; users who don&#039;t have a dedicated computer, but, meh.
 - Your site password needs to use more then just hex, try the full [0-9][a-z][A-z](~!@#$%^&amp;*()_+-=) you&#039;ll make the passwords harder to guess that way.

Here&#039;s a few tools that might be handy:
Generate a password using mouse movments, timing and SHA-256:
  http://www.certainkey.com/demos/mkpasswd
Check password strength:
  http://www.certainkey.com/demos/password</description>
		<content:encoded><![CDATA[<p>A few things:<br />
 &#8211; If this &#8220;master password&#8221; to &#8220;site password&#8221; thing is going to work, you need more than just a master password hashed with a website domain name.<br />
   + sitepswd = hash(secret + pswd + domain), where secret is randomly generated and stored in a cookie.<br />
     This is no good for &#8220;roaming&#8221; users who don&#8217;t have a dedicated computer, but, meh.<br />
 &#8211; Your site password needs to use more then just hex, try the full [0-9][a-z][A-z](~!@#$%^&#038;*()_+-=) you&#8217;ll make the passwords harder to guess that way.</p>
<p>Here&#8217;s a few tools that might be handy:<br />
Generate a password using mouse movments, timing and SHA-256:<br />
  <a href="http://www.certainkey.com/demos/mkpasswd" rel="nofollow">http://www.certainkey.com/demos/mkpasswd</a><br />
Check password strength:<br />
  <a href="http://www.certainkey.com/demos/password" rel="nofollow">http://www.certainkey.com/demos/password</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martijn Ras</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1598</link>
		<dc:creator>Martijn Ras</dc:creator>
		<pubDate>Wed, 03 Nov 2004 16:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1598</guid>
		<description>Heya Nathan,

Thanks for noticing my comment &lt;a href=&quot;http://www.meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1463&quot;&gt;# 32.&lt;/a&gt;

Mazzel,

Martijn.</description>
		<content:encoded><![CDATA[<p>Heya Nathan,</p>
<p>Thanks for noticing my comment <a href="http://www.meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1463"># 32.</a></p>
<p>Mazzel,</p>
<p>Martijn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Chandler</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1552</link>
		<dc:creator>Peter Chandler</dc:creator>
		<pubDate>Mon, 01 Nov 2004 03:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1552</guid>
		<description>What&#039;s the point? How would the hash be any more secure than just the master password?

If you&#039;re going to do this, you&#039;d be better off using a more obscure hash than MD5.</description>
		<content:encoded><![CDATA[<p>What&#8217;s the point? How would the hash be any more secure than just the master password?</p>
<p>If you&#8217;re going to do this, you&#8217;d be better off using a more obscure hash than MD5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Herald</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1539</link>
		<dc:creator>Nathan Herald</dc:creator>
		<pubDate>Sun, 31 Oct 2004 08:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1539</guid>
		<description>I have made a favelet some of you might want to check out. It does not read the website automagically, you enter it manually. But it works. 

http://www.myobie.com/password/

Hope this helps someone, I am thinking about using it for a while.</description>
		<content:encoded><![CDATA[<p>I have made a favelet some of you might want to check out. It does not read the website automagically, you enter it manually. But it works. </p>
<p><a href="http://www.myobie.com/password/" rel="nofollow">http://www.myobie.com/password/</a></p>
<p>Hope this helps someone, I am thinking about using it for a while.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Herald</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1517</link>
		<dc:creator>Nathan Herald</dc:creator>
		<pubDate>Sat, 30 Oct 2004 22:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1517</guid>
		<description>This would work great:
&lt;blockquote cite=&quot;dude above&quot;&gt;
&lt;code&gt;
[^.]*\.\([^:/]*\).*
&lt;/code&gt;
&lt;/blockquote&gt;

When can we see this bookmarklet in action Eric?
I would like to see it put to the test...</description>
		<content:encoded><![CDATA[<p>This would work great:</p>
<blockquote cite="dude above"><p>
<code><br />
[^.]*\.\([^:/]*\).*<br />
</code>
</p></blockquote>
<p>When can we see this bookmarklet in action Eric?<br />
I would like to see it put to the test&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ondrej Valek</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1491</link>
		<dc:creator>Ondrej Valek</dc:creator>
		<pubDate>Fri, 29 Oct 2004 01:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1491</guid>
		<description>Is that worth trying? From my point of view and everyday&#039;s experience, every site requires different type of password. One asks for digits-only, another for 5-to-10 characters alphabet-only and so on. It&#039;s impossible to create them automagically. I prefer having one stupid password which I use everywhere with just minor predictable changes, which i never use for &#039;mission critical&#039; sites. And I never use those web passwords for digital signatures or real-life needs, like bank accounts or whatever.</description>
		<content:encoded><![CDATA[<p>Is that worth trying? From my point of view and everyday&#8217;s experience, every site requires different type of password. One asks for digits-only, another for 5-to-10 characters alphabet-only and so on. It&#8217;s impossible to create them automagically. I prefer having one stupid password which I use everywhere with just minor predictable changes, which i never use for &#8216;mission critical&#8217; sites. And I never use those web passwords for digital signatures or real-life needs, like bank accounts or whatever.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jgraham</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1467</link>
		<dc:creator>jgraham</dc:creator>
		<pubDate>Thu, 28 Oct 2004 15:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1467</guid>
		<description>From the point of view of actually using this, the important comment is  Jesse&#039;s comment 22 - if you use this utility as a bookmarklet, any site can easilly steal your master password and thus your login to &lt;em&gt;all&lt;/em&gt; other sites that you use. That seems like an awful lot of risk. (there are other, practical, issues, like sites that require the same login but are at different domains, but they&#039;re somewhat irrelevant in the face of the huge gaping secuirty hole that this bookmarklet opens up). The version with a hardcoded master password variable is a little better (you need to be sure that you trust people with physical access to your machine and that your machine in general is secure).</description>
		<content:encoded><![CDATA[<p>From the point of view of actually using this, the important comment is  Jesse&#8217;s comment 22 &#8211; if you use this utility as a bookmarklet, any site can easilly steal your master password and thus your login to <em>all</em> other sites that you use. That seems like an awful lot of risk. (there are other, practical, issues, like sites that require the same login but are at different domains, but they&#8217;re somewhat irrelevant in the face of the huge gaping secuirty hole that this bookmarklet opens up). The version with a hardcoded master password variable is a little better (you need to be sure that you trust people with physical access to your machine and that your machine in general is secure).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristotle</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1466</link>
		<dc:creator>Aristotle</dc:creator>
		<pubDate>Thu, 28 Oct 2004 11:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1466</guid>
		<description>Oh, and btw: how about not using the URL, but simply letting you pick a local password yourself? So for Amazon, you&#039;d enter your master password and &quot;amazon&quot; to get a unique site password. Sure you&#039;ll have to remember two things, but the local password can be reasonably trivial and even be written down without a real problem.

Having a bit of code that &lt;em&gt;proposes&lt;/em&gt; such a site password by looking at the URL would be beneficial, then. You can still override it if it guesses badly, and twiddle the heuristics if there is a pattern to bad guesses, without ever risking loss of access to any place.</description>
		<content:encoded><![CDATA[<p>Oh, and btw: how about not using the URL, but simply letting you pick a local password yourself? So for Amazon, you&#8217;d enter your master password and &#8220;amazon&#8221; to get a unique site password. Sure you&#8217;ll have to remember two things, but the local password can be reasonably trivial and even be written down without a real problem.</p>
<p>Having a bit of code that <em>proposes</em> such a site password by looking at the URL would be beneficial, then. You can still override it if it guesses badly, and twiddle the heuristics if there is a pattern to bad guesses, without ever risking loss of access to any place.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristotle</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1465</link>
		<dc:creator>Aristotle</dc:creator>
		<pubDate>Thu, 28 Oct 2004 11:39:09 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1465</guid>
		<description>&lt;code&gt;$ perl -MRegexp::Common=URI -le&#039;print $RE{URI}{HTTP}{-scheme =&gt; &quot;https?&quot;}{-keep}&#039;
&lt;strong&gt;((https?)://((?:(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.])*(?:[a-zA-Z][-a-zA-Z0-9]*[a-zA-Z0-9]&#124;[a-zA-Z])[.]?)&#124;(?:[0-9]+[.][0-9]+[.][0-9]+[.][0-9]+)))(?::((?:[0-9]*)))?(/(((?:(?:(?:(?:[a-zA-Z0-9\-_.!~*&#039;():@&amp;=+$,]+&#124;(?:%[a-fA-F0-9][a-fA-F0-9]))*)(?:;(?:(?:[a-zA-Z0-9\-_.!~*&#039;():@&amp;=+$,]+&#124;(?:%[a-fA-F0-9][a-fA-F0-9]))*))*)(?:/(?:(?:(?:[a-zA-Z0-9\-_.!~*&#039;():@&amp;=+$,]+&#124;(?:%[a-fA-F0-9][a-fA-F0-9]))*)(?:;(?:(?:[a-zA-Z0-9\-_.!~*&#039;():@&amp;=+$,]+&#124;(?:%[a-fA-F0-9][a-fA-F0-9]))*))*))*))(?:[?]((?:(?:[;/?:@&amp;=+$,a-zA-Z0-9\-_.!~*&#039;()]+&#124;(?:%[a-fA-F0-9][a-fA-F0-9]))*)))?))?)&lt;/strong&gt;&lt;/code&gt;

The third capture group will contain the hostname. The pattern fully respects every aspect of the HTTP URI RFC; I don&#039;t know if the JavaScript pattern dialect supports all the features found in Perl&#039;s, though.

Unfortunately, due to aforementioned problems with domain structures like in &lt;code&gt;.co.uk&lt;/code&gt; and the like, you can&#039;t really tell how much you can chop off the front of the FQDN&#8230;</description>
		<content:encoded><![CDATA[<p><code>$ perl -MRegexp::Common=URI -le'print $RE{URI}{HTTP}{-scheme => "https?"}{-keep}'<br />
<strong>((https?)://((?:(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.])*(?:[a-zA-Z][-a-zA-Z0-9]*[a-zA-Z0-9]|[a-zA-Z])[.]?)|(?:[0-9]+[.][0-9]+[.][0-9]+[.][0-9]+)))(?::((?:[0-9]*)))?(/(((?:(?:(?:(?:[a-zA-Z0-9\-_.!~*'():@&#038;=+$,]+|(?:%[a-fA-F0-9][a-fA-F0-9]))*)(?:;(?:(?:[a-zA-Z0-9\-_.!~*'():@&#038;=+$,]+|(?:%[a-fA-F0-9][a-fA-F0-9]))*))*)(?:/(?:(?:(?:[a-zA-Z0-9\-_.!~*'():@&#038;=+$,]+|(?:%[a-fA-F0-9][a-fA-F0-9]))*)(?:;(?:(?:[a-zA-Z0-9\-_.!~*'():@&#038;=+$,]+|(?:%[a-fA-F0-9][a-fA-F0-9]))*))*))*))(?:[?]((?:(?:[;/?:@&#038;=+$,a-zA-Z0-9\-_.!~*'()]+|(?:%[a-fA-F0-9][a-fA-F0-9]))*)))?))?)</strong></code></p>
<p>The third capture group will contain the hostname. The pattern fully respects every aspect of the HTTP URI RFC; I don&#8217;t know if the JavaScript pattern dialect supports all the features found in Perl&#8217;s, though.</p>
<p>Unfortunately, due to aforementioned problems with domain structures like in <code>.co.uk</code> and the like, you can&#8217;t really tell how much you can chop off the front of the FQDN&hellip;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Ward</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1464</link>
		<dc:creator>Michael Ward</dc:creator>
		<pubDate>Thu, 28 Oct 2004 09:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1464</guid>
		<description>Mozilla Firefox RC1 has a master passowrd setting for the automatic inputting of usernames/passwords for web sites.

It works by, once per browser session, prompting for the master password  when a website with saved login details is accessed.

Works very well IMHO.</description>
		<content:encoded><![CDATA[<p>Mozilla Firefox RC1 has a master passowrd setting for the automatic inputting of usernames/passwords for web sites.</p>
<p>It works by, once per browser session, prompting for the master password  when a website with saved login details is accessed.</p>
<p>Works very well IMHO.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martijn Ras</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1463</link>
		<dc:creator>Martijn Ras</dc:creator>
		<pubDate>Thu, 28 Oct 2004 08:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1463</guid>
		<description>Heya Eric,

It&#039;s really not that hard, here&#039;s my regular expression:

[^.]*\.\([^:/]*\).*


You&#039;re not interested in everything up to the first dot in the hostname &quot;[^.]*\.&quot;, what comes next is of interest up to either the start of the port (:) or the path (/), anything after that is of no interest either.

Here&#039;s two examples:
echo &quot;http://www.domain.tld/blah/foo/wow.xyz&quot; &#124; sed &#039;s/[^.]*\.\([^:/]*\).*/\1/&#039; =&gt; domain.tld

echo &quot;http://www.very.long.domain.co.uk/blah/foo/wow.xyz&quot; &#124; sed &#039;s/[^.]*\.\([^:/]*\).*/\1/&#039; =&gt; very.long.domain.co.uk

Mazzel,

Martijn</description>
		<content:encoded><![CDATA[<p>Heya Eric,</p>
<p>It&#8217;s really not that hard, here&#8217;s my regular expression:</p>
<p>[^.]*\.\([^:/]*\).*</p>
<p>You&#8217;re not interested in everything up to the first dot in the hostname &#8220;[^.]*\.&#8221;, what comes next is of interest up to either the start of the port (:) or the path (/), anything after that is of no interest either.</p>
<p>Here&#8217;s two examples:<br />
echo &#8220;http://www.domain.tld/blah/foo/wow.xyz&#8221; | sed &#8216;s/[^.]*\.\([^:/]*\).*/\1/&#8217; => domain.tld</p>
<p>echo &#8220;http://www.very.long.domain.co.uk/blah/foo/wow.xyz&#8221; | sed &#8216;s/[^.]*\.\([^:/]*\).*/\1/&#8217; => very.long.domain.co.uk</p>
<p>Mazzel,</p>
<p>Martijn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Cutter</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1462</link>
		<dc:creator>Thomas Cutter</dc:creator>
		<pubDate>Thu, 28 Oct 2004 05:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1462</guid>
		<description>I could really use some help with regular expressions if somebody out there could email me that would be great. I have a project for work that I need to get done asap and I am pretty clueless when it comes to regular expressions.</description>
		<content:encoded><![CDATA[<p>I could really use some help with regular expressions if somebody out there could email me that would be great. I have a project for work that I need to get done asap and I am pretty clueless when it comes to regular expressions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Angus Turnbull</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1461</link>
		<dc:creator>Angus Turnbull</dc:creator>
		<pubDate>Thu, 28 Oct 2004 04:01:48 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/27/regular-expression-help/#comment-1461</guid>
		<description>Enlighten thyself, grasshopper :). The simplest and best coverage of JavaScript regular expressions I&#039;ve found is this &lt;a href=&quot;http://www.evolt.org/article/rating/20/22700/index.html&quot;&gt;Evolt article&lt;/a&gt;.

Having said that, different countries are REALLY going to be the major problem here. Some countries, like NZ, Australia and the UK, allow second level domain names:

foo.co.nz
bar.co.nz

are completely different sites, whereas in some other countries with first-level domains:

foo.abc.ru
bar.abc.ru

are both subdomains of the main abc.ru site, a fully qualified domain in its own right (unlike co.nz).

So really, you&#039;d need a database in the bookmarklet of all 2 and 3 letter country codes. Otherwise, the script won&#039;t be able to tell which domains san be trimmed down, and which can&#039;t. Alternatively, just list a common bunch of second-level subdomains like (co&#124;com&#124;org&#124;net&#124;gen&#124;mil) and don&#039;t sweat the occasional shared password...</description>
		<content:encoded><![CDATA[<p>Enlighten thyself, grasshopper :). The simplest and best coverage of JavaScript regular expressions I&#8217;ve found is this <a href="http://www.evolt.org/article/rating/20/22700/index.html">Evolt article</a>.</p>
<p>Having said that, different countries are REALLY going to be the major problem here. Some countries, like NZ, Australia and the UK, allow second level domain names:</p>
<p>foo.co.nz<br />
bar.co.nz</p>
<p>are completely different sites, whereas in some other countries with first-level domains:</p>
<p>foo.abc.ru<br />
bar.abc.ru</p>
<p>are both subdomains of the main abc.ru site, a fully qualified domain in its own right (unlike co.nz).</p>
<p>So really, you&#8217;d need a database in the bookmarklet of all 2 and 3 letter country codes. Otherwise, the script won&#8217;t be able to tell which domains san be trimmed down, and which can&#8217;t. Alternatively, just list a common bunch of second-level subdomains like (co|com|org|net|gen|mil) and don&#8217;t sweat the occasional shared password&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
