Sunday, March 20, 2011

Mobile March

The Mobile March conference was held at the Best Buy headquarters this weekend. Here is a brief recap of the sessions I attended:

Morning Sessions

Keynote

Key points:
  • There is a low tolerance for mediocrity in mobile. Apps have a 50% abandon rate after the first 30 days.
  • Mobile trends: News via tablets, social media, location based apps, group messaging with apps like Beluga.
  • Mobile marketing, what's working: Incentives, deals, hot buys, and rebates.
  • 5 things to consider: Activate advertising with text or QR codes, activate sponsorships with mobile, launch mobile coupons, test a location based campaign, use mobile to drive app downloads.

Simple and low cost mobile technologies have proven to be very effective solutions. SMS, QR codes, and social media fall within this category. The goal is simple, get customers to engage and then extend the conversation.



Cracking the Code: QR Codes and Coupons

Key points:
  • QR code scanning is up 1000% in the last 6 months. Consumers love to scan QR barcodes.
  • QR codes link users to additional information. For example, Best Buy has QR codes next to each price tag. Launching the QR code provides the user with detailed information and user reviews. Additionally, if you scan another product you can see a side-by-side comparison of both products.
  • Looking for a QR reader? Try NeoReader.
  • Chino Latino is the first restaurant to put a QR code on a billboard.

Mobile March had QR codes at the entrance of each session. Scanning the code displayed the presenters bio. Again, this is a simple, low cost solution to interact with mobile customers.



The iPhone vs Android Showdown

Key points:
  • iPhone
    • Xcode 4, which was released a few weeks ago, has finally simplified the organization of their Interface Builder and code editor. Navigating between Interface Builder and code is much quicker via their new tab orientation instead of externalized windows found in Xcode 3.
    • Xcode is the superior IDE when compared to Android development on Eclipse. The Interface Builder is far superior and the iPhone emulator loads much faster.
  • Android
    • Android's distribution model is superior. It takes several hours to deploy to Android's Market. The Apple Store certification process may take up to 2 weeks.

Creating a mobile wireframe is easily 2-3 times faster in Xcode. While Android finally released a UI builder with their 3.0 SDK it is far from perfect. A major Android advantage is their time to market on app upgrades. If you have a production defect will you have the patience to wait for the Apple certification process?



Grill yourself

Key points:
  • Think about UX as soon as you have an idea.
  • Keep apps simple and moving parts to a minimum.
  • You can sell anything if you can do it simple, quick, and cheap.
  • Share the analytics about your mobile users with your organization.


Afternoon Sessions

The Current State of the Mobile Web

Key points:
  • Native advantages: performance, consistency, safety, convenience, functionality.
  • Native disadvantages: harder to build, approval process, hard to discover, fragmentation.
  • Mobile Web advantages: open, connected, ubiquitous, unregulated.
  • Mobile Web disadvantages: unregulated, performance is slower.
  • Mozilla and Google are coming out with web app stores soon.
  • Looking for a fixed header and footer for your scrollable window on iOS? Try iScroll.

There are clearly many advantages to Mobile Web. Its deployment model is instantaneous and it helps reduce fragmentation and development costs. If you are interested in jQuery Mobile, here is a good presentation.



Blackberry Playbook

Key points:
  • Cost of entry
    • BlackBerry: Free
    • Android: $25 (one time)
    • Apple: $99/yr
  • Distribution
    • Google: lass than hour
    • BlackBerry: 4-6 hours
    • Apple: up to 2 weeks
  • BlackBerry has a "try before you buy" program in their AppWorld store which is unique.

The Playbook tablet by BlackBerry will be released soon. While competition is good, they definitely have an uphill battle to climb.

Sunday, March 6, 2011

No Fluff Just Stuff: Minneapolis Summary (Spring)

The No Fluff Just Stuff conference was back in Minneapolis. Here is a brief recap of the sessions I attended:

Friday Sessions

NoSQL Smackdown!

Key points:
  • NoSQL is a set of different approaches to storing and retrieving data
  • Cassandra:
    • Implementation Language: Java 6
    • Data Model: BigTable
    • Advantages: Highly scaleable
    • Deployments: facebook, twitter
  • MongoDB:
    • Implementation Language: C++
    • Data Model: JSON
    • Advantages: Simple
    • Deployments: sourceforge, bit.ly, shutterfly, Etsy

