Posts Tagged ‘eye candy’

“Luckiest guys ever!”

2009/02/05/1145

This is just a sequence of jaw-dropping events; eye candy for the masses, to serve as a chaser for the brutal economic news this morning.

Don’t worry – no one dies in this video. In fact, that’s what’s so remarkable; these people have defied death.

RTFA: http://www.youtube.com/watch?v=w7YLViAZ5w0

Indent style – Wikipedia, the free encyclopedia

2007/09/14/1035

RTFA: http://en.wikipedia.org/wiki/Indent_style#K.26R_st…

The Allman style is common, and is named after Eric Allman. It puts the brace associated with a control statement on the next line, indented to the same level as the control statement. Statements within the braces are indented to the next level.

while (x == y)
{
something();
somethingelse();
}
finalthing();

This style is similar to the standard indentation used by the Pascal programming language and Transact-SQL, where the braces are equivalent to the “begin” and “end” keywords.

Meh – not to get overzealous about the topic, but I think this is the easiest to read and write.