Categories
Uncategorized

Mobile Developer News Roundup: The Horror of Mobile Web Development, Consuming Azure Mobile Services from iOS, and Windows 8 / Windows Phone 8 Events Later This Month

Throne of JS Presentation – “Mobile Webdev: The Horror”

Throne of JS was a conference on JavaScript and JavaScript frameworks put together by Toronto-based development shop Unspace, the instigators behind the renowned RubyFringe and FutureRuby conferences. The organizers brought together some of the bright minds behind a number of JavaScript frameworks and tools, including Nick Small and Harry Brundage of Shopify (who were there to talk about Batman.js) and Adobe’s John Bender, who works full-time on jQuery Mobile.

InfoQ were at Throne of JS and captured John’s presentation, Mobile Webdev: The Horror, in which he talks about some of the difficulties that you’ll encounter when building web-based apps for mobile devices. Whether you’re a web developer who’s starting to build apps for mobile devices or one who’s been at it for years, you’ll find it a useful and entertaining overview of the current mobile landscape.

Links

Consuming Azure Mobile Services from iOS

MS can produce some pretty interesting tech,
but wow, do they also produce some really butt-ugly diagrams.

If you’re thinking about using Microsoft’s Azure cloud system as the back end for your iOS app, you’ll want to check out this five-part article series.

Links

Windows 8 / Windows Phone 8 Events Later This Month

This is the month that Microsoft unleashes their new, unified-look operating systems!

On Thursday, October 25th, they will hold a launch event for Windows 8, starting with a Surface launch at midnight, followed by a daytime event from 10 a.m. to 3:00 p.m.. There’s still no word on how much Surface tablets will cost — these are the ARM-based Windows RT ones; the Intel based Surface Pros come out in 2013 — nor has anyone had a chance to review them, but they’re expect to retail somewhere in the $300 to $800 range. I suppose we’ll find out in a few weeks!

On the following Monday, October 29th, they’ll hold a launch event for Windows Phone 8, the mobile OS so secret that even developers had to partake in a lottery to get their hands on the SDK and sign an NDA if they won. As with Windows 8, we’ll finally see what Microsoft have been keeping under wraps all this time.

Links

Categories
Uncategorized

Hi-Call’s Bluetooth Glove Lets You Make and Take Calls Using the “Call Me” Hand Gesture

You probably recognize this as the gesture, which pantomimes speaking on a old phone handset, as the symbol for “call me”:

The Hi-Call Bluetooth glove handset now lets you use that same gesture to make a call:

With a speaker in the thumb, a microphone in the pinkie finger and Bluetooth components and indicators near the wrist, the Hi-Call glove lets you make and take calls using the well-known hand gesture. It’ll be good for a laugh when you demonstrate it in front of friends, and strangers watching you use the glove from a distance will think you’re one of those crazy people who talk to themselves (although Bluetooth earpieces have had the same effect for years).

Here’s Engadget’s video, where they give the Hi-Call glove a try:

The Hi-Call should be available later this month for about $70. That’s a bit steep for something that has some joke value but that I probably wouldn’t use normally; if it were priced somewhere closer to the Moshi Moshi Retro Handset, I’d consider it as a joke gift for officemates.

This article also appears in The Adventures of Accordion Guy in the 21st Century.

Categories
Uncategorized

A Step Forward (or: Objective-C Doesn’t Need Forward Declarations Anymore)

The Old Way: Forward Declarations

The Commodore 64 is from about the same era as Objective-C. The 64 hit the market in 1982; Objective-C (and C++ as well) first appeared in 1983.

Older languages like C (and recently, Objective-C), won’t just let you call a function or method whose definition is later on in the same file. Consider these two C functions, which appear in my Inpulse Magic 8-Ball tutorial:

void set_time_mode()
{
    start_timer(TIME_UPDATE_INTERVAL_LENGTH_MS,
                &update_time_display);
}

void update_time_display()
{
    pulse_blank_canvas();
    pulse_get_time_date(&current_time);
    printf("The time is\n%d:%0.2d:%0.2d\n", 
           current_time.tm_hour,
           current_time.tm_min,
           current_time.tm_sec);
    set_time_mode();
}

The function set_time_mode refers to update_time_display, whose definition comes after set_time_mode‘s. As far as the C compiler is concered, set_time_mode doesn’t exist yet, and it will refuse to compile, giving you an error message that looks something like this:

src/pulse_app.c: In function ‘set_time_mode’:
src/pulse_app.c:76: error: ‘update_time_display’ undeclared (first use in this function)
src/pulse_app.c:76: error: (Each undeclared identifier is reported only once
src/pulse_app.c:76: error: for each function it appears in.)

