Showing posts with label gmail. Show all posts
Showing posts with label gmail. Show all posts

Monday, May 10, 2010

Alax/Javascript bugs are everywhere

Recently, I am working with teams doing tons of "usability" focused coding, which requires massive use of Javascript and Ajax. Besides the security problems, which are enormous (see this tutorial from Google about it: http://jarlsberg.appspot.com/), you have to deal with the unpredictable common-sense of the end-user, which is IMO, never as easy as it could be.

So, whenever I think about the bugs and problems we face all day because of it, I look back to giants and see that, even with all the power in their hands, still simple problems such as below keep showing up...

 
My gmail (yes, Gmail) account displaying zero messages (I just deleted the spam) but with some calculation errors (probably just a variable that was not updated in time)... But this bug caused my click to the "Older >" to get interestingly going forward on zero messages...

"To err is human, to forgive divine." -- Alexander Pope

Tuesday, March 2, 2010

Video Screen Capture

Today, while reporting a simple (but still stupid) bug in Gmail here, I had to create a video to reproduce the error as I experience in my machine, so I took a look at the screen capture applications available for linux.

Among the options, although command-line based, RecordMyDesktop was the one I used. To have it with a proper GUI would help, but you can manage to do whatever you need just by reading the help available.

recordmydesktop --no-sound -y 75 -width 800 -height 600

Note: I added some extra options (didn't want to capture the entire desktop).

ffmpeg -i out.ogv out.flv

And you may see the result in Youtube here:
http://www.youtube.com/watch?v=QBBwEaA-MJ0

Nice and easy!