Najnowsze cytaty


#555 Dodano: 25-05-2009 21:19. Głosów: 330
W informatyce są same TLS.
Trzy Literowe Skróty
#546 Dodano: 25-05-2009 18:31. Głosów: 128
/* Standard streams. */
extern struct _IO_FILE *stdin; /* Standard input stream. */
extern struct _IO_FILE *stdout; /* Standard output stream. */
extern struct _IO_FILE *stderr; /* Standard error output stream. */
/* C89/C99 say they're macros. Make them happy. */
#define stdin stdin
#define stdout stdout
#define stderr stderr
#545 Dodano: 25-05-2009 18:17. Głosów: 211
try{
(...)
} catch (Exception ex){
throw ex; //ToDo: handling
}
#538 Dodano: 25-05-2009 19:08. Głosów: 288
//You are not expected to understand this
#537 Dodano: 25-05-2009 19:08. Głosów: 1057
#define TRUE FALSE
//Happy debugging suckers
#536 Dodano: 25-05-2009 19:08. Głosów: 133
Repeat
...
Until (JesusChristsReturn) ' Not sure
#535 Dodano: 25-05-2009 19:07. Głosów: 183
} catch (PartInitException pie) {
// Mmm... pie
#534 Dodano: 25-05-2009 18:56. Głosów: 203
// Any maintenance developer who can't quote entire Monty Python
// movies from memory has no business being a developer.
const string LancelotsFavoriteColor = "$0204FB"
#533 Dodano: 25-05-2009 18:51. Głosów: 64
context 'adding user' do
setup do
(...)
end
should 'add users' do #thank you cpt obvious!
(...)
end
end
#531 Dodano: 25-05-2009 18:49. Głosów: 398
last = first; /* Biblical reference */
#529 Dodano: 25-05-2009 18:48. Głosów: 189
int MyFunction()
{
// There once was a man named Dave
int Result = 0

// Whose code just wouldn't behave
MyObject *Ptr = new MyObject();

// He left to go to a meetin'
Result = Ptr->DoSomething();

// And left his memory a leakin'
return Result;
}
#528 Dodano: 25-05-2009 18:48. Głosów: 779
long long ago; /* in a galaxy far far away */
#527 Dodano: 25-05-2009 18:48. Głosów: 774
// I am not sure if we need this, but too scared to delete.
#526 Dodano: 25-05-2009 18:47. Głosów: 90
/* Halley's comment */
#525 Dodano: 25-05-2009 16:44. Głosów: 168
/**
* Always returns true.
*/
public boolean isAvailable() {
return false;
}