You can’t simply switch the order of the two functions since update_time_display also calls set_time_mode.

Forward declarations solve this problem. By including the signature for update_time_display before the definition of set_time_mode, we give the compiler enough information so that it knows what to do with update_time_display when it’s compiling set_time_mode:

void update_time_display();

void set_time_mode()
{
    start_timer(TIME_UPDATE_INTERVAL_LENGTH_MS,
                &update_time_display);
}

void update_time_display()
{
    pulse_blank_canvas();
    pulse_get_time_date(&current_time);
    printf("The time is\n%d:%0.2d:%0.2d\n", 
           current_time.tm_hour,
           current_time.tm_min,
           current_time.tm_sec);
    set_time_mode();
}

The code above compiles.

The New Way: No Forward Declarations

Newer languages like Python and Ruby don’t need forward declarations. You can have a method refer to another method that appears later in the file in Python:

# A quick and dirty example in Python

def first_method():
  # second_method appears later in this module
  second_method("Hello there")

def second_method(statement):
  print statement

first_method()

And here’s the Ruby equivalent:

# A quick and dirty example in Ruby

def first_method
  # second_method appears later in this module
  second_method "Hello there"
end

def second_method(statement)
  puts statement
end

first_method

Objective-C joins the club in Xcode 4.3 and later (as of this writing, the current version of Xcode is 4.5); you no longer need to make forward declarations. The compiler will “look ahead” if the function or method it’s compiling makes calls to functions or methods that appear later on in the file.

This means that the following code compiles in Xcode (at least in Objective-C):

void set_time_mode()
{
    start_timer(TIME_UPDATE_INTERVAL_LENGTH_MS,
                &update_time_display);
}

void update_time_display()
{
    pulse_blank_canvas();
    pulse_get_time_date(&current_time);
    printf("The time is\n%d:%0.2d:%0.2d\n", 
           current_time.tm_hour,
           current_time.tm_min,
           current_time.tm_sec);
    set_time_mode();
}
Categories
Uncategorized

Mobile Developer News Roundup: Windows Phone Edition

Windows Phone Could Take RIM’s 3rd Place Spot in Europe Soon (says one analyst), 2nd Place in the World by the End of 2015 (says Gartner)

The exact figures vary from analyst to analyst, but there’s a general consensus that Android and iOS are the number one and two mobile operating systems, leaving about 10% to 20% for whoever wants to take the sad-yet-coveted distant third place. Fighting over these table scraps are both RIM and Microsoft, two giants who once defined what a “business phone” was and who are now trying to reassure everyone that their upcoming operating systems are the future and not “too little, too late”.

A recent CNET article cites a study by Kantar Worldpanel, who study consumer behaviour, suggests that Windows Phone could win that battle and take the third-place position in Europe from RIM. Kantar’s study says cheap, low-end Windows Phone devices like the Nokia 610, which run Windows Phone 7, but can’t be upgraded to Windows Phone 8, will drive WP adoption.

Kantar aren’t the only people who think this way; Gartner concurs. In fact, they don’t just think that Windows Phone will capture third place; they’ve predicted that it will make it to second place by the end of 2015 — 6% of the market share by the end of 2011, 11% by the end of 2012, and 20% by the end of 2015:

This TechCrunch article says that Gartner’s prediction is based on the same assumption as Kantar’s: that Nokia will carry Windows Phone to the number two position by focusing on the more price-sensitive portion of the market (primarily people in emerging “Second World” economies buying their first smartphones) and selling low-end Windows Phones much cheaper than Androids or iPhones. The article also states that these phones would extend the life of Windows Phone 7 and eventually run version 7.8, which is essentially Windows 7 enhanced with some features to make it more like Windows Phone 8.

Links

The Windows Phone 8 Mystery

"I Want to Believe" poster from "The X-Files", with the flying saucer replaced by a giant Windows Phone

As of this writing, if you were to head to the Windows Phone Dev Center’s page for getting their SDK, you’d be able to get your hands on…the Windows Phone 7.1 SDK and the 7.1.1 update. The Windows Phone 8 SDK is available, but only if you apply and are accepted into their closed-door preview program. It appears that if you’re accepted into this program, you’ll be sworn to secrecy about what’s in the SDK until it’s officially released.

Microsoft’s Todd Brix explained why they were doing this:

