Wednesday, June 8, 2011

Is the Dream of Courier about to be fulfilled?

A couple weeks ago, a new project appeared on Kickstarter that got a bit of attention. Kickstarter is a site that allows anyone to fund projects that they like in hopes that the project will become a reality. In many cases, those who donate to a project will receive things in return, such as a copy of the application (if its software).

This project, which is named Taposé, provides a few interesting videos on the planned design of the application. Watching these videos is a bit of deja vu, with a journal like application on half of the screen and various other applications in the other side. In fact, the title of the project says it all: Bringing the Courier to the iPad.

Despite the fact that the Microsoft announced the Courier's demise over a year ago, the device's possibility always stuck with me. And obviously, I was not the only one taken in by the device's promise. The Kickstarter project had a goal of $10,000, but surpassed it with $26,561.

My initial reaction to this was obvious excitement, with a bit of scorn, since I'd rather not pony up the money for an iPad. I'm no fan of Apple products (I don't own a single one), but if the only way to get Courier like functionality is to buy an iPad, well, I might have to give in to the dark side.

(Its funny. Back in the mid 90's, when my parents bought a Pentium 1 PC with Windows 95, my 5th grade teacher claimed I was going to the dark side (he was a big Mac guy). But I stand by my statement. Apple seems as dark today as Microsoft did back then. Oh the irony of Apple's '1984' commercial when viewed today).

But, given the amount of money the Tapose team raised, they areconsidering a Droid application. Being a happy Droid phone owner, a Droid tablet is one device I can see myself owning without switching allegiances. I hope these guys the best of luck. Perhaps there will be a Droid tablet on store shelves in a few months promising Courier like functionality right out of the box.

Monday, June 6, 2011

Samsung Intercept

I'm notoriously frugal, which is why when I read from Robert Cringely's prediction of the demise of Feature phones, I thought he was overly optimistic. When someone disdains monthly cell phone plans, what other options are there for a cell phone but a feature phone?

Well, it turns out, there are a few options out there. In fall of last year, Virgin Mobile started offering the Samsung Intercept, a phone with Android 2.1. The initial price was steep ($250!), but it was a fully loaded smart phone, on a pre-paid plan! Of course, if you wanted data, you're better off with a monthly plan, but these plans are ridiculously priced. For $25 a month, one can get unlimited data, texting, and 300 minutes.

It all sounds good on paper, especially if you were to compare phone and data plans with other carriers. The reduced monthly price (at expense for higher hardware costs) pays for itself in about a year.

Needless to say, I eventually bought the phone (on sale after Christmas for $180) and have been using it for 5 months. I honestly can say I don't know how I operated without this device. Prior to this, I had a cheap phone for calls, an MP3 player to listen to music at work, an old Pocket PC for reading and writing, a Tom Tom GPS in the car for directions. This device has replaced them all and then some.

I use the sliding Qwerty keyboard all the time to write notes, search the web, or even write blog posts. The on screen keyboard is a little cramped, but is handy with the auto-sense.

I have better success with navigation on the phone vs. Tom Tom. This is largely because the GPS device's maps are a few years out of date and map updates cost so much, I might as well buy a new device.

I have a lot more storage on the phone as compared to my MP3 player, so I can keep a much larger music collection on hand. And if I get bored of that, there's always YouTube and Pandora.

With Amazon's Kindle application, reading is much easier on my phone compared to my old Pocket PC. I've finished a few books on the device, plus read hundreds of articles using the InstaFetch application that synchronizes with my InstaPaper account.

Finally, I've taken many more pictures with the phone's camera thanks to it always being in my pocket. Uploading to Facebook can be a bit difficult (as it doesn't always recognize orientation), but I've installed the application PicSay to handle this when the native application fails.

All told, I'm still loving my Droid phone. It was upgraded to Droid 2.2 about a month ago. The only downside here is that during the upgrade, the note application, which I had saved a dozen notes in, was removed and I lost all of the notes. This warning was clearly stated, but unfortunately, I did not heed the warning.

Friday, June 3, 2011

.NET Decompile Tools

For many needing a tool to decompile a .NET assembly, the tool of choice has been Red Gate's Reflector. This tool is one of the fastest tools out there and the decompiled code it displays is often somewhat intelligible (of course, THAT depends on the underlying quality of the code). But, recent changes to the licensing of Reflector have left many .NET developers scrambling for their wallets or for an alternative. Here's a few alternatives to .NET Reflector.


JetBrains DotPeek


This is my favorite replacement for .NET Reflector. It feels a little slower than Reflector, but the code it decompiles is very readable. Each variable that the decompiler has to name, it attempts to find a somewhat sensible name.


This tool will decompile the AssemblyInfo.cs as well, so any assembly properties will be available.


DotPeek requires .NET 4.0 but does not require registration.



Telerik JustDecompile


JustDecompile is comparable to DotPeek in many ways, but in the early build I tried, it did not decompile the AssemblyInfo.cs. While the variable names were also reasonably named, since it can't decompile the AssemblyInfo.cs file, JustDecompile is an incomplete replacement for Reflector.


JustDecompile does require free registration.


Conclusion


There are still other tools to decompile .NET code, but Reflector, DotPeek, and JustDecompile are all powerful tools that are supported by major vendors in the .NET ecosystem. As such, they bring a lot of clout to these solutions and have the support team in place to maintain such a tool. At the end of the day, JustDecompile lacks the ability to decompile the AssemblyInfo.cs. If this is important to you as it is to me, you will want to look at DotPeek instead.