Funny comments in the code
Locked
General Discussion
-
maybe this is a bit old, but it gives me a laugh every time: http://stackoverflow.com/questions/184618/
-
looooool
Nice one ^_^
-
I happened to stumble on some funny code excerpts:
CREATE PROCEDURE [sp_getNothing] AS select '' as Nothing END
public class Destruction { public static void delete(Object object){ object = null; } }
-
btw, i’ve now recalled this weird structure i made for my client dll:```
#define DO_NOTHING __asm { nop }
#define CATCH(where, act)
catch(const wchar_t* wszWhat) {HandleException((where), wszWhat); act;}
catch(…) {HandleException((where), NULL); act;}// other file:
try { // ... } CATCH(L"ReceiveChat", DO_NOTHING)
-
/// <summary>/// This returns true if this control is supposed to be doing anything /// at all for this request. Richard thought it was a good idea to load /// the entire website during every request and have things turn themselves /// off. He also thought bandanas and aviator sunglasses were "fuckin' /// gnarly, dude." ///</summary>