WPDev Sin: Gluttony

null This is the Day #6 post in the article series “7 Deadly Sins for Windows Phone Developers!“.

What is Gluttony ?

From http://deadlysins.com:

Gluttony is an inordinate desire to consume more than that which one requires.

Why: Because you were weaned improperly as an infant.

How does Gluttony relate to Windows Phone development ?

— over-indulgence/over-consumption ..

Gadgets. They just keep coming .. new & improved, faster & better, smarter & more personal. Tablets & computers of today easily match the computing & storage capabilities of super machines from a few years back. All this, in my opinion, is making us developers a little lazy. We are having to pay less attention to performance as the available horsepower simply swallows potential issues.

Mobile development is a great leveler in that regard. Just the constraints of the smartphone form factor give it limited resources and this brings our code closer to the metal & demands restraint. We need to worry about performance optimization, since lack of it leads to crappy user experience. Let’s take a look at how we Windows Phone developers can avoid Gluttony while developing for the Windows Phone ecosystem:

  • Resources: Overconsumption of phone’s resources is bad. The Windows Phone team has worked very hard to make the core OS very very lean .. our resource hungry app will stick out even more in this context. Make sure your memory footprint is small; this ensures that your app runs efficiently when loaded in device RAM and stays longer in memory as Mango does Multitasking/Fast Application Switching(FAS). Managed code helps; but make sure you do not have extra Using statements or referencing any library that you do not need. Beware of using multiple 3rd party toolkits, specially if there is overlapping functionality. Also, animations are nice & an integral part of Metro; but too much of it is not good. I have personally seen performance degrade when swapping out the default PhoneApplicationFrame (one that houses your XAML pages) with 3rd party tooling for custom animations; but that could be just me. Anyways, point is, know exactly what you need & don’t go over. This is an awesome checklist for performance tuning.
  • Threading: Surely no one needs to be told that locking up the UI thread is just not an option on tablet/smartphone applications. You may be counting national population/debt; but your App UI needs to be responsive. Most Silverlight programming forces us to do heavy-lifting asynchronously, by intelligent use of Background threads for processing, Composite threads for animations & auto-merging with UI thread. You may use an explicit Background worker, if needed. Hang tight as life is gonna get better when the now-supported Async CTP is finalized .. no more gobblygowk Dispatcher.BeginInvoke() or DownloadCompleted() APM/EAP patterns (details here) .. you should just be able to do async-await to achieve asynchrony.
  • Caching: Cache anything possible to prevent making the same web HTTP call twice. This specially applies to images/flat data. Check out the following resources to cache artifacts in Isolated Storage here, here & here.
  • Execution Model: Now that you know Windows Phone Mango supports FAS through a in-memory application backstack, did you stop caring to handle Tombstoning? We cannot just write a resource-heavy App and expect it to be held in memory for long. Coming out clean from Tombstoning is a must .. this article on Execution Model could be a good place to start :).
  • Alarms/Reminders: The new APIs to create Alarms/Reminders are great; but please do not over-indulge in reaching anywhere close to the limit of 50 or create them without user intervention.
  • API Exploitation: The new Calendar & Contacts APIs are super handy, aren’t they? But again, with power comes responsibility. Do not exploit them to do things without user intervention. Uninstallation & bad reviews will follow.

That’s it for today. Crux of this post: Just because you can, doesn’t mean you should! Hopefully, you come back tomorrow for the Day #7 article in this series of “7 Deadly Sins for Windows Phone Developers!“.

Adios!

WPDev Sin: Greed

null This is the Day #5 post in the article series “7 Deadly Sins for Windows Phone Developers!“.

What is Greed?

From http://deadlysins.com:

Greed is the desire for material wealth or gain, ignoring the realm of the spiritual. It is also called Avarice or Covetousness.

Why: You live in possibly the most pampered, consumerist society since the Roman Empire.

How does Greed relate to Windows Phone development ?

— sin of excess, desire for quick riches ..

