Wicket Web Beans 1.1 Released

After an overly long delay, Wicket Web Beans 1.1 has been released. I really appreciate Daniel Toffeti’s contributions. Also thanks to Cemal at (http://jWeekend.com) for pushing us to get this release out. jWeekend is gracious hosting the live samples for us (see below). Looking forward, Daniel is going to start on the Wicket 1.4 migration. And, maybe someday, I’ll get back to WWB 2.0. The code for it is on the 2. [Read More]

AlphaMixr Reviewed - Demo Downloads Hit 10,000

AlphaMixr, my game for Google Android (T-Mobile G1, et. al.), was reviewed the other day and got 4 out of 5 “droids.” You can read the review at Android Tapp. You can also read AlphaMixr user reviews on Cyrket (an online Android Market browser). In other news, AlphaMixr Demo hit the 10,000 download mark today at Android Market. I think this will pick up even more as additional Android-based devices are released globally this year. [Read More]

AlphaMixr for T-Mobile G1/Android Released

Google released paid apps today on the Android Market today (2/20/09) and so my game, AlphaMixr (now Syrious Scramble®) was released into the wild. AlphaMixr is a scrambled word game in the spirit of Text Twist and Jumble. It adds another dimension of Global High Scores so you can compete with other players around the world. You can read a glowing review from a friend of mine who’s been a beta tester at This and That Visit SyriousGames. [Read More]

Fun With Generics

I was trying to declare a array variable this morning:

Map<String, String>[] mapArray = new Map<String, String>[2];

However, the compiler reports an error with the above statement: “Cannot create a generic array of Map<String,String>”. I had to replace the statement with:

@SuppressWarnings("unchecked") ... Map<String, String>[] mapArray = (Map<String, String>[]) new Map[2];

!?! If one of the goals of generics was to eliminate casts, it certainly failed here.

Bad Smells

We were working on some refactored code today that wasn’t refactored properly. The tests had been changed to make the refactored code pass. My colleague said that I should write-up my “profound” comment on the situation:

If you’re performing a refactoring and you find yourself changing asserts in existing unit tests, something should smell bad. You’ve probably done something more than refactor the code.

T-Mobile G1/Google Android

I got a G1 on Wednesday and I’m liking it. I’ve had an iPod Touch for over a year now and I’ve liked that, except for the keyboard. The introduction of Apple’s App Store and the revocation of apps from it concerns me. On the G1, I definitely like the keyboard and its ability to switch seamlessly between Wi-Fi, T-Mobile Hotspots (included with the data plan), 3G, and Edge. It’s also a 4-mode phone which means you can take it pretty much anywhere in the world. [Read More]

Ubiquitous Ubiquity

If you haven’t got it yet, go get the Ubiquity plugin for Firefox. This is one of the coolest things I’ve seen in a long time. I think applications should have this kind of feature. Instead of navigating menus, etc. have a shortcut that takes you where you want to go or helps you do a task.

Wicket Web Beans 2.0 Features

One of the ideas I have for WWB 2.0 is to allow Apache JXPath expressions for instead of straight bean properties. Also, you’ll be able to specify the same kind of expressions for parameter values. This makes all parameter values dynamic - unlike most of the parameters in WWB 1.x. JXPath functions can be implemented in Java. This would allow for a great deal of flexibility. For example, this would let you call a function for a parameter’s value and have some complex logic behind it. [Read More]

I Will Make You Rich, Allow You to Travel the World, and You Don't Have to Do Anything!

A colleague recommended The 4 Hour Work Week by Timothy Ferriss the other day. I bit and bought the book to read on vacation. I got a little more than half way through the book when I had to take Tim’s advice and stop wasting time reading it. I’ll start by being objective. Tim makes a bunch of claims that cannot be backed up. How do we know he makes $40K-$80K a month with BrainQuicken? [Read More]

Starting Work on WWB 2.0

I’ve got some new ideas and directions for Wicket Web Beans, so I’m starting work on 2.0. I hope to incorporate some of the previous requests and comments in an elegant and cohesive manner. WWB 2.0 work will proceed under branch wwb-2.0. I made a snapshot of the unreleased WWB 1.1 work in SVN under branches/wwb-1.1 prior to the 2.0 branch. WWB 1.1 work will continue on the trunk. Databinder has been updated to 1. [Read More]