<?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>Andrea Trasatti&#039;s tech notes and more &#187; mobile</title>
	<atom:link href="http://blog.trasatti.it/tag/mobile-2/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.trasatti.it</link>
	<description></description>
	<lastBuildDate>Sun, 29 May 2011 16:36:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Responsive images and tinySrc</title>
		<link>http://blog.trasatti.it/2011/05/responsive-images-and-tinysrc.html</link>
		<comments>http://blog.trasatti.it/2011/05/responsive-images-and-tinysrc.html#comments</comments>
		<pubDate>Sun, 29 May 2011 16:36:29 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[Responsive design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Mobile]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=603</guid>
		<description><![CDATA[Producing images of the perfect size, when you create a Web site that targets multiple device classes with very different screen sizes is always a problem. There are a number of solutions out there, but they all require some kind &#8230; <a href="http://blog.trasatti.it/2011/05/responsive-images-and-tinysrc.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Producing images of the perfect size, when you create a Web site that targets multiple device classes with very different screen sizes is always a problem. There are a number of solutions out there, but they all require some kind of server-side detection and image wrangling. <a title="tinySrc" href="http://tinysrc.net/">tinySrc</a> is a nice and simple solution that takes away most if not all of the legwork. Possibly the only downside of tinySrc is that it relies on server-side detection itself. A lot of developers that worked with browsers like Chrome, Firefox and Opera advocate for client-side detection where it&#8217;s the browser that tells you about its capabilities instead of relying on a static database. I will not go into the details of why and when one is better than the other, let&#8217;s just say that tinySrc already gives you the power of the server-side, with my little software you can also benefit from the power of the client.<span id="more-603"></span><span style="line-height: 35px; font-size: 23px; color: #000000;">Just give me the solution</span></p>
<p>If all you care is a super-simple solution that gets the job done, I recommend that you use tinySrc in its basic configuration. tinySrc does a lot of legwork for you and the resulting images are in 90% of the cases or more just great. Check out the <a title="tinySrc" href="http://tinysrc.net/">tinySrc</a> home and you already have all you need.</p>
<h2>So why mix tinySrc with a JavaScript?</h2>
<p>At <a href="http://mobilism.nl/2011">mobilism</a> I met <a href="http://www.scottjehl.com/">Scott Jehl</a> for the first time and he mentioned working on a JavaScript that would take care of providing the right images based on client-side detection. It sounded quite interesting to me because most of the times, in order to create a decent <a href="http://www.alistapart.com/articles/responsive-web-design/">responsive design</a>, you have to create all the media files in advance.</p>
<p>I started looking at his <a href="https://github.com/filamentgroup/Responsive-Images">Responsive Images</a> library and liked the idea. We exchanged a few messages and it seemed easy enough. What it does not do is what I know is very often the real issue: generate the images. So it taps into the power of the client-side detection to understand what the browser and device can do, but then relies on media files generated in advance. In Filament&#8217;s online <a href="http://filamentgroup.com/examples/responsive-images/">demo</a> you can see that Scott generated 2 images, small and big and that&#8217;s all you get. Of course you can extend the JavaScript to manage more sizes, but every time you add a format you will have to edit your JavaScript. This is a good start, but not exactly what I was looking for.</p>
<p>I also thought about <a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">WordPress Mobile Pack</a> and users that are on simple hosting plans or maybe don&#8217;t have the time and skills to generate all the images in the right formats. tinySrc seemed a perfect match.</p>
<h2>How it works</h2>
<p>The changes I made to Scott&#8217;s JavaScript and Rewrite rules are very limited, but I think they open the door to some substantial benefits. The JavaScript now reads the available width and height of the screen and passes those values to tinySrc so that an image of the perfect size will be generated (I padded the image of 20px for safety). You still need to have a small image (for fallback purposes) and a full-size image so that tinySrc has a high resolution image to work from (of course the bigger the better).</p>
<p><a href="http://ri.logme.mobi">See it</a> in action.</p>
<h2>Why use it?</h2>
<p>If you want to apply responsive design you must create the correct media files for each target device or family. This little script allows you to do that with near-zero effort. If you want to support device families tinySrc supports that, but you will have to change the JavaScript. What&#8217;s not to love?</p>
<h2>Why NOT use it?</h2>
<p>The JavaScript works so that it parses your HTML and replaces all image URLs with a dummy URL on your Apache server (at the time of writing the script requires Apache, nginx in the works). When the client requests that URL your Apache server will redirect the client to tinySrc. This is at least 1 HTTP request for every image that we might avoid. tinySrc on its own already does a great job, so this really is a step further toward responsive design. The only one that knows which approach is best is probably you.</p>
<h2>What next?</h2>
<p>I am looking at a couple more improvements, one idea is to use tinySrc&#8217;s dataURI API call and use that to replace all image URLs. That should save all the requests to your Apache server that are then redirected to tinySrc. Depending on how many images you have this might or might not make a difference. The problem is browser support, I am looking for some data. If you have any, please contact me.</p>
<h2>The source code</h2>
<p>If you like what you saw you can get the code on <a href="https://github.com/atrasatti/Responsive-Images/commit/30ebc7a82f4e49ac95dee50b00cf9dc645e8bfbb">github</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2011/05/responsive-images-and-tinysrc.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sorting User-Agent strings out</title>
		<link>http://blog.trasatti.it/2010/10/sorting-user-agent-strings-out.html</link>
		<comments>http://blog.trasatti.it/2010/10/sorting-user-agent-strings-out.html#comments</comments>
		<pubDate>Fri, 22 Oct 2010 12:23:22 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[device detection]]></category>
		<category><![CDATA[DeviceAtlas]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[user-agent]]></category>
		<category><![CDATA[WURFL]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=570</guid>
		<description><![CDATA[It is very common that over the years something gets more and more cluttered, until at some point someone comes in and decides it&#8217;s time to clean up and start fresh, based on current and up-to-date needs. User-Agent strings, part &#8230; <a href="http://blog.trasatti.it/2010/10/sorting-user-agent-strings-out.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It is very common that over the years something gets more and more cluttered, until at some point someone comes in and decides it&#8217;s time to clean up and start fresh, based on current and up-to-date needs. User-Agent strings, part of the HTTP request headers, are no different and between desktop and mobile browsers, the history is long and the amount of text (some might say useless text) has just kept growing. I am going to try and write down what is important today and why.<br />
<span id="more-570"></span>A little introduction is probably needed. I have been the maintainer of <a href="http://wurfl.sourceforge.net">WURFL</a>, a device database, for about 5 years and then worked on another device database called <a href="http://deviceatlas.com">DeviceAtlas</a> for another 3 years. During these years I also worked with the W3C and in general with the mobile Web community to define how the mobile Web should look like and what developers needed to do their job better.</p>
<p>I am going to take four User-Agent strings for four platforms that are meaningful for mobile and analyse what is useful today, what they have currently and what they <strong>should</strong> have. I will also briefly jump into some other headers as they can help in a number of situations.</p>
<h2>User-Agent string definition</h2>
<p>A clarification here is probably needed. Let&#8217;s start from what the User-Agent string is, if you don&#8217;t know. When an HTTP client such as a Web browser makes a request to a server it sends a number of headers as part of that request. One of these headers is called User-Agent and it is meant to identify the client. This is how it is defined in the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.43">RFC-2616</a>:</p>
<blockquote><p>The User-Agent request-header field contains information about the user agent originating the request. This is for statistical purposes, the tracing of protocol violations, and automated recognition of user agents for the sake of tailoring responses to avoid particular user agent limitations. User agents SHOULD include this field with requests. The field can contain multiple product tokens (section 3.8) and comments identifying the agent and any subproducts which form a significant part of the user agent. By convention, the product tokensare listed in order of their significance for identifying the application.</p></blockquote>
<h3>User-Agent strings in mobile</h3>
<p>In the mobile space specifically this string has historically been used to recognise devices. Since each device has very specific features and installing third party plug-ins has always been (and still is) nearly impossible, recognising a device easily is fundamental to the creation and provision of content that is not only optimised for a device, but often that it is simply supported. In the early 2000 the User-Agent string of a Nokia 7110 was  &#8220;<em>Nokia7110/1.0 (04.84)</em>&#8220;. At that time it gave all the information that was needed. Over the years a lot of information has been added and eventually, recently, a lot of mobile browsers have started emulating the strings that were usually provided by desktop browsers, unfortunately picking up a lot of useless information and removing what was useful.</p>
<h2>The analysis</h2>
<p>Here are my four sample User-Agent strings, an iOS 4.1, an HTC/Google Nexus One, a Nokia N8 and the latest Fennec on an Android device:</p>
<ul>
<li>Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-gb) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7</li>
<li>Mozilla/5.0 (Linux; U; Android 2.2; en-gb; Nexus One Build/FRF83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1</li>
<li>Mozilla/5.0 (Symbian/3; Series60/5.2 NokiaN8-00/010.016; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/525 (KHTML, like Gecko) Version/3.0 BrowserNG/7.2.5.2 3gpp-gba</li>
<li>Mozilla/5.0 (Android; Linux armv7l; rv:2.0b7pre) Gecko/20101006 Firefox/4.0b7pre Fennec/4.0b1</li>
</ul>
<h3>iPhone User-Agent string</h3>
<p>Let me start with the first one, the iPhone. There are a number of things here of interest: that it&#8217;s an iPhone, the software version, the type of browser and possibly the browser version. I will get back to why the browser version may or may not be useful later. Do we care it&#8217;s &#8220;<em>like Mac OS X</em>&#8220;? Do we care that &#8220;<em>KHTML (is), like Gecko</em>&#8220;?<br />
So what we could do is strip out everything that we don&#8217;t need and</p>
<pre>Mozilla/5.0 (<strong>iPhone</strong>; U; CPU iPhone OS <strong>4_1</strong> like Mac OS X; en-gb) \
 <strong>AppleWebKit/532.9</strong> (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 \
 Safari/6531.22.7</pre>
<p>becomes</p>
<pre>iPhone/4.1 AppleWebKit/532.9</pre>
<p>If I was a VP at Apple and had any decision power I would also specify the iPhone model and it&#8217;s probably a good idea to also be explicit about the vendor (it happened that two vendors named two devices the same way). Here is a very short string that tells me everything I need:</p>
<pre>AppleiPhone4/4.1 AppleWebKit/532.9</pre>
<h3>Google Nexus One User-Agent string</h3>
<p>Second on my list is the Nexus One, again a lot of information we don&#8217;t need. Who needs to know it&#8217;s Linux when we can&#8217;t really hack the kernel or install X.org (at least from the browser!)? Who cares about the language when there is an appropriate header for that called <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4">Accept-Language</a>? So what we have is</p>
<pre>Mozilla/5.0 (Linux; U; Android 2.2; en-gb; Nexus One Build/FRF83) \
AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1</pre>
<p>but what we should have is</p>
<pre>GoogleNexusOne/2.2 AppleWebKit/533.1</pre>
<h3>Nokia N8</h3>
<p>Nokia, with the N8 and a lot of other devices has taken the best of all worlds. On one side emulating a desktop browser and on the other side bringing all the extra information about J2ME, audio and video streaming and other details that have been meaningful in the mobile space at some point in time. The sad truth is that all these supported environments and protocols are so fragmented that the name alone is not useful and hence, just a burden. Let&#8217;s clean up the house, remove the information that the device supports MIDP-2.1, because anyone who has ever seen the build-chain of a J2ME application knows that you need to know a lot more about the specific JSRs that are available and of course the device-specific quirks. Also, don&#8217;t forget that this is just an example, Sony Ericsson, Samsung, LG and the other vendors are all more or less the same. So bring some fresh air, leave space for what is important and change this</p>
<pre>Mozilla/5.0 (Symbian/3; Series60/5.2 NokiaN8-00/010.016; \
Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/525 (KHTML, \
like Gecko) Version/3.0 BrowserNG/7.2.5.2 3gpp-gba</pre>
<p>to this</p>
<pre>NokiaN8/010.016 BNG/7.2.5.2</pre>
<p>In this case specifically, we probably need one little extra information. All the Symbian devices by Nokia in the last few years also have an environment called Web Runtime or WRT that lets you create Web applications that look like native applications, are installed on the device and can access device APIs. So we could use &#8220;B&#8221; or &#8220;BNG&#8221; for the browser and &#8220;W&#8221; or &#8220;WRT&#8221; for the Web Runtime, so if you developed a Web application and  request a remote page, the server will know if it can send extra Javascript to pull up the device location or contacts and so on. It&#8217;s a nice piece of information to know, right?</p>
<h3>Fennec on Android</h3>
<p>Now on with my last example and I am picking Fennec on Android simply because it&#8217;s probably the newest kid on the block, but the exact same comment would be valid for Opera browser and other third party browsers that you can install on your mobile device. For starter, there is no reference to the device, there are a already more than 100 of Android devices, how will I know which one? How will I know if it&#8217;s Android 2.2 with Flash or not? So this is what we have today</p>
<pre>Mozilla/5.0 (Android; Linux armv7l; rv:2.0b7pre) Gecko/20101006 \
Firefox/4.0b7pre Fennec/4.0b1</pre>
<p>This is what we should have (and for the sake of this example I am assuming the device is a Nexus One):</p>
<pre>HTCNexusOne/2.2 Fennec/4.0b1</pre>
<p>Now, you might comment that I will know if Flash is available looking at some other headers. Well this would be true, if the browser sent the appropriate information. If you have been into mobile detection for a little while you will know that since day one you could not trust the Accept header, mostly because browser vendors have been very bullish about their ability to support content, to then generally disappoint their users (and most of all the _customers_ of mobile sites and content providers). For example the Accept header of this Fennec for Android is &#8220;<em>text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8</em>&#8221; (see the <a href="http://logme.mobi/query/index.php?user_agent=fennec&amp;last10=0&amp;full_headers=on">full headers</a> recorded on logme.mobi). As you can see, this browser supports ANYTHING (the little */* towards the end), isn&#8217;t that great? Now, will it play a real-video? Probably not. Will it play Flash? MAYBE! Will it play an H.264 video? I don&#8217;t know. Oh, yes, these are the same Accept headers that Firefox for PC sends, but it is also true that on my PC or Mac I can download the file and play it with VLC or I might want to download a Word document and read it later. On mobile devices it&#8217;s slightly different and most mobile devices do not let you download and store files and even after I have downloaded it, my context is normally such that if I cannot read the file now I don&#8217;t care. Hence the server needs more information in order to provide the right content; the server might have the file in the right format, if it knew what is supported.</p>
<p>PS: In fairness Opera Mini adds extra headers to tell you the device it is running on, when they know it and this depends on how you installed the client.</p>
<h2>Conclusions</h2>
<p>I am not advocating overloading the headers, we have examples of other headers sent to the servers that are nearly completely useless. Looking at the N8 again, it sends a header about the Music shop version (<em>X-Nokia-Musicshop-Version: 13.1012.15</em>), do I care? Unlikely. Would I care to know the version of Ovi Maps installed so that I can provide a link that will launch the Maps application? More likely!</p>
<p>As you might have noticed, I have stripped the &#8220;<em>Mozilla/</em>&#8221; at the start. There is a myth that servers will not provide the Web site or will provide a very limited version of the site if that string is not there. I have asked many times and although everyone seems scared of this, I do not know of a single site that really does it today. If you know one, please let me know and most of all <strong>WHY </strong>is this site doing this?</p>
<p>One final note, earlier I said that the browser version might not be required. As a rule of thumb I would say that if the server knows the browser version it&#8217;s better because the server will either not care, or if the site actually has different versions for different browsers it can provide that version. In the future I hope that what will matter is just the browser, i.e. is this a standards-compliant browser? If so, I can use Javascript to detect what works and what doesn&#8217;t or I can create my CSS in a way that degrades gracefully. Today, I think we are on the right track and things are quickly moving in the right direction, but we are not there yet, so for the next 1 or 2 years and until everyone gets a new shiny devices with a cool browser, we will have to be a little patient on this and try working together on what is still not solid enough.</p>
<p>So please, if you are browser vendor, take out what is not useful and keep what developers need.﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/10/sorting-user-agent-strings-out.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Google Analytics for WordPress for Mobile update</title>
		<link>http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile-update.html</link>
		<comments>http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile-update.html#comments</comments>
		<pubDate>Tue, 24 Aug 2010 20:51:37 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[WordPress Mobile]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=534</guid>
		<description><![CDATA[I thought about a possible issue where a low-end mobile device would have gotten the img tag in the head tag. Not good. While I was editing the code I also improved the code segmentation part that in some cases &#8230; <a href="http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile-update.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I thought about a possible issue where a low-end mobile device would have gotten the img tag in the head tag. Not good.</p>
<p>While I was editing the code I also improved the code segmentation part that in some cases might have sent incomplete data.</p>
<p>I have written an update, should be much better.<span id="more-534"></span></p>
<p>Still to do is the AdSense integration and managing the manual placing of the javascript/img.</p>
<p>If you were testing the previous version of the script, please <a href="http://blog.trasatti.it/wp-content/uploads/2010/08/google-analytics-for-wordpress-mobile.4.0.8-1.zip">upgrade</a> now!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile-update.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Opera Mobile vs native browser on Nokia E72</title>
		<link>http://blog.trasatti.it/2010/08/opera-mobile-vs-native-browser-on-nokia-e72.html</link>
		<comments>http://blog.trasatti.it/2010/08/opera-mobile-vs-native-browser-on-nokia-e72.html#comments</comments>
		<pubDate>Tue, 24 Aug 2010 18:37:29 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=522</guid>
		<description><![CDATA[Comparison between Nokia E72's native browser and Opera Mobile by a regular user <a href="http://blog.trasatti.it/2010/08/opera-mobile-vs-native-browser-on-nokia-e72.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I had a Nokia E72 for the last 3 months and I have used it on a daily basis as my main phone. Of course, this includes browsing. Since I spend quite a bit of time browsing and most of all I want it to be efficient and snappy, I tried the native browser first and what I assumed would be the best browser available for the E72 later: Opera Mobile.</p>
<p><span id="more-522"></span></p>
<h2>Preamble</h2>
<p>My normal browsing starts from four main sites: dabr (i.e. Twitter), Facebook, Google reader, search. From there I normally follow links and consume content that is on the larger Internet.<br />
Also, getting used to the non-touch interface was hard initially because I got so accustomed to zooming and panning easily with my finger. Anyway, since touch is just not a feature of the E72, I will not be discussing here if touch is better than non-touch.</p>
<h2>Native browser</h2>
<p><span style="color: #000000;">The first few weeks I used exclusively the native browser, I wanted to have a clear idea of how the browser works and what is the performance. My hope was that it would simply be good enough.</span></p>
<p><span style="color: #000000;">There are two main cases to consider of course, the site designed for mobile and the site designed for a generic Web browser. In my daily roving on the Internet I end up on everything from good optimised sites, to Flash-only site.<br />
The performance is obviously different and a mobile site always worked better, in any case it is fair to say that the browser overall works. To me that&#8217;s a fact, you can go on pretty much any site and it will work. Flash is not supported, but that is OK with me (Flash lite IS supported, but I cannot remember when I last saw any content).<br />
When you visit Web sites that are not designed for mobile devices, the browser normally shows you a portion of the screen and then you can scroll in all directions. This is a feature that Nokia introduced many years ago (was it 2005? 2006?), when they first released the WebKit-based browser and it&#8217;s still there, working exactly the same way. Although it took me a bit to get used to navigating the page with that small map on the top right, it does the job. Average sites will work well and you will be able to browse around and read your content. The articles or body of the page is normally adapted in a thinner column that fits your screen and this makes it easy to read (yes, in rare occasions you have to scroll a tiny bit, but that is also true for Opera Mobile). The inability to zoom out makes it hard sometimes to get an idea of where are things on particularly complicated pages (think of <a href="http://mashable.com">mashable</a> or <a href="http://techcrunch.com">techcrunch</a>) and of course you will occasionally not be able to see a picture all in one screen (you will have to scroll to see it).<br />
Page loading overall feels slow and while it would be OK on a 3G or even 2G network, it is never snappy, not even on Wifi. Of course, when I am at home or in the office I will most likely use my PC, but I still happen to quickly check on my phone once or twice a day and in those occasions it should be immediate. Speaking of mashable, the page is just too complicated for the browser (or maybe the CPU) and scrolling around and reading, is close to impossible and certainly not pleasant.<br />
Another thing that drives me crazy is that the browser supports multiple tabs, but you are not able to actually open a new one. What you can do is go on a site, click on a link that opens a new tab and <strong>THEN</strong> and only then you can switch between the two (or more) tabs and have multiple pages open at the same time.</span></p>
<p><span style="color: #000000;">My conclusion is that it&#8217;s not a bad browser, but is not exactly up to my requirements as a power-user.</span></p>
<h2><span style="color: #000000;">Opera mobile</span></h2>
<p><span style="color: #000000;">Given the non-complete satisfaction of the native browser, I went on and started looking for Opera. While my first thought was for <a href="http://www.opera.com/mobile/">Opera Mini</a> I soon realised that Opera Mobile is free as well. Of course, the idea of using a proper browser with all the bells and whistles seemed too good to be true.</span></p>
<p><span style="color: #000000;">Installation went smoothly and while to this day I am still not quite sure how to manage the quick links that you have when you open Opera, I immediately felt at the helm of <strong>A </strong><strong>PROPER BROWSER</strong>. Tabs, quick links, google search always handy. It felt very good. Opera Mobile immediately became my favourite browser and I started using it every day instead of the native one.</span></p>
<p><span style="color: #000000;">Unfortunately it did not take long for me to go back to use the native browser occasionally, and eventually abandon Opera Mobile. Here is why.</span></p>
<p><span style="color: #000000;">Loading feels snappier than the native browser, although I have not done proper measurements I have for example switched between the two in the same network conditions. On top of that add the zooming in and out, it works and it&#8217;s a really nice feature. The very same interface to zoom out seems flawed in its design, though. While you are still loading a page the right soft-key has the dual functionality of stopping the page load AND zoom out, which means you cannot zoom out until the browser is done loading. I am a very impatient user and the idea of zooming out and starting to look at other details while the page finishes loading is something that I would love to do. A minor issue that ruins a feature the would otherwise be so good.</span></p>
<p><span style="color: #000000;">I have 3 major issues with Opera Mobile that are really blocking from further use.<br />
The first one is that it often generated memory limit errors when browsing long enough and this eventually also generated a couple of crashes. <strong>Not good</strong>.<br />
Secondly, many times I received a page timeout error, something that rarely happened with the native browser, which tells me that Opera has probably set the timeout limits too low. That seems very strange for a browser that is designed to be used on a mobile device that might have bumpy connection speeds and unstable networks.<br />
Thirdly, a side effect of Opera&#8217;s bullish approach of &#8220;<em>we know best, give us the best content you have</em>&#8221; creates some issues on highly optimised sites like Google reader. The short version of the story is that it does not work, the long version is that the design for desktop browsers is just too complicated for a small screen and too slow to use and the mobile design does not work well with Opera Mobile.</span></p>
<p><span style="color: #000000;">These three things, unfortunately, made me kiss good bye to the power of tabs and search at your fingertip.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/08/opera-mobile-vs-native-browser-on-nokia-e72.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics for WordPress for Mobile</title>
		<link>http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile.html</link>
		<comments>http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile.html#comments</comments>
		<pubDate>Mon, 23 Aug 2010 09:18:31 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Mobile]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=505</guid>
		<description><![CDATA[Get Google Analytics for WordPress to work for all mobile devices with WordPress Mobile Pack <a href="http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Joost de Valk, a.k.a. Yoast, has created the great Google Analytics for WordPress plugin. The plugin does exactly what you would expect, add the Google Analytics JavaScript to your blog. On top of that it also allows you to define a lot of little tweaks specific to WordPress such as tracking authors, tags, categories and more.</p>
<p>All this is great, but what about mobile devices?</p>
<p><span id="more-505"></span></p>
<p>Well, if your visitor is using a device with a good browser such as Mobile Safari (iOS devices), Android, WebOS and Nokia&#8217;s Symbian devices all should be good, but what about all the others? I am not talking about WML phones that are today a rarity more than anything, I am talking about all those low and mid-end devices that sell like hot-cakes. Think about all the Samsung, Sony Ericsson, LG and (reasonably-priced) Nokia that people get for free from their operator, or buy for about 50-100 Euro. It is true that heavy users will likely buy a high-end device with a big screen and a good browser, but that does not mean we should suddenly forget the long-tail.</p>
<p>With this in mind, and knowing the <a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">WordPress Mobile Pack</a> (WPMP for short), I made a few small changes to Yoast&#8217;s script. The theory is very simple, based on the device groups defined by WPMP provide the standard JavaScript for the high-end and  use the Google&#8217;s official ga.php file for the rest. The changes are quite simple and are all applied to googleanalytics.php, plus you will need Google&#8217;s <a href="http://code.google.com/intl/en-GB/mobile/analytics/download.html#Download_the_Google_Analytics_server_side_package">ga.php</a>. Also, this system plays on the safe side as if the device is not correctly recognised, in the worst case the 1px image is server, which means that it should really work with anything, even the WML devices.</p>
<p><strong>REQUIREMENTS</strong></p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">WordPress Mobile Pack</a> version 1.2.3 or higher</li>
<li><a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/">Google Analytics for WordPress</a> by <a href="http://yoast.com">Yoast</a></li>
<li>Download the script adaptation based on Google Analytics for WordPress 4.0.8, a.k.a Google Analytics for WordPress for Mobile</li>
</ul>
<p><strong> </strong></p>
<p><strong>INSTALLATION</strong></p>
<ol>
<li><span style="color: #000000;">Both WPMP and Google Analytics plugins should be enabled and correctly functioning (of course!)</span></li>
<li><span style="color: #000000;">Make sure in the &#8220;Mobile Theme&#8221; menu you have enabled the Nokia templates (this is needed to activate the device group recognition)</span></li>
<li><span style="color: #000000;">Save a backup copy of your existing <em>googleanalytics.php</em></span></li>
<li><span style="color: #000000;">Upload the files <em>ga.php</em> and <em>googleanalytics.php</em> in your <em>google-analytics-for-wordpress</em> directory on your server (normally in <em>wp-content/plugins/google-analytics-for-wordpress</em>)</span></li>
</ol>
<p><strong>KNOWN LIMITATIONS</strong></p>
<p>Although in theory the custom segmentation is implemented, it is a bit of a hack and needs review with Yoast.</p>
<p><strong>UPDATE</strong></p>
<p>Small bug fixed, see <a href="http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile-update.html">Google Analytics for WordPress for Mobile update</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/08/google-analytics-for-wordpress-for-mobile.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting W3 Total Cache and a mobile plugin to work in WordPress</title>
		<link>http://blog.trasatti.it/2010/07/getting-w3-total-cache-and-a-mobile-plugin-to-work-in-wordpress.html</link>
		<comments>http://blog.trasatti.it/2010/07/getting-w3-total-cache-and-a-mobile-plugin-to-work-in-wordpress.html#comments</comments>
		<pubDate>Fri, 23 Jul 2010 08:44:45 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Mobile]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=485</guid>
		<description><![CDATA[W3 Total Cache and WordPress Mobile Pack configuration <a href="http://blog.trasatti.it/2010/07/getting-w3-total-cache-and-a-mobile-plugin-to-work-in-wordpress.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since release 0.9.0 <a href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Total Cache</a> has an excellent mobile support. The author has done a great job with this update and now it works smoothly. Different mobile plugins or themes might require some slightly settings, but the default should work for most cases.</p>
<p><strong>Configuring WordPress Mobile Pack</strong><br />
<span id="more-485"></span><br />
Configuring the WordPress Mobile Pack with W3 Total Cache 0.9 and above is a breeze, in fact, you have to do nothing! Just to make sure things are enabled, go to the &#8220;User Agent Groups Settings&#8221; section of the W3 Total Cache settings, make sure there are two groups enabled (high and low) and leave the default settings. Save. Clear Cache. If you have &#8220;Preview mode&#8221; enabled, deploy. That&#8217;s it.</p>
<p><strong>How fast will this be?</strong></p>
<p>W3 Total Cache generates nice cache files for the mobile version and then uses Apache to serve the files, this means that it will be AS FAST AS IT CAN BE! Enjoy speed and low resources consumption with full mobile support.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/07/getting-w3-total-cache-and-a-mobile-plugin-to-work-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PaddyPower.mobi relaunched for iPhone</title>
		<link>http://blog.trasatti.it/2010/06/paddypowermobi-relaunched-for-iphone.html</link>
		<comments>http://blog.trasatti.it/2010/06/paddypowermobi-relaunched-for-iphone.html#comments</comments>
		<pubDate>Thu, 17 Jun 2010 13:17:00 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[device detection]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[online betting]]></category>
		<category><![CDATA[PaddyPower]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=442</guid>
		<description><![CDATA[The other day was brought to my attention that Paddy Power (the biggest bookmaker in Ireland and one of the biggest in the UK) has launched a new version of their mobile site for iPhone. At first I imagined a &#8230; <a href="http://blog.trasatti.it/2010/06/paddypowermobi-relaunched-for-iphone.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The other day was brought to my attention that Paddy Power (the biggest bookmaker in Ireland and one of the biggest in the UK) has launched a new version of their mobile site for iPhone. At first I imagined a little restyle and some extra spacing for touch screens based on their existing mobile site, which was good already good.</p>
<p>To my great pleasure, it was something completely new!</p>
<p><span id="more-442"></span><br />
<span style="font-size: x-large;">Homepage</span></p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://3.bp.blogspot.com/_Yph16QzcM8U/TBoViXaBQMI/AAAAAAAAAUg/BKJ9IFcPN4U/s1600/IMG_0372.PNG"><img src="http://3.bp.blogspot.com/_Yph16QzcM8U/TBoViXaBQMI/AAAAAAAAAUg/BKJ9IFcPN4U/s320/IMG_0372.PNG" border="0" alt="" width="214" height="320" /></a></div>
<p>The homepage was immediately a pleasant surprise, colours, shades, animated icons moving around to attract my attention.<br />
Immediately visible are a number of icons to access the most important parts of the site. Of course your eye will fall for the big icons, in perfect iPhone-style. You can&#8217;t see it in this image, but the icons can slide left and right and when you load the page they are moving to the left and that makes you immediately understand that you can interact. Something that was not equally obvious on the CNBC&#8217;s mobile site for the winter olympics, for example. Most important events are the ones most prominent with &#8220;Live Betting&#8221; always there and of course the World Cup in the very centre as this is that time of the year (or 4-years).</p>
<p>Below are the events that are happening now, depending on the event some times you can&#8217;t bet, but you can see what&#8217;s happening.</p>
<p>At the very top there is a navigation bar that is consistent across all the site and you can use it to quickly jump to different sections or search for specific events.</p>
<p><span style="font-size: x-large;">Event details</span></p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://2.bp.blogspot.com/_Yph16QzcM8U/TBoXvVHoz-I/AAAAAAAAAUw/t0i7ElKQZeo/s1600/IMG_0381.PNG"><img src="http://2.bp.blogspot.com/_Yph16QzcM8U/TBoXvVHoz-I/AAAAAAAAAUw/t0i7ElKQZeo/s320/IMG_0381.PNG" border="0" alt="" width="214" height="320" /></a></div>
<p>Something that unfortunately I cannot show you here is that when you click on one of the events you see a nice animation when the page loads, i.e. it resembles the action of opening an app. On my iPhone when you click you see the usual spinning image for a couple of seconds and then magically a new page pops up. Although loading feels a bit slow, the effect is really nice.</p>
<p>As you probably noticed there is a little arrow on the left. The first and most common bets are expanded by default, but you get many more that are collapsed and you can skim quickly to find what you want to bet on. This saves space and lets you read quickly. When you expand you get a nice BIG button that you can press and bet. The odds are clearly stated on the button. Very nice.</p>
<p>For each event they have a lot of things you can bet on and this collapsible system is an excellent compromise between speed and completeness.</p>
<p><span style="font-size: x-large;">Placing a bet</span></p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://4.bp.blogspot.com/_Yph16QzcM8U/TBoZLFQbDLI/AAAAAAAAAU4/mMd3mewJtAk/s1600/IMG_0378.PNG"><img src="http://4.bp.blogspot.com/_Yph16QzcM8U/TBoZLFQbDLI/AAAAAAAAAU4/mMd3mewJtAk/s320/IMG_0378.PNG" border="0" alt="" width="214" height="320" /></a></div>
<p>Here is a screenshot of what happens when you place a bet: the system registers the bet and a pseudo-cart appears at the top of the page with a number indicating how many bets you prepared so far. Later you will be able to easily finalise them all at once.</p>
<p>As you might have noticed you can do all this without ever logging in, that is required only at the very end of the process.</p>
<p><span style="font-size: x-large;">Easy bets</span></p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://1.bp.blogspot.com/_Yph16QzcM8U/TBobL5n164I/AAAAAAAAAVA/fhxFvcbhJgY/s1600/IMG_0374.PNG"><img src="http://1.bp.blogspot.com/_Yph16QzcM8U/TBobL5n164I/AAAAAAAAAVA/fhxFvcbhJgY/s320/IMG_0374.PNG" border="0" alt="" width="214" height="320" /></a><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://1.bp.blogspot.com/_Yph16QzcM8U/TBobL5n164I/AAAAAAAAAVA/fhxFvcbhJgY/s1600/IMG_0374.PNG"><br />
</a></div>
<p>Some special pages collect major events and let you easily bet on a common element, for example for the world cup there is a collection of all the upcoming matches and you can easily tap on a button and place your bet.</p>
<p><span style="font-size: x-large;">Review your bets</span></p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://4.bp.blogspot.com/_Yph16QzcM8U/TBobOq3VmhI/AAAAAAAAAVI/QePWrG13Ik0/s1600/IMG_0380.PNG"><img src="http://4.bp.blogspot.com/_Yph16QzcM8U/TBobOq3VmhI/AAAAAAAAAVI/QePWrG13Ik0/s320/IMG_0380.PNG" border="0" alt="" width="214" height="320" /></a><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://4.bp.blogspot.com/_Yph16QzcM8U/TBobOq3VmhI/AAAAAAAAAVI/QePWrG13Ik0/s1600/IMG_0380.PNG"><br />
</a></div>
<p>Once you have collected all the bets you want to place you can click on the &#8220;cart&#8221; at the top and review your list. If you don&#8217;t remember or want to review the details of each a nice pop up gives you all the details.</p>
<p>A simple form allows you to tweak your bet and calculates your potential returns. VERY tempting.</p>
<p><span style="font-size: x-large;">Overall</span></p>
<p>I really like this site and I think it&#8217;s a step forward in the design for mobile. Obviously it was designed with the iPhone in mind, the size of images, text and buttons are optimised for the size of the iPhone. Testing on one device alone we all know is easier, but I do not see how porting this design to Android and possibly to the most recent Nokias that run webKit wouldn&#8217;t be possible. The efforts of this small company (compared to your usual Google or Facebook) are amazing. This site really stands out both for the quality of the design and the usability. The intent is very clear, make it easy to bet on your mobile and in my view they have <strong>completely succeeded</strong>.</p>
<p>If I have to complain about something, I think the site does not feel very fast. I don&#8217;t know if it&#8217;s a network issue, computation on the server side (I am sure they are very busy with the World Cup these days) or anything else. I tested on my Wifi, so we can&#8217;t blame the carriers for once. In any case, I think the experience is worth the short wait.</p>
<p><span style="font-size: x-large;">PS: Device detection</span><br />
Paddy Power implemented a smart device detection system so that any address you hit you will be shown the right presentation, sometimes by redirecting you. This means that you can hit http://www.paddypower.com with your iPhone, PC and any other mobile and still see the correct site. Their default is to have mobile presentation on paddypower.mobi and even if you hit it with your PC, you will still be redirected to the correct desktop presentation. From the perspective of your average user I would say VERY well done, as a mobilist, I would like to be able to force a different presentation and see what happens, but I guess I am a minority <img src='http://blog.trasatti.it/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/06/paddypowermobi-relaunched-for-iphone.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google, Apple and the Internet OS</title>
		<link>http://blog.trasatti.it/2010/05/google-apple-and-internet-os.html</link>
		<comments>http://blog.trasatti.it/2010/05/google-apple-and-internet-os.html#comments</comments>
		<pubDate>Wed, 26 May 2010 18:39:00 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=440</guid>
		<description><![CDATA[The other day I was reading a great post by Tim O&#8217;Reilly entitled&#160;The State of the Internet Operating System. It&#8217;s a long article if you are used to the average blog post (not very different from what this one will &#8230; <a href="http://blog.trasatti.it/2010/05/google-apple-and-internet-os.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The other day I was reading a great post by Tim O&#8217;Reilly entitled&nbsp;<a href="http://radar.oreilly.com/2010/03/state-of-internet-operating-system.html">The State of the Internet Operating System</a>. It&#8217;s a long article if you are used to the average blog post (not very different from what this one will be!), but it&#8217;s worth reading all of it.</p>
<p>Now, if you are done reading it, I wonder if you agree with him or not. When I started reading and probably up to one third, I was not understanding where he was going to end up, but then I had a A-HA moment and all of sudden I realised what he means and I completely agree. It is something that has been in my mind for a while, but I was never able to put it down in words as well as Tim O&#8217;Reilly did. One of the reasons recently I&#8217;ve been paying particular attention to where I sign in, which cookies are in browser and where I go is that I can see where Google are going and how they are expanding their APIs and how developers are using them more and more. Google are amazing at how they are identifying growing trends, developing new technologies or acquiring companies and integrating their existing products. Add to this their release speed and you have an amazing juggernaut heading to the conquest of the Internet Operating System. They are obviously dominating the Web and you don&#8217;t need me to tell you that they are doing very well with APIs. Come in mobile devices and more in general mobile computing. Google have not left any base uncovered and they have the already successful Android and the upcoming Chrome OS. Then at the latest Google I/O the <a href="http://googleblog.blogspot.com/2010/05/announcing-google-tv-tv-meets-web-web.html">Google TV</a>&nbsp;is announced&nbsp;in partnership with Sony, a company that has always tried to develop its own technologies and keep them as closed as possible. If they have given up to Google it means Google is giving them something that is worth a lot.<br /><span id="more-440"></span><br />I read Tim O&#8217;Reilly&#8217;s post a little later from the original publication and just the day before the Google I/O. Since the initial read of the article the little gears in my brain have been running like mad thinking about the Internet OS and Google TV only added more steam to the engine.</p>
<p>Today I was catching up on Fabrio Capobianco&#8217;s blog and found&nbsp;<a href="http://blog.funambol.com/2010/05/google-chrome-os-and-android-conundrum.html">The Google Chrome OS and Android conundrum</a>. Of course he&#8217;s on the topic as well.</p>
<p><span class="Apple-style-span" style="font-size: x-large;">Android</span><br />Android has been very successful, I am not sure if Google expected it to be picked up so well and definitely HTC have done an amazing job. Yet, from a mobile device perspective, many still think it&#8217;s not as good as the iPhone. Of course, it&#8217;s a hard comparison as the iPhone is really a combination of MANY parts that go from the OS to the hardware to the iTunes store for apps and music.<br />Google are probably not there yet, they probably don&#8217;t have all the tiles in the right place, but they are improving and they have a train that is running fast with releases that come quickly and keep adding new features that put pressure on Apple. The hardware is not exactly Google&#8217;s responsibility, but there are so many devices coming from HTC, Motorola, Samsung, Sony Ericsson, etc that at some point a winner MUST come, it&#8217;s just a matter of numbers.</p>
<p><span class="Apple-style-span" style="font-size: x-large;">Chrome OS</span><br />It is still unclear if Chrome OS will be a success or not and vendors have obviously decided to invest in Android for now as it&#8217;s a more mature platform. Chrome OS is an easy bet for Google and it plugs perfectly into their existing business model helping us, the users, to get more connected and more on the Web. As they did with Android, they are giving away something for free, in order to speed up the adoption of their existing services. It&#8217;s an investment to make sure that the extra money they can make tomorrow actually comes sooner (and they are in control).</p>
<p><span class="Apple-style-span" style="font-size: x-large;">Apple and the iPhone</span><br />As Tim O&#8217;Reilly points out in the second part of his article, it looks like Apple is not getting this thing of the Internet OS. I would add something, either they don&#8217;t get it, or more likely they think they are a consumer products company and all they want is build products. They develop or acquire technologies that will make their products better, but only key technologies and they either buy or partner with other companies for things that are less crucial. Think of Exchange, they finally (and rightly so) gave up on developing internally and just licenced it from Microsoft, they get better support and customers are happier. Other things that are more important like Maps, they acquire a company and you can expect the new iPhone OS to have them integrated in some way.<br />In my view, if Apple decide that they are happy to be a consumer products company, they will let Google go their way, compete where they have to, but not invest in other fields. They will not win the battle for the mobile world and I don&#8217;t think there will be a dominant player like Microsoft anyway and they will still be happy with their 5-10% of market share of wealthy customers. It&#8217;s not a bad market, Italian fashion&#8217;s fame is built around a few expensive brands and yet makes Italy famous in the world even if very few people will buy an Armani suit in their entire life.</p>
<p><span class="Apple-style-span" style="font-size: x-large;">Google wins anyway</span><br />Fabrizio Capobianco, in his post, says that Google would like Chrome OS to win, but Android is going too well and so they have to keep it going and improving and pretend they are happy about it. However these are only ways to accelerate something that is already happening, i.e. Google becoming the heart of Internet services or at the very least a major part of them. Either way, they are making sure they are a vital part of our lives for the next 10 years or more.</p>
<p><span class="Apple-style-span" style="font-size: x-large;">The future of computers</span><br />The end of my post would have been the previous paragraph, yet, I would like to add some thoughts on &nbsp;why I think Android will win the race against Chrome OS.<br />Chrome OS is just a limited GUI with the browser and easy access to the Web. It is a way to help us understand that on the Web we can do everything we need.<br />On the other hand some are saying that the iPhone has proven that a new interface that comes from a completely different angle can be a winning UI compared to the old Windows PCs. Many pointed out that the iPad is a big iPhone and in a way it is and if you have used it, you will know that it&#8217;s very good to use, you can hold it easily, you can read well and it lives very well on your coffee table. This is a new way of using a computer at home and it is perfectly in line with the original plan of Apple 30 years ago of bringing a computer in our homes and let us enjoy personal life using it. It&#8217;s easier and more intuitive than a PC and it does almost everything that we need.<br />Android has the same approach. Google TV proves that it is climbing up the chain of home services.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/05/google-apple-and-internet-os.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go mobile with WP Super Cache and the Mobile Pack</title>
		<link>http://blog.trasatti.it/2010/05/go-mobile-with-wp-super-cache-and.html</link>
		<comments>http://blog.trasatti.it/2010/05/go-mobile-with-wp-super-cache-and.html#comments</comments>
		<pubDate>Wed, 05 May 2010 13:26:00 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Mobile]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=439</guid>
		<description><![CDATA[If you want your blog to stay as fast as possible and you want to support mobile users you will have to reach some compromise. This was true until today. With the WordPress Mobile Pack version 1.2.1 you now can &#8230; <a href="http://blog.trasatti.it/2010/05/go-mobile-with-wp-super-cache-and.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you want your blog to stay as fast as possible and you want to support mobile users you will have to reach some compromise.</p>
<p>This was true until today. With the <a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">WordPress Mobile Pack</a> version 1.2.1 you now can get the best of both worlds. Here is a quick guide on how to achieve it. I am assuming you have installed the latest version of <a href="http://wordpress.org/extend/plugins/wp-super-cache">WP Super Cache</a>, already.<br /><span id="more-439"></span><br /><b>1. Activate WP Super Cache</b><br /><b>2. Go to the WP Super Cache options</b><br />In your admin -&gt; Settings -&gt; WP Super Cache<br /><b>3. Turn WP Super Cache ON and mobile support</b>
<div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/_Yph16QzcM8U/S9q_Fs3hnDI/AAAAAAAAATE/QWQNssEYiMA/s1600/Schermata+2010-04-30+a+12.22.34.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="150" src="http://4.bp.blogspot.com/_Yph16QzcM8U/S9q_Fs3hnDI/AAAAAAAAATE/QWQNssEYiMA/s320/Schermata+2010-04-30+a+12.22.34.png" width="320" /></a></div>
<p><b><br /></b><br /><b>4. Click on Update Status</b><br /><b>5. Scroll down and click on Update Mod_Rewrite Rules</b>
<div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/_Yph16QzcM8U/S9q_Ou715FI/AAAAAAAAATM/uDvU1xuq5tA/s1600/Schermata+2010-04-30+a+12.23.40.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="144" src="http://4.bp.blogspot.com/_Yph16QzcM8U/S9q_Ou715FI/AAAAAAAAATM/uDvU1xuq5tA/s320/Schermata+2010-04-30+a+12.23.40.png" width="320" /></a></div>
<p><b>6. Make sure WPMP is active</b><br />Go to Plugins -&gt; Installed and activate WPMP if not yet active<br /><b>7. Enjoy speed and mobile content at the same time!</b><br /><b><br /></b><br /><b>Notes for the geeks</b><br />Setting up WordPress this way will generate some extra cache files because you will have a cached version for your desktop versions and up to 3 versions of your mobile site depending on the devices that visit your site. Don&#8217;t worry about this too much as Super Cache will clean up old files anyway and if most of your visitors are in the same device class you will not get the other cache files generated.<br />The integration works in a way that WPMP gives to Super Cache a new key to cache files, so that desktop and mobile pages are separate. Super Cache will be only partial (i.e. like the HALF ON setting) for your mobile content, but and send static HTML files for desktop (i.e. the ON setting). This is currently the best we can get, but soon it might be different, so stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/05/go-mobile-with-wp-super-cache-and.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting W3 Total cache to work with WordPress Mobile Pack</title>
		<link>http://blog.trasatti.it/2010/04/getting-w3-total-cache-to-work-with.html</link>
		<comments>http://blog.trasatti.it/2010/04/getting-w3-total-cache-to-work-with.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 16:03:00 +0000</pubDate>
		<dc:creator>Andrea</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Mobile]]></category>

		<guid isPermaLink="false">http://blog.trasatti.it/?p=438</guid>
		<description><![CDATA[If your WordPress site has enough traffic you have been considering a cache plugin. Most people download WP Super Cache, plainly said the most popular plugin for WordPress. W3 Total Cache is a different plugin that aims to achieve about &#8230; <a href="http://blog.trasatti.it/2010/04/getting-w3-total-cache-to-work-with.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If your WordPress site has enough traffic you have been considering a cache plugin. Most people download <a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a>, plainly said the most popular plugin for WordPress. <a href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Total Cache</a> is a different plugin that aims to achieve about the same, but has a number of advantages such as support CDN, minifying CSS and JS and more. From a quick look at the code it looks much lighter and more in general it has a different approach to cache.<br /><span id="more-438"></span><br />While W3 Total Cache is a great plugin and certainly serves a large community, its support for mobile plugins falls short and the main reason is that mobile plugins normally try to change the content of a page dramatically, something W3 Total Cache was not designed for. The plugin comes with a simple &#8220;switcher&#8221; to redirect mobile devices to a different domain that HAS to be hosted in a different place. This is, of course, not ideal if you want to have your mobile plugin installed on your WordPress blog and want to host your content in one place. I have started the conversation with Frederick on the WordPress support forums and hopefully this will bring to something good.</p>
<p>In the meantime, do not despair, you <b>CAN</b> get W3 Total Cache to work with the <a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">WordPress Mobile Pack</a> and with other mobile plugins. If you know about mobile user-agents, the solution is to add keywords to the list of rejected user-agent strings. This will stop the cache to work completely on mobile, but at least it will produce content that is mobile friendly and all your PC visitors will still get the cached content. If you need a step-by-step manual, here is a very good one with images and examples, <a href="http://nimopress.com/pressed/blog-building-how-to-configure-w3-total-cache-to-work-with-wptouch-for-wordpress/">Blog Building: How to Configure W3 Total Cache to Work with WPtouch for WordPress</a>.</p>
<p>For now, this is the best you can do. Stay tuned for more updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.trasatti.it/2010/04/getting-w3-total-cache-to-work-with.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

