Προς το περιεχόμενο

Αστεία για Προγραμματιστές


ipduh

Προτεινόμενες αναρτήσεις

Από το team chat σήμερα, ήθελα να το μοιραστώ μαζί σας

[17:36:54] René: TML-16212 / ΑSI | "Add placeholder..." check box is always enabled after saving => PASSED
[17:39:07] defacer: LOL
[17:39:17] defacer: in relation to Rene's above comment
[17:39:25] defacer: here's the lyrics I am listening to right now
[17:39:36] defacer: "There's got to be just more to it than this / Or tell me why do we exist"

:D

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

  • Απαντ. 362
  • Δημ.
  • Τελ. απάντηση

Συχνή συμμετοχή στο θέμα

Δημοσ. (επεξεργασμένο)

Περί "Hello World" (ή για να το θεσω πιο σωστα, msg db "Hello World.$")

 

 

 

 

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);
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;
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;
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="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 (το ίδιο με High School/Jr. High)

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

 

 

 

Επεξ/σία από xaerialtwistx
  • Like 8
Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

  • 2 εβδομάδες αργότερα...

Αυτο μας το ειχαν δειξει στη σχολη σε φροντιστηριο C στο πρωτο εξαμηνο και γελαγαμε. Η αληθεια ειναι οτι δε ειχα δει εξηγηση μεχρι σημερα :D

Μελέ;

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

  • 4 εβδομάδες αργότερα...

Περί "Hello World" (ή για να το θεσω πιο σωστα, msg db "Hello World.$")

 

 

 

 

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

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;

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;

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="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 (το ίδιο με High School/Jr. High)

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

 

 

 

 

Να προσθέσω και ένα δικό μου ? :P 

 

 

 

 

Self Tought Programmer

using System;
using System.Windows.Forms;
using System.IO;
using System.Media;

partial class HelloWorld
{
    public static Main()
    {
	HelloWorldLabel.Text = HelloWorld();
    }
    private string HelloWorld()
    {
        string settingsPath = string.Format("{0}{1}",Directory.GetCurrentDirectory(), @"\Data\Settings.txt");
        string userSetting;
	string messageToShow;
        try
        {
            FileStream HWorld = new FileStream(settingsPath,Open);
            StreamReader OpenSettingsFile = new StreamReader(HWorld);
            userSetting = OpenSettingsFile.ReadLine();

            switch (userSetting)
            {
                case "English":
		    messageToShow = "Hello World!";
		    return messageToShow;
		case "Italian":
		    messageToShow = "Ciao Mondo";
                    return messageToShow;
		case "French":
		    messageToShow = "Salute de monde!";
		    return messageToShow;
		case "German":
		    messageToShow = "Hallo Welt!";
		    return messageToShow;
		case "Greek":
		    messageToShow = "Γεια σου Κόσμε!";
		    return messageToShow;
            }
            
        }
	catch (FileNotFoundException ob)
	{
		SystemSounds.Hand.Play();
		MessageBox.Show(ob.Message,"Error");
	}
	catch (IOException ob)
	{
		SystemSounds.Hand.Play();
		MessageBox.Show(ob.Message,"Error");
	}
	catch (Exception ob)
	{
		SystemSounds.Hand.Play();
		MessageBox.Show(ob.Message,"Error");
	}
    }
}

 

 

  • Like 1
Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Όταν βρίσκεις τη λύση σε ένα bug εύκολα και γρήγορα...

 

 

Όταν σου έρχεται ξαφνικά και απ το πουθενά στο μυαλό η λύση σε ένα πρόβλημα που σε κούρασε λίγο, τη γράφεις, τη δοκιμάζεις, και λειτουργεί μια χαρά:

 

Όταν αντιλαμβάνεσαι πως έκανες ένα σημαντικό λάθος στο σχεδιασμό, μήνες αργότερα, ενώ έχεις ήδη φτιάξει πάνω απ' το 50% του project:

 

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

  • 3 εβδομάδες αργότερα...
  • 2 εβδομάδες αργότερα...
Δημοσ. (επεξεργασμένο)

Τι σόι μαγείες είναι αυτές βρε παιδιά ;

Νόμιζα ότι συμβαίνει μόνο σε εμένα, αλλά με ένα googlάρισμα αντιλήφθηκα ότι είναι γνωστό φαινόμενο.

 

cb277b7c480bda37fc2676534eb270269e8f7fa0

 

83b0631f950fab03ac9854f0330baca2.jpg

 

edit: Για την ιστορία, το πρόβλημα λύθηκε αφού έτρεξα την επιλογή 'Repair' στον Installer του VS.

:)

Επεξ/σία από Alithinos
  • Like 2
Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Δημιουργήστε ένα λογαριασμό ή συνδεθείτε για να σχολιάσετε

Πρέπει να είστε μέλος για να αφήσετε σχόλιο

Δημιουργία λογαριασμού

Εγγραφείτε με νέο λογαριασμό στην κοινότητα μας. Είναι πανεύκολο!

Δημιουργία νέου λογαριασμού

Σύνδεση

Έχετε ήδη λογαριασμό; Συνδεθείτε εδώ.

Συνδεθείτε τώρα

  • Δημιουργία νέου...