PC HUMOR 1.2

Jelentkezz be a hozzászóláshoz.

[HUN]FaTaL
#34

http://goo.gl/gd6Zi5

GregSB
#33

Jim Morrison
#32
Nagyon jóóóók :D +fav

ASUS B550-PLUS, AMD 5600X, 32 GB DDR4, EVGA RTX 3070, SM-OB1, HD 600 + Asus Xonar DX, TonePort UX1 + Alesis Elevate 5, Novation Circuit \o/

szjuca
#31

GregSB
#30

pyrohun
#29
asdASDASDASD:S::ASDAS: sírok :))

LayerSlider, WeatherSlider, wpStickies - our famous plugins are available at CodeCanyon! More info @ http://kreaturamedia.com

tnm
#28
lol, upgrading to xp. és egybõl gyorsabb lesz.

meg a végén a send error report to Microsoft.

+fav topik

#27
http://www.youtube.com/watch/v/uLbJ8YPHwXM&feature=related

http://gaborszantai.co.uk/

[HUN]FaTaL
#26
<#banplz>

http://goo.gl/gd6Zi5

#25

http://gaborszantai.co.uk/

#24

http://gaborszantai.co.uk/

#23

http://gaborszantai.co.uk/

#22
Mac-hez repulokabel van<#eljen>

http://gaborszantai.co.uk/

#21
<fav>

REPS0L
#20
:DDDDDDDDDDDDD

i5-2500K; GTX560Ti; 8GB DDR3 http://bofox.hu

BB7
#19
Hoppá! Kis Vindóz visszaütés? XD
csgery
#18
jooooootpoik, /+fav<#eljen><#smile>
BB7
#17
BB7
#16
<#banplz><#hehe>

+fav
N o N a m e
#15
kocka topik :D

<+fav>
#14

http://gaborszantai.co.uk/

#13

http://gaborszantai.co.uk/

#12

http://gaborszantai.co.uk/

#11

http://gaborszantai.co.uk/

#10
Az elsõ címhez nem ezt a videót akartam, de nem baj ez is vicces. <#vigyor3>
#9
Örök klasszikusok:

Lefagy a gép
http://www.youtube.com/v/ZbdU9DH9gz8&hl=en&fs=1

Win 95
http://www.youtube.com/v/muZUZwXVi1s&hl=en&fs=1
[HUN]FaTaL
#8
:DDDDDDDD

http://goo.gl/gd6Zi5

#7
REPS0L
#6

i5-2500K; GTX560Ti; 8GB DDR3 http://bofox.hu

REPS0L
#5
fav :DDDDD

i5-2500K; GTX560Ti; 8GB DDR3 http://bofox.hu

#4
jóak :D





#3

<#idiota>
RAZOR27
#2
"/* Ki mint vet, úgy arat */
set_quality( Aratas, get_quality(Vetes) );"

Ez tetszik <#nevetes1> +fav :)

\"If you want to go fast, go alone. If you want to go far, go together.\"

#1
Szerintem ez megérdemel egy külön topic-ot.
Kezdjük is:

Közmondások programnyelven

/* Addig jar a korsó a kútra... */
while( state(Korso) != _BROKEN ) go( Korso, &Kut);
--------------------------------------------------------------------------------
/* Ki mint vet, úgy arat */
set_quality( Aratas, get_quality(Vetes) );
--------------------------------------------------------------------------------
/* Ajandék lónak... */
if( origin(Horse) == _SOUVENIR ) Allow_Look_At.Teeth=0;
--------------------------------------------------------------------------------
/* Soha ne a falu legszebb lányát vedd feleségül! */
if( bride_ID == most_beautiful( GetAllGirls(_THIS_VILLAGE))) exit(-1);
--------------------------------------------------------------------------------
{Ki korán kel, aranyat lel}
If TimeToInt(Wakeup.Time)<TimeToInt(StrToTime("06:00:00")) then
AddToList(UserLoggedIn.FoundItems,Gold);
--------------------------------------------------------------------------------
{Nezd meg az anyjat, vedd el a lanyat}
Function May_I_Marry_Her(Girl: TGirl):boolean;
begin
With Girl.Mother do
May_I_Marry_Her:=((Body.Qality="attractive") and
(face.Quality="beautiful"));
end;
--------------------------------------------------------------------------------
{Aki máasnak vermet ás az a sírásó}
type
TEmployed=class(THuman)
Job : String<30>;
procedure OnGraveDigging( Sender: Tobject);
private
{ Private declarations }
public
{ Public declarations }
end;
Procedure TEmployed.OnGraveDigging( Sender: Tobject);
begin
Sender.Job:="GraveDigger";
end;
--------------------------------------------------------------------------------
{Egyszer volt Budán kutyavásár}
Const
Num_Of_Dog_Buying_In_Buda=1;
--------------------------------------------------------------------------------
/* Sok lúd disznót gyöz */
uses animals;
var lud, diszno: Tanimal;
Procedure Attack(A, B: Tanimal; NumA, NumB: Word);
begin
If NumA*A.Strength>NumB*B.Strength then write(A.Caption)
else if NumA*A.Strength<NumB*B.Strength then write(B.Caption)
else write('Nobody');
writeln(' Won');
end;
begin
Lud.Caption:='Lúd';
Lud.Strength:=10;
Diszno.Caption:='Disznó';
Diszno.Strength:=540;
Attack(Lud, Diszno, 1, 1 );
Attack(Lud, Diszno, 20, 1 );
Attack(Lud, Doszno, 60, 1 );
end.
F9 (Run)
Result:
Disznó Won.
Disznó Won.
Lúd Won.