<?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>dp&#039;s blog &#187; web development</title>
	<atom:link href="http://blog.dp.cx/tag/web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.dp.cx</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 18 Jul 2010 23:03:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>How to fix strange characters in MySQL database – Vinh Pham</title>
		<link>http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-fix-strange-characters-in-mysql-database-%25e2%2580%2593-vinh-pham</link>
		<comments>http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham#comments</comments>
		<pubDate>Tue, 26 Jan 2010 22:15:06 +0000</pubDate>
		<dc:creator>dp</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.dp.cx/?p=126</guid>
		<description><![CDATA[I admit, I borrowed this from How to fix strange characters in MySQL database – Vinh Pham.  But I also added a few more that were missing; update &#60;table&#62; set &#60;field&#62; = replace(&#60;field&#62;, 'â€™', '\''); update &#60;table&#62; set &#60;field&#62; = replace(&#60;field&#62;, 'â€¦', '&#38;hellip;'); update &#60;table&#62; set &#60;field&#62; = replace(&#60;field&#62;, 'â€“', '-'); update &#60;table&#62; set &#60;field&#62; = [...]


Related posts:<ol><li><a href='http://blog.dp.cx/155/databases-and-backups' rel='bookmark' title='Permanent Link: Databases and backups'>Databases and backups</a> <small>Yesterday, I managed to delete the primary database that we...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I admit, I borrowed this from <a href="http://vinhboy.com/blog/2008/05/02/how-to-fix-strange-characters-in-mysql-database/" onclick="return TrackClick('http%3A%2F%2Fvinhboy.com%2Fblog%2F2008%2F05%2F02%2Fhow-to-fix-strange-characters-in-mysql-database%2F','How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham')">How to fix strange characters in MySQL database – Vinh Pham</a>.  But I also added a few more that were missing;</p>
<p><code><br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€™', '\'');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€¦', '&amp;hellip;');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€“', '-');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€œ', '"');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€', '"');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€˜', '\'');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€¢', '-');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â€¡', 'c');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'â„¢', '&amp;trade;');<br />
update &lt;table&gt; set &lt;field&gt; = replace(&lt;field&gt;, 'Â®', '&amp;reg;');</code></p>
<p>Hopefully this helps someone (probably even me) sometime down the road!</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=dd3a623f-a2d9-4310-9394-75dc6e4a92e6" alt="" /></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-–-vinh-pham/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;title=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;title=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;title=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham&amp;desc=I%20admit%2C%20I%20borrowed%20this%20from%C2%A0How%20to%20fix%20strange%20characters%20in%20MySQL%20database%20%E2%80%93%20Vinh%20Pham.%20%C2%A0But%20I%20also%20added%20a%20few%20more%20that%20were%20missing%3B%0D%0A%0D%0A%0D%0Aupdate%20%26lt%3Btable%26gt%3B%20set%20%26lt%3Bfield%26gt%3B%20%3D%20replace%28%26lt%3Bfield%26gt%3B%2C%20%27%C3%A2%E2%82%AC%E2%84%A2%27%2C%20%27%5C%27%27%29%3B%0D%0Aupdate%20%26lt%3Btable%26gt%3B%20set%20%26lt%3Bfield%26gt%3B%20%3D%20replace%28%26lt%3Bfield%26gt%3B%2C%20%27%C3%A2%E2" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;bm_description=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;title=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;title=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;title=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham+-+http://b2l.me/v7ea4&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham&amp;t=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+fix+strange+characters+in+MySQL+database+%E2%80%93+Vinh+Pham&amp;link=http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://blog.dp.cx/?ak_action=api_record_view&id=126&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://blog.dp.cx/155/databases-and-backups' rel='bookmark' title='Permanent Link: Databases and backups'>Databases and backups</a> <small>Yesterday, I managed to delete the primary database that we...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Converting IE6 Users: One by One</title>
		<link>http://blog.dp.cx/15/converting-ie6-users-one-by-one#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=converting-ie6-users-one-by-one</link>
		<comments>http://blog.dp.cx/15/converting-ie6-users-one-by-one#comments</comments>
		<pubDate>Thu, 21 May 2009 23:10:35 +0000</pubDate>
		<dc:creator>dp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.dp.cx/?p=15</guid>
		<description><![CDATA[We were looking over the access logs of a few of our sites this morning, and noticed some people still hitting the sites with IE6. This pains me greatly. IE6 is the bane of every web-developers existence, and causes more headaches than anything else in my world. As such, I&#8217;ve started a cause: Converting IE6 [...]


Related posts:<ol><li><a href='http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham' rel='bookmark' title='Permanent Link: How to fix strange characters in MySQL database – Vinh Pham'>How to fix strange characters in MySQL database – Vinh Pham</a> <small>I admit, I borrowed this from How to fix strange characters...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We were looking over the access logs of a few of our sites this morning, and noticed some people still hitting the sites with IE6.  This pains me greatly.  IE6 is the bane of every web-developers existence,  and causes more headaches than anything else in my world.</p>
<p>As such, I&#8217;ve started a cause: Converting IE6 Users: One by One.  One of our new coworkers was using IE6.  I walked over and suggested he upgrade from IE6, by simply visiting <a title="Microsoft Windows Update" href="http://windowsupdate.microsoft.com" onclick="return TrackClick('http%3A%2F%2Fwindowsupdate.microsoft.com','Microsoft+Windows+Update')">Microsoft Windows Update</a>. This installed IE8 for him, which works even better than the IE7 I thought he would get.</p>
<p>Thankfully, he&#8217;ll never show up as IE6 in our access logs again, and I&#8217;ve converted another user to a &#8220;decent&#8221; browser. He uses <a title="Mozilla Firefox" href="http://getfirefox.com" onclick="return TrackClick('http%3A%2F%2Fgetfirefox.com','Mozilla+Firefox')">Firefox</a> by default, but there are times when IE is the only thing that a site supports; at least now things will look right for him.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.dp.cx/15/converting-ie6-users-one-by-one/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;title=Converting+IE6+Users%3A+One+by+One" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;title=Converting+IE6+Users%3A+One+by+One" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;title=Converting+IE6+Users%3A+One+by+One&amp;desc=We%20were%20looking%20over%20the%20access%20logs%20of%20a%20few%20of%20our%20sites%20this%20morning%2C%20and%20noticed%20some%20people%20still%20hitting%20the%20sites%20with%20IE6.%20%20This%20pains%20me%20greatly.%20%20IE6%20is%20the%20bane%20of%20every%20web-developers%20existence%2C%20%20and%20causes%20more%20headaches%20than%20anything%20else%20in%20my%20world.%0D%0A%0D%0AAs%20such%2C%20I%27ve%20started%20a%20cause%3A%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;bm_description=Converting+IE6+Users%3A+One+by+One&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;title=Converting+IE6+Users%3A+One+by+One" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;title=Converting+IE6+Users%3A+One+by+One" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;title=Converting+IE6+Users%3A+One+by+One" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.dp.cx/15/converting-ie6-users-one-by-one" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Converting+IE6+Users%3A+One+by+One+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.dp.cx/15/converting-ie6-users-one-by-one&amp;t=Converting+IE6+Users%3A+One+by+One" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Converting+IE6+Users%3A+One+by+One&amp;link=http://blog.dp.cx/15/converting-ie6-users-one-by-one" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://blog.dp.cx/?ak_action=api_record_view&id=15&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham' rel='bookmark' title='Permanent Link: How to fix strange characters in MySQL database – Vinh Pham'>How to fix strange characters in MySQL database – Vinh Pham</a> <small>I admit, I borrowed this from How to fix strange characters...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.dp.cx/15/converting-ie6-users-one-by-one/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password security and Digg.com</title>
		<link>http://blog.dp.cx/21/password-security-and-digg-com#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=password-security-and-digg-com</link>
		<comments>http://blog.dp.cx/21/password-security-and-digg-com#comments</comments>
		<pubDate>Thu, 21 May 2009 23:10:28 +0000</pubDate>
		<dc:creator>dp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.dp.cx/?p=21</guid>
		<description><![CDATA[I&#8217;ve been on a mission lately to change all of my passwords on all of the sites that I use. To make it easier on me, I&#8217;m using KeePassX to generate them, and to store them. When creating these passwords, I&#8217;ve been using Upper+Lower+Numbers+Special Characters+Minus+Underline, and a length of 26 characters. I figure this is [...]


Related posts:<ol><li><a href='http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham' rel='bookmark' title='Permanent Link: How to fix strange characters in MySQL database – Vinh Pham'>How to fix strange characters in MySQL database – Vinh Pham</a> <small>I admit, I borrowed this from How to fix strange characters...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been on a mission lately to change all of my passwords on all of the sites that I use.  To make it easier on me, I&#8217;m using <a href="http://keepassx.sourceforge.net" onclick="return TrackClick('http%3A%2F%2Fkeepassx.sourceforge.net','KeePassX')">KeePassX</a> to generate them, and to store them.</p>
<p>When creating these passwords, I&#8217;ve been using Upper+Lower+Numbers+Special Characters+Minus+Underline, and a length of 26 characters.  I figure this is plenty enough overkill to keep my passwords unique amongst each site.  But when I tried to change the password on <a href="http://digg.com" onclick="return TrackClick('http%3A%2F%2Fdigg.com','Digg')">Digg</a>, it told me that my password could only be between 4 and 15 characters.  Ok, I&#8217;ll agree that 26 is definitely overkill, so I shortened it to 15.  I regenerated a password, and put it in place.  Digg then told me that I could only use Upper+Lower+Numbers for my password.</p>
<p>Excuse me?  We took the password strength from 170 bits to 89 bits. That&#8217;s nearly half the strength.  Especially now that Digg has integrated with <a href="http://facebook.com" onclick="return TrackClick('http%3A%2F%2Ffacebook.com','Facebook')">Facebook</a>, this seems like a very dangerous security issue to me.  Maybe I&#8217;m just over-reacting, who knows.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.dp.cx/21/password-security-and-digg-com/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.dp.cx/21/password-security-and-digg-com&amp;title=Password+security+and+Digg.com" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.dp.cx/21/password-security-and-digg-com&amp;title=Password+security+and+Digg.com" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.dp.cx/21/password-security-and-digg-com&amp;title=Password+security+and+Digg.com&amp;desc=I%27ve%20been%20on%20a%20mission%20lately%20to%20change%20all%20of%20my%20passwords%20on%20all%20of%20the%20sites%20that%20I%20use.%20%20To%20make%20it%20easier%20on%20me%2C%20I%27m%20using%20KeePassX%20to%20generate%20them%2C%20and%20to%20store%20them.%0D%0A%0D%0AWhen%20creating%20these%20passwords%2C%20I%27ve%20been%20using%20Upper%2BLower%2BNumbers%2BSpecial%20Characters%2BMinus%2BUnderline%2C%20and%20a%20length%20of%2026%20c" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.dp.cx/21/password-security-and-digg-com&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.dp.cx/21/password-security-and-digg-com&amp;bm_description=Password+security+and+Digg.com&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.dp.cx/21/password-security-and-digg-com&amp;title=Password+security+and+Digg.com" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.dp.cx/21/password-security-and-digg-com&amp;title=Password+security+and+Digg.com" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.dp.cx/21/password-security-and-digg-com&amp;title=Password+security+and+Digg.com" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.dp.cx/21/password-security-and-digg-com" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Password+security+and+Digg.com+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.dp.cx/21/password-security-and-digg-com&amp;t=Password+security+and+Digg.com" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Password+security+and+Digg.com&amp;link=http://blog.dp.cx/21/password-security-and-digg-com" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://blog.dp.cx/?ak_action=api_record_view&id=21&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://blog.dp.cx/126/how-to-fix-strange-characters-in-mysql-database-%e2%80%93-vinh-pham' rel='bookmark' title='Permanent Link: How to fix strange characters in MySQL database – Vinh Pham'>How to fix strange characters in MySQL database – Vinh Pham</a> <small>I admit, I borrowed this from How to fix strange characters...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.dp.cx/21/password-security-and-digg-com/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
