<?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>Technically  Amusing &#187; html</title>
	<atom:link href="http://eison.net/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://eison.net</link>
	<description>Info, rants, and other techinical geekery (no, that&#039;s not a real word)</description>
	<lastBuildDate>Tue, 06 Mar 2012 01:30:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>QR Codes +1</title>
		<link>http://eison.net/2010/07/qr-codes-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qr-codes-1</link>
		<comments>http://eison.net/2010/07/qr-codes-1/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 15:59:23 +0000</pubDate>
		<dc:creator>Ross Eison</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[qr]]></category>

		<guid isPermaLink="false">http://eison.net/?p=87</guid>
		<description><![CDATA[Since the last post about those nifty little QR codes was so awesome, I thought I&#8217;d add one more: creating QR codes using the goo.gl URL shortener, automatically. Hang on a sec, before you hyperventilate, it is possible. If you&#8217;re a Google Chrome user, there&#8217;s a browser extension called goo.gl URL Shortener that will reach [...]]]></description>
			<content:encoded><![CDATA[<p>Since the last post about those nifty little QR codes was so awesome, I thought I&#8217;d add one more: creating QR codes using the <strong>goo.gl</strong> URL shortener, automatically. Hang on a sec, before you hyperventilate, it <strong>is</strong> possible.</p>
<p>If you&#8217;re a <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> user, there&#8217;s a browser extension called <a href="https://chrome.google.com/extensions/detail/iblijlcdoidgdpfknkckljiocdbnlagk?hl=en" target="_blank">goo.gl URL Shortener</a> that will reach out to Google&#8217;s URL shortener API to create a short URL for you on the fly. Sadly, I don&#8217;t think the web interface for goo.gl is available otherwise. Once you have a goo.gl short URL, all you have to do to get the corresponding QR code for that URL is add <strong>.qr</strong> to the end of it, like so:</p>
<p><code>http://goo.gl/EFj6</code> becomes <code>http://goo.gl/EFj6.qr</code></p>
<p>When wrapped in image tags, it looks like this:</p>
<p><img src="http://goo.gl/EFj6.qr" alt="QR code for eison.net" /></p>
<p>And here&#8217;s the HTML:</p>
<p><code>&lt;img src="http://goo.gl/EFj6.qr" alt="QR code for eison.net" /></code></p>
]]></content:encoded>
			<wfw:commentRss>http://eison.net/2010/07/qr-codes-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QR Codes Demystified</title>
		<link>http://eison.net/2010/06/qr-codes-demystified/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qr-codes-demystified</link>
		<comments>http://eison.net/2010/06/qr-codes-demystified/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 22:26:55 +0000</pubDate>
		<dc:creator>Ross Eison</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[qr]]></category>

		<guid isPermaLink="false">http://eison.net/?p=63</guid>
		<description><![CDATA[If you have a smart phone, hopefully Android, you&#8217;ve probably seen a QR code or two. Yep, they&#8217;re those crazy, bar code-looking things that you can scan with your phone&#8217;s bar code reader, that will link you directly to something, like an app in the Android Market. Turns out that there are lots of QR [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a smart phone, hopefully Android, you&#8217;ve probably seen a QR code or two. Yep, they&#8217;re those crazy, bar code-looking things that you can scan with your phone&#8217;s bar code reader, that will link you directly to <em>something</em>, like an app in the Android Market.</p>
<p>Turns out that there are lots of <a href="http://qrcode.kaywa.com/" target="blank_">QR code generators</a> out here that&#8217;ll help you create a code for quite a few things: Android Market apps, URLs, a block of text, or your contact information. If you take a look at the other posts and pages on this site, you&#8217;ll see examples of three of those. It&#8217;s great to be able to use someone else&#8217;s code to generate things for you, but what if you found out that you can do the same thing with just a little HTML of you own?</p>
<p><span id="more-63"></span><br />
So, let&#8217;s think about this a bit: if we use <a href="http://zxing.appspot.com/generator/" target="blank_">this QR code generator site</a>, we can see that we&#8217;re really pointing to a Google subdomain, right?</p>
<p><code>http://chart.apis.google.com/chart?cht=qr&#038;chs=120x120&#038;chl=http%3A%2F%2Feison.net</code></p>
<p>Taking that sample apart, we can see </p>
<ul>
<li>the type (cht) of the image is set to <strong>qr</strong></li>
<li>the size of the QR image is set to <strong>120&#215;120</strong></li>
<li>the link (chl) begins with <strong>http</strong>, and has the HTML characters for <strong>colon</strong> and <strong>forward slash</strong> <a href="http://en.wikipedia.org/wiki/Percent-encoding" target="blank_">percent-encoded</a></li>
</ul>
<p>The finished product, looks like this:<br />
<img src="http://chart.apis.google.com/chart?cht=qr&#038;chs=120x120&#038;chl=http%3A%2F%2Feison.net" alt="QR code for eison.net" /><br />
And the HTML looks like this:<br />
<code>&lt;img src="http://chart.apis.google.com/chart?cht=qr&#038;chs=120x120&#038;chl=http%3A%2F%2Feison.net" alt="QR code for eison.net" /></code></p>
<p><em>Note that in order to display the QR code, I had to treat it like any other image file by wrapping my URL in image tags.</em></p>
<p>Well, what if I wanted to make a link for an app in the Android Market? Turns out it&#8217;s very, very similar, though you do need to know a little something about what the Android name for the app really is.</p>
<p>In this example, we&#8217;ll make a QR code to search for the Fandango app:<br />
<img src="http://chart.apis.google.com/chart?cht=qr&#038;chs=120x120&#038;chl=URL%3Amarket%3A%2F%2Fsearch?q=fandango" /><br />
Taking a look at the code, you can  see that the only the URL changed and that rather than use the word <strong>http</strong>, I used the word <strong>market</strong>, which Android phones understand:<br />
<code>&lt;img src="http://chart.apis.google.com/chart?cht=qr&#038;chs=120x120&#038;chl=URL%3Amarket%3A%2F%2Fsearch?q=fandango" /></code></p>
<p>See what I did there? I <strong>search</strong>ed the market for the word <em>fandango</em>. Now, if I were an app developer and wanted to be sure that people go directly to my app and not just a list of ones with a similar name, I need to know my app&#8217;s full name.<br />
<img src="http://chart.apis.google.com/chart?cht=qr&#038;chs=120x120&#038;chl=URL%3Amarket%3A%2F%2Fsearch?q=pname:com.fandango" /><br />
From the code below, you can see that the full app name is actually <em>com.fandango</em>.<br />
<code>&lt;img src="http://chart.apis.google.com/chart?cht=qr&#038;chs=120x120&#038;chl=URL%3Amarket%3A%2F%2Fsearch?q=pname:com.fandango" /></code></p>
<p>For the sake of full disclosure, I had no idea what the full name for the Fandango app is, but they were nice enough to have their own QR code on their site, which I examined. That, my friends, is the real genius in the uber-searchability of the internet and my best friend Google. When in doubt, ask him. He knows stuff.</p>
<p><a href="http://www.eison.net/hammy/lush.php"><img src="inactive.gif" height="1" width="1" border="0"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://eison.net/2010/06/qr-codes-demystified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

