Rails 2.1
Posted by David on July 05, 2008 at 11:55 PM
About Rails 2.1 I can only say that it is still the same, but much better. You can realize it reading the free book that Carlos Brando has published, which resumes al the changes made to this version.
Ruby vulnerabilities
Posted by David on June 23, 2008 at 06:22 AM
I was going to write about Rails 2.1 but that must wait. It seems that some Ruby VM vulnerabilities have arisen and that's bigger news. Ruby team say that we must upgrade... in the near future. Looks like it is better to wait for a DoS attack rather than updating due to the development team haste: some people complained about odd behaviours (and segmentation faults). Let's see how long do they take to publish a new patch that do not kill our Rails applications. I wonder if the enterprise version already patched?
Avoiding problems with Firebug: debug and M.I.A. console
Posted by David on May 17, 2008 at 12:01 PM
Missing in action (M.I.A) is a status assigned to a member of the armed services who is reported missing following combat and may be injured, captured, or dead.
Yes my friends: missing in action. That could happen to the useful console object from the Firebug tool (which the vast majortiy of javascript "hackers" around the world use or know).
If you are using it, as we do, do not forget to use this snippet before your javascript code. You will avoid the exceptions that forgotten and innocent console.debug lines will cause.
if (!window.console) { var console = { debug : function(value) { }}}
By the way, lately the Firebug tends to knock out my Firefox... or is it the Firefox the one being sluggish lately... I'm clueless...