I like the fact MongoDB persists JSON. I implemented a similar solution on a recent mobile application where JSON objects were persisted on the client database. This solution is simple, requires minimal code, and provides great flexibility. If the domain model changes the database requires ZERO changes!



Pragmatic Architecture

Key points:
  • Architects will be much more effective if they have a solid understanding of the business domain.
  • A good architecture makes it easy for developers to make "right" decisions.
  • Avoid architectures that were designed with Resume Driven Design (RDD).
  • Architects must be familiar with all technologies.
  • Prefer full-time architects or architects that at least see the consequences of their design after deploying to production.

Over the past twelve years I have observed that the most effective architects code at least 49%. The more the better. If this isn't the case they simply won't be effective long term. The best architects produce working code in addition to their design artifacts.



Introducing Spring Roo: From Zero to Working Spring Application in Record Time

Key points:
  • The rapid scaffolding is intriguing.
  • The de-Rooing is convenient when you need to remove the Roo footprint.
  • I particularly like the ability to replay your commands for project setup. Extract the Roo scripts and replaying them for the next project can offer rapid productivity.

Roo makes sense for rapid prototyping or if you need to build an application in 24-hours.



Saturday sessions

HTML5: The JavaScript Parts

Key points:
  • Prefer document.querySelector() over document.getElementById() for much improved performance gains.
  • By default, navigator.geolocation is not enabled in Chrome. The user must explicitly enable it.
  • Modernizr can help with progressive enhancement by detecting browser feature availability and reacting appropriately.
  • Web Workers are not supported on mobile browsers:(
  • When can I use... shows feature compatibility by browser.
  • findmebyIP shows feature support for your current browser.

I predict a strong enterprise push for mobile web development starting this year. Mobile Web is device agnostic and jQuery Mobile will simplify the adoption. Even facebook has admitted to the pain, duplication, and cost of supporting five separate native apps.



Developing Social-Ready Web Applications

Key points:
  • Enable twitter integration with @Anywhere
  • Dynamically search for tweets from twitter's restful API: http://search.twitter.com/search.json?q=nfjs
  • Dynamically find the friends of a twitter user: http://api.twitter.com/1/friends/ids.json?screen_name=<username>
  • Enable facebook integration with their Social Plugins
  • Dynamically retrieve the user info for a facebook user: https://graph.facebook.com/<username>
  • LinkedIn's developer widgets

The greatest benefit of Spring Social is its simplification of SSO integration.



Git Going with Distributed Version Control

Key points:
  • Git is 10-100 times faster than Subversion.
  • Git can bisect bugs or find the commit that broke a test.
  • Git can search (grep) the entire revision history without checkouts. For example, I can find a particular commit where a line was added.
  • Git persists the versioned artifacts to the file system as 40 character hashes. This approach is very lightweight and provides extremely fast compares.
  • Unlike Subversion, Git does not pollute the source directories with version control meta data.

I have been working with Git for several weeks. Matthew's DZone Refcard about Git has also been a very valuable resource. Git was my favorite session so far!



Sunday sessions

jQuery: Ajax Made Easy

Key points:
  • jQuery has a small footprint, the code is clean, it has good documentation, has excellent CSS selector support, and it's the most popular.
  • If you only need the CSS selector support it's available in Sizzle.

If you want read well written JavaScript it is worth your time to checkout jQuery's source code.



Going Mobile with jQuery

Key points:
  • 50% of population will have smartphone by the end of 2011
  • Tablet support is now available
  • Favorite quote: "Using an iPhone during a meeting makes you look like a proactive employee." --Nathaniel Schutta

I have been working with jQuery Mobile for several months now and it is a simple framework. The team is extremely eager to support nearly every device. After spending time learning Git, I am finally setup to help contribute to the project. Now I need to find the time to focus on a task, defect, or test! In addition to jQuery Mobile there are also mobile web frameworks available from YUI, jQTouch, and Jo.



Code Craft

Key points:
  • We need to spend more time reading code.
  • There is nothing wrong with simplicity! Simple code == good
  • If you are having difficulties with code reviews try Crucible.


Mobile GUI Frameworks

Key points:
  • jQTouch is the smoothest mobile web framework on the market today. However, only iOS is able to reap many of these benefits.
  • Jo is a new mobile framework I definitely want to look at closer. It's lighter weight than jQuery Mobile and the end user codes primarily in JavaScript whereas jQuery Mobile is more markup driven.