12/13/2009

Community Builder Password Verification

If you have used the community builder, try checking their password verification. The info message tells us that passwords should not contain spaces but it only trims the spaces preceding and ending your input.

e.g.
_ _ _ password _ _ _ will be trimmed to password
_ _ _ pass_word _ _ _ will be accepted and be trimmed to pass_word

The password field accepts spaces after all.

10/04/2009

Google App Engine and Grails 1.2-M2

When I was trying to create my first Google Wave robot using Grails, I noticed that Grails 1.2-M2 is not compatible with the Google App Engine. Reverting to Grails 1.1.1 made the example in http://www.grails.org/plugin/app-engine work.

Note: In the site, appcfg.sh's permissions must be changed to be able to use $APPENGINE_HOME/bin/appcfg.sh update ./target/war

9/06/2009

Customizing Grails/Groovy Drop-Down List

Grails is a powerful framework based on Groovy. Since most of the basic CRUD operations are done by Grails, we sometimes want to edit some of the fields generated in the GSP specially if it is a drop-down list.

There are two ways to edit the drop-down list:
1. By overriding the toString function of the domain
class Student {
String firstName
String lastName

String toString(){
StringBuilder sb = new StringBuilder()
sb.append(firstName)
sb.append(" ")
sb.append(lastName)
return sb.toString()
}
}
Without touching the GSPs, the drop-down list will show the first names and last names of the students and not the default package.domain : id (e.g. Student : 1)

2. By setting the attribute optionValue in g:select tag
optionValue="firstName"
will show only the first names of the students. If you want to show the first names and last names, you may opt to use
optionValue="${{it.firstName + ' ' + it.lastName}}"
Note that character/s can be inserted for each iteration inside single quotes.

8/30/2009

Dishwashing Soap/Liquid Commercials

Bakit ang mga plato sa commercial/advertisement ng mga sabong panghugas ng pinggan ay punung-puno ng grasa, sebo, at kung anu-ano pa? Ganoon na ba kadungis kumain hanggang gilid at likuran ng plato ay inabot ng pagkain?

8/29/2009

Sun Cellular Refund

I was a Sun Cellular postpaid subscriber for 4 years and last January 23, 2009, I terminated my subscription. The representative told me that the refund process will only take 2-3 months. After constant follow-ups, I still haven’t got my refund and it’s the end of August already!
Good luck to me and the future ex-Sun subscribers!
Sun Cellular sucks.

--

10/28/2009 Update
I finally got my Sun Cellular refund after 9 months! The check is dated July but was ready for pickup just last week.