<?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>Odyssey Forge</title>
	<atom:link href="http://www.odysseyforge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.odysseyforge.com</link>
	<description>Web Development</description>
	<lastBuildDate>Tue, 24 Apr 2012 22:25:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Why We Shouldn’t Make Separate Mobile Websites</title>
		<link>http://www.odysseyforge.com/2012/04/why-we-shouldnt-make-separate-mobile-websites/</link>
		<comments>http://www.odysseyforge.com/2012/04/why-we-shouldnt-make-separate-mobile-websites/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 22:20:25 +0000</pubDate>
		<dc:creator>mattb</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.odysseyforge.com/?p=5349</guid>
		<description><![CDATA[There has been a long-running war going on over the mobile Web: it can be summarized with the following question: “Is there a mobile Web?” That is, is the mobile device so fundamentally different that you should make different websites for it, or is there only one Web that we access using a variety of [...]]]></description>
			<content:encoded><![CDATA[<p>There has been a long-running war going on over the mobile Web: it can be summarized with the following question: “Is there a mobile Web?” That is, is the mobile device so fundamentally different that you should make different websites for it, or is there only one Web that we access using a variety of different devices? Acclaimed usability pundit Jakob Nielsen thinks that you should make separate mobile websites. I disagree.</p>
<p>Jakob Nielsen, the usability expert, recently published his latest <a href="http://www.useit.com/alertbox/mobile-vs-full-sites.html">mobile usability guidelines</a>. He summarizes:“Good mobile user experience requires a different design than what’s needed to satisfy desktop users. Two designs, two sites, and cross-linking to make it all work.”</p>
<p>I disagree (mostly) with the idea that people need different content because they’re using different types of devices.</p>
<p>Firstly, because we’ve been here before, in the early years of this century. Around 2002, the huge UK supermarket chain Tesco launched Tesco Access—a website that was designed so that disabled people could browse the Tesco website and buy groceries that would be delivered to their homes.</p>
<p>It was a great success—heavily stripped down, all server-generated (as in, those days screen readers couldn’t handle much JavaScript) and it was highly usable. One design goal was “to allow customers to purchase an average of 30 items in just 15 minutes from login to checkout.” In fact, from a <a href="http://isolani.co.uk/blog/access/TescoAccess">contemporary report</a>, (cited by Mike Davis), “many non-disabled customers are switching from the main Tesco site to the Tesco Access site, because they find it easier and faster to use!” It also made Tesco <a href="http://www.sean.co.uk/a/webdesign/accessibility.shtm">a lot of money</a>: “Work undertaken by Tesco.com to make their home grocery service more accessible to blind customers has resulted in revenue in excess of £13m per annum, revenue that simply wasn’t available to the company when the website was inaccessible to blind customers.”</p>
<p>However, some blind users weren’t happy. There were special offers on the “normal” Tesco website that weren’t available on the access website. There were advertisements that were similarly unavailable—which was a surprise; whereas most people hate advertisements, here was a community complaining that it wasn’t getting them.</p>
<p>The vital point is that <strong>you never know better than your users what content they want</strong>. When Nielsen writes that mobile websites should “cut features, to eliminate things that are not core to the mobile use case; [and] cut content, to reduce word count and defer secondary information to secondary pages,” he forgets this fact.</p>
<p><a href="http://www.tesco.com/access/">Tesco learned this:</a></p>
<p>“We have completely redesigned Access so that it is no longer separate from our main website but is now right at the center of it, enabling our Access customers to enjoy the same features and functionality available on the standard grocery website. As part of this work we have had to retire the old Access website.”</p>
<p>Nielsen writes:</p>
<blockquote><p>“Build a separate mobile-optimized site (or mobile site) if you can afford it … Good mobile user experience requires a different design than what’s needed to satisfy desktop users. Two designs, two websites, and cross-linking to make it all work.”</p></blockquote>
<p>From talking to people in the industry, and from my own experience of leading a dev team, I’ve found that building a separate mobile website is considered to be a cheaper option in some circumstances—there may be time or budgetary constraints. Sometimes teams don’t have another option but creating a separate website due to factors beyond their control.</p>
<p>I believe that this is not ideal, but for many it’s a reality. Re-factoring a whole website with responsive design requires auditing content. And changing a production website with all the attendant risks, then testing the whole website to ensure it works on mobile devices (while introducing no regressions in the desktop website)—all this is a huge task. If the website is powered by a CMS, it’s often cheaper and easier to leave the “desktop website” alone, and implement a parallel URL structure so that www.example.com/foo is mirrored by m.example.com/foo, and www.example.com/bar is mirrored by m.example.com/bar (with the CMS simply outputting the information into a highly simplified template for the mobile website).</p>
<p>The problem with this approach is Nielsen’s suggestion: “If mobile users arrive at your full website’s URL, auto-redirect them to your mobile website.” The question here is how can you reliably detect mobile browsers in order to redirect them? The fact is: you can’t. Most people attempt to do this with browser sniffing—checking the User Agent string that the browser sends to the server with every request. However, these are easily spoofed in browsers, so they can’t be relied upon, and they <a href="http://webaim.org/blog/user-agent-string-history/">don’t tell the truth, anyways</a>. “Browser sniffing” has a justifiably bad reputation, so is often renamed “device detection” these days, but it’s the same flawed concept.</p>
<p><img title="Twitter_mobile" src="http://media.smashingmagazine.com/wp-content/uploads/2012/04/twitter-large-frontpage-500.jpg" alt="Twitter_mobile" /><br />
<em>On mobile, Twitter.com automatically forwards users to a separate mobile website.</em></p>
<p>More troublesome is that there are literally <a href="http://www.useragentstring.com/pages/useragentstring.php">hundreds of UA strings</a> that your detection script needs to be aware of in order to send the visitor to the “right” page. The list is ever-growing, so you need to constantly check and update your detection scripts. And of course, you only know about a new User Agent string after it turns up in your analytics—so there will be a period between the first visitor arriving with an unknown UA and your adding it to your detection scripts (in which visitors will be sent to the wrong website).</p>
<p>Despite all this work to set up a second parallel website, you will still find that some visitors are sent to the wrong place, so here I agree with Nielsen:</p>
<blockquote><p>“Offer a clear link from your full site to your mobile site for users who end up at the full site despite the redirect … Offer a clear link from your mobile site to your full site for those (few) users who need special features that are found only on the full site.”</p></blockquote>
<p>Missing out features and content on mobile devices perpetuates the digital divide. As <a href="http://www.netmagazine.com/opinions/nielsen-wrong-mobile">Josh Clark points out</a> in his rebuttal:</p>
<blockquote><p>“First, a growing number of people are using mobile as the only way they access the Web. A pair of studies late last year from Pew and from On Device Research showed that over 25% of people in the US who browse the Web on smartphones almost never use any other platform. That’s north of 11% of adults in the US, or about 25 million people, who only see the Web on small screens. There’s a digital-divide issue here. People who can afford only one screen or internet connection are choosing the phone. If you want to reach them at all, you have to reach them on mobile. We can’t settle for serving such a huge audience a stripped-down experience or force them to swim through a desktop layout in a small screen.”</p></blockquote>
<p>The number of people only using mobile devices to access the Web is even higher in emerging economies. Why exclude them?</p>
<div id="textadtarget">
<div id="textad">[<strong>Note</strong>: Have you already pre-ordered your copy of our <a href="http://auslieferung.commindo-media-ressourcen.de/www/delivery/ck.php?oaparams=2__bannerid=3452__zoneid=68__OXLCA=1__cb=662027dd61__oadest=http%3A%2F%2Fwww.smashingmagazine.com%2F2012%2F02%2F15%2Fsmashing-book-3-preorder%2F%3Fpk_campaign%3Dvvk">Printed Smashing Book #3</a>? The book is a professional guide on how to redesign websites and it also introduces a whole new mindset for progressive Web design, written by experts for you.]</p>
<div id="beacon_662027dd61"><img src="http://auslieferung.commindo-media-ressourcen.de/www/delivery/lg.php?bannerid=3452&amp;campaignid=1018&amp;zoneid=68&amp;loc=1&amp;referer=http%3A%2F%2Fwww.smashingmagazine.com%2F2012%2F04%2F19%2Fwhy-we-shouldnt-make-separate-mobile-websites%2F&amp;cb=662027dd61" alt="" /></div>
</div>
</div>
<h3>Mobile Usability</h3>
<p>I also agree with Nielsen when he writes:</p>
<blockquote><p>“When people access sites using mobile devices, their measured usability is much higher for mobile sites than for full sites.”</p></blockquote>
<p>But from this he draws the wrong conclusion, that we should continue making special mobile websites. I believe that special mobile websites is like sticking plaster over the problem; we generally shouldn’t have separate mobile websites, anymore than we should have separate screen reader websites. The reason many “full websites” are unusable on mobile phones is because many full websites are unusable on any device. It’s often said that your expenditure rises as your income does, and that the amount of clutter you own expands to fill your house however many times you move to a bigger one. In the same way, website owners have long proved incontinent in keeping desktop websites focussed, simply because they have so much room. This is perfectly illustrated by the <abbr>xkcd</abbr> comic:</p>
<p><img title="A Venn diagram showing " src="http://media.smashingmagazine.com/wp-content/uploads/2012/04/university_website.png" alt="A Venn diagram showing " name="" /><br />
<em>A Venn diagram showing “Things on the front page of a university website” and “Things people go to the site looking for.” Only one item is in the intersection: “Full name of school.” Image source: <a href="http://xkcd.com/773/">xkcd</a>.</em></p>
<p>As I wrote on the website <a href="http://the-pastry-box-project.net/bruce-lawson/2012-april-13/">The Pastry Box</a> on April 13th:</p>
<blockquote><p>“The mobile pundits got it right: sites should be minimal, functional, with everything designed to help the user complete a task, and then go. But that doesn’t mean that you need to make a separate mobile site from your normal site. If your normal site isn’t minimal, functional, with everything designed to help the user complete a task, it’s time to rethink your whole site.</p>
<p>“And once you’ve done that, serve it to everyone, whatever the device.”</p></blockquote>
<p>In a previous article, Nielsen wrote in September 2011 that he dropped testing usability with featurephones:</p>
<blockquote><p>“Our first research found that feature phone usability is so miserable when accessing the Web that we recommend that most companies don’t bother supporting feature phones.</p>
<p>“Empirically, websites see very little traffic from feature phones, partly because people rarely go on the Web when their experience is so bad, and partly because the higher classes of phones have seen a dramatic uplift in market share since our earlier research.”</p></blockquote>
<p>This is a highly westernized view. Many people can’t afford smartphones, so they use feature phones running proxy browsers (such as Opera Mini), which move the heavy lifting to servers. This is often the only way that underpowered featurephones can browse the Web. Statistics from Opera’s monthly <a href="http://www.opera.com/smw/">State of the Mobile Web report</a> (disclosure: Opera is my employer) shows that lower-end feature phones still dominate the market in Eastern Europe, <a href="http://flowingdata.com/2010/10/18/true-size-of-africa/">Africa</a> and other emerging economies—see the <a href="http://www.opera.com/smw/2011/11/">top 20 handsets worldwide for 2011</a> that accessed Opera Mini. Since February 2011, the number of unique users of Opera Mini has increased 78.17% and <a href="http://www.opera.com/smw/2012/02/">data traffic is up 142.79%</a>.</p>
<p>A caveat about those statistics: not every user of Opera Mini is a featurephone user in developing countries. They’re widely used on high-end smartphones in the West, too, as we know that they are much faster than built-in browsers, and <a href="http://www.brucelawson.co.uk/2012/what-users-want-from-mobile-and-what-we-can-re-learn-from-them/">users really want speed</a>.</p>
<p>Nielsen’s dismissal of feature phones reminds me of some attitudes to Web accessibility in the early 2000′s. His assertion that companies shouldn’t support feature phones because they see little traffic from feature phones is the classic accessibility chicken and egg situation: we don’t need to bother with making our website accessible, as no-one who visits us needs it. This is analogous to the owner of a restaurant that is up a flight of stairs saying he doesn’t need to add a wheelchair ramp as no-one with a wheelchair ever comes to his restaurant. It’s flawed logic.</p>
<h3>Developing Usable Websites For All Devices</h3>
<p><a href="http://www.w3.org/TR/mobile-bp/#OneWeb">The W3C Mobile Web best practices</a> say:</p>
<blockquote><p>“One Web means making, as far as is reasonable, the same information and services available to users irrespective of the device they are using. However, it does not mean that exactly the same information is available in exactly the same representation across all devices. The context of mobile use, device capability variations, bandwidth issues and mobile network capabilities all affect the representation. Furthermore, some services and information are more suitable for and targeted at particular user contexts.”</p></blockquote>
<p>There will always be edge cases when separate, mobile-specific websites will be a better user experience, but this shouldn’t be your default when approaching the mobile Web. For a maintainable, future-friendly development methodology, I recommend that your default approach to mobile be to design one website that can adapt to different devices with viewport, Media Queries and other technologies that are often buzzworded “Responsive Design.”</p>
<p>Combining these techniques in a smart way with progressive enhancement allows your content to be viewed on any device (and with richer experiences available on more sophisticated devices), with the possibility of accessing device APIs such as geolocation, or the shiny new <a href="http://html5doctor.com/getusermedia/">getUserMedia for camera access</a>.</p>
<p>Although many other resources are available, I’ve written “<a href="http://dev.opera.com/articles/view/the-mobile-web-optimization-guide/">Mobile-friendly: The mobile web optimization guide</a>” which you’ll hopefully find a useful starting point.</p>
<h4>
<a title="Source: Smashing Magazine" href="http://www.smashingmagazine.com/2012/04/19/why-we-shouldnt-make-separate-mobile-websites/" target="_blank">Source: Smashing Magazine</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2012/04/why-we-shouldnt-make-separate-mobile-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HomeSlider</title>
		<link>http://www.odysseyforge.com/2011/12/homeslider/</link>
		<comments>http://www.odysseyforge.com/2011/12/homeslider/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 02:46:13 +0000</pubDate>
		<dc:creator>mattb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/ofstaging/?p=359</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="royalslider-1" class="royalSlider default" style="width: 100%; height: 338px;"><ul class="royalSlidesContainer"><li data-src="http://www.odysseyforge.com/wp-content/uploads/2012/03/responsive.png" class="royalSlide"></li><li data-src="http://www.odysseyforge.com/wp-content/uploads/2011/12/ecommerce1.jpg" class="royalSlide"><div class="royalCaption"><div style="opacity: 1; left: 55px; top: 294px; position: absolute; width: 201px; height: 17px;" class="caption-black-text-block royalCaptionItem" data-anim-type="default">E-commerce made easy...</div></div></li><li data-src="http://www.odysseyforge.com/wp-content/uploads/2011/12/questions1.jpg" class="royalSlide"><div class="royalCaption"><div style="position: absolute; top: 275px; left: 13px; width: 289px; height: 36px; opacity: 1;" class="caption-black-text-block royalCaptionItem" data-anim-type="default">More questions than answers? Let us put your technology concerns to rest.</div></div></li><li data-src="http://www.odysseyforge.com/wp-content/uploads/2011/12/windows_slide_338.png" class="royalSlide"><div class="royalCaption"><div style="opacity: 1; left: 14px; top: 291px; position: absolute; width: 256px; height: 17px;" class="caption-black-text-block royalCaptionItem" data-anim-type="default">We use and develop for MS Windows.</div></div></li></ul></div><script type="text/javascript">jQuery(document).ready(function() {jQuery("#royalslider-1").royalSlider({"width":"100%","height":338,"skin":"default","preloadSkin":false,"lazyLoading":true,"preloadNearbyImages":true,"slideshowEnabled":false,"slideshowDelay":5000,"slideshowPauseOnHover":true,"slideshowAutoStart":true,"keyboardNavEnabled":true,"dragUsingMouse":true,"slideSpacing":0,"startSlideIndex":0,"imageAlignCenter":true,"imageScaleMode":"fit","slideTransitionType":"move","slideTransitionSpeed":400,"slideTransitionEasing":"easeInOutSine","directionNavEnabled":true,"directionNavAutoHide":false,"hideArrowOnLastSlide":true,"controlNavigationType":"bullets","auto-generate-images":false,"auto-generate-thumbs":false,"thumb-width":60,"thumb-height":60,"captionAnimationEnabled":true,"captionShowFadeEffect":true,"captionShowMoveEffect":"movetop","captionMoveOffset":20,"captionShowSpeed":400,"captionShowEasing":"easeInOutSine","captionShowDelay":200,"controlNavEnabled":true,"controlNavThumbs":false,"captionShowEffects":["fade","movetop"]});});</script>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/homeslider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon: For The Third Week, Kindle (Including The Fire) Sales Have Surpassed 1 Million Per Week</title>
		<link>http://www.odysseyforge.com/2011/12/amazon-for-the-third-week-kindle-including-the-fire-sales-have-surpassed-1-million-per-week/</link>
		<comments>http://www.odysseyforge.com/2011/12/amazon-for-the-third-week-kindle-including-the-fire-sales-have-surpassed-1-million-per-week/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 18:01:39 +0000</pubDate>
		<dc:creator>OFBlog</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/2011/12/15/amazon-for-the-third-week-kindle-including-the-fire-sales-have-surpassed-1-million-per-week/</guid>
		<description><![CDATA[Kindle Fire brings you Movies, apps, games, music, reading and more, plus Amazon’s cloud-accelerated web browser Product features: 18 million movies, TV shows, songs, magazines, and books Amazon Appstore &#8211; thousands of popular apps and games Ultra-fast web browsing &#8211; Amazon Silk Free cloud storage for all your Amazon content Vibrant color touchscreen with extra-wide [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="body-copy" readability="38">
<p>Kindle Fire brings you Movies, apps, games, music, reading and more, plus Amazon’s cloud-accelerated web browser</p>
<p>Product features: </p>
<p>18 million movies, TV shows, songs, magazines, and books<br />
Amazon Appstore &#8211; thousands of popular apps and games<br />
Ultra-fast web browsing &#8211; Amazon Silk<br />
Free cloud storage for all your Amazon content<br />
Vibrant color touchscreen with extra-wide viewing angle<br />
Fast, powerful dual-core processor<br />
Amazon Prime members enjoy unlimited, instant streaming of over 10,000 popular movies and TV shows
</p>
</p></div>
</div>
<p>Source Article from <a href="http://feedproxy.google.com/~r/Techcrunch/~3/gDJ8c3ONg34/">http://feedproxy.google.com/~r/Techcrunch/~3/gDJ8c3ONg34/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/amazon-for-the-third-week-kindle-including-the-fire-sales-have-surpassed-1-million-per-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PocketCloud Explore Lets You Search Your Android, PC &amp; Mac At Once</title>
		<link>http://www.odysseyforge.com/2011/12/pocketcloud-explore-lets-you-search-your-android-pc-mac-at-once/</link>
		<comments>http://www.odysseyforge.com/2011/12/pocketcloud-explore-lets-you-search-your-android-pc-mac-at-once/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 17:18:44 +0000</pubDate>
		<dc:creator>OFBlog</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/2011/12/15/pocketcloud-explore-lets-you-search-your-android-pc-mac-at-once/</guid>
		<description><![CDATA[Wyse Technology is launching a new app for Android users today called Wyse PocketCloud Explore, which will allow you to search for files you have stored on any phone, tablet, PC or Mac. The app works in conjunction with a software client installed on your computer, so you can perform universal file searches, then view the files, [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="body-copy" readability="50">
<div class="post-first-image">
							<img width="169" height="288" src="http://tctechcrunch2011.files.wordpress.com/2011/12/droidx_device_list.jpg?w=169" class="attachment-image wp-post-image" alt="droidx_device_list" title="droidx_device_list"/></div>
<p><a href="http://www.wyse.com/">Wyse Technology</a> is launching a new app for Android users today called <a href="http://www.pocketcloud.com/pocketcloudexplore/">Wyse PocketCloud Explore</a>, which will allow you to search for files you have stored on any phone, tablet, PC or Mac. The app works in conjunction with a software client installed on your computer, so you can perform universal file searches, then view the files, rename them, move them into folders, share them or download them to your device.</p>
<p>The software lets you perform unlimited copying and moving of video, image and audio files between your Windows or Mac computer and your Android device. Meanwhile, other files types can be opened or edited in your preferred Android application (e.g., QuickOffice). You can also choose to email the file via Android’s email client.</p>
<p>PocketCloud is somewhat of an attack on cloud storage products like Dropbox or Box.net, which provide you with a set amount of free online storage, but then charge you when you need more. Instead, this app appeals more to the host-it-yourself crowd, since there’s only the one-time fee of $4.99 and no monthly service charges.</p>
<p>That said, hosting your files in the cloud may be pricier, but it’s <a href="http://techcrunch.com/2011/12/15/cloud-storage-platform-box-net-ramps-up-security-for-the-enterprise-debuts-partnership-with-intel/">often more secure</a>. Unless you regularly backup, your computer is a single point-of-failure for your most valuable documents, while cloud storage providers have multiple copies of files spanned across servers which are backed up religiously.</p>
<p>But for $5, PocketCloud Explore is not a bad app to have on hand in case of a file emergency. Wyse also offers a <a href="http://www.wyse.com/products/software/pocketcloud/">full version</a> of PocketCloud that provides remote access to your computer (iOS and Android). You can grab Explore from the Android Market <a href="https://market.android.com/details?id=com.wyse.filebrowserfull">here</a>.</p>
</p></div>
</div>
<p>Source Article from <a href="http://feedproxy.google.com/~r/Techcrunch/~3/7EYOLpy_2mM/">http://feedproxy.google.com/~r/Techcrunch/~3/7EYOLpy_2mM/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/pocketcloud-explore-lets-you-search-your-android-pc-mac-at-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An iPhone Lover’s Take On The Galaxy Nexus</title>
		<link>http://www.odysseyforge.com/2011/12/5246/</link>
		<comments>http://www.odysseyforge.com/2011/12/5246/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 12:04:45 +0000</pubDate>
		<dc:creator>mattb</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/?p=5246</guid>
		<description><![CDATA[An iPhone Lover’s Take On The Galaxy Nexus You have to hand it to Google. They know that I prefer Apple products and have been generally critical of many Google moves in the past couple of years. And yet, they’re unafraid to give me their newest products to test out. To be honest, I’m not sure [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>An iPhone Lover’s Take On The Galaxy Nexus</p>
</div>
<div><img title="1" src="http://tctechcrunch2011.files.wordpress.com/2011/12/1.jpg?w=640" alt="1" width="640" height="480" /></div>
<p>You have to hand it to Google. They know that I prefer Apple products and have been <a href="http://parislemon.com/tagged/google">generally critical</a> of many Google moves in the past couple of years. And yet, they’re unafraid to give me their newest products to test out. To be honest, I’m not sure Apple would do the same. But I think this is a smart move on Google’s part. On one hand, they may get a negative review but they know that many will discount the negativity coming from me. On the flip side, if it’s positive: gravy train time.</p>
<p>Thus: my thoughts on the Galaxy Nexus. But before I begin…</p>
<p>Rather than do a full-on review — you’ve probably already seen <a href="http://www.techmeme.com/111117/p43#a111117p43">plenty of those</a> — and given that I now write an Apple-centric column for TechCrunch, I figured it was the perfect opportunity to continue my “An iPhone Lover’s Take…” series. For some background, here are my previous stories from the same angle on the <a href="http://techcrunch.com/2010/01/12/iphone-versus-nexus-one-2/">Nexus One</a>, the <a href="http://techcrunch.com/2010/05/29/htc-evo-4g/">HTC EVO 4G</a>, the <a href="http://techcrunch.com/2010/12/31/nexus-s-iphone-review/">Nexus S</a>, a <a href="http://techcrunch.com/2010/12/23/iphone-windows-phone/">Windows Phone</a>, and even the <a href="http://techcrunch.com/2010/07/03/iphone-4-review/">iPhone 4</a>.</p>
<p>My colleague Jason Kincaid took a similar approach for a post a few weeks back, but did it from a slightly different angle — call it: <a href="http://techcrunch.com/2011/12/04/galaxy-nexus-iphone-4s/">An Original iPhone Lover Who Learned To Love Android Until Switching Back To The iPhone… Reviews The Galaxy Nexus</a>. Oddly, he just had just switched back to the iPhone after years of Android use — but he says the Galaxy Nexus and Ice Cream Sandwich in particular may get him to switch back yet again. Meanwhile, <a href="http://gigaom.com/apple/review-the-galaxy-nexus-from-an-iphone-owners-perspective/">GigaOm’s Darrell Etherington also looked</a> at the Galaxy Nexus from an iPhone user’s perspective and ultimately decided the iPhone 4S was still the device for him. So I’m here to break the tie.</p>
<p>I’ve been using an iPhone since the day the first one launched in 2007. It is without question my favorite and most-used gadget of all time. Over that same span, I’ve tried about a dozen different Android devices ranging from the G1 to the Nexus S — the results have been decidedly mixed. I pretty much hated the G1, generally liked the Nexus One, thought the EVO 4G was more or less crap, and basically enjoyed the Nexus S. But none, in my mind, could touch the iPhone.</p>
<p>So what about the Galaxy Nexus?</p>
<p>I was given the device shortly before I took off for Europe a couple weeks ago. Given that it’s unlocked and I got a 3G SIM, I’ve been using it a lot — just as much as I’ve used any of the other Android devices listed above. For a few nights, it has been my primary device when I’ve been out and about. Unfortunately, I have not been able to test any sort of 4G network with it, so consider all of this a Galaxy Nexus 3G review.</p>
<p>First and foremost, the Galaxy Nexus is way too big. The 4.65-inch screen is nice when I’m sitting on my couch, but out and about it feels like I’m <a href="https://www.google.com/search?q=zack+morris+phone&amp;um=1&amp;ie=UTF-8&amp;hl=en&amp;tbm=isch&amp;source=og&amp;sa=N&amp;tab=wi&amp;ei=IvPoToSFFMmgOuLwmNIK&amp;biw=1305&amp;bih=806&amp;sei=JvPoTtDOFIfsOe3SmMYK">Zack Morris</a> holding his <a href="https://www.google.com/search?q=gordon+gekko+phone&amp;hl=en&amp;prmd=imvns&amp;tbm=isch&amp;tbo=u&amp;source=univ&amp;sa=X&amp;ei=C_PoTp34KILrOfzcicoK&amp;ved=0CCAQsAQ&amp;biw=1305&amp;bih=806">Gordon Gekko phone</a>. I’d consider myself to have average sized hands for an adult male, and the screen is so large that it killed several one-handed operations for me (especially since many Android apps use a top nav system). I’ll admit that for some apps, like Gmail, having a screen larger than the iPhone’s 3.5-inch variety is very nice. But 4.3-inch may be better. This is just too big.</p>
<p>While the screen is too big, I am happy that Google has finally decided to get rid of hardware menu buttons and go all-in on the screen. Previous Android hardware was always made worse by the decision to include fixed nav buttons along the button. With Ice Cream Sandwich, all these buttons can now be software-based. There isn’t even a home hardware button like the iPhone has anymore — it’s all software.</p>
<p>I like this. The iPhone home button wears down over time and it makes noise when you click it. (Of course, the Galaxy Nexus still has a wake/power button of the right side.) I hope Apple does something more inventive with the button if they choose to keep it in future iPhone hardware iterations. Perhaps a multi-touch top on the button that allows you to swipe between open iOS apps would make the continuation of the physical button worth it.</p>
<p><img title="2" src="http://tctechcrunch2011.files.wordpress.com/2011/12/2.jpg?w=640&amp;h=480" alt="" width="640" height="480" /></p>
<p>I also like the inclusion of an indicator light on the Galaxy Nexus. Both the Galaxy Nexus and iPhone have options to vibrate or give you audio cues to alert you to new messages, but if the phone isn’t on me, I often miss those. The light allows you to see if you have new message waiting without having to turn the screen on. This is one of the few things BlackBerry got right that Apple for whatever reason hasn’t bothered to mimic.</p>
<p>The rest of the Galaxy Nexus hardware leaves something to be desired. The iPhone feels like a completely and thoughtfully designed object. By comparison, the Galaxy Nexus still feels rather cheap and plastic-y. It’s not awful, but you’d think Samsung could do better at this point. Some people will like having the option to remove to the back to get at the battery, but the method for doing so remains a joke. You essentially have to rip it off. I feel like I’m peeling a nail away from a finger every time I do it — it’s that unpleasant.</p>
<p>The battery life itself on the device is very good. I felt like the Galaxy Nexus was lasting at least as long as the iPhone 4S on a fully charged battery, perhaps even a bit longer if some cases. Again, I didn’t try it on a 4G network, which is known to drain battery quicker. (I also haven’t had the battery discharge issues that some iPhone 4S users have been reporting since the launch.) But fear not, this is not the EVO with its temper-melting 30-minute battery.</p>
<p>The camera on the Galaxy Nexus is definitely worse than the iPhone 4S, both in megapixels (8 vs. 5), and in image quality. But the iPhone 4S is also a ridiculously good camera. The Galaxy Nexus is still a fine point-and-shoot replacement, in my opinion. The camera seems better than any other Android device I’ve used. One nit is that while there is a method to go right into the camera from the lock screen (just like iOS 5 has), it’s too slow if the camera isn’t previously running. You’ll hit the camera button and watch as the Android main screen loads and then the camera apps loads. This feels like more of a macro than a feature.</p>
<p>And let’s talk about Ice Cream Sandwich. The artist also known as Android 4.0 is very solid. There is no question that the software is much improved over previous iterations in terms of speed, but mainly usability. I really like things like the multi-task tray and some of the new widgets.</p>
<p>Unfortunately, the system still lacks much of the fine polish that iOS users enjoy. The majority of Android users will probably think such criticism is bullshit, but that has always been the case. I imagine it’s probably hard for a Mercedes owner to describe to a Honda owner how attention to detail makes their driving experience better when both machines get them from point A to point B. As a Honda owner myself, I’m not sure I would buy it — I’d have to experience it to understand it, I imagine. And most Android lovers are not going to spend enough time with iOS to fully appreciate the differences.</p>
<p>Still, if the Android team ever wants to convert (or at least convince) most iOS users, they still have quite a bit of work to do here. Then again, they probably don’t (or shouldn’t) care too much about converting iOS users over to Android. All the non-smartphone users out there remain the much bigger prize to go after (for both Google and Apple).</p>
<p>Other things that will sound like nits but drove me crazy with ICS included the constant focusing on text fields only to have to click again to get the keyboard to pop up. If I’m in a text field, I clearly want to type something. Why should I have to click again? This doesn’t always happen, but it happens a lot — particularly in third-party apps.</p>
<p>Another: why is there a separate app for Messaging and Google+ Messenger? Apple baked iMessage into their SMS app, why didn’t Google? If they’re worried about anti-competitive concerns, why would they bundle all the Google+ stuff into ICS to begin with? Similarly, why do Gmail and Email continue to be two separate apps? <a href="http://techcrunch.com/2011/05/17/google-chrome-android/">And why on Earth is the web browser not Chrome yet</a>!?</p>
<p>The new People app social unification is nice — I love the big pictures. But my god Google needs help with their duplication/merging detection. One of my friends has four separate entries — one for his phone number, one for his Gmail/Google+, one for Twitter, and one for another email. Several others had three different entries. Most had at least two. Also, Google provides an option to link your Facebook account in Accounts &amp; sync, but it does nothing. I’m sure this is due to the Google/Facebook fracas, but why include something in your OS that is completely broken?</p>
<p>Ice Cream Sandwich’s voice command functionality is a joke compared to Siri — <a href="http://www.techmeme.com/111214/p8#a111214p8">but that may be changing soon</a>, we’ll see.</p>
<p>In his write-up, Jason noted that iOS is still far behind Android when it comes to notifications, I have to disagree. I find Android’s notification tray to be far less useful than it is on iOS. For example, if I get three new emails, with Android, I just see that I have three new emails all grouped together. With iOS I can see at least some of the context. Same with Tweets. The size of the alerts in this tray also isn’t uniform in Android, so Facebook alerts seem more important with their huge logo.</p>
<p>I do like the ability to “clear all” in Android’s notification tray though. The iOS micro clear button remains a joke that badly needs to be fixed.</p>
<p>When it comes to web browsers, arguably the most important feature on any of these devices, there is no question that iOS still has a big edge here. I’ve seen arguments on both sides for why one is faster than the other — most recently, <a href="http://techcrunch.com/2011/12/13/battle-of-the-browsers-ios-5s-browser-is-still-slightly-better-than-androids-says-sencha/">data today favors iOS</a> — but just doing a simple use case test, mobile Safari kicks the ass of Google’s don’t-call-it-Chrome mobile web browser across the board. Some pages still refuse to render correctly on Android’s browser. And the ones that do cannot seem to get the simplest feature right: double-tap to zoom. You do it on Android and there’s a good chance you could end up looking at the middle of a random paragraph.</p>
<p>You’ll also still see a bit of lag in ICS when you do seemingly simple things like this. It’s still not as smooth as it should be. For the most part, ICS fixes many of Android’s performance issues, but there are plenty of times that you’ll still see stutters here and there.</p>
<p><img title="3" src="http://tctechcrunch2011.files.wordpress.com/2011/12/3.jpg?w=640&amp;h=513" alt="" width="640" height="513" /></p>
<p>And then there are the apps.</p>
<p>To be fair to Google, Ice Cream Sandwich is currently only on the Galaxy Nexus and it <a href="http://techcrunch.com/2011/12/14/what-will-happen-if-verizon-fails-to-launch-the-galaxy-nexus-tomorrow/">still hasn’t even officially launched</a> in the U.S. But there’s a lot of work to do here. One app that I had on my Nexus S constantly crashes now on the Galaxy Nexus. And rather than quietly closing in the background, I get a nice big Windows-style pop-up that it has stopped running. Many other apps look fairly bad on the larger screen simply because they’re not optimized for it — again, something a wider release of ICS will hopefully fix.</p>
<p>The main problem I have with Android apps on the Galaxy Nexus/ICS remains the ones that are also available on iOS. When the apps exist on both platforms, it’s easy to compare them and the iOS version almost always wins — and often by a landslide. Take the latest version of Twitter, for example. It was just updated to run on both. On iOS it’s smooth, on ICS, there is noticeable stutter when scrolling. It’s much worse on Facebook Messenger and Facebook itself — no big deal, <a href="http://www.zdnet.com/blog/facebook/facebook-is-now-the-most-popular-android-app/6091">only the biggest app</a> on both platforms.</p>
<p>The reason for the app differences between the two platforms remains <a href="https://plus.google.com/100838276097451809262/posts/VDkV9XaJRGS">a hot topic of debate</a>. Again, all I know is what I see: app to app, iOS still easily beats Android in most cases. One counter-example, which I talked about on stage at LeWeb last week, is <a href="http://soundtracking.com/">SoundTracking</a>. I actually think their app is better on Android. But that has less to do with performance, and more to do with the fact that it can access hooks that iOS doesn’t offer, like background Spotify integration. Android developers should focus more on these benefits of Android and less on making their apps exact ports of their iOS ones. Something always seems to get lost in translation — often badly lost.</p>
<p>Now it just sounds like I’m focusing on the negative. It’s important to emphasize the fact that the Galaxy Nexus is without a doubt the best phone I’ve ever used that’s not an iPhone. And there is no question that it does certain things better than an iPhone — namely all of the Google apps and any third-party background/OS integration beyond Twitter, which is now baked into iOS 5. Google has also managed to just about match Apple in app quantity. This is all good — competition is good.</p>
<p>The next step that Google needs to take (or to help third party developers take) involves around app quality. Put simply: they need to create better tools for developers to use in order to take advantage of the strengths ICS offers. <a href="http://techcrunch.com/2011/12/08/v-iday/">This won’t happen in 6 months</a>, but it can happen if Google works at it.</p>
<p>After that, it’s the intangibles where iOS holds the huge advantage. And just like in sports, it’s not clear how well you can “teach” those. At some point, Google may simply have to acknowledge that iOS looks and feels better than Android because Apple’s entire fabric is woven with design, tight integration, and attention to detail. Google’s strengths are elsewhere; they should embrace that.</p>
<p>Google has done some very nice work here. Both the Galaxy Nexus and Ice Cream Sandwich are a new pinnacle of the Android platform. But in the end, it still comes down to something very simple: which device do I want to use day-to-day? Which phone do I reach for when I’m not doing a review? It’s still the iPhone. Without question.</p>
<p>Keep at it, Google.</p>
<p><img title="4" src="http://tctechcrunch2011.files.wordpress.com/2011/12/4.jpg?w=640&amp;h=853" alt="" width="640" height="853" /></p>
<p>Source: <a title="An iPhone Lover's Take On The Galaxy Nexus" href="http://techcrunch.com/2011/12/14/iphone-galaxy-nexus-review/" target="_blank">TechCrunch</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/5246/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Mobile Advertising, Does Size Matter?</title>
		<link>http://www.odysseyforge.com/2011/12/in-mobile-advertising-does-size-matter/</link>
		<comments>http://www.odysseyforge.com/2011/12/in-mobile-advertising-does-size-matter/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 11:33:48 +0000</pubDate>
		<dc:creator>OFBlog</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/2011/12/15/in-mobile-advertising-does-size-matter/</guid>
		<description><![CDATA[It’s the motion in the ocean that counts, right? Wrong. Well, at least that’s how it looks when it comes to mobile advertising. (Look out, inneractive infographic below!) If you take Google at its word, then 2011 has been the year of the tablet. Or in their words, this year tablets “went mainstream”. Sure, Google [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="body-copy" readability="87">
<div class="post-first-image">
							<img width="288" height="281" src="http://tctechcrunch2011.files.wordpress.com/2011/12/screen-shot-2011-12-15-at-2-42-57-am.png?w=288" class="attachment-image wp-post-image" alt="Screen shot 2011-12-15 at 2.42.57 AM" title="Screen shot 2011-12-15 at 2.42.57 AM"/></div>
<p>It’s the motion in the ocean that counts, right? Wrong. Well, at least that’s how it looks when it comes to mobile advertising. (Look out, <a href="http://inner-active.com/">inneractive</a> infographic below!) <a href="http://googlemobileads.blogspot.com/2011/12/engaging-consumers-on-tablets-new-ad.html">If you take Google at its word</a>, then 2011 has been the year of the tablet. Or in their words, this year tablets “went mainstream”. Sure, Google <em>would</em> say that, as the creator of a rapidly-propagating mobile OS, right? Well, <a href="http://www.appleinsider.com/articles/11/11/21/combined_mac_ipad_sales_to_make_apple_top_global_pc_vendor_in_2012.html">with total number of tablets sold expected to get close to 60 million</a> by the end of the year, I think we may be able to give them the benefit of the doubt. </p>
<p>Of course, when it comes to advertisers and developers considering mobile platforms, the question of where revenue is going to come from — and just how much — is crucial. In terms of mobile apps, freemium is certainly here to stay, but mobile advertising, as you’ve heard, is growing like gangbusters, <a href="http://techcrunch.com/2011/11/14/mobile-games-may-be-taking-off-but-how-are-their-creators-going-to-make-money-infographic/">with U.S. advertisers expected to spend upwards of $1.23 billion on mobile advertising in 2011</a>, a number that’s projected to increase to around $4.4 billion by 2014.</p>
<p>And, perhaps more importantly, the numbers show that nearly 80 percent of consumers are comfortable with or neutral towards mobile advertising. Of course, as adoption of smartphones and tablets continues at a record pace, for that comfort level with mobile advertising to remain high, Google’s research shows that users are increasingly expecting more interactive and touch-friendly ads on their mobile devices. That’s why, <a href="http://googlemobileads.blogspot.com/2011/12/engaging-consumers-on-tablets-new-ad.html">last week, Google launched new tablet-specific ad formats</a> that “make it easy for advertisers to create rich media ads for tablets using existing assets (photos, logos, etc.)” and fire them out across mobile platforms.</p>
<p>This is great, yes, but advertisers and mobile developers want to know which platforms, OSes, and devices have the highest average click-through-rates, because high CTRs lead to monetization, and monetization leads to, well, happy developers, better ads, and hopefully happier consumers. <a href="http://techcrunch.com/2011/07/22/android-vs-ios-the-heated-battle-over-mobile-advertising-infographic/">As we saw in Sarah’s recent coverage</a>, Apple has topped Android in mobile ad performance, but Windows is still leading the pack in Q3 mobile CTRs. And with Windows leading, while Mango “rolled out without the promised in-app purchasing support”, again, it’s all about ad monetization — especially for budding Windows developers.</p>
<p>So, as CTRs have become increasingly important for developers looking to monetize on mobile platforms, an interesting supplemental question has become: When it comes to the performance (CTRs) of mobile advertising, does size of the device matter? Or, in other words, should developers be turning their focus for this (and other) reason(s) to tablets?</p>
<p>Google holds that the audience is certainly there for tablets, and they (among others) are trying to walk the walk by developing optimized formats for advertising on all those tablet-y devices. In support of this, <a href="http://inner-active.com/">inneractive</a>, a mobile app monetization exchange, has created <a href="http://console.inner-active.com/iamp/publisher/register?ref_id=infographic">an infographic</a> to address whether or not mobile CTRs are higher for larger devices. Their research shows that advertisers (and developers) have a clear advantage when offering optimized ads for larger formats. </p>
<p>Thus, it seems that size does indeed matter when it comes to click-through-rates — and that we have yet another confirmation that tablets will be leading the way in 2012. In more ways than one.</p>
<p>In the end, we’d like to see results for more devices, but this is a great start. Check it out:</p>
<p><a href="http://tctechcrunch2011.files.wordpress.com/2011/12/final_ver.jpg" rel="lightbox[469211]"><img src="http://tctechcrunch2011.files.wordpress.com/2011/12/final_ver.jpg?w=640" alt="" final_ver="" class="aligncenter size-full wp-image-469213"/></a></p>
<p>  <br/>
<div class="module-crunchbase">
<div class="configuration-neighbor">
<h2 class="global-module-header-default">
   			<span class="line-2"></p>
<p>   			</span><br />
   		</h2>
<div class="container">
<ul class="tab-container">
<li><a class="tab item-1 current" href="javascript:void(0)" onclick="s_objectID='post_widget_crunchbase';">INNERACTIVE</a></li>
</ul>
<div class="panel-container">
<div class="panel item-1 current">
<div class="leftgreen">
<div class="body-copy" readability="28">
<p>inneractive is the industryâ€™s premier mobile ad mediation provider with over 100 ad networks and local agencies available at the click of a button. With inneractive, mobile developers know they are getting the highest performance and widest global coverage, while not compromising on personal and high quality customer care. inneractive is on the side of the developer!</p>
<p>inneractive offers the most advanced real time optimization platform for mobile advertising campaigns that ensures developers are maximizing in app revenue and not&#8230;</p>
</p></div>
<div class="profile-image">
     					       					      <a href="http://www.crunchbase.com/company/inneractive"><img src="http://odysseyforge.com/wp-content/uploads/2011/12/4372v4-max-150x150.jpg" alt=""/></a>
     					       					</div>
</p></div>
<p>            <a class="learn-more" href="http://www.crunchbase.com/company/inneractive" onclick="s_objectID='post_widget_crunchbase';">Learn more</a>
       		</div>
<p> <!-- End of panel item -->
     		     			</div>
<p><!-- End of panel-container -->
   	  </div>
</p></div>
</p></div>
</p></div>
</div>
<p>Source Article from <a href="http://feedproxy.google.com/~r/Techcrunch/~3/XIUemkGyMTQ/">http://feedproxy.google.com/~r/Techcrunch/~3/XIUemkGyMTQ/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/in-mobile-advertising-does-size-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bill Gates: No, I’m Not Returning To Microsoft</title>
		<link>http://www.odysseyforge.com/2011/12/bill-gates-no-im-not-returning-to-microsoft/</link>
		<comments>http://www.odysseyforge.com/2011/12/bill-gates-no-im-not-returning-to-microsoft/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 08:41:06 +0000</pubDate>
		<dc:creator>OFBlog</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/2011/12/15/bill-gates-no-im-not-returning-to-microsoft/</guid>
		<description><![CDATA[Dismissing rumors that he might be making a comeback at Microsoft, founder Bill Gates went down under to rule out the possibility of ever returning to the software behemoth full-time. Instead, he says, he’ll be working full-time at the Bill &#38; Melinda Gates Foundation until the day he dies. Gates stepped down from his day-to-day [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="body-copy" readability="37">
<div class="post-first-image">
							<img width="288" height="191" src="http://tctechcrunch2011.files.wordpress.com/2011/12/gates.jpg?w=288" class="attachment-image wp-post-image" alt="Polio: Eradicating an Old Reality Once and for All: William H. Gates" title="Polio: Eradicating an Old Reality Once and for All: William H. Gates"/></div>
<p>Dismissing <a href="http://tech.fortune.cnn.com/2011/12/08/bill-gates-comeback/">rumors</a> that he might be making a comeback at <a href="http://www.crunchbase.com/company/microsoft">Microsoft</a>, founder <a href="http://www.crunchbase.com/person/bill-gates">Bill Gates</a> <a href="http://www.smh.com.au/technology/technology-news/bill-gates-speaks-out-in-sydney--on-microsoft-steve-jobs-and-the-weather-20111215-1owak.html">went down under</a> to rule out the possibility of ever returning to the software behemoth full-time.</p>
<p>Instead, he says, he’ll be working full-time at the <a href="http://www.gatesfoundation.org/Pages/home.aspx">Bill &amp; Melinda Gates Foundation</a> until the day he dies. Gates stepped down from his day-to-day role at Microsoft in June 2008.</p>
<p>In an interview with Fairfax Media, Gates <a href="http://www.smh.com.au/technology/technology-news/bill-gates-speaks-out-in-sydney--on-microsoft-steve-jobs-and-the-weather-20111215-1owak.html">declared</a>:</p>
<blockquote readability="2"><p>“I’m part-time involved with Microsoft, including even being in touch this week to give some of my advice but that’s not going to change – the foundation requires all of my energy and we feel we’re having a great impact.”</p>
</blockquote>
<p>He also says some things about Steve Jobs, but nothing that will surprise you: he was a brilliant person who was tough on Microsoft because its machines outsold his machines by a lot, and he was kinder to Gates in his last years. Sounds about right.</p>
<p>Gates also pointed out that it’s summer in Sydney but that he wished it was a “tiny bit warmer”.</p>
<p>(Image courtesy of <a href="http://www.flickr.com/photos/worldeconomicforum/5433526797/">World Economic Forum / Flickr</a>)</p>
<p>  <br/>
<div class="module-crunchbase">
<div class="configuration-neighbor">
<h2 class="global-module-header-default">
   			<span class="line-2"></p>
<p>   			</span><br />
   		</h2>
<div class="container">
<ul class="tab-container">
<li><a class="tab item-1 current" href="javascript:void(0)" onclick="s_objectID='post_widget_crunchbase';">BILL GATES</a></li>
<li><a class="tab item-2" href="javascript:void(0)" onclick="s_objectID='post_widget_crunchbase';">MICROSOFT</a></li>
</ul>
<div class="panel-container">
<div class="panel item-1 current">
<div class="leftgreen">
<div class="body-copy" readability="32">
<p>William (Bill) H. Gates was  chairman of Microsoft Corporation, the worldwide leader in software, services and solutions that help people and businesses realize their full potential. Microsoft had revenues of US$55.12 billion for the fiscal year ending June 2007, and employs more than 78,000 people in 105 countries and regions.</p>
<p>On June 15, 2006, Microsoft announced that effective July 2008 Gates will transition out of a day-to-day role in the company to spend more time on his global health&#8230;</p>
</p></div>
<div class="profile-image">
     					       					      <a href="http://www.crunchbase.com/person/bill-gates"><img src="http://odysseyforge.com/wp-content/uploads/2011/12/17609v1-max-150x150.jpg" alt=""/></a>
     					       					</div>
</p></div>
<p>            <a class="learn-more" href="http://www.crunchbase.com/person/bill-gates" onclick="s_objectID='post_widget_crunchbase';">Learn more</a>
       		</div>
<p> <!-- End of panel item --></p>
<div class="panel item-2">
<div class="leftgreen">
<div class="body-copy" readability="30">
<p>Microsoft, founded in 1975 by Bill Gates and Paul Allen, is a veteran software company, best known for its Microsoft Windows operating system and the Microsoft Office suite of productivity software.</p>
<p>Starting in 1980 Microsoft formed a partnership with IBM allowing Microsoft to sell its software package with the computers IBM manufactured. </p>
<p>Microsoft is widely used by professionals worldwide and largely dominates the American corporate market.</p>
<p>Additionally, the company has ventured into hardware with consumer products such as the Zune and&#8230;</p>
</p></div>
<div class="profile-image">
     					       					      <a href="http://www.crunchbase.com/company/microsoft"><img src="http://odysseyforge.com/wp-content/uploads/2011/12/10926v1-max-150x150.png" alt=""/></a>
     					       					</div>
</p></div>
<p>            <a class="learn-more" href="http://www.crunchbase.com/company/microsoft" onclick="s_objectID='post_widget_crunchbase';">Learn more</a>
       		</div>
<p> <!-- End of panel item -->
     		     			</div>
<p><!-- End of panel-container -->
   	  </div>
</p></div>
</p></div>
</p></div>
</div>
<p>Source Article from <a href="http://feedproxy.google.com/~r/Techcrunch/~3/OkivB4qbNCc/">http://feedproxy.google.com/~r/Techcrunch/~3/OkivB4qbNCc/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/bill-gates-no-im-not-returning-to-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Instructs Samsung On The Finer Points Of Tablet And Smartphone Design</title>
		<link>http://www.odysseyforge.com/2011/12/apple-instructs-samsung-on-the-finer-points-of-tablet-and-smartphone-design/</link>
		<comments>http://www.odysseyforge.com/2011/12/apple-instructs-samsung-on-the-finer-points-of-tablet-and-smartphone-design/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 15:15:00 +0000</pubDate>
		<dc:creator>OFBlog</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/2011/12/03/apple-instructs-samsung-on-the-finer-points-of-tablet-and-smartphone-design/</guid>
		<description><![CDATA[Apple is famous for crafting beautifully designed products, but it is a little condescending to start giving design advice to its competitors. Nevertheless, this is exactly what Apple has done in a legal brief filed with their earlier request for a ban on Samsung&#8217;s devices in the United States (a request which was denied by [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="post_content" readability="45">
<p><a href="http://cdn.androidpolice.com/wp-content/uploads/2011/12/galaxy-tab-8.91.jpg"></a>Apple is famous for crafting beautifully designed products, but it is a little condescending to start giving design advice to its competitors. Nevertheless, this is exactly what Apple has done in a legal brief filed with their earlier request for a ban on Samsung&#8217;s devices in the United States (a request which was <a href="http://www.androidpolice.com/2011/12/03/respite-for-samsung-as-u-s-judge-denies-apples-request-to-block-sales-of-galaxy-devices/">denied</a> by a district judge a few days ago). The legal brief from Apple describes both what their U.S. design patents cover and what the patents do not cover. The latter is especially interesting as they are essentially guidelines on what Samsung can do to avoid being sued in the future.</p>
<p>In its defense, Samsung argues that the design choices for smartphones and tablets are limited, that is there are only so many ways a plastic slab can be shaped and there are only so many places you can put the buttons and bezels. Apple, to no one&#8217;s surprise, disagrees and provides examples of design alternatives which Samsung could employ to distinguish its products.</p>
<p><em>The Verge</em> has <a href="http://www.theverge.com/2011/12/2/2596527/apple-samsung-design-patent-iphone-ipad-work-around" class="external" rel="nofollow">provided</a> a cogent summary of some alternative design options described by Apple:</p>
<p>Naturally, Samsung did not go out and immediately start &#8220;cluttering up&#8221; all its devices, but Apple&#8217;s brief is an invaluable tool and provides Samsung with ways in which to avoid patent litigation in the future.</p>
<p>Samsung has already tried to differentiate its <a title="Galaxy Tab" href="http://www.amazon.com/gp/feature.html?docId=1000630301&amp;plgroup=1?ie=UTF8&amp;pf_rd_r=1SE74H1XRKDZF8Z2KHWJ&amp;pf_rd_m=A1HBSU70BXNZUG&amp;pf_rd_t=101&amp;pf_rd_i=G000&amp;pf_rd_p=1283843822" class="external" rel="nofollow">Galaxy Tab</a> 10.1N line in Germany by <a href="http://www.androidpolice.com/2011/11/16/did-samsung-launch-a-new-german-galaxy-tab-10-1-to-avoid-infringement-of-apples-design-sure-looks-like-it/">modifying</a> the form-factor slightly and stating that the modification was made &#8220;to reflect Apple&#8217;s claims&#8221;. However, Apple was unimpressed by the token changes and <a href="http://www.androidpolice.com/2011/11/29/apple-is-at-it-again-seeks-injunction-against-samsungs-galaxy-tab-10-1n-in-germany/">sought an injunction</a> against the newly modified Tab in Germany. I am unfamiliar with German law, but if the changes made to the Tab 10.1N are &#8220;design alternatives&#8221;, as outlined by Apple in its brief, then Samsung may have a strong paper shield in its defense.</p>
<p>[Source: <a href="http://assets.sbnation.com/assets/807205/Apple_reply_PI_motion.pdf" class="external" rel="nofollow">Apple's Reply</a>, <a href="http://assets.sbnation.com/assets/807407/Apple_Reply_Expert_declaration.pdf" class="external" rel="nofollow">Apple's Expert Reply</a>, and <a href="http://assets.sbnation.com/assets/810275/Samsung_Opposition_to_PI.pdf" class="external" rel="nofollow">Samsung's Opposition</a> via <a href="http://www.theverge.com/2011/12/2/2596527/apple-samsung-design-patent-iphone-ipad-work-around" class="external" rel="nofollow">The Verge</a>]</p>
<p><span class="pvc_count_me70633"></span></div>
</div>
<p>Source Article from <a href="http://feedproxy.google.com/~r/AndroidPolice/~3/CbwHRifEsfg/story01.htm">http://feedproxy.google.com/~r/AndroidPolice/~3/CbwHRifEsfg/story01.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/apple-instructs-samsung-on-the-finer-points-of-tablet-and-smartphone-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Respite For Samsung As U.S. Judge Denies Apple&#8217;s Request To Block Sales Of Galaxy Devices</title>
		<link>http://www.odysseyforge.com/2011/12/respite-for-samsung-as-u-s-judge-denies-apples-request-to-block-sales-of-galaxy-devices/</link>
		<comments>http://www.odysseyforge.com/2011/12/respite-for-samsung-as-u-s-judge-denies-apples-request-to-block-sales-of-galaxy-devices/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 11:31:11 +0000</pubDate>
		<dc:creator>OFBlog</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/2011/12/03/respite-for-samsung-as-u-s-judge-denies-apples-request-to-block-sales-of-galaxy-devices/</guid>
		<description><![CDATA[The patent wars between Samsung and Apple are stretching everyone pretty thin, lawyers and judges from 10 countries are contending with over 20 cases, manufacturers are having to make last minute adjustments to devices, and most importantly reporters, including yours truly, are having a hard time keeping up with it all. Bringing the discussion stateside, [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="post_content" readability="43">
<p><a href="http://cdn.androidpolice.com/wp-content/uploads/2011/12/galaxy-tab-8.9.jpg"></a></p>
<p>The <a href="http://www.androidpolice.com/tags/patents/">patent wars</a> between Samsung and Apple are stretching everyone pretty thin, lawyers and judges from 10 countries are <a href="http://www.androidpolice.com/2011/11/29/apple-is-at-it-again-seeks-injunction-against-samsungs-galaxy-tab-10-1n-in-germany/">contending</a> <a href="http://www.androidpolice.com/2011/11/29/australian-court-lifts-injunction-against-samsungs-galaxy-tab-10-1-apple-ready-to-appeal/">with</a> over 20 cases, manufacturers are having to make <a href="http://www.androidpolice.com/2011/11/16/did-samsung-launch-a-new-german-galaxy-tab-10-1-to-avoid-infringement-of-apples-design-sure-looks-like-it/">last minute adjustments</a> to devices, and most importantly reporters, including yours truly, are having a hard time keeping up with it all.</p>
<p>Bringing the discussion stateside, on Friday a U.S. District Judge in California <a href="http://www.reuters.com/article/2011/12/03/us-apple-samsung-ruling-idUSTRE7B206D20111203" class="external" rel="nofollow">denied</a> Apple&#8217;s request for a preliminary injunction against Samsung. Apple had earlier sued Samsung in the U.S. claiming that the Galaxy line of smartphones and tablets &#8220;slavishly&#8221; copied the iPhone and the iPad. However, the Judge disagreed and noted that &#8220;it is not clear that an injunction on Samsung&#8217;s accused devices would prevent Apple from being irreparably harmed&#8221;. Although the ruling suggests that Samsung is free to continue selling its products for now, the court did find that Samsung had likely infringed one of Apple&#8217;s tablet patents. However, at this stage of the case Apple was unable to prove that the sale of the Galaxy devices by Samsung caused them &#8220;irreparable harm&#8221; and so the injunction was denied.</p>
<p>As Reuters <a href="http://www.reuters.com/article/2011/12/03/us-apple-samsung-ruling-idUSTRE7B206D20111203" class="external" rel="nofollow">points out</a> Apple could ultimately prevail in the overall lawsuit, but even it if they do Samsung will likely only have to pay damages for the offending devices sold.</p>
<p>Naturally, Samsung is delighted by the results of the ruling:</p>
<div class="fancy_blockquote">
<blockquote readability="2">
<p>Samsung welcomes today&#8217;s ruling denying Apple&#8217;s request for a preliminary injunction. This ruling confirms our long-held view that Apple&#8217;s arguments lack merit. In particular, the court has recognized that Samsung has raised substantial questions about the validity of certain Apple design patents. We are confident that we can demonstrate the distinctiveness of Samsung&#8217;s mobile devices when the case goes to trial next year. We will continue to assert our intellectual property rights and defend against Apple&#8217;s claims to ensure our continued ability to provide innovative mobile products to consumers.</p>
</blockquote>
</div>
<p>At least for the moment it looks like Samsung won&#8217;t have to <a href="http://www.androidpolice.com/2011/11/16/did-samsung-launch-a-new-german-galaxy-tab-10-1-to-avoid-infringement-of-apples-design-sure-looks-like-it/">crudely modify</a> a <a title="Galaxy Tab" href="http://www.amazon.com/gp/feature.html?docId=1000630301&amp;plgroup=1?ie=UTF8&amp;pf_rd_r=1SE74H1XRKDZF8Z2KHWJ&amp;pf_rd_m=A1HBSU70BXNZUG&amp;pf_rd_t=101&amp;pf_rd_i=G000&amp;pf_rd_p=1283843822" class="external" rel="nofollow">Galaxy Tab</a> just to sell it in the U.S.</p>
<p>[Source: <a href="http://www.reuters.com/article/2011/12/03/us-apple-samsung-ruling-idUSTRE7B206D20111203" class="external" rel="nofollow">Reuters</a>]</p>
<p><em>Thanks to Dy4me for the tip!</em></p>
<p><span class="pvc_count_me70630"></span><span><img src="http://www.androidpolice.com/wp-content/plugins/wp-spamfree/img/wpsf-img.php" width="0" height="0" alt="" /></span></div>
</div>
<p>Source Article from <a href="http://feedproxy.google.com/~r/AndroidPolice/~3/uRwbhmoa9TM/story01.htm">http://feedproxy.google.com/~r/AndroidPolice/~3/uRwbhmoa9TM/story01.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/respite-for-samsung-as-u-s-judge-denies-apples-request-to-block-sales-of-galaxy-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AT&amp;T, Sprint, T-Mobile, Motorola, And Apple Are Also Sued Alongside HTC, Samsung, And CarrierIQ In A New Class Action Lawsuit</title>
		<link>http://www.odysseyforge.com/2011/12/att-sprint-t-mobile-motorola-and-apple-are-also-sued-alongside-htc-samsung-and-carrieriq-in-a-new-class-action-lawsuit/</link>
		<comments>http://www.odysseyforge.com/2011/12/att-sprint-t-mobile-motorola-and-apple-are-also-sued-alongside-htc-samsung-and-carrieriq-in-a-new-class-action-lawsuit/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 10:00:03 +0000</pubDate>
		<dc:creator>OFBlog</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://odysseyforge.com/2011/12/03/att-sprint-t-mobile-motorola-and-apple-are-also-sued-alongside-htc-samsung-and-carrieriq-in-a-new-class-action-lawsuit/</guid>
		<description><![CDATA[Yesterday, we caught early wind of two class action lawsuits filed against CarrierIQ, HTC, and Samsung in Chicago and St. Louis. You can now add a whole new class action suit to the pile, except this time it also names AT&#38;T, Sprint, T-Mobile, Motorola, and Apple in addition to the aforementioned three companies. Led by [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="post_content" readability="61">
<p><a href="http://cdn.androidpolice.com/wp-content/uploads/2011/12/image12.png"></a>Yesterday, we caught early wind of <a href="http://paidcontent.org/article/419-samsung-and-htc-hit-by-wiretapping-lawsuit-over-tracking-software/" class="external" rel="nofollow">two class action lawsuits filed against CarrierIQ, HTC, and Samsung</a> in Chicago and St. Louis. You can now add a <a href="http://www.prnewswire.com/news-releases/apple-htc-samsung-motorola-att-sprint-t-mobile-and-carrier-iq-sued-in-delaware-federal-court-in-cell-phone-tracking-software-scandal-134938178.html" class="external" rel="nofollow">whole new class action suit</a> to the pile, except this time it also names AT&amp;T, Sprint, T-Mobile, Motorola, and Apple in addition to the aforementioned three companies.</p>
<p>Led by law firms from Delaware and New Jersey &#8211; Sianni &amp; Straite LLP, Eichen Crutchlow Zaslow &amp; McElroy LLP, and Keefe Bartels L.L.C. &#8211; the lawsuit &#8220;asserts that three cell phone providers (T-Mobile, Sprint and AT&amp;T) and four manufacturers of cell phones (HTC, Motorola, Apple and Samsung) violated the Federal Wiretap Act, the Stored Electronic Communications Act, and the Federal Computer Fraud and Abuse Act.&#8221; CarrierIQ is not named in that quote, but it is listed in the press release&#8217;s title, so don&#8217;t worry &#8211; the whole gang is included.</p>
<p>The three firms are not thrilled with &#8220;the unprecedented breach of the digital privacy rights of 150 million cell phone users&#8221; and think that &#8220;this latest revelation of corporate America&#8217;s brazen disregard for the digital privacy rights of its customers is yet another example of the escalating erosion of liberty in this country. Anyone who cares at all about their personal privacy, or the broader constitutional right to privacy, ought to care and care a great deal about this case.&#8221;</p>
<p>Oh, we do care, although I&#8217;m not too thrilled with the lack of the firms&#8217; own research and this snide remark by Barry Eichen of Eichen Crutchlow Zaslow &amp; McElroy LLP: &#8220;today&#8217;s comment from Larry Lenhart, CEO of Carrier IQ, that his software is somehow good for consumers starkly demonstrates what is at stake.&#8221; We get what you&#8217;re saying, Barry, but there&#8217;s no need to be so cocky at this stage &#8211; it may come back and bite you in the rear.</p>
<p>I feel the lawsuits are quite a bit premature, but that&#8217;s the way the system works &#8211; everyone wants a piece of the pie, and the earlier they get into the game, the better for them. After all, remember &#8211; the primary beneficiaries who stand to profit in case of winning are the law firms themselves. Nevertheless, it&#8217;s certainly going to be interesting to see how successful these lawsuits can get and whether they can convince the courts that CarrierIQ installations on millions of devices were unlawful in some way.</p>
<div class="fancy_blockquote">
<blockquote readability="48">
<p><strong>Apple, HTC, Samsung, Motorola, AT&amp;T, Sprint, T-Mobile and Carrier IQ Sued in Delaware Federal Court in Cell Phone Tracking Software Scandal</strong></p>
<p>WILMINGTON, Del., Dec. 2, 2011 /PRNewswire/ &#8212; The law firms of Sianni &amp; Straite LLP of Wilmington, DE, Eichen Crutchlow Zaslow &amp; McElroy LLP of Edison, NJ, and Keefe Bartels L.L.C. of Red Bank, NJ, have today filed a class action complaint in Federal Court in Wilmington, Delaware related to the unprecedented breach of the digital privacy rights of 150 million cell phone users.  The complaint asserts that three cell phone providers (T-Mobile, Sprint and AT&amp;T) and four manufacturers of cell phones (HTC, Motorola, Apple and Samsung) violated the Federal Wiretap Act, the Stored Electronic Communications Act, and the Federal Computer Fraud and Abuse Act.</p>
<p>The carriers and manufacturers were caught last month willfully violating customers&#8217; privacy rights in direct violation of federal law.  A technology blogger in Connecticut discovered that software designed and sold by California-based Carrier IQ, Inc. was secretly tracking personal and sensitive information of the cell phone users without the consent or knowledge of the users.  On Nov. 30, 2011, the United States Senate Committee on the Judiciary said in a letter to Carrier IQ that &#8220;these actions may violate federal privacy laws.&#8221;  It added, &#8220;this is potentially a very serious matter.&#8221; </p>
<p>David Straite, one of the attorneys leading the action, noted &#8220;this latest revelation of corporate America&#8217;s brazen disregard for the digital privacy rights of its customers is yet another example of the escalating erosion of liberty in this country.  We are hopeful that the courts will allow ordinary customers the opportunity to remedy this outrageous breach.&#8221;  Steve Grygiel, co-counsel for the proposed class, agreed: &#8220;anyone who cares at all about their personal privacy, or the broader constitutional right to privacy, ought to care and care a great deal about this case.&#8221;  Barry Eichen added, &#8220;today&#8217;s comment from Larry Lenhart, CEO of Carrier IQ, that his software is somehow good for consumers starkly demonstrates what is at stake.&#8221;</p>
<p>A copy of the Class Action Complaint in <i>Pacilli v. Carrier IQ, Inc.</i> can be viewed on the Firms&#8217; websites at <a href="http://www.siannistraite.com/" class="external" rel="nofollow"><i>www.siannistraite.com</i></a>, <a href="http://www.keefebartels.com/" class="external" rel="nofollow"><i>www.keefebartels.com</i></a>, and <a href="http://www.njadvocates.com/" class="external" rel="nofollow"><i>www.njadvocates.com</i></a>.</p>
<p>Plaintiffs are represented by <b>Sianni &amp; Straite LLP</b>, a Delaware-based litigation firm with a branch office in New York, <b>Keefe Bartels LLC, </b>a New Jersey-based plaintiffs&#8217; rights trial law firm, and <b>Eichen Crutchlow Zaslow &amp; McElroy LLP</b>, a leading plaintiffs firm with three offices in New Jersey.</p>
</blockquote>
</div>
<p><em>Image via <a href="http://tctechcrunch2011.files.wordpress.com/2011/12/carrieriq.png?w=288" class="external" rel="nofollow">TechCrunch</a></em></p>
<p><span class="pvc_count_me70624"></span><span><img src="http://www.androidpolice.com/wp-content/plugins/wp-spamfree/img/wpsf-img.php" width="0" height="0" alt="" /></span></div>
</div>
<p>Source Article from <a href="http://feedproxy.google.com/~r/AndroidPolice/~3/P0DuJRNqkRc/story01.htm">http://feedproxy.google.com/~r/AndroidPolice/~3/P0DuJRNqkRc/story01.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.odysseyforge.com/2011/12/att-sprint-t-mobile-motorola-and-apple-are-also-sued-alongside-htc-samsung-and-carrieriq-in-a-new-class-action-lawsuit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

