<?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>Tony Thomas &#187; Mobile Technology</title>
	<atom:link href="http://anthonygthomas.com/category/mobile-technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://anthonygthomas.com</link>
	<description>Father to two, husband to one, web developer and musician.</description>
	<lastBuildDate>Fri, 27 Apr 2012 19:26:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Media Queries for High Pixel-density Devices</title>
		<link>http://anthonygthomas.com/2012/04/22/media-queries-for-high-pixel-density-devices/</link>
		<comments>http://anthonygthomas.com/2012/04/22/media-queries-for-high-pixel-density-devices/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 23:46:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[media queries]]></category>
		<category><![CDATA[Mobile Technology]]></category>
		<category><![CDATA[responsive design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=689</guid>
		<description><![CDATA[Images continue to be a major challenge for mobile web development. I&#8217;ve written about a technique to evaluate screen dimensions and pixel-density using JavaScript. I recently came across some vendor-prefixed media queries to evaluate screen density right in your CSS. (Hat tip to Erik Runyon.) The technique involves creating two sets of background images. One [...]]]></description>
			<content:encoded><![CDATA[<p>Images continue to be a major challenge for mobile web development. <a href="http://anthonygthomas.com/2012/02/16/responsive-images-keep-it-simple-keep-it-small/">I&#8217;ve written about a technique to evaluate screen dimensions and pixel-density using JavaScript</a>. I recently came across some vendor-prefixed media queries to evaluate screen density right in your CSS. (<a href="http://weedygarden.net/2010/10/retina-display-and-css-background-images/" onclick="pageTracker._trackPageview('/outgoing/weedygarden.net/2010/10/retina-display-and-css-background-images/?referer=');">Hat tip to Erik Runyon</a>.)</p>
<p>The technique involves creating two sets of background images. One standard-sized version and a double-sized version (@2x) for high pixel-density screens like the Retina display or Droid phone display.<span id="more-689"></span> For the purposes of this example, let&#8217;s say I have a default icon that&#8217;s 50px X 50px.</p>
<pre class="brush: css; title: ; notranslate">#link-id a { background-image:url(images/icon.png); }</pre>
<p>The Motorola Droid has a pixel-density of 1.5 so I set that as my baseline.</p>
<pre class="brush: css; title: ; notranslate">@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min--moz-device-pixel-ratio: 1.5),
	only screen and (min-device-pixel-ratio: 1.5) {
		#link-id a {
			background-image:url(images/icon@2x.png);
		}
}</pre>
<p>Notice the subtle difference in how the ratio is calculated for Opera. Also, Mozilla&#8217;s vendor prefix has a slightly different syntax. I&#8217;m following Erik Runyon&#8217;s advise here and using Apple&#8217;s style guidelines by naming the hi-res icon with the same name as my normal-resolution icon, but with <code>@2x</code> appended. In this case, the &#8220;@2x&#8221; version is 100px X 100px. The next thing you&#8217;ll have to do is scale the hi-res icon down.</p>
<pre class="brush: css; title: ; notranslate">background-size: 50px 50px;</pre>
<p>That&#8217;s it. Now high pixel-density devices will render a suitably high-resolution image and normal-resolution devices will get a smaller image.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2012/04/22/media-queries-for-high-pixel-density-devices/" rel="bookmark" title="April 22, 2012">Media Queries for High Pixel-density Devices</a></li>
<li><a href="http://anthonygthomas.com/2012/02/16/responsive-images-keep-it-simple-keep-it-small/" rel="bookmark" title="February 16, 2012">Responsive Images: Keep It Simple; Keep It Small</a></li>
<li><a href="http://anthonygthomas.com/2012/02/28/one-site/" rel="bookmark" title="February 28, 2012">One Site</a></li>
<li><a href="http://anthonygthomas.com/2011/03/05/when-to-use-the-css-content-property/" rel="bookmark" title="March 5, 2011">When to Use CSS content Property</a></li>
<li><a href="http://anthonygthomas.com/2008/11/26/getting-blueprint-css-javascript-libraries-into-your-cakephp-layout/" rel="bookmark" title="November 26, 2008">Getting Blueprint CSS &#038; JavaScript Libraries Into Your CakePHP Layout</a></li>
</ul>
<p><!-- Similar Posts took 4.286 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2012/04/22/media-queries-for-high-pixel-density-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MinneWebCon 2008</title>
		<link>http://anthonygthomas.com/2008/04/15/minnewebcon-2008/</link>
		<comments>http://anthonygthomas.com/2008/04/15/minnewebcon-2008/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 14:49:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MinneWebCon]]></category>
		<category><![CDATA[Mobile Technology]]></category>
		<category><![CDATA[New Media]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=23</guid>
		<description><![CDATA[I spent a great day at MinneWebCon yesterday talking with and meeting other folks in the industry at The Big U where I work and elsewhere. It was really a good event for those of us in Minneapolis who are interested in current and emerging web technology. The interesting this to me is how much [...]]]></description>
			<content:encoded><![CDATA[<p>I spent a great day at <a href="http://www.minnewebcon.umn.edu/" onclick="pageTracker._trackPageview('/outgoing/www.minnewebcon.umn.edu/?referer=');">MinneWebCon</a> yesterday talking with and meeting other folks in the industry at <a href="http://umn.edu" onclick="pageTracker._trackPageview('/outgoing/umn.edu?referer=');">The Big U</a> where I work and elsewhere.</p>
<p>It was really a good event for those of us in Minneapolis who are interested in current and emerging web technology. The interesting this to me is how much <a href="http://twitter.com" onclick="pageTracker._trackPageview('/outgoing/twitter.com?referer=');">Twitter</a> added to the experience for those of us participating.</p>
<p><a href="http://twemes.com/minnewebcon" onclick="pageTracker._trackPageview('/outgoing/twemes.com/minnewebcon?referer=');">If you weren&#8217;t monitoring things on Twitter, you really missed out on an ongoing conversation</a>. The most obvious observation is that there was a general air of excitement about the event and a lot of people were merely expressing that sentiment in real time. That had one benefit: I was able to get a sense of what was happening in sessions that I was not attending. At least once it influenced my decision to bail out of one session in favor of another.</p>
<p>The second, perhaps more valuable thing about Twitter at the event was a stream of continuous feedback. We were not 30 seconds into the conference before someone was commenting on the @<a href="http://twitter.com/klayon" onclick="pageTracker._trackPageview('/outgoing/twitter.com/klayon?referer=');">klayon</a>&#8216;s introduction. Tracking &#8220;#minnewebcon&#8221; from my cell phone was like having an ear to the wall. The best part about that? The organizers of the event responded directly to me about a couple of comments I made. They were paying attention and that&#8217;s important.</p>
<p>There will be more formal methods for providing feedback in the next few days, but if you want to troubleshoot the problems in real-time and address them, Twitter is your friend.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2008/04/15/minnewebcon-2008/" rel="bookmark" title="April 15, 2008">MinneWebCon 2008</a></li>
<li><a href="http://anthonygthomas.com/2008/04/04/will-twitter-get-benched/" rel="bookmark" title="April 4, 2008">Will Twitter Get Benched?</a></li>
<li><a href="http://anthonygthomas.com/2008/04/18/careful-where-you-point-that-thing/" rel="bookmark" title="April 18, 2008">Careful Where You Point That Thing</a></li>
<li><a href="http://anthonygthomas.com/2009/04/06/minnewebcon-2009/" rel="bookmark" title="April 6, 2009">MinneWebCon 2009</a></li>
<li><a href="http://anthonygthomas.com/2008/03/27/i-was-there/" rel="bookmark" title="March 27, 2008">I Was There</a></li>
</ul>
<p><!-- Similar Posts took 3.933 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2008/04/15/minnewebcon-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Transparency</title>
		<link>http://anthonygthomas.com/2008/04/11/transparency/</link>
		<comments>http://anthonygthomas.com/2008/04/11/transparency/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 06:00:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Technology]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[drop.io]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=21</guid>
		<description><![CDATA[A thought struck me yesterday as I was toying with drop.io. Terms like cellular, mobile, and web 2.0 are slowly going to fade. The key to new social media is transparency. Usability is going to be a barrier to overcome so that the user doesn&#8217;t feel like they are taking a series of steps on [...]]]></description>
			<content:encoded><![CDATA[<p>A thought struck me yesterday as I was toying with <a href="http://drop.io" onclick="pageTracker._trackPageview('/outgoing/drop.io?referer=');">drop.io</a>. Terms like cellular, mobile, and web 2.0 are slowly going to fade. The key to new social media is transparency. Usability is going to be a barrier to overcome so that the user doesn&#8217;t feel like they are taking a series of steps on a phone, but instead feel like they&#8217;re making instantaneous connections without thinking about it at all.</p>
<p>Twitter is cool, but some of the more advanced mobile features are like little command line commands. Technology people are cool with that and early adopters are willing to learn it, but what about a 14-yr old? Bringing those services to those consumers is going to require a big improvement in the UI and probably take a lot more bandwidth.</p>
<p>A phone or computer is still a relatively crude device when you consider the number of steps it takes to accomplish a task. After a while it feels natural, but for a lot of day-to-day things, it could be a lot simpler. We&#8217;re just not there yet. We&#8217;ll get there. Apple took a step in the right direction with the iPhone when they totally disregarded all current phone interfaces. Even that is only the beginning.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2008/04/11/transparency/" rel="bookmark" title="April 11, 2008">Transparency</a></li>
<li><a href="http://anthonygthomas.com/2008/04/03/amazoncom-announces-textbuyit/" rel="bookmark" title="April 3, 2008">Amazon.com Announces TextBuyIt</a></li>
<li><a href="http://anthonygthomas.com/2008/04/09/go-mobile-young-man/" rel="bookmark" title="April 9, 2008">Go Mobile Young Man!</a></li>
<li><a href="http://anthonygthomas.com/2008/04/08/comcast-using-twitter-to-respond-to-consumer-complaints/" rel="bookmark" title="April 8, 2008">Comcast using Twitter to Respond to Consumer Complaints</a></li>
<li><a href="http://anthonygthomas.com/2012/02/28/one-site/" rel="bookmark" title="February 28, 2012">One Site</a></li>
</ul>
<p><!-- Similar Posts took 3.853 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2008/04/11/transparency/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Go Mobile Young Man!</title>
		<link>http://anthonygthomas.com/2008/04/09/go-mobile-young-man/</link>
		<comments>http://anthonygthomas.com/2008/04/09/go-mobile-young-man/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 15:07:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Technology]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=19</guid>
		<description><![CDATA[I&#8217;ve previously commented that mobile technology is the next frontier in the technology sphere. It seems that Mike Arrington at TechCrunch agrees. Look for the next tech boom to be in mobile technology. It&#8217;s going to connect us in ways we never dreamed possible. In the mid nineties when what we know as the web [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://anthonygthomas.com/2008/04/03/amazoncom-announces-textbuyit/">I&#8217;ve previously commented that mobile technology is the next frontier in the technology sphere</a>. It seems that Mike Arrington at <a href="http://www.techcrunch.com/2008/04/09/i-saw-the-future-of-social-networking-the-other-day/" onclick="pageTracker._trackPageview('/outgoing/www.techcrunch.com/2008/04/09/i-saw-the-future-of-social-networking-the-other-day/?referer=');">TechCrunch agrees</a>. Look for the next tech boom to be in mobile technology. It&#8217;s going to connect us in ways we never dreamed possible.</p>
<p>In the mid nineties when what we know as the web was overtaking the <a href="http://en.wikipedia.org/wiki/Gopher_%28protocol%29" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Gopher_28protocol_29?referer=');">Gopher procotol</a> and computers were entering homes and lifestyles everywhere, there was some talk about the dehumanizing effect of the personal computer. Baby Boomers were worried that the kids would spend too much time isolated in front of the computer screen. That notion seems so quaint now.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2008/04/09/go-mobile-young-man/" rel="bookmark" title="April 9, 2008">Go Mobile Young Man!</a></li>
<li><a href="http://anthonygthomas.com/2008/11/25/wordpress-auto-update-is-ok-but-the-command-line-is-faster/" rel="bookmark" title="November 25, 2008">WordPress&#8217; Auto Update Is OK, But The Command Line Is Faster</a></li>
<li><a href="http://anthonygthomas.com/2008/04/11/transparency/" rel="bookmark" title="April 11, 2008">Transparency</a></li>
<li><a href="http://anthonygthomas.com/2008/04/03/amazoncom-announces-textbuyit/" rel="bookmark" title="April 3, 2008">Amazon.com Announces TextBuyIt</a></li>
<li><a href="http://anthonygthomas.com/2008/03/28/using-social-networking-sites-for-research/" rel="bookmark" title="March 28, 2008">Using Social Networking Sites for Research</a></li>
</ul>
<p><!-- Similar Posts took 3.899 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2008/04/09/go-mobile-young-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

