Friday, November 27, 2009

Yet another blog post

Ok, documenting some four letter acronyms that I have been using for some time now.

YALD - Yet another long day

YALN - Yet another long night
Do not get any wrong ideas :). This just refers to another night spent in office while writing/debugging/cursing/etc some code. And of course listening to Pink Flyod at 5 in the morning... I have become comfortably numb...

YAIP - Yet another impromptu presentation
Something funny always happens in a last minute presentation/demo. You find a bug in the code at the last minute which breaks everything (and you need some hacks to get things going), or during the presentation you are staring at a slide (given to you by someone just before the presentation) and trying to make some sense out of it :)

Looks like I have come up with another acronym while writing this - YABP (see the title)

PS: My favorite hack.. so far
for( String name : Names ) {
//hack
if ( name.equals("ABC") ) {
continue;
}
// do something meaningful now :)
.
.
.
.
}

No comments:

Post a Comment