I know that many of you want to know why we simply don’t publically release the full SDK now. The reason is that not all Windows Phone 8 features have been announced and our SDK includes comprehensive emulators that allow developers to test apps against a wide range of Windows Phone features. We recognize that this is a different approach to delivering tools than we’ve taken in the past. Our goal is to generate as much Windows Phone 8 excitement as possible to attract new customers when phones go on sale. This is one of many steps we’re taking to help give you what you (and we) want most.

To me, this seems like another episode of Microsoft’s George Costanza-style decision-making, and if you look at the comments made in response, you’ll see that I’m not the only one who’s thinking this. As a former Microsoft Developer Evangelist and Windows Phone Champ, I got developer love and attention for the platform by getting phones and tools into as many developers’ hands as I could, as early as possible. I think my approach worked better than the approached used by some higher-ups, which was to pay mobile development shops to create shovelware. I thought it was a bad idea, as did former Windows Phone Champ program guy Charlie Kindel, but a number of Constanza-esque managers forged ahead, because they were incentivized to do the quick-and-easy thing — make their scoreboards green — not to grow the platform, which takes more time and effort.

This secrecy forces Windows Phone developers, who are already dealing with plenty of uncertainty, to deal with even more. I can’t imagine that there are many who are very happy with having to make best guesses about how to prepare for Windows Phone 8.

The Verge’s Tom Warren suggests that there may be some goodies still in the Windows 8 SDK, and that by keeping mum about it, they’ll be able to pull a Steve Job-style “Oh, and one more thing…” rabbit out of their hat. I have my doubts as to how earth-shaking these secret goodies, if they even exist, could be, but ever since the iPod, every time Microsoft tries to ape Apple’s style, it ends up looking rather sad.

Links

Is Microsoft Making Its Own Phone?

The new Surface — the tablet, not the big-ass table — was a necessary act of “tough love”. Microsoft had to take the reins and make their own tablet as a way of saying to all the OEMs “Okay you idiots, we’ll show you how it’s done”.

Windows Phone was a different story. In the beginning, all the Windows Phone hardware vendors — Samsung, LG, HTC and so on — were in a position where they could hedge their bets; they all made Android phones. The partnership with Nokia gave Microsoft a hardware partner who was, to use an expression often used within Microsoft’s walls, “all in”: someone who truly had an incentive to make the best Windows Phones possible. Nokia held up their end of the bargain, producing the nicest Windows Phones I’ve ever laid hands on, and the latest version has the best camera of the current crop of smartphones. They were supposed to be the gold standard for Windows Phones, the ones from which other vendors were supposed to take their cues.

The problem with the Microsoft/Nokia partnership is that it’s an unequal one: Nokia needs Microsoft to stay afloat, which Microsoft just needs someone to be the flagship Windows Phone vendor. It looks as though HTC is the “Plan B” partner, judging by all the love, attention and co-promotion that Microsoft gave them during the recent launch of their upcoming Windows Phones. These phones even incorporate “Windows Phone” into the model names — something that even BFF Nokia didn’t do. You’d think that HTC was the preferred partner! As you might expect, the folks at Nokia are miffed.

Now it looks as if Microsoft has a “Plan C”, in which they make their own phone. Dan Rubio at WPCentral cites a reliable source who says that it’s already in testing. “When compared to current WP8 hardware,” he writes, “it’s something unique.” Another tech blog, BGR, has an apparently different source who also says that Microsoft is working on their own phone, giving the rumours a little more credence.

My Recommendation to Mobile Developers

Remember the funeral the Windows Phone team had for the other platforms after WP7 went “release to master”? I was a Windows Phone Champ back in early September 2010 when the funeral took place. All I could do was slap my forehead and say “Thanks, guys. That’ll really help.” Two years later, Windows mobile OSs account for under 4% of the market.

Looking at the current Windows Phone situation and speaking as someone whose rent cheques depend on building mobile apps for the enterprise, my recommendation is that unless you’ve got some kind of sweetheart deal for a customer who loves the platform and is willing to pay you to build apps for it, don’t write Windows Phone apps to make money.

If you look at it from a strictly technological point of view, Windows Phone is pretty nice. Nokia and HTC’s latest hardware is pretty nice. They’ve got nice, clean, unique UI. C# is a great programming language, you’ve got the Silverlight framework for informational app and XNA for game apps, and Visual Studio in many respects is a far nicer IDE than the ones you use for Android or Apple’s Xcode. Based on my experiences, I think that Windows Phone is the easiest platform to build apps for.

