MENU:

Marok.org > Cumpa > Archivio | Blog | Chi siamo | Disegni | Foto | Perle | Storie | Voci

LOADING...
Sei in: Marok.org > Cumpa > Blog > #0156


-----Messaggio originale-----
Da: Marok
A: Handicap@wc.net
Data: venerdì 16 maggio 2003 17.24
Oggetto: UltraNerd



Ma ciao!
Pensavate che vi lasciassi senza cazzate per il weekend? Lungi da me! ;)
Ecco la recensione di CORDIALMENTE PIOMBINO, di due lunedì fa...
www.marok.org/Elio/Storie/cord03.htm

...le foto dell'altro ieri a Coyote...
www.marok.org/Elio/Foto/03coyote/

...un mp3 di un simpatico complessino dedicato - pensate un po'? - allo SPAM...
www.marok.org/Elio/Dalvivo/

...e qualcosa di assolutamente, integralmente e antipheegamente NERD! :D


***


L'EVOLUZIONE DI UN PROGRAMMATORE:

SCUOLA ELEMENTARE/MEDIA:
10 PRINT "HELLO WORLD"
20 END


LICEO:
program Hello(input, output)
begin
writeln('Hello World')
end


PRIMO ANNO DI UNIVERSITÀ:
(define hello (print (cons 'Hello (list 'World))))

ULTIMO ANNO DI UNIVERSITÀ:
#include
void main(void)
{
char *message[] = {"Hello ", "World"};
int i;
for(i = 0; i < 2; ++i)
printf("%s", message[i]);
printf("\n");
}


SPECIALIZZAZIONE:
#include
#include
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);
}


SISTEMISTA:
#include
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);
}


APPRENDISTA 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;


HACKER ESPERTO:
#include
#define S "Hello, World\n"
main(){exit(printf(S) == strlen(S) ? 0 : 1);}


HACKER CON LE PALLE:
% cc -o a.out ~/src/misc/hw/hw.c
% a.out


HACKER GURU:
% cat
Hello, world.
^D


CAPO:
10 PRINT "HELLO WORLD"
20 END


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


CAPO DEL CAPO DEL CAPO:
% zmail jim
I need a "Hello, world." program by this afternoon.


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


---------

Tnx to Zia Chee!

Ed ora... idee per le prossime serate di cazzeggio:

Stasera (venerdì 16), FOLK IMPLOSION
Lunedì 19/5, LALLI
Mercoledì 21/5, ACOUSTIC FESTIVAL

...tutto all'Hiroshima di Torino.

In alternativa... occhio all'allegato!
È tratto da un'idea di Sergio Messina - www.radiogladio.it
(see also: www.radiogladio.it/testi/buddhastick.html)

MaRoK
www.marok.org


Immagini allegate:




Opzioni




Per commentare, usate pure il Buko!
(indicando a quale pagina fate riferimento)