PDA

Tam Sürümünü Görmek İçin : Bazı hata mesajlari :)


RaiST
12/01/2003, 21:17
Havalar soğuk forumda boş. Biraz içimiz ısınsız :D


A file that big?
It might be very useful.
But now it is gone.
- - - - - - - - - - -


Yesterday it worked
Today it is not working
Windows is like that
- - - - - - - - - - -

Three things are certain:
Death, taxes, and lost data.
Guess which has occurred

Having been erased,
The document you're seeking
Must now be retyped.


- - - - - - - - - - - -
Rather than a beep
Or a rude error message,
These words: "File not found."
- - - - - - - - - - - -
Serious error.
All shortcuts have disappeared.
Screen. Mind. Both are blank.
- - - - - - - - - - - -
The Web site you seek
cannot be located but
endless others exist
- - - - - - - - - - - -
Chaos reigns within.
Reflect, repent, and reboot.
Order shall return.
- - - - - - - - - - - -
ABORTED effort:
Close all that you have.
You ask way too much.
- - - - - - - - - -

First snow, then silence.
This thousand dollar screen dies
so beautifully.
- - - - - - - - - - - -
With searching comes loss
and the presence of absence:
"My Novel" not found.
- - - - - - - - - - - -
The Tao that is seen
Is not the true Tao, until
You bring fresh toner.
- - - - - - - - - -

Windows NT crashed.
I am the Blue Screen of Death.
No one hears your screams.
- - - - - - - - - - - -
A crash reduces
your expensive computer
to a simple stone.
- - - - - - - - - - - -
Error messages
cannot completely convey.
We now know shared loss.


RaiST
12/01/2003, 21:21
The code was willing,
It considered your request,
But the chips were weak.


-- Barry L. Brumitt

- - - - - - - - - - - -

Printer not ready.
Could be a fatal error.
Have a pen handy?


Server's poor response
Not quick enough for browser.
Timed out, plum blossom



User Friendly: Supplied with a full color manual.

Very User Friendly: Supplied with a disk and audiotape so the user need
not bother with the full color manual.

Version 1.0: Buggier than Maine in June; eats data.

Version 1.1: Eats data only occasionally; upgrade is free, to avoid litigation
by disgruntled users of Version 1.0.

Version 2.0: The version originally planned as the first release, except for
a couple of data-eating bugs that just won't seem to go away;
no free upgrades or the company would go bankrupt.

Version 3.0: The revision in the works when the company goes bankrupt.

RaiST
12/01/2003, 21:24
Hello World !
How the way people code "Hello World" varies depending on their age and job:
High School/Jr.High
10 PRINT "HELLO WORLD"
20 END


First year in College
program Hello(input, output)
begin
writeln('Hello World')
end.


Senior year in College
(defun hello
(print
(cons 'Hello (list 'World))))


New professional
#include <stdio.h>

void main(void)
{
char *message[] = {"Hello ", "World"};
int i;
for(i = 0; i < 2; ++i)
printf("%s", message[i]);
printf("\n");
}


Seasoned professional
#include <iostream.h>
#include <string.h>
class string
{
private:
int size;
char *ptr;
public:
string() : size(0), ptr(new char('\0')) {}
string(const string &s) : size(s.size)
{
ptr = new char[size + 1];
strcpy(ptr, s.ptr);
}
~string()
{
delete [] ptr;
}
friend ostream &operator <<(ostream &, const string &);
string &operator=(const char *);
};

ostream &operator<<(ostream &stream, const string &s)
{
return(stream << s.ptr);
}
string &string::operator=(const char *chrs)
{
if (this != &chrs)
{
delete [] ptr;
size = strlen(chrs);
ptr = new char[size + 1];
strcpy(ptr, chrs);
}
return(*this);
}
int main()
{
string str;
str = "Hello World";
cout << str << endl;
return(0);
}


System Administrator
#include <stdio.h>
#include <stdlib.h>
main()
{
char *tmp;
int i=0;
/* on y va bourin */
tmp=(char *)malloc(1024*sizeof(char));
while (tmp[i]="Hello Wolrd"[i++]);
/* Ooopps y'a une infusion ! */
i=(int)tmp[8];
tmp[8]=tmp[9];
tmp[9]=(char)i;
printf("%s\n",tmp);
}

Apprentice Hacker
#!/usr/local/bin/perl
$msg="Hello, world.\n";
if ($#ARGV >= 0) {
while(defined($arg=shift(@ARGV))) {
$outfilename = $arg;
open(FILE, ">" . $outfilename) || die "Can't write $arg: $!\n";
print (FILE $msg);
close(FILE) || die "Can't close $arg: $!\n";
}
} else {
print ($msg);
}
1;

Experienced Hacker
#include <stdio.h>
#include <string.h>
#define S "Hello, World\n"
main(){exit(printf(S) == strlen(S) ? 0 : 1);}


Seasoned Hacker
% cc -o a.out ~/src/misc/hw/hw.c
% a.out
Hello, world.


Guru Hacker
% cat
Hello, world.

New Manager (do you remember?)
10 PRINT "HELLO WORLD"
20 END


Middle Manager
mail -s "Hello, world." bob@b12
Bob, could you please write me a program that prints "Hello, world."?
I need it by tomorrow.
^D


Senior Manager
% zmail jim
I need a "Hello, world." program by this afternoon.

Chief Executive
% letter
letter: Command not found.
% mail
To: ^X ^F ^C
% help mail
help: Command not found.
% damn!
!: Event unrecognized
% logout

Research Scientist
PROGRAM HELLO
PRINT *, 'Hello World'
END

Older research Scientist
WRITE (6, 100)
100 FORMAT (1H ,11HHELLO WORLD)
CALL EXIT
END

RaiST
12/01/2003, 21:25
Let's look at a typical novice's session with the mighty ed:

golem$ ed

?
help
?
?
?
quit
?
exit
?
bye
?
hello?
?
eat flaming death
?
^C
?
^C
?
^D
?

Rapsodi
13/01/2003, 10:05
sondan bir onceki:super: