Tippon, the best tip calculator ever, is now updated to version 1.2.
Along with minor visual enhancements, it is also available in simplified Chinese, traditional Chinese and español.
Tippon, the best tip calculator ever, is now updated to version 1.2.
Along with minor visual enhancements, it is also available in simplified Chinese, traditional Chinese and español.
I’ve recently had attended a workshop for Windows phone 7 development. It got me started pretty quickly on WP7 development, and I’ve quickly published my first app Tippon, a tip calculator that can take a picture of the bill and keep track of your dining experiences.Afterwards, I reflected on my development experience vs my app development in Android. In a word, developing for Windows phone 7 have been a pleasure.
Visual studio Express + Expression Blend is an awesome combination of tools. My biggest weakest when it comes to application design have always been visual elements, but I was surprised at how effortless it was to create a great looking app on Expression Blend.
Comparing the development experience with Android, Eclipse is quite disappointing. A lot of designs are done manually, and the emulator is unbearably slow. I truly hope Eclipse can soon catch up to the developing experience provided by the Microsoft platform.
Got a little performance issue, fired up the profiler and tracked 75% of CPU cycle on this block of code.
public int indexOf(ReportColumn col, UseType use) { ReportColumn copyColumn = col.copy(); copyColumn.setUse(use); return columnList.indexOf(copyColumn); }
The majority of the hold up is in the copy() function which produce a deep clone of the ReportColumn object via reflection. Not only is this very slow, but it also increase the memory needed because of the deep clone process.
My immediate reaction was to use remember the “use” value of the column, make a change to the col object, find the index and change it back. But then I started to worry about the original intent of the function, since I didn’t write it, I just assume whom ever did write it this way must use deep cloning for a reason. Maybe they expect col object to be read by another thread while the search is happening. Hence I just abandoned plan A.
Plan B involved proxying, and went a bit like this.
public int slowIndexOf(ReportColumn col, final UseType use) { ProxyFactory pf = new ProxyFactory(); pf.setTarget(col); pf.addAdvice(new MethodInterceptor() { @Override public Object invoke(MethodInvocation mi) throws Throwable { if (mi.getMethod().getName().startsWith("getUse")) { return use; } else { return mi.proceed(); } } }); ReportColumn copyColumn = (ReportColumn) pf.getProxy(); return columnList.indexOf(copyColumn); }
By using the spring’s inbuilt proxying libraries, I constructed a method interceptor to intercept call to getUse and replace the value with the use we want to search for.
However, as the name indicates, it was very slow, slower than I thought it would be, in fact pf.getProxy() was 4 times slower than the deep clone method.
Back to the drawing board, I ended up tracing the code to see if I can find any potential code that might be reading the col object while it is been used, hoping that I can try a locking to prevent that from happening. As it turns out, there is no concurrent access. So I ended up with this.
public int indexOf(ReportColumn col, final UseType use) { UseType oldUse = col.getUse(); col.setUse(use); int index = columnList.indexOf(col); col.setUse(oldUse); return index; }
Lesson here, first instinct/simplest solution is often the best, also question your initial assumptions.
I feel like I’m someone important, I feel like I’ve finally made it big.
Shortly after the release of my awesome tip calculator Tippon. I’ve did a bing search 1 week later to see if tippon search word can link me to the app download page.
Although it did find my app download in the search results returned. It also found tippon.com. Curiosity compelled me to click to have a look.
Someone cyber-squatted the domain! They want $5700 to sell it. I know I should probably feel a bit angry about this, or at least a bit foolish for not securing it sooner. But all I feel is flattered, somebody actually noticed my app, and think that it could potentially make enough money to justify the $5700 buy back!