Najmniej popularne cytaty
#1831 Dodano: 12-08-2009 12:57. Głosów: 179
<Grzegorz> Zdecydujmy się w końcu na coś i zróbmy na odwrót bo i tak się zmieni.
#3905 Dodano: 22-09-2010 12:22. Głosów: 179
// Naturally, IE does not act like a real browser...
#193 Dodano: 19-05-2009 20:32. Głosów: 179
<Nightwalker> ciekawe ile mi zajmie skompilowanie 1200MB spakowanych zrodel...
<dENO> Nightwalker, widze, ze zima i trzeba zaczac ogrzewac dom? :P
Cytat z http://bash.org.pl/315578/
<dENO> Nightwalker, widze, ze zima i trzeba zaczac ogrzewac dom? :P
Cytat z http://bash.org.pl/315578/
#6673 Dodano: 20-02-2013 23:31. Głosów: 180
In D&D, mindless undead are capable of following simple tasks such as "Attack anyone who enters this room." or "Stay here until this alarm sounds, then attack the nearest village.".
Most of the commands they're capable of can be broken down into simple logical statements like 'If X, then Y.', such as the attacking one being "If something enters this room, attack them.".
Do you think that with enough undead, with the right commands, you could effectively create a computer?
// http://suptg.thisisnotatrueending.com/archive/12936417/
Most of the commands they're capable of can be broken down into simple logical statements like 'If X, then Y.', such as the attacking one being "If something enters this room, attack them.".
Do you think that with enough undead, with the right commands, you could effectively create a computer?
// http://suptg.thisisnotatrueending.com/archive/12936417/
#2349 Dodano: 02-11-2009 21:10. Głosów: 180
Rozmowa programistów:
- Macie jakieś testy wydajnościowe?
- Bieg na 50km.
- Macie jakieś testy wydajnościowe?
- Bieg na 50km.
#2642 Dodano: 16-12-2009 21:44. Głosów: 180
Autentyk - na kursie przygotowawczym na studia prowadzący tłumaczy:"w żadnym przypadku nie skracamy ułamków w ten sposób sin x/x daje goły sin". Na pierwszym roku dziewczyna skróciła następująco taki ułamek: sin x/cos x - skróciła x oraz s - otrzymała in/co"
#88 Dodano: 08-05-2009 06:34. Głosów: 180
Szef wzywa informatyka i daje mu zadanie:
- W bagażniku mojego samochodu jest siedem paczek zawieź mi je do domu.
Informatyk bez namysłu wykonał polecenie i pojechał do domu szefa, zaczyna wyciągać paczki z bagażnika i liczyć na głos:
- 0,1,2,3,4,5,6, o cholera, zgubiłem jedną.
- W bagażniku mojego samochodu jest siedem paczek zawieź mi je do domu.
Informatyk bez namysłu wykonał polecenie i pojechał do domu szefa, zaczyna wyciągać paczki z bagażnika i liczyć na głos:
- 0,1,2,3,4,5,6, o cholera, zgubiłem jedną.
#5735 Dodano: 18-01-2012 16:24. Głosów: 180
<Tomek> jak on wbije to dajemy na głośnik
<Tomek> cat /dev/urandom > /dev/dsp
<Tomek> i powiemy, że słuchamy dubstepu
<Tomek> cat /dev/urandom > /dev/dsp
<Tomek> i powiemy, że słuchamy dubstepu
#2784 Dodano: 08-01-2010 01:14. Głosów: 180
Pewien farmer miał problem ze swoimi kurami. Wszystkie po kolei nagle stawały się bardzo chore i zupełnie nie wiedział jak temu zaradzić. Gdy wszystkie konwencjonalne środki nie dały żadnych rezultatów zaprosił do siebie na farmę biologa, chemika i fizyka by może oni zmierzyli się z tą tajemniczą chorobą. Biolog jako pierwszy przeprowadził dokładną obserwację. Pobrał wiele próbek, zbadał je dokładnie, ale nie znalazł żadnego rozwiązania. Wtedy chemik wziął się do pracy. Wykonał przeróżne pomiary i kilka testów w laboratorium, ale również nie miał pojęcia co może dolegać tym kurom. Przyszła kolej na fizyka. Ten stanął w pewnej odległości od kurnika i patrzył na ptaki przez długi czas, nie próbując nawet ich dotknąć ani zbadać. Nagle farmer - który był już mocno podłamany i zrezygnowany - zauważył że naukowiec zaczął coś pisać w swoim notatniku. Po kilkunastu minutach wielkiego skupienia widocznego na jego twarzy i bardzo skrzętnych obliczeniach wykrzykął: "MAM! Niestety działa to jedynie dla kur w kształcie sfery poruszających się w próżni."
#577 Dodano: 26-05-2009 09:35. Głosów: 181
//Abandon all hope yea who enter beyond this point
#4465 Dodano: 20-01-2011 16:11. Głosów: 181
<michalbe> Jak to się nazywa jak programistka C wpadnie do króliczej nory?
<owca> ??
<michalbe> "Alicja w krainie char'ów".
<owca> ??
<michalbe> "Alicja w krainie char'ów".
#3230 Dodano: 23-03-2010 20:52. Głosów: 182
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
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
(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.
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
#5043 Dodano: 19-06-2011 14:24. Głosów: 182
'(...)W tym miejscu zastosujemy dowód teologiczny - przyjmiemy na wiarę że to prawda.'
#437 Dodano: 22-05-2009 20:11. Głosów: 182
- Stary, ale laske widzialem wczoraj!
- Zrobiles screena?
- Zrobiles screena?
#6122 Dodano: 29-06-2012 12:52. Głosów: 182
<hdx> Hipster developers don't finish their projects, they're more cool unreleased