Yuriy Dybskiy

Curious JavaScript Engineer, @html5cat

Why Most Mobile Apps Suck or 'What Mobile Web Devs Can Learn From Game Devs'

Thanks for all the attention this post got on reddit! You guys rock! That’s some 6,584 rocking people :) Join the discussion.

I’ve been arguing recently with a few folks that the reason Facebook mobile apps suck isn’t because they chose HTML5 blend over pure native but rather due to poor execution on their side.

There were a bunch of articles written to support both sides but arguing about it isn’t really productive, is it? Last night I read an amazing article by Patrick Wyatt – The making of Warcraft part 1. I hope you played Warcraft or at least Warcraft 2.

The problems outlined there make our today’s hurtles laughable. Fitting a game into 640Kb of memory, code versioning via “remembering which files are changed on that floppy disk”, huge multiplayer latencies.

We are spoiled these days and some of us got too comfy thinking 3G and LTE can solve all those latency problems for you. The real answer to the problems with most mobile apps these days (including Facebook’s) is Patrick’s another great article – Reducing perceived latency and Mike Krieger’s (Instagram) – Secrets to Lightning Fast Mobile Design slide deck.

Slide 25 sums it up nicely in three ‘easy’ steps:

  1. perform actions optimistically
  2. adaptively pre-load content
  3. move bits when no-one’s watching

The later two are pretty self-explanatory, but I’d like to elaborate a bit more on the first one. First time I saw it I assumed it ment optimizations, but what it really means is optimism.

Be optimistic about the and make the user feel productive. Here’s one of the slides:

Just like Ogre in Warcraft would say “Daboo” once you command to move, it didn’t really mean that all the requests had finished. It was a simple acknowledgment for the user that we got your command.

What if the request fails? Notify user unobtrusively:

At the end of the day, choosing tools you use is important but much more important is how you use them.

In light of some Vancouver game studios shutting down I don’t think people need to be worried – it could be great for many companies if a game dev joined them.

So if you are a dev looking for work in Vancouver – get in touch with Boris Mann or Igor Faletski. They helped me find Unbounce team and I can’t recommend them enough.

If you read this far, follow me on twitter – @dybskiy

Thanks to sidcool1234 for submitting to reddit.

Update 1: reddit reader barsoap pointed out the following:

There’s one keyword here: Immersion. Immersion breakers kill every game, and while break of workflow might not kill an application, it’s definitely going to make it suck. The difference in game vs. app developers here is that game developers focus on immersion from the get-go, even design their games around it, while app developers start off with a set of functionality and, at least hopefully, consider immersion as an afterthought. Do you remember Kai Krause’s early work, such as Kai’s Photo Soap? Those were designed around immersion, not functionality.

Comments