rofl

http://thedailywtf.com/Articles/The-Super-Hacker.aspx

on man, this ones got me rolling on the floor laughing my butt off – what a great way to make a buck

funny qotd

The average girl would rather have beauty than brains because she
knows that the average man can see much better than he can think.
— Ladies’ Home Journal

At the bottom of my login profile is a `[ -x /usr/games/fortune ] && /usr/games/fortune -aes` line that likes to generate odd messages haha

this is something I would do

This linguistics professor was lecturing the class.
“In English,” he explained, “a double negative forms a positive. In some languages, such as Russian, a double negative is still a negative.”
“However,” the professor continued, “there is no language wherein a double positive can form a negative.”
Immediately, a voice from the back of the room piped up: “Yeah….. right….”

mm, bash.org is making this a laughing day lol

Chuckle of the day, 2009-03-29

Quote #877975:

I got the worst fortune after having a condom break
what “Even the smallest leak can sink a ship”
Damn Asian Cookies

*rolling on the floor laughing my freaking rear-end off*

additionally:

#26985 +(75)- [X]

-= fortezza] if I push my honda over a cliff, how fast will it get to 60mph?
-= x1bncwn] the same speed as the viper
-= x1bncwn] 😛

The others, are at best rated NC-17 or generally offensive in anture, but still funny lol.

My laugh of the day….

Early Unix hackers struggled with this in many ways. In the languages of 1970 function calls were expensive, either because call semantics were complicated (PL/1. Algol) or because the compiler was optimizing for other things like fast inner loops at the expense of call time. Thus, code tended to be written in big lumps. Ken and several of the other early Unix developers knew modularity was a good idea, but they remembered PL/1 and were reluctant to write small functions lest performance go to hell.

Dennis Ritchie encouraged modularity by telling all and sundry that function calls were really, really cheap in C. Everybody started writing small functions and modularizing. Years later we found out that function calls were still expensive on the PDP-11, and VAX code was often spending 50% of its time in the CALLS instruction. Dennis had lied to us! But it was too late; we were all hooked…
— Steve Johnson

Hmm, I’ve always wondered why some really old programms written in C look so odd, as if the person had never heard of a function call (or macro) before. I’ve never been able to figure out if it was because many function calls were more expensive on the hardware back then, because the programmer was used to assembly, or loyality to some “style of the day”.

I guess that clears that up a bit more; if so, thank GOD he lied!