<?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: In the YUI 3 Gallery: Base64 and Y64 encoding</title>
	<atom:link href="http://www.yuiblog.com/blog/index.php/2010/07/06/in-the-yui-3-gallery-base64-and-y64-encoding/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yuiblog.com/blog/2010/07/06/in-the-yui-3-gallery-base64-and-y64-encoding/</link>
	<description>The official blog of the YUI Project.</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:46:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Nicholas C. Zakas</title>
		<link>http://www.yuiblog.com/blog/2010/07/06/in-the-yui-3-gallery-base64-and-y64-encoding/comment-page-1/#comment-592709</link>
		<dc:creator>Nicholas C. Zakas</dc:creator>
		<pubDate>Thu, 08 Jul 2010 22:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=2261#comment-592709</guid>
		<description>@Michael - Y64 is not the same as Base64 for URL. As stated in the post, Y64 is a variant we&#039;ve been using at Yahoo! for a while. It&#039;s nothing terribly revolutionary, but it does achieve the same goal of passing base64-encoded data in a URL.</description>
		<content:encoded><![CDATA[<p>@Michael &#8211; Y64 is not the same as Base64 for URL. As stated in the post, Y64 is a variant we&#8217;ve been using at Yahoo! for a while. It&#8217;s nothing terribly revolutionary, but it does achieve the same goal of passing base64-encoded data in a URL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicholas C. Zakas</title>
		<link>http://www.yuiblog.com/blog/2010/07/06/in-the-yui-3-gallery-base64-and-y64-encoding/comment-page-1/#comment-592698</link>
		<dc:creator>Nicholas C. Zakas</dc:creator>
		<pubDate>Wed, 07 Jul 2010 17:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=2261#comment-592698</guid>
		<description>@Sause - this module is for base64 encoding only. Data URI functionality is something that&#039;s built into the browser (or not!), and so this module can&#039;t do anything to help support browsers that don&#039;t support them natively.</description>
		<content:encoded><![CDATA[<p>@Sause &#8211; this module is for base64 encoding only. Data URI functionality is something that&#8217;s built into the browser (or not!), and so this module can&#8217;t do anything to help support browsers that don&#8217;t support them natively.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sheakoski</title>
		<link>http://www.yuiblog.com/blog/2010/07/06/in-the-yui-3-gallery-base64-and-y64-encoding/comment-page-1/#comment-592691</link>
		<dc:creator>Michael Sheakoski</dc:creator>
		<pubDate>Wed, 07 Jul 2010 01:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=2261#comment-592691</guid>
		<description>To clarify, are you using the same conventions in Y64 as &lt;a href=&quot;http://en.wikipedia.org/wiki/Base64#URL_applications&quot; rel=&quot;nofollow&quot;&gt;Base64 for URL&lt;/a&gt;? It translates &quot;+&quot; =&gt; &quot;-&quot; but this post suggests that Y64 is translating &quot;+&quot; =&gt; &quot;.&quot;. Also, Base64 for URL omits &quot;=&quot; for padding.</description>
		<content:encoded><![CDATA[<p>To clarify, are you using the same conventions in Y64 as <a href="http://en.wikipedia.org/wiki/Base64#URL_applications" rel="nofollow">Base64 for URL</a>? It translates &#8220;+&#8221; =&gt; &#8220;-&#8221; but this post suggests that Y64 is translating &#8220;+&#8221; =&gt; &#8220;.&#8221;. Also, Base64 for URL omits &#8220;=&#8221; for padding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sause</title>
		<link>http://www.yuiblog.com/blog/2010/07/06/in-the-yui-3-gallery-base64-and-y64-encoding/comment-page-1/#comment-592688</link>
		<dc:creator>Sause</dc:creator>
		<pubDate>Tue, 06 Jul 2010 21:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=2261#comment-592688</guid>
		<description>The article mentions that you can use a data URI to embed files inside of the HTML document.  Does this module support that functionality (across A-grade browsers)?</description>
		<content:encoded><![CDATA[<p>The article mentions that you can use a data URI to embed files inside of the HTML document.  Does this module support that functionality (across A-grade browsers)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Preston L. Bannister</title>
		<link>http://www.yuiblog.com/blog/2010/07/06/in-the-yui-3-gallery-base64-and-y64-encoding/comment-page-1/#comment-592687</link>
		<dc:creator>Preston L. Bannister</dc:creator>
		<pubDate>Tue, 06 Jul 2010 19:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=2261#comment-592687</guid>
		<description>You are using a switch per character ... which is fairly horrible. I wrote and posted an example a few years back:

&lt;a href=&quot;http://bannister.us/weblog/2007/06/09/simple-base64-encodedecode-javascript/&quot; rel=&quot;nofollow&quot;&gt;Simple Base64 encode/decode – Javascript&lt;/a&gt;

Note that with a small tweak to the anonymous constructor function, you could generate an equally efficient Y64 functions.

Feel free to reuse whatever you want.</description>
		<content:encoded><![CDATA[<p>You are using a switch per character &#8230; which is fairly horrible. I wrote and posted an example a few years back:</p>
<p><a href="http://bannister.us/weblog/2007/06/09/simple-base64-encodedecode-javascript/" rel="nofollow">Simple Base64 encode/decode – Javascript</a></p>
<p>Note that with a small tweak to the anonymous constructor function, you could generate an equally efficient Y64 functions.</p>
<p>Feel free to reuse whatever you want.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

