One thing that he mentions that I think is a good point is that not every GUI app needs to be a big ugly project and sometimes you just want to bang something out. For my money, though, anything in the mainstream of Android or iOS loses out on that axis to Tcl/Tk, where the "Hello, world" app complete with button callback (i.e. not the usual cop-out of using an alert dialog) is:
Code:
#!/usr/bin/env wish
button .hello -text "Hello" -command {puts "Hello, world"}
pack .hello
Granted, Tcl is not the best language for business logic, but it's great for bits of of GUI glue.