Sunday, December 13, 2009
Wednesday, October 21, 2009
Jeff Dean's slides about Google infrastructre
Saturday, June 27, 2009
Aquarium
Thursday, April 16, 2009
Zebra Paint 1.2
Facts: in 38 days Zebra Paint had 38k downloads and 47% still have it installed. It has a 4-star rating (out of 5). It is currently the 6th most popular application in the Games/Casual category. And even more, it is a featured app on the market!
There are some requests for adding new features, but there will be no update in the foreseeable future.
Wednesday, April 15, 2009
Thursday, April 2, 2009
Google discloses server hardware details
Thursday, March 19, 2009
Zebra Paint update
Some facts first. As of today, 10 and a half days after putting it onto the market, I had 15300 downloads and people still have it installed 10600 (69%). I got 263 reviews and 11 emails, most of them positive (and some of them very negative). Overall, it looks good, the app has a 4+ star rating and it is currently #7 in the Games/Casual category in the market. Better than what I was hoping for.
From the reactions it was pretty clear what to do to improve it. The most demanded features:
- Save (send, set as wallpaper) the image - this is here with v1.1
- More templates - I will add more eventually, but no promises here
- Paint with black - v1.1 has dark gray now (no black because that would easily make it unusable)
- More colors - I am not going to add more because it would be more complicated for small kids and lead to other usability problems
- Starts with a random template now
- Minor stability fixes, e.g. it does not reload when opening/closing the lid
What I learned:
#1: it always takes more than the estimate.
#2: saving images in Symbian (S60) is much simpler, it magically just works.
#3: the Market is a great way to distribute applications. I would not have get so many downloads any other way.
Wednesday, March 11, 2009
Life of an Android app
The start was easy - even though I have never used Eclipse before, the instructions for setting up the emulator and the environment were crystal clear. Doing Hello was also a piece of cake, less than 30 minutes. Choosing a new Android project adds everything needed and the logic is about 2 lines of Java code. Even better, it keeps everything up to date during development, e.g. when one adds new resources, the pointers from the code are automatically updates. XML files containing resources are also checked on the fly. When a line is changed I can see immediately if it works or I have made a mistake. That adds a quite rapid feel for development.
Not everything is easy, though. Understanding the fundamental concepts like resources and activities needed some time. Probably the worst thing is that while there is Javadoc for everything, the documentation describing resources lacks details and examples in many places. For example there are "drawables" that can be used to paint just like anything, there is no reference docs, no tutorials. The examples cover some simple cases but I have the feeling that drawables are capable of much more than what's documented. For instance, layers and combining objects.
The other surprising thing was that the Dalvik VM is actually slow and nowhere near the speed that I predicted based on that the CPU is more than 2x faster than my Symbian E61. For a simple algorithm like flood fill a lot of int array magic and ugly design was necessary because the VM could not get through it.
Overall, doing it was faster than on Symbian, but there is room for improvement. Hope you enjoy Zebra Paint!