Go Back  PPRuNe Forums > Misc. Forums > Computer/Internet Issues & Troubleshooting
Reload this Page >

Just some computer-related fun for boring times...

Wikiposts
Search

Notices
Computer/Internet Issues & Troubleshooting Anyone with questions about the terribly complex world of computers or the internet should try here. NOT FOR REPORTING ISSUES WITH PPRuNe FORUMS! Please use the subforum "PPRuNe Problems or Queries."

Just some computer-related fun for boring times...

Thread Tools
 
Search this Thread
 
Old 10th April 2002 | 14:58
  #1 (permalink)  
Thread Starter
 
Joined: Oct 1998
Posts: 468
Likes: 0
From: UK
Talking Just some computer-related fun for boring times...

some time has passed by that we have seen some jokes here, guess we should have now some more again....

very appropriate Internet Explorer error message

watch out....more to come
FL310 is offline  
Old 10th April 2002 | 19:23
  #2 (permalink)  
Thread Starter
 
Joined: Oct 1998
Posts: 468
Likes: 0
From: UK
guess you like this one than as well...
FL310 is offline  
Old 10th April 2002 | 23:42
  #3 (permalink)  
Thread Starter
 
Joined: Oct 1998
Posts: 468
Likes: 0
From: UK
and something for the coding guys...

How to identify the status of an IT-pro

highschool level

10 PRINT "HELLO WORLD"
20 END

first year university

program Hello(input, output)
begin
writeln(’Hello World’)
end.

second year university

argv IS $1
LOC #100
Main LDOU $255,argv,0
TRAP 0,Fputs,StdOut
GETA $255,String
TRAP 0,Fputs,StdOut
TRAP 0,Halt,0
String BYTE " world",#a,0

holding freshly printed diploma in hands

(define hello
(print
(cons ’Hello (list ’World))))

just started first job

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

Teamleader with Microsoft Windows NG department

#include <iostream.h>
#include <string.h>
class string
{
private:
int size;
char *ptr;
public:
string() : size(0), ptr(new char(’’)) {}
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 &stringerator=(const char *chrs)
{
if (this != &chrs)
{
10
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);
}

new member of the hacking society

#!/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);
}

experienced hacker

#include <stdio.h>
#define S "Hello, Worldn"
main(){exit(printf(S) == strlen(S) ? 0 : 1);}

supervisor at hacking group

% cc -o a.out ˜/src/misc/hw/hw.c
% a.out

Bill Gates first program

% cat
Hello, world.
ˆD
FL310 is offline  

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Contact Us - Archive - Advertising - Cookie Policy - Privacy Statement - Terms of Service

Copyright © 2026 MH Sub I, LLC dba Internet Brands. All rights reserved. Use of this site indicates your consent to the Terms of Use.