<?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>Elliott C. Back &#187; Encodings</title>
	<atom:link href="http://elliottback.com/wp/category/encodings/feed/" rel="self" type="application/rss+xml" />
	<link>http://elliottback.com/wp</link>
	<description>Internet &#38; Technology</description>
	<lastBuildDate>Tue, 03 Nov 2009 23:59:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MobiBLU Cube 2:  World&#8217;s Smallest MP3 Player</title>
		<link>http://elliottback.com/wp/mobiblu-cube-2-worlds-smallest-mp3-player/</link>
		<comments>http://elliottback.com/wp/mobiblu-cube-2-worlds-smallest-mp3-player/#comments</comments>
		<pubDate>Thu, 20 Apr 2006 17:12:52 +0000</pubDate>
		<dc:creator>Elliott Back</dc:creator>
				<category><![CDATA[Computers & Technology]]></category>
		<category><![CDATA[Cute]]></category>
		<category><![CDATA[Encodings]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[iPod]]></category>

		<guid isPermaLink="false">http://elliottback.com/wp/archives/2006/04/20/mobiblu-cube-2-worlds-smallest-mp3-player/</guid>
		<description><![CDATA[The MobiBLU Cube 2 is the same size as the original cube mp3 player, but it adds a new touch pad and a color display.  Here&#8217;s quick photo of this tiny mp3 player:

If it has the same specs as the mobi-blue DAH-1500, it will have an OLED (Organic Light Emitting Diode) display, support MP3 [...]]]></description>
			<content:encoded><![CDATA[<p>The MobiBLU Cube 2 is the same size as the original cube mp3 player, but it adds a new touch pad and a color display.  Here&#8217;s quick photo of this tiny mp3 player:</p>
<p><img id="image1379" src="http://elliottback.com/wp/wp-content/uploads/2006/04/mobi-blue-cube-2.jpg" alt="mobi-blue-cube-2.jpg" /></p>
<p>If it has the same specs as the mobi-blue DAH-1500, it will have an OLED (Organic Light Emitting Diode) display, support MP3 and WMA formats, come in a 2GB (or possibly 4GB) size, have an FM tuner an recorder, a digital voice recorder, SRS WoW and Truebass, and come in a variety of very cute colors.  So far, there&#8217;s no announcement on the <a href="http://www.mobibluamerica.com/">American website of mobiBLU</a>.  This makes sense, since the leak is in Korean, and you know they get the scoop before we do.  I&#8217;m working on getting a translation, but it will be a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://elliottback.com/wp/mobiblu-cube-2-worlds-smallest-mp3-player/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress 2.0 Upgrade Problems:  Character Encoding + Transformation</title>
		<link>http://elliottback.com/wp/wordpress-20-upgrade-problems-character-encoding-transformation/</link>
		<comments>http://elliottback.com/wp/wordpress-20-upgrade-problems-character-encoding-transformation/#comments</comments>
		<pubDate>Tue, 04 Apr 2006 00:55:44 +0000</pubDate>
		<dc:creator>Elliott Back</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Encodings]]></category>
		<category><![CDATA[Internationalization]]></category>
		<category><![CDATA[My Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://elliottback.com/wp/archives/2006/04/03/wordpress-20-upgrade-problems-character-encoding-transformation/</guid>
		<description><![CDATA[The Wordpress 2.0 upgrade.php script in the wp-admin folder is designed to convert older copies of your database from older versions of Wordpress.  However, there&#8217;s something wrong with the character encoding, or the collation (latin1_swedish_ci).  Changing the collation after the fact doesn&#8217;t affect the improper characters being passed back, so I assume it [...]]]></description>
			<content:encoded><![CDATA[<p>The Wordpress 2.0 upgrade.php script in the wp-admin folder is designed to convert older copies of your database from older versions of Wordpress.  However, there&#8217;s something wrong with the character encoding, or the collation (<dfn title="Swedish, case-insensitive">latin1_swedish_ci</dfn>).  Changing the collation after the fact doesn&#8217;t affect the improper characters being passed back, so I assume it would need to be set before migration.  Here&#8217;s an example of what it looks like:</p>
<p><img title="whoah-weird-wordpress-chars.jpg" id="image1315" alt="whoah-weird-wordpress-chars.jpg" src="http://elliottback.com/wp/wp-content/uploads/2006/04/whoah-weird-wordpress-chars.jpg" /></p>
<p>After the damage has occured, the best way, it seems, to clean this up is to run multiple SQL queries in the phpmyadmin console emulating find/replace on the wp_posts table:</p>
<pre class="brush:sql">
UPDATE wp_posts SET post_content = replace(post_content, "bad", "good")
</pre>
<p>This has to be done for each character.  So far, I&#8217;ve noticed apostrophe marks, the left and right quotation marks, all kinds of dashes, and ellipsis are affected.� It&#8217;s like it got run through the WP filters before it went back into the database.</p>
<p>It&#8217;s weird that my UTF-8 encoding has switched itself over to ISO-8859-1 all by itself&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://elliottback.com/wp/wordpress-20-upgrade-problems-character-encoding-transformation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