Our greed as Windows Phone developers often surfaces when we jump the gun, before knowing consequences. Allow me to elaborate on how we can avoid some greedy pitfalls:

  • Patterns: So, you have made up your mind on a dream Windows Phone app. What’s next .. File->New Project? Wait .. think it through a little. I’m not saying you dwell forever before getting started; but a little thinking ahead helps. May be you start with a subset of what you eventually want to achieve in your app. Having some vision about the future features of your killer app will help you better architect the solution. We all hate codebases which are a hot mess, right? Take a look at a few software patterns and see if any appeals to you. The goal should be to keep your application code clean & have separation of concerns, so it’s easy to test. Is your UI tied too closely to some business logic, making it difficult to push out updates/fixes? Turns out, patterns like MVVM work really well in Silverlight/Windows Phone type development. You can roll in your own or start with some awesome toolkits which help you along the way. Some prominent ones are MVVM Light, UltraLight MVVM & Caliburn Micro.
  • Localization & Globalization: Did you think you could write once & reuse your app many times over to make money? While there is nothing stopping you from releasing your English app worldwide to all Markets, eventually the laziness will take a toll on your fame/money. Have you considered that the fact that non-native speakers may not have the best UX on your app unless it is localized/globalized? Yes, it’s difficult; but bite the bullet & you will see plentiful rewards. A great starting point is here. Pick your favorite translation service & see how far you can get. Seek localization help from friends or fellow Windows Phone developers across the world, so that your App language feels natural.
  • Performance: Understand Data Virtualization, period. This helps in making sense of the price you pay for the choices you made, both in your Listbox DataTemplate & the actual data list it is bound to. Great articles here, here & here. Still in doubt about your App’s performance & rendering of XAML pages? Whip out the Windows Phone Profiler tool to identify performance problems in your app .. a great starting point is here.
  • Background Agents: Using your single allowed Background agent? Good. But do not take your Periodic Task to its deathly limits. Remember, there are constraints on such Periodic Tasks, meant to be small amounts of code run for a small amount of time on a regular recurring interval. If you try doing too much, you enter the realm of unknown where the OS will simply shut down your background process. Result – bad UX since “Both periodic and resource-intensive agents are unscheduled if they exit two consecutive times due to exceeding the memory quota or any other unhandled exception. The agents must be rescheduled by the foreground application.”
  • SQL CE: I know we all hankered for SQL CE support prior to Mango; and now we have it. Nice walkthrough here. But unless you have truly relational data & a very very good reason to use it, don’t. Because, it is a layer of orchestration on top of Isolated Storage and you are taking a little performance hit.
  • Design: Remember Metro – simple, elegant & chromeless. There is a fair amount precision behind Metro though .. spacing & placement matters. The MetroGridHelper nuget should help. First rule of Metro – just because we can, doesn’t mean we should. I have mentioned this before, but again the 31 week article series by Arturo Toledo explaining the crux of Metro is a fantastic read.
  • Icons: In your zeal to get started & do everything yourself, do not forget to look around to see if the Metro AppBar or other icons you need are already available or not. There are great collection of Metro icons available here & here.

See? Little restraint & our Windows Phone app codebase can flourish systematically, without having to reinvent the wheel. Happy You & Happier Users. Hopefully, you come back tomorrow for the Day #6 article in this series of “7 Deadly Sins for Windows Phone Developers!“.

Adios!

WPDev Sin: Wrath

null This is the Day #4 post in the article series “7 Deadly Sins for Windows Phone Developers!“.

What is Wrath ?

From http://deadlysins.com:

Wrath is manifested in the individual who spurns love and opts instead for fury.

Why: You’re wired for it. Also, the people around you are pretty damn irritating.

How does Wrath relate to Windows Phone development ?

— uncontrolled rage as developer ..

So, you have decided to spend one of your precious free weekends to code up your dream Windows Phone app. You start, but soon find yourself needing fancy controls, animations or some peculiar tweak. Result – anger. To rub it in, you heard a buddy just made a similar app on a competing platform & is now making buckets of money. *&!@#$%^^& .. right? Well, let’s chill. There are plenty of ways we can help ourselves by taking a look around & not reinventing the wheel. So, let’s see how you, a Windows Phone developer, can avoid Wrath.

  • Toolkits: Think you need a special control for your Windows Phone app? Some custom animation for your pages? STOP & look around! There is plenty of help to prevent you from reinventing the wheel. Some awesome toolkits to choose from for your developer arsenal are the Windows Phone Silverlight Toolkit, Coding4Fun Windows Phone Toolkit, Sterling DB, GZipWebClient & many others.
  • 3rd Party Tooling: Quite a few MSFT partners are making the Windows Phone ecosystem richer by adding a lot of love for developers. These are mostly in the form of custom controls/animations/frames which really make your life a lot easier. Check out Windows Phone specific offerings from Telerik, ComponentOne & Infragistics.
  • Trials & Pricing: Price your work sensibly. If you have spent a lot of effort & think you have a genuinely good app, you absolutely should not give it away for free. Trial mode is a great way to give users a taste of what’s to come & hold back a few features when they actually buy your app. Read both sides of the story here and here .. bottom-line, do what makes sense for your app.
  • Monetization: Along the same lines, if you want to make a free app, there absolutely nothing wrong in putting a few advertisements to earn you a few bucks. Yes, ads are annoying; but users will easily overlook the ads if your content stands out. MSFT’s PubCenter Ad Control is a part of the Windows Phone Mango SDK .. adding it to your apps is as easy as dragging a control & registering your app for ad categories. Another great option is AdDuplex – an ad exchange network where you promote other apps & help fellow Windows Phone developers. If you are picky about Ad revenues & low eCPMs, specially in newer Markets, consider using the Windows Phone AdRotator – a single control that fetches Ads from multiple providers for better utilization of your Ad space.
  • Stay Tuned-in: Mad at yourself for missing out on some latest marketing offer or Windows Phone developer sweepstake? This is a very happening ecosystem & it helps being as plugged-in as possible. Can you spare an hour every week? Do yourself a favor & listen to Windows Phone Dev Podcast for all that’s latest & greatest for Windows Phone users/developers.
  • Just Ask: Stuck late into the night with a roadblock while coding your Windows Phone app? If you have exhausted your own resources, simply ask. Chances are someone else also faced the same quirky problem and there is a way around or there is an awesome open source project to help you out. And the Windows Phone developer community is among the very best you shall get .. we help each other out. So, hit up your fellow Windows Phone devs on StackOverflow or Twitter or some other forum. You’ll be surprised by how far collaboration can get us.

So, next time we get mad, let’s take a step back & evaluate our options. The koolaid isn’t all that bad :). Pick up some fancy controls & make your dream app .. and then make some money! Hopefully, you come back tomorrow for the Day #5 article in this series of “7 Deadly Sins for Windows Phone Developers!“.

Adios!