<?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>Tiffany B. Brown &#187; Mobile</title>
	<atom:link href="http://tiffanybbrown.com/category/mobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiffanybbrown.com</link>
	<description>A web log about web development and internet culture with frequent detours into other stuff.</description>
	<lastBuildDate>Fri, 10 Feb 2012 23:35:51 +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>On Mobile Web Development, Part 2: Stop building WebKit-only sites</title>
		<link>http://tiffanybbrown.com/2012/02/09/on-mobile-web-development-part-2-stop-building-webkit-only-sites/</link>
		<comments>http://tiffanybbrown.com/2012/02/09/on-mobile-web-development-part-2-stop-building-webkit-only-sites/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 16:03:24 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Web standards]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=6641</guid>
		<description><![CDATA[Following-up on my mobile web development post from last week, we have Daniel Glazou, co-chair of the CSS Working Group outlining the scope of the -webkit-prefix problem. Go read his post Call for Action: The Open Web Needs You *Now*. Or read some of what I&#8217;ve excerpted below. As in the past with IE6, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Following-up on my <a href="http://tiffanybbrown.com/2012/02/01/on-mobile-web-development/">mobile web development</a> post from last week, we have Daniel Glazou, co-chair of the <a href="http://www.w3.org/blog/CSS/">CSS Working Group</a>  outlining the scope of the <code>-webkit-</code>prefix problem. </p>
<p>Go read his post <a href="http://www.glazman.org/weblog/dotclear/index.php?post/2012/02/09/CALL-FOR-ACTION%3A-THE-OPEN-WEB-NEEDS-YOU-NOW">Call for Action: The Open Web Needs You *Now*</a>. Or read some of what I&#8217;ve excerpted below.</p>
<blockquote class="longquote"><p>As in the past with IE6, it&#8217;s not a question of innovation but a question of hardware market dominance and software bundled with hardware. <strong>But there is an aspect of the problem we did not have during the IE6 era: these web sites are also WebKit-specific because they use only &#8220;experimental&#8221; CSS properties prefixed with -webkit-* and not their Mozilla, Microsoft or Opera counterparts.</strong> So even if the browser sniffing goes away, web sites will remain broken for non-WebKit browsers.</p>
<p>In many if not most cases, the <code>-webkit-*</code> properties WebKit-specific web sites are using do have <code>-moz-*</code>, <code>-ms-*</code>, <code>-o-*</code> equivalents. Gradients, Transforms, Transitions, Animations, border-radius, all interoperable enough to be browser-agnostic. <strong>Their web authors need only a few minutes to make the site compatible with Mozilla, Microsoft or Opera. But they never did it.</strong></p></blockquote>
<p>Emphasis mine. As I said in my previous post, a vendor prefix <q>means that the property is in flux, and the syntax of functionality may change radically once it&#8217;s finalized and implemented.</q> But here we have this mass of (primarily mobile-targeted) web sites<a href="#n20120209">*</a> that are calcifying the web in its current state.</p>
<p>The problem is so bad that, as Glazou says in his post, <q>other browsers will start supporting/implementing themselves the <code>-webkit-*</code> prefix, turning one single implementation into a new world-wide standard.</q> Yes, <b>every major browser vendor</b>, Opera included, will likely implement support for <code>-webkit-*</code> properties. </p>
<p>Save your celebration, son. <strong>Your laziness and myopia is what got us here.<a href="#n20120209b">**</a></strong>. The best we can hope for is that Opera, Mozilla, and Microsoft agree to support the same set of <code>-webkit-*</code> properties, and agree to handle conflicts and cascades the same way.</p>
<p><strong>But what if they don&#8217;t?</strong> Frankly, either way, we have a hot web development mess on our hands. We&#8217;ll either have more of the same proprietary prefix lock-in, or we&#8217;ll have a tangled mess of conflicting implementations.</p>
<h2>Okay, so what can I do?</h2>
<p>If there is any good news, it&#8217;s that <strong>you can get us out of this mess.</strong> Here&#8217;s how.</p>
<h3>Step 1: Educate yourself about the state of browser support for CSS properties</h3>
<ul>
<li><a href="http://html5please.us/">HTML5 Please</a></li>
<li><a href="http://caniuse.com/">When can I use</a></li>
<li><a href="http://lists.w3.org/Archives/Public/www-style/">www-style@w3.org Mail Archives</a></li>
<li><a href="http://www.css-discuss.org/">CSS Discuss</a></li>
</ul>
<h3>Step 2: Use tools to make writing cross-browser CSS3 easier</h3>
<ul>
<li><a href="https://github.com/desandro/textmate-bundles/tree/master/CSS.tmbundle">David Desandro&#8217;s CSS Textmate bundle</a></li>
<li><a href="http://lesscss.org/">LESS</a></li>
<li><a href="http://sass-lang.com/">SaSS</a></li>
<li><a href="http://compass-style.org/">Compass</a></li>
<li><a href="http://css3please.com/">CSS3 Please</a></li>
<li><a href="http://css3.me/">CSS3 Generator</a></li>
<li><a href="http://csslint.net/">CSSLint</a></li>
<li><ins datetime="2012-02-09T18:43:49+00:00">Chris Coyier also has an excellent roundup <a href="http://css-tricks.com/musings-on-preprocessing/">of CSS pre-processing tools</a></ins></li>
<li>Or just write your own script to do it for you<a href="#n20120209c">&dagger;</a></li>
</ul>
</li>
<h3>Step 3: Retrofit your existing code</h3>
<p>That&#8217;s self explanatory. </p>
<p><ins datetime="2012-02-09T16:03:30+00:00">Now ideally, you would also test in every browser. But I understand the tradeoffs between market share and time. For what it&#8217;s worth, Opera tries to make testing easier with its <a href="http://www.opera.com/developer/tools/mobile/">Opera Mobile emulator</a>. You can also set up an <a href="http://tiffanybbrown.com/2011/05/23/setting-up-an-opera-mini-testing-environment/">Opera Mini test environment</a> on your own machine. Firefox also <a href="http://www.mozilla.org/en-US/mobile/">offers a mobile emulator</a>. For Android, <a href="http://developer.android.com/sdk/index.html">install the SDK</a> (it&#8217;s painless). Pro-tip: You can also run other Android browsers using the SDK.</ins></p>
<p>Let&#8217;s not repeat the mistakes of years past in the mobile space. We know better, and we can <em>do</em> better.</p>
<p><ins datetime="2012-02-09T18:03:34+00:00"><b>UPDATE 1:</b> Check out the <a href="http://codepo8.github.com/prefix-the-web/">Prefix the Web</a> project.</ins></p>
<p class="footnote" id="n20120209">*Having learned the lessons with IE6 sites that are optimized for larger screens are less guilty of this.</p>
<p class="footnote" id="n20120209b">**Ever the one for fairness and nuance, I present Ian Lunn&#8217;s <a href="http://www.ianlunn.co.uk/blog/articles/vendor-prefixing-standing-up-for-developers/">Vendor Prefixing: Standing Up for Developers</a>.</p>
<div class="footnote" id="n20120209c">&dagger; This is a PHP snippet that I use from the command line to write individual properties. I use a Mac, so I&#8217;m not entirely sure how this would work on a Windows machine. I&#8217;m sure it would benefit from a <code>#!/usr/bin/php</code> path or the like for Linux users, but it runs as is for me. Save it as a file anywhere you&#8217;d like. Run it using <code>php
<path-and-filename> "unprefixed-property: value"</code>.
<pre><code>&lt;?php

$pref = array('moz','webkit','ms','khtml','o');

$str = '';

foreach($pref as $p){
   printf('-%s-%s;',$p,$argv[1]);
   echo "\n";
}

echo $argv[1].";\n";
?&gt;
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2012/02/09/on-mobile-web-development-part-2-stop-building-webkit-only-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>input type=&quot;range&quot; and Android&#8217;s stock browser.</title>
		<link>http://tiffanybbrown.com/2012/02/07/input-typerange-and-androids-stock-browser/</link>
		<comments>http://tiffanybbrown.com/2012/02/07/input-typerange-and-androids-stock-browser/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 04:04:56 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[(x)HTML]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[html5 forms]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=6629</guid>
		<description><![CDATA[Android&#8217;s stock browser supports the range input type, but in versions 3.x4.x and below (not sure about Android 4.x), it doesn&#8217;t actually display the UI. It does, however, support parts of the Shadow DOM. That means we can style this element, and give our users a visible control. The image below shows a rather garish [...]]]></description>
			<content:encoded><![CDATA[<p>Android&#8217;s stock browser supports the <code>range</code> input type, but in versions <del datetime="2012-02-09T14:40:47+00:00">3.x</del><ins datetime="2012-02-09T14:40:47+00:00">4.x</ins> and below <del datetime="2012-02-09T14:40:47+00:00"> (not sure about Android 4.x)</del>, it doesn&#8217;t actually display the UI.</p>
<p>It does, however, support parts of the <a href="http://glazkov.com/2011/01/14/what-the-heck-is-shadow-dom/">Shadow DOM</a>. That means we can style this element, and give our users a visible control.</p>
<p>The image below shows a rather garish green-and-orange version of the range user interface widget. This is after adding some styling, as it appears in the stock Android browser.</p>
<div class="image500"><img src="http://webinista.s3.amazonaws.com/images/uploads/2012/02/rangeui.png" alt="" title="safarirange" width="499" height="52" class="aligncenter size-full wp-image-6632"></div>
<p>And below is the CSS that gives us the above image.</p>
<pre><code>
input[type='range']{
    background: #0c0;
    height:10px;
}

input[type='range']::-webkit-slider-thumb{
    background:#f60;
    height:30px;
    width:30px;
    border-radius: 30px;
}
</code></pre>
<p>To date, this does <em>not</em> affect Chrome or Safari for the Desktop. <code>::-webkit-slider-thumb</code> does partially affect iOS Safari. I&#8217;ve included an image of what it looks like below (not to scale). Notice that the thumb color changes, but the slider background does not.</p>
<div class="image500"><img src="http://webinista.s3.amazonaws.com/images/uploads/2012/02/safarirange.png" alt="" title="safarirange" width="500" height="134" class="aligncenter size-full wp-image-6632"></div>
<p>This <em>may</em> also affect other browsers that use <a href="http://www.webkit.org/">Webkit</a> such as the Web Browser for S60 Nokia and Samsung&#8217;s Dolfin. I haven&#8217;t tested it yet, but if you have, please let us know in the comments.</p>
<p>Also keep in mind that this element has a pretty poor user interaction in Android browser. It&#8217;s not very responsive, and doesn&#8217;t operate all that intuitively. This is true of most mobile browsers, but in my opinion (and based on limited experience), Android is worst of all.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2012/02/07/input-typerange-and-androids-stock-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Mobile Web Development</title>
		<link>http://tiffanybbrown.com/2012/02/01/on-mobile-web-development/</link>
		<comments>http://tiffanybbrown.com/2012/02/01/on-mobile-web-development/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 17:49:36 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=6620</guid>
		<description><![CDATA[Much of what we see is that developers rely on a specific browser (e.g., Webkit) and they forget about other engines on various devices, including Opera, Firefox, and others. The problem seems most persistent on mobile, perhaps because of Webkit&#8217;s market share. Things break and developers don&#8217;t understand why; or they don&#8217;t notice the problem, [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Much of what we see is that developers rely on a specific browser (e.g., Webkit) and they forget about other engines on various devices, including Opera, Firefox, and others. The problem seems most persistent on mobile, perhaps because of Webkit&#8217;s market share. Things break and developers don&#8217;t understand why; or they don&#8217;t notice the problem, of if they do they do browser sniffing to avoid the problem.</p></blockquote>
<p>That&#8217;s Andreas Bovens of Opera from <a href="http://www.w3.org/QA/2012/02/interview_opera_on_the_web_of.html">Interview: Opera on the Web of Devices</a>. Also featured in the interview is <a href="http://nimbupani.com/">Divya Manian</a>, also of Opera.</p>
<p>WebKit&#8217;s dominance in the U.S. mobile space is pretty strong. That doesn&#8217;t mean, however, that it will stay this way forever. And it doesn&#8217;t mean that an alternative browser won&#8217;t ever reach a significant market share.</p>
<p>We&#8217;ve already seen that happen on desktop. You would think we&#8217;ve learned the lessons. And yet the amount of user-agent sniffing, and experimental mono-browser CSS we see in production is pretty mind-blowing. And I mean &#8220;mind-blowing&#8221; as in, <em>Opera has a person dedicated to mobile developer education and outreach in the U.S. market to combat the problem</em> (me).</p>
<p>I&#8217;m not sure how to solve the problem, except to ask that (mobile) developers <a href="http://html5please.us/" target="_blank">show some restraint</a> when using the new shiny in production. The vendor-prefix means that the property is in flux, and the syntax of functionality may change radically once it&#8217;s finalized and implemented. </p>
<p>Don&#8217;t believe me? Look at the history of gradients. Its <a href="http://www.webkit.org/blog/175/introducing-css-gradients/">syntax</a> as introduced <a href="http://www.webkit.org/blog/1424/css3-gradients/">changed</a> a few years later. And if the <a href="http://dev.w3.org/csswg/css3-images/#linear-gradients">current draft</a> of the specification is any indication, it may change again. Also see: &#8220;<a href="http://www.w3.org/TR/css3-flexbox/">flexbox</a>.&#8221; It&#8217;s specification changed completely and then <a href="http://www.xanthir.com/blog/#4Dm0">changed mostly back</a> to what it was <em>just in the last 12 months</em>.</p>
<p>I know we all want to be cutting edge and ahead of the curve. But my fear is that we&#8217;re creating a climate much like the one that existed in the IE6 heyday.</p>
<p>Back then, developers built Internet Explorer-only sites which broke in Netscape. User perception was &#8220;Netscape doesn&#8217;t work&#8221; or &#8220;IE is just better.&#8221; So they switched. IE6&#8242;s market share was something on the order of 85% at one point. And then it stagnated for <a href="http://en.wikipedia.org/wiki/Internet_explorer#Internet_Explorer_6"><b>five full years</b></a> until Internet Explorer 7 was released.</p>
<p>Developers paid for this with our frustration costs. Users paid for it time by waiting for extra, IE6 friendly code to download, and in having less awesome web experiences. And Microsoft paid because Firefox ate a big chunk of its market share lunch.</p>
<p>Let&#8217;s learn the lessons this time, and be forward-thinking with our mobile development as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2012/02/01/on-mobile-web-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up an Opera Mini testing environment</title>
		<link>http://tiffanybbrown.com/2011/05/23/setting-up-an-opera-mini-testing-environment/</link>
		<comments>http://tiffanybbrown.com/2011/05/23/setting-up-an-opera-mini-testing-environment/#comments</comments>
		<pubDate>Mon, 23 May 2011 14:02:36 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[opera mini emulator]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=5921</guid>
		<description><![CDATA[Opera Mini is Opera&#8217;s feature phone browser &#8212; our browser for so-called &#8220;dumb phones.&#8221; It&#8217;s lightweight and fast, in part because it is a proxy browser. Requests for pages go from the user&#8217;s handset to Opera&#8217;s proxy servers. The proxy servers make the request to the requested web site, parse the HTML and JavaScript &#8212; [...]]]></description>
			<content:encoded><![CDATA[<p>Opera Mini is Opera&#8217;s feature phone browser &#8212; our browser for so-called &#8220;dumb phones.&#8221; It&#8217;s lightweight and fast, in part because it is a proxy browser. </p>
<div class="image640"><img src="http://webinista.s3.amazonaws.com/images/uploads/2011/05/operamini.png" alt="" title="How Opera Mini works" width="640" height="257" class="alignnone size-full wp-image-6005" /></div>
<p>Requests for pages go from the user&#8217;s handset to Opera&#8217;s proxy servers. The proxy servers make the request to the requested web site, parse the HTML and JavaScript &#8212; subject to time limits &#8212; convert it to Opera Binary Markup Language and deliver it to the client on the handset.</p>
<p>Those time limits are about 5 seconds for Opera Mini 5+ and 2.5 seconds for Opera Mini 4. There are also XMLHttpRequest timeout limits of 15 seconds for Opera Mini 5+ and 8 seconds for Opera Mini. Those limits are in place as a way of managing resources on the proxy servers. Once reached, the scripts are stopped and the page is sent as is to the client. </p>
<p>As a result, things often work differently or less consistently than expected on Opera Mini. Your sites will require a bit more testing to make sure they work reliably. You can, of course, do this by installing Opera Mini on your feature phone or smart phone.  Or you can install a Java ME emulator and run Opera Mini on your desktop.</p>
<p>To do that, <a href="http://www.microemu.org/">download MicroEmulator</a>. It is <q>a pure Java implementation of Java <abbr title="mobile edition">ME</abbr> in Java <abbr title="standard edition">SE</abbr></q> &#8212; essentially software that replicates a cell phone environment. </p>
<p>Next, <a href="http://m.opera.com/">download Opera Mini</a>, taking note of where you&#8217;ve saved mini.jad. </p>
<p>When you launch MicroEmulator, you&#8217;ll be greeted by the &#8220;Launcher&#8221; screen. Go to the File menu, and select &#8220;Open MIDlet File,&#8221; navigating to the location of mini.jad. You&#8217;ll see &#8220;Opera Mini&#8221; in the menu. To open Opera Mini, make sure it is highlighted, then click &#8220;Start.&#8221;</p>
<div class="image640"><a href="http://webinista.s3.amazonaws.com/images/uploads/2011/05/operamini_in_microemu.png"><img src="http://webinista.s3.amazonaws.com/images/uploads/2011/05/operamini_in_microemu640.png" alt="" title="operamini_in_microemu" width="640" height="520" class="alignnone size-medium wp-image-6016" />Click to embiggen.</a></div>
<p>You can then navigate to the pages you wish to test. Those pages will need to be available to the wider internet, of course. Opera&#8217;s proxy servers can&#8217;t connect to your local WiFi network or intranet.</p>
<p>Keep in mind that MicroEmulator only has one device configuration by default. You can test whether your site <em>works</em> with Opera Mini out of the box, but questions of usability and navigability will require some skinning on your part, and ideally, some real-world device testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2011/05/23/setting-up-an-opera-mini-testing-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android 3.0 SDK on Mac OS X &#8211; Snow Leopard: Installation tips</title>
		<link>http://tiffanybbrown.com/2011/03/22/installing-the-android-3-0-sdk-on-mac-os-x-snow-leopard/</link>
		<comments>http://tiffanybbrown.com/2011/03/22/installing-the-android-3-0-sdk-on-mac-os-x-snow-leopard/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 00:50:43 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=5725</guid>
		<description><![CDATA[It&#8217;s not as obvious as it seems in the Installing the SDK documentation. You&#8217;ll also need to do two (small) extra steps. Step 1: Make sure your JAVA_HOME path is using the correct value Edit or create a .bash_profile file in your home directory and add the following line. export JAVA_HOME=`/usr/libexec/java_home` This will set the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not as obvious as it seems in the <a href="http://developer.android.com/sdk/installing.html">Installing the SDK documentation</a>. You&#8217;ll also need to do two (small) extra steps.</p>
<h2>Step 1: Make sure your JAVA_HOME path is using the correct value</h2>
<p>Edit or create a .bash_profile file in your home directory and add the following line.</p>
<pre>
export JAVA_HOME=`/usr/libexec/java_home`
</pre>
<p>This will set the JAVA_HOME environment variable to whichever version of the Mac OS X <abbr title="Java Development Kit">JDK</abbr> is available. You can see which version is in use by firing up the Java Preferences application (in /Applications/Utilities)</p>
<h2>Step 2: Use <kbd style="text-transform:lowercase">./android</kbd> instead of <code style="text-transform:lowercase">android</code> to launch the <abbr title="Software Development Kit">SDK</abbr> &amp; <abbr>AVD</abbr> Manager</h2>
<p>The documentation says <q>On Mac or Linux, open a terminal and navigate to the tools/ directory in the Android SDK, then execute: android</q>, but on the Mac, you actually have to type <kbd>./android</kbd>. </p>
<p>That may be obvious to some, but for the n00bs among us, not so much <img src='http://tiffanybbrown.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . You can then continue <a href="http://developer.android.com/sdk/installing.html">with the installation instructions</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2011/03/22/installing-the-android-3-0-sdk-on-mac-os-x-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>On the mobile digital divide</title>
		<link>http://tiffanybbrown.com/2011/01/09/on-the-mobile-digital-divide/</link>
		<comments>http://tiffanybbrown.com/2011/01/09/on-the-mobile-digital-divide/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 00:46:51 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Race, Gender, Class & Identity]]></category>
		<category><![CDATA[digital divide]]></category>
		<category><![CDATA[mobile web]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=5597</guid>
		<description><![CDATA[But now some see a new &#8220;digital divide&#8221; emerging&#8212with Latinos and blacks being challenged by more, not less, access to technology. It&#8217;s tough to fill out a job application on a cell phone, for example. &#8230; Fifty-one percent of Hispanics and 46 percent of blacks use their phones to access the Internet, compared with 33 [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>But now some see a new &#8220;digital divide&#8221; emerging&#8212with Latinos and blacks being challenged by more, not less, access to technology. <strong>It&#8217;s tough to fill out a job application on a cell phone, for example.</strong>  &#8230; Fifty-one percent of Hispanics and 46 percent of blacks use their phones to access the Internet, compared with 33 percent of whites, according to a July 2010 Pew poll. Forty-seven percent of Latinos and 41 percent of blacks use their phones for e-mail, compared with 30 percent of whites. The figures for using social media like Facebook via phone were 36 percent for Latinos, 33 percent for blacks and 19 percent for whites. </p></blockquote>
<p>From <a href="https://www.washingtonpost.com/wp-dyn/content/article/2011/01/09/AR2011010900043.html">For minorities, new &#8216;digital divide&#8217; seen</a> in the Washington Post. (Log in may be required.)</p>
<p>Emphasis mine. </p>
<p>This is why it is so troubling that many companies are shifting to online-only applications, even for jobs &#8212; such as janitorial positions &#8212; where computer use and required computing skills are minimal. I remember sitting in the human resources office at Georgia Tech when a middle-aged (black) man to ask for a job application for a janitorial job and was told to sit at a computer (one set aside for such things) to fill out an application online. He didn&#8217;t know how. <strong>He walked out a few minutes later</strong>.</p>
<p>I tell this story to ask: <strong>who is excluded by your technical decisions?</strong>  </p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2011/01/09/on-the-mobile-digital-divide/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>On mobile context and responsive web design</title>
		<link>http://tiffanybbrown.com/2010/10/15/on-mobile-context-and-responsive-web-design/</link>
		<comments>http://tiffanybbrown.com/2010/10/15/on-mobile-context-and-responsive-web-design/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 00:16:04 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[mobile context]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=4675</guid>
		<description><![CDATA[The fact that the user has a small screen in their hand is one thing &#8211; the fact that it is in their hand at all is another. The fact that the user may be walking, driving, or lounging is yet another. In fact, it&#8217;s quite likely that they really deserve different content and services [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The fact that the user has a small screen in their hand is one thing &#8211; the fact that it is in their hand at all is another. The fact that the user may be walking, driving, or lounging is yet another. In fact, it&#8217;s quite likely that they really deserve different content and services altogether &#8211; or, at least, <strong>a differently prioritized version of the default desktop experience.</strong></p></blockquote>
<p>Emphasis mine. That&#8217;s possibly the most important paragraph from James Pearce&#8217;s post <a href="http://tripleodeon.com/2010/10/not-a-mobile-web-merely-a-320px-wide-one/">Not a mobile web, merely a 320px-wide one</a>.</p>
<p>In other words, a &#8220;responsive&#8221; web site design works best when the site&#8217;s content has been prioritized.</p>
<p>[Via <a href="http://www.blackphoebe.com/">Jen</a>]</p>
<p><b>Also see:</b> <a href="http://www.inc.com/guides/2010/07/how-to-design-and-build-a-mobile-website.html">How to Design and Build a Mobile Website</a>, an Inc.com piece with lots of awesome advice from <a href="http://flinglog.com/">Brian Fling</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2010/10/15/on-mobile-context-and-responsive-web-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On the digital divide</title>
		<link>http://tiffanybbrown.com/2010/07/08/on-the-digital-divide/</link>
		<comments>http://tiffanybbrown.com/2010/07/08/on-the-digital-divide/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 15:00:56 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Gadgets & Personal Tech]]></category>
		<category><![CDATA[Internet life]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[digital divide]]></category>
		<category><![CDATA[mobile web]]></category>
		<category><![CDATA[pew]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=4243</guid>
		<description><![CDATA[But the mobile Web means different things to different people. For more affluent populations, it generally means wireless access with a laptop computer. For poorer people it means a cellphone, which is not a perfect replacement for other forms of online access, said Mr. Smith and several others who study social issues related to technology. [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>But the mobile Web means different things to different people. For more affluent populations, it generally means wireless access with a laptop computer. For poorer people it means a cellphone, which is not a perfect replacement for other forms of online access, said Mr. Smith and several others who study social issues related to technology.</p></blockquote>
<p>From yesterday&#8217;s <i>New York Times</i> blog post <a href="http://bits.blogs.nytimes.com/2010/07/07/increased-mobile-web-use-and-the-digital-divide/">Mobile Web Use and the Digital Divide</a> by Joshua Brustein. [via <a href="http://twitter.com/negrophile/status/18015742345">@negrophile</a>]</p>
<p>Also see: <a href="http://www.pewinternet.org/Reports/2010/Mobile-Access-2010.aspx">Mobile Access 2010</a> from The Pew Research Center&#8217;s Internet &#038; American Life Project.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2010/07/08/on-the-digital-divide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile in the rest of the world</title>
		<link>http://tiffanybbrown.com/2010/05/14/mobile-in-the-rest-of-the-world/</link>
		<comments>http://tiffanybbrown.com/2010/05/14/mobile-in-the-rest-of-the-world/#comments</comments>
		<pubDate>Fri, 14 May 2010 14:03:57 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Africa]]></category>
		<category><![CDATA[erik hersman]]></category>
		<category><![CDATA[karanja macharia]]></category>
		<category><![CDATA[kenya]]></category>
		<category><![CDATA[mobile web]]></category>
		<category><![CDATA[nokia]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=3914</guid>
		<description><![CDATA[I carry around a Nexus One and an iPhone. Karanja carries around a Nokia 1600, the cheapest data-enabled phone you can buy ($25). Why? He does this so that he understands what his customers need and use. His clients aren&#8217;t your upper-class Blackberry toting professionals, they&#8217;re the &#8220;wananchi&#8221; (the ordinary person). That&#8217;s Erik Hersman of [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>I carry around a Nexus One and an iPhone. Karanja carries around a Nokia 1600, the cheapest data-enabled phone you can buy ($25). Why? He does this so that he understands what his customers need and use. His clients aren&#8217;t your upper-class Blackberry toting professionals, they&#8217;re the &#8220;wananchi&#8221; (the ordinary person).</p></blockquote>
<p>That&#8217;s Erik Hersman of WhiteAfrican.com talking about Kenyan entrepreneur Karanja Macharia in his post <a href="http://whiteafrican.com/2010/05/14/a-rising-tide-africas-tech-entrepreneurs/">A Rising Tide: Africa&#8217;s Tech Entrepreneurs</a>.</p>
<p>Hersman gives us a fantastic overview of the ingenuity that African entrepreneurs are showing by working with what&#8217;s there: SMS infrastructure, low internet penetration (mobile and otherwise), low incomes, and high mobile penetration.</p>
<p><b>Also see:</b> Peter-Paul Koch&#8217;s February post <a href="http://www.quirksmode.org/blog/archives/2010/02/the_iphone_obse.html">The iPhone obsession</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2010/05/14/mobile-in-the-rest-of-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Mobile Context</title>
		<link>http://tiffanybbrown.com/2009/11/18/on-mobile-context/</link>
		<comments>http://tiffanybbrown.com/2009/11/18/on-mobile-context/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 18:00:45 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[immigration]]></category>
		<category><![CDATA[mobile context]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=2617</guid>
		<description><![CDATA[From Vice magazine&#8217;s interview with University of California at San Diego professor Ricardo Dominguez and his Transborder Immigrant Tool. We looked at the Motorola i455 cell phone, which is under $30, available even cheaper on eBay, and includes a free GPS applet. We were able to crack it and create a simple compasslike navigation system. [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.viceland.com/int/v16n11/htdocs/follow-the-gps-225.php?page=1" class="ext magazine title">Vice</a> magazine&#8217;s interview with University of California at San Diego professor <a href="http://visarts.ucsd.edu/node/view/491/322">Ricardo Dominguez</a> and his <a href="http://post.thing.net/node/1642">Transborder Immigrant Tool</a>. </p>
<blockquote><p>We looked at the Motorola i455 cell phone, which is under $30, available even cheaper on eBay, and includes a free GPS applet. We were able to crack it and create a simple compasslike navigation system. We were also able to add other information, like where to find water left by the Border Angels, where to find Quaker help centers that will wrap your feet, how far you are from the highway &#8212; things to make the application really benefit individuals who are crossing the border.</p></blockquote>
<p>Here we have:</p>
<ul>
<li>A relatively cheap phone with a GPS application, accessible to its target audience: (comparatively) poor Mexican migrants.</li>
<li>Relevant information for someone trying to cross a desert.</li>
<li>Portability and ubiquity. It fits in the pocket</li>
</ul>
<p>That&#8217;s context. When developing mobile applications, we should ask:</p>
<ul>
<li>What do people need to know?</li>
<li>What kind of device can they afford?</li>
<li>What are the technical limitation of that device (physical size, screen size, input capability, battery life, available memory)?</li>
<li>How can we build an application that works well on such a device?</li>
</ul>
<p>A two-part question for Dominguez: how&#8217;s the battery life on the phone and how does this application affect it? Getting stuck in the desert with no phone would suck rocks.</p>
<p>[Via <a href="http://www.psfk.com/2009/11/an-app-for-crossing-the-border-the-transborder-immigrant-tool.html">PSFK</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2009/11/18/on-mobile-context/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>3 almost free Android apps you absolutely must take on your next trip</title>
		<link>http://tiffanybbrown.com/2009/07/30/4-almost-free-android-apps-you-absolutely-must-take-on-your-next-trip/</link>
		<comments>http://tiffanybbrown.com/2009/07/30/4-almost-free-android-apps-you-absolutely-must-take-on-your-next-trip/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 09:00:40 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[t-mobile]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=2133</guid>
		<description><![CDATA[UPDATE: Turns out, I wasn&#8217;t wrong. I was just clairvoyant . WorldMate is working on an Android version of its application. Hrm. It appears I was wrong about a WorldMate application for Android. I managed to find an unused download page (by typing &#8220;android site:www.worldmate.com&#8221; in Google) that listed Android as an option. I assumed [...]]]></description>
			<content:encoded><![CDATA[<p><ins datetime="2010-07-16T20:24:05+00:00" class="editors-note"><strong>UPDATE:</strong> Turns out, I wasn&#8217;t wrong. I was just <em>clairvoyant</em> <img src='http://tiffanybbrown.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . WorldMate is working on an Android <a href="http://www.worldmate.com/beta/android/">version</a> of its application. </ins> </p>
<p><ins datetime="2009-08-05T12:01:36+00:00" class="editors-note">Hrm. It appears I was wrong about a WorldMate application for Android. I managed to find an <a href="http://www.worldmate.com/downloadcenter/choose_platform.php">unused  download page</a> (by typing &#8220;android site:www.worldmate.com&#8221; in Google) that listed Android as an option. I assumed &#8212; and y&#8217;all know how the rest of that goes &#8212; that meant there was a WorldMate for Android available now.  The HTC device (running S60) pictured on the homepage added to my confusion. Nope. No, WorldMate Android app. My bad on that. The post has been updated below.<br />
</ins></p>
<p>Yes, I stole the title from <a href="http://www.elliott.org/">Chris Elliott</a>&#8216;s post on <a href="http://www.elliott.org/the-travel-technologist/5-free-iphone-apps-you-absolutely-must-take-on-your-next-trip/">iPhone applications</a> for travelers.</p>
<p>I&#8217;m (currently) an <a href="http://www.android.com/">Android</a> girl, so I wondered whether it was possible to find similar applications for my <a href="http://www.t-mobileg1.com/">G1</a>. I couldn&#8217;t find perfect matches for Elliot&#8217;s list, but here&#8217;s what I came up with.</p>
<h3><a href="http://where.com/android.php">Where</a></h3>
<ul>
<li><b>What:</b> Where is a series of GPS widgets that you can use to find points of interest, find the cheapest gas, check the weather, or find an area brewery</li>
<li><b>Sort of like:</b> Aroundme and Cheap Gas! for the iPhone</li>
<li><b>Cost:</b> <b>FREE</b>, but ad-supported.</li>
</ul>
<h3>WorldMate</h3>
<ul>
<li><ins datetime="2009-08-05T12:01:36+00:00">There is no WorldMate for Android. </ins><del datetime="2009-08-05T12:01:36+00:00"><b>What:</b> As Elliott explains, WorldMate offers a bunch of features, <q>including a currency converter, flight updates, integration with Google maps, and an online travel planner with the ability to consolidate your itinerary.</q></del></li>
<li><b>Sort of like:</b> Um, WorldMate for iPhone.</li>
<li><b>Cost:</b> Most features are <b>FREE</b>. Some require a $39.99 subscription.</li>
</ul>
<h3><a href="http://weather.weatherbug.com/mobile/android.html">WeatherBug</a></h3>
<ul>
<li><b>What:</b> Location-aware weather reports for 8,000 U.S. cities. Displays the current temperature in the Android status bar.</li>
<li><b>Sort of like:</b> He didn&#8217;t mention a weather app, but I am including one anyway.</li>
<li><b>Cost:</b> FREE, but ad-supported. Don&#8217;t like ads? Try <a href="http://www.weather.com/mobile/">The Weather Channel</a>&#8216;s application.</li>
</ul>
<h3><a href="http://www.androlib.com/android.application.com-google-android-bistromath-nzC.aspx">BistroMath</a></h3>
<ul>
<li><b>What:</b> Determine who owes what and how much to tip &#8212; in case you&#8217;re not down with using the built-in calculator.</li>
<li><b>Sort of like:</b> CheckPlease!</li>
<li><b>Cost:</b> FREE</li>
</ul>
<p>Unfortunately, a FREE flight tracker isn&#8217;t yet available for Android. But if you really need one, <a href="http://www.flightstats.com/go/Mobile/android.do">FlightStats</a> costs $5.99.</p>
<p>Do you use a travel-related Android application? Tell us in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2009/07/30/4-almost-free-android-apps-you-absolutely-must-take-on-your-next-trip/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Barcode + Bokeh = Bokodes: A new way to encode visual data</title>
		<link>http://tiffanybbrown.com/2009/07/29/barcode-bokeh-bokodes-a-new-way-to-encode-visual-data/</link>
		<comments>http://tiffanybbrown.com/2009/07/29/barcode-bokeh-bokodes-a-new-way-to-encode-visual-data/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 19:00:44 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[bar codes]]></category>
		<category><![CDATA[bokode]]></category>
		<category><![CDATA[pervasive computing]]></category>
		<category><![CDATA[qr codes]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=2187</guid>
		<description><![CDATA[Bokodes, a project of the MIT Media Lab. Bokodes are very similar to QR Codes, which are standard in Japan and becoming more popular in Europe. Like QR Codes, bokodes require a camera and software to decode the data. But unlike QR Codes, bokodes are much smaller and can store much more information. A typical [...]]]></description>
			<content:encoded><![CDATA[<div class="video">
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/wG7vXI1I1wg&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wG7vXI1I1wg&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object><br />
Bokodes, a project of the <a href="http://www.media.mit.edu/">MIT Media Lab</a>.
</div>
<p>Bokodes are very similar to <a href="http://en.wikipedia.org/wiki/QR_Code">QR Codes</a>, which are standard in Japan and becoming more popular in Europe. </p>
<p>Like QR Codes, bokodes require a camera and software to decode the data. But unlike QR Codes, bokodes are much smaller and can store much more information. A typical bokode measures about 3mm across. That&#8217;s barely big enough to see with the naked eye. Cameras however can capture and read the bokode&#8217;s data with an out of focus photograph. Add a zoom lens and a bokode can be read from several meters away. </p>
<p>Small size + ability to be read from afar = perfect for any place where space or aesthetics are a premium. Expect to see bokodes used in museums, on small product packages, on driver&#8217;s licenses or credit cards, or even license plates.</p>
<p>[Via <a href="http://www.psfk.com/2009/07/bokode-beyond-the-bar-code.html">PSFK</a> &rarr; <a href="http://www.fastcompany.com/blog/cliff-kuang/design-innovation/mits-bokode-tiny-barcode-replacement-thats-chockablock-data">Fast Company</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2009/07/29/barcode-bokeh-bokodes-a-new-way-to-encode-visual-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Black folks is takin&#8217; ovah da mobile innanets!</title>
		<link>http://tiffanybbrown.com/2009/07/23/black-folks-is-takin-ovah-da-mobile-innanets/</link>
		<comments>http://tiffanybbrown.com/2009/07/23/black-folks-is-takin-ovah-da-mobile-innanets/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 00:00:30 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[digital divide]]></category>
		<category><![CDATA[mobile internet]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=2147</guid>
		<description><![CDATA[From yesterday&#8217;s post on the New York Times Bits blog, we get the news that the &#8220;digital divide&#8221; &#8212; in this case, internet access &#8212; is being narrowed by mobile phones. But the common characteristics of those two characters — they are both middle-aged and white — may no longer be a fitting stereotype, at [...]]]></description>
			<content:encoded><![CDATA[<p>From yesterday&#8217;s post on the <i class="newspaper title">New York Times</i> Bits blog, we get the news that the &#8220;<a href="http://en.wikipedia.org/wiki/Digital_divide">digital divide</a>&#8221; &#8212; in this case, internet access &#8212; is being <a href="http://bits.blogs.nytimes.com/2009/07/22/mobile-internet-use-shrinks-digital-divide/">narrowed by mobile phones</a>.</p>
<blockquote><p>But the common characteristics of those two characters — they are both middle-aged and white — may no longer be a fitting stereotype, at least when it comes to today’s mobile Internet aficionado, according to a report released Wednesday by the Internet and American Life Project of the Pew Research Center.</p>
<p>The survey, conducted in April by interviewing 2,253 Americans, found that while accessing the Internet via a mobile phone was increasing, the swell was reflected most sharply among African-Americans. </p></blockquote>
<p>Last month, I was in South Carolina for my cousin&#8217;s wedding. In attendance? Three <a href="http://www.t-mobileg1.com/">T-Mobile G1</a> devices, one Blackberry, and me with my dying, yet WiFi-and-mobile Internet-enabled Nokia N80. That&#8217;s <strong>five internet-enabled smart phones</strong>, out of about two-dozen folks under the age of 45.</p>
<p>My cousins are not the same kind of people as the black folks I regularly roll with. My black friends are mostly college educated, almost entirely middle-to-upper-middle class in both occupation and income, and highly tech-literate. It would probably be a shock if none of us had smart phones, right?  </p>
<p>My cousins? They&#8217;re mostly lower-middle and working class folks. College? Only one other cousin has completed a 4-year degree. Most are in <strong>service rather than knowledge jobs</strong>. Their computing know-how is basic. Some don&#8217;t own laptop or desktop computers.</p>
<p>And yet, here my cousins were using their phones to check email and update their Facebook status.</p>
<p>They were not, as their incomes might suggest, owners of &#8216;free&#8217; phones &#8212; though now, even the free phone is internet-enabled. Nope, these are phone and mobile internet sophisticates. </p>
<p>At first, I was mildly shocked. But after thinking about their &#8216;life context,&#8217; it made perfect sense. </p>
<p>I work a pretty cushy desk job at an <a href="http://armchairmedia.com/">interactive agency</a> with unfiltered internet access. My cousins have jobs where <strong>access to a laptop or desktop is limited</strong> or the <strong>internet is filtered</strong>. </p>
<p>I can afford broadband service <em class="b">and</em> a mobile data plan. My cousins can afford broadband service <em class="b">or</em> a mobile data plan. I suspect their experience is far closer to the black mainstream than mine.</p>
<p>For predominantly-white mainstream internet users, mobile internet access may seem redundant. You have it at work or school. You have it at home. But for blacks and Latinos (and probably anyone in a lower-wage job) the choice is more like this:</p>
<ol>
<li>Pay $30 a month for around-the-clock internet access that works wherever you are and fits in your pocket; or</li>
<li>Pay $30 a month for access that is only available when you are at home</li>
</ol>
<p>Which would you choose? </p>
<p>Something else to consider: Most people buy computers <em>for the family&#8217;s use</em>. But they buy phones <em>for their own use</em>. So not only is this internet available any place you are,* <strong>you ain&#8217;t even got to share</strong>!</p>
<p>One last point: the cheapest computers (netbooks) still cost about $100 more than most internet-enabled phones. Even if you buy a netbook, you&#8217;ll still need to buy a phone. I can&#8217;t overstate the convenience <ins datetime="2009-07-24T15:12:22+00:00">or affordability</ins> of a pocket-sized, multi-function gadget.</p>
<p>When we take this context into account, it makes total sense that black folks (and English-speaking Latinos, for that matter) are leading the mobile internet charge.</p>
<p class="footnote">*Provided you go places where you can find a mobile signal.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2009/07/23/black-folks-is-takin-ovah-da-mobile-innanets/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Lazy Web: What are your favorite Android apps?</title>
		<link>http://tiffanybbrown.com/2009/06/26/lazy-web-what-are-your-favorite-android-apps/</link>
		<comments>http://tiffanybbrown.com/2009/06/26/lazy-web-what-are-your-favorite-android-apps/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 09:00:37 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Gadgets & Personal Tech]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[htc magic]]></category>
		<category><![CDATA[lazyweb]]></category>
		<category><![CDATA[mobile applications]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[open handset alliance]]></category>
		<category><![CDATA[tmobile]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=2109</guid>
		<description><![CDATA[I am now the proud owner of a T-Mobile G1 running the Android operating system. I like it so far, though I wish the on-screen keyboard pas a bit more responsive. I have already installed a few applications, including Pacman, and a bar code / QR code scanner, but I&#8217;d like to take full advantage [...]]]></description>
			<content:encoded><![CDATA[<p>I am now the proud owner of a T-Mobile G1 running the <a href="http://www.android.com/">Android</a> operating system. I like it so far, though I wish the on-screen keyboard pas a bit more responsive. I have already installed a few applications, including Pacman, and a bar code / QR code scanner, but I&#8217;d like to take full advantage of this pocket-sized computer that sometimes pretends it&#8217;s a phone.</p>
<p>So I ask you: <strong>What are your favorite Android applications?</strong></p>
<p>Please share: </p>
<ul>
<li>The name of the application</li>
<li>What it does</li>
<li>Whether it&#8217;s free, paid, and/or open source</li>
</ul>
<p>I&#8217;m looking for a great to-do list / task manager (<a href="http://en.wikipedia.org/wiki/Getting_Things_Done">GTD</a> not necessary) in particular.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2009/06/26/lazy-web-what-are-your-favorite-android-apps/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Google releases GMail Mobile 2.0</title>
		<link>http://tiffanybbrown.com/2008/10/24/google-releases-gmail-mobile-20/</link>
		<comments>http://tiffanybbrown.com/2008/10/24/google-releases-gmail-mobile-20/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 08:00:27 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[mobile applications]]></category>
		<category><![CDATA[mobile internet]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[nokia n80]]></category>
		<category><![CDATA[symbian]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1538</guid>
		<description><![CDATA[Google announced the release of the 2.0 version of Gmail mobile Java application yesterday. I&#8217;ve used the 1.0 application for about as long as I&#8217;ve owned my phone. It worked well for most of that time, except for a significant &#8212; though since fixed &#8212; glitch with secure connections. I have only used the new [...]]]></description>
			<content:encoded><![CDATA[<p>Google announced the release of the 2.0 version of <a href="http://www.google.com/mobile/default/mail/index.html">Gmail mobile</a> Java application yesterday. I&#8217;ve used the 1.0 application for about as long as I&#8217;ve owned my <a href="http://www.nseries.com/index.html#l=products,n80_internet">phone</a>. It worked well for most of that time, except for a significant &#8212; though since fixed &#8212; glitch with secure connections.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/ykbMU58W08k&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/ykbMU58W08k&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I have only used the new interface for a grand total of ten minutes, but I can safely say that the 2.0 version of Gmail&#8217;s mobile app is a worthy upgrade. I&#8217;m using GMail mobile on a Nokia N80, running the <a href="http://www.s60.com/">S60 platform</a>, 3rd edition.</p>
<p><span id="more-1538"></span></p>
<h3>What&#8217;s new?</h3>
<p>The hot new feature is, undoubtedly, <strong>support for multiple accounts</strong>. The first version of Gmail Mobile only supported one account at a time (though,<i> technically</i>, you could have just logged in using a different account). Version 2.0 includes a menu option for adding additional accounts.</p>
<p>I&#8217;m also digging the &#8216;Mobile Drafts&#8217; feature. Several times I have started an e-mail message in the car or on the train, only to have to stop mid-message because the light changed, or I reached my stop. With mobile drafts, I can return to the message later. A <strong>HUGE</strong> improvement over version 1.0.</p>
<p>Also new: The &#8216;Show data use per session&#8217; feature. For those mobile users (outside of the U.S., mostly) who have metered, not unlimited, data plans, this feature is a little bit of a Godsend.</p>
<p>Another improvement: <strong>Speed.</strong> This version of the Gmail Mobile application feels faster than the previous one, even when using a secure connection.</p>
<p>Gmail mobile 2.0 <a href="http://www.google.com/mobile/default/mail/index.html">is available</a> as an application for Android, Symbian, Windows Mobile, Blackberry and iPhone. </p>
<p><b>Possibly related:</b> <a href="http://tiffanybbrown.com/2007/11/30/my-essential-mobile-applications/">My essential mobile applications</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/10/24/google-releases-gmail-mobile-20/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