If you look at it from the “Will it pay the bills?” angle, the story isn’t as good. If the analyst’s wacky predictions that Windows Phone will surpass iOS ever do come true, it means that most of its users will be a stingy, price-sensitive market. Microsoft have chosen to leave most of the Windows Phone developers (who’ve had to put up with a lot of frustration) in the dark. On the hardware side, they’re frantically bouncing between preferred vendors and possibly making their own phones, throwing random spaghetti against the wall in the hopes that something — anything — sticks. Finally, there just aren’t enough Windows Phone users. The stats says so, as does my own experience: in my travels to conferences and events across North America over the past year and a half — enough to have earned me Star Alliance Gold status — the non-Microsofties/non-Windows developers who I’ve met who are also Windows Phone owners could fit into a cab…and still leave room for the cabbie.

You should treat the Windows Phone platform as if it were one of those Russian car crash videos made with a dashboard camera: be glad it’s not you, sit back and watch from a safe distance, cringe at the right moments, and hope for the best.

Links

Categories
Uncategorized

Rapper Appearance Goes Terribly Wrong at Microsoft Store; Highlights Their “George Costanza Problem” [Updated]

See the update at the end of the article.

Microsoft has a George Constanza Problem. In the 1990s TV series Seinfeld, the perennial loser came upon his biggest winning streak in life happened when he decided to do the exact opposite of what his instincts told him to do. They should’ve not had Machine Gun Kelly (a.k.a. “MGK”) perform at the Atlanta Microsoft Store, as the video below shows:

I’ve seen musicians perform at Microsoft stores before, but which decision maker thought that a performance by MGK would end well? They could’ve Binged the search term “Machine Gun Kelly lyrics” and easily discovered the lyrics to his single, Hold On:

I don’t gang bang, hoe, I just gang bang these hoes
And I keep like eight jays rolled, then I face them after my shows
And I got your main thing bro, on my dangalang when she swinging like an urangutan
But you don’t really want a part of me, ‘cause everyone of my boys bang around.
Cocaine, cocaine, my skin white like cocaine, marked up like them ol’ trains
And I keep it hood, but this low mayne
Propane, propane, spark that shit like propane, I’m on east side of my domain
But ya’ll kick more shit than Liu Kang.

(I’ve gotta give MGK some props for referencing Mortal Kombat.)

According to The Verge, MGK hopped on the display tables, kicked off some signs and a few laptops and was hauled away with the assistance of police.

This is a bad judgement call on a level you normally don’t see outside of characters from the Grand Theft Auto videogames. To use Microsoft parlance, “someone’s gonna get PIPped.”

Update

Buzzfeed, who also covered this story, got an email from Microsoft which had this statement:

On Sept. 28, The Source held a private event at the Microsoft Lenox Square Store. We offer our stores as a venue for the community to use, and this event was not sponsored by Microsoft.

While the artist’s behavior was appropriate for a concert, some of it was not appropriate in a store environment. Please contact The Source for further information on the event itself.

That makes more sense. Had I been the store manager, I’d have put away most of the laptops on display.

Categories
Uncategorized

How New Yorkers with iOS 6’s Maps See the World

You’ve probably seen this classic map showing a New Yorker’s view of the world:

Here’s how a New Yorker running iOS 6’s Maps app sees the world, courtesy of MAD:

Click to see the original.

This article also appears in The Adventures of Accordion Guy in the 21st Century.

Categories
Uncategorized

Lenovo’s Looking for the World’s Oldest Working ThinkPad

The ThinkPad laptop — originally made by IBM, now made by Lenovo — made its debut 20 years ago. Industrial designer Richard Sapper (the guy behind the Tizio lamp, Lamy ballpoint pen and a lot of Alessi kitchenware) contributed to its initial design, taking his inspiration from traditional black lacquered bento boxes. When it came out, it stood apart from other laptops, in both looks, functionality and toughness. According to Wikipedia, the ThinkPad has been used in space and is the only laptop certified for use on the International Space Station.

Oddly enough, of all the laptops I’ve had, I’ve never had a ThinkPad. I came pretty close: in the spring of 2011, when I was still a Developer Evangelist at Microsoft, I got one assigned to me as part of my gear (I used to joke that my job meant that I had “one laptop for every limb”). The laptop arrived for me — three days before I left the company. I never even got to unbox it; the photo above shows how close as I got to the machine.

The ThinkPad 700 – the first ThinkPad, released in 1992.

Lenovo have put out a call on the internet — they’re looking for world’s oldest working ThinkPad. Have you got an old one that still boots up or may even be performing yeoman service in some corner of your office? Post a story and picture on Google+ with the hashtag #ThinkPad before Friday!