defacer Δημοσ. 15 Ιουνίου 2016 Δημοσ. 15 Ιουνίου 2016 Από το 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"
Ilias95 Δημοσ. 15 Ιουνίου 2016 Δημοσ. 15 Ιουνίου 2016 Παλιό, αλλά το ξανά πέτυχα τυχαία:https://www.destroyallsoftware.com/talks/wat 4
xaerialtwistx Δημοσ. 20 Ιουνίου 2016 Δημοσ. 20 Ιουνίου 2016 (επεξεργασμένο) Περί "Hello World" (ή για να το θεσω πιο σωστα, msg db "Hello World.$") High School/Jr. High 10 PRINT "HELLO WORLD"20 END First year in College program Hello(input, output)beginwriteln('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.outHello, world. Guru Hacker % catHello, world. New Manager (το ίδιο με High School/Jr. High) 10 PRINT "HELLO WORLD"20 END Middle Manager mail -s "Hello, world." bob@b12Bob, could you please write me a program that prints "Hello, world."?I need it by tomorrow.^D Senior Manager % zmail jimI need a "Hello, world." program by this afternoon. Chief Executive % letterletter: Command not found.% mailTo: ^X ^F ^C% help mailhelp: 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 Επεξ/σία 20 Ιουνίου 2016 από xaerialtwistx 8
patrickdrd Δημοσ. 29 Ιουνίου 2016 Δημοσ. 29 Ιουνίου 2016 http://www.tokoulouri.com/society/bin_of_mayhem/ 2
Dinos_12345 Δημοσ. 2 Ιουλίου 2016 Δημοσ. 2 Ιουλίου 2016 Αυτο μας το ειχαν δειξει στη σχολη σε φροντιστηριο C στο πρωτο εξαμηνο και γελαγαμε. Η αληθεια ειναι οτι δε ειχα δει εξηγηση μεχρι σημερα Μελέ;
Moderators Kercyn Δημοσ. 2 Ιουλίου 2016 Moderators Δημοσ. 2 Ιουλίου 2016 Ε ναι. Είχα πάει στην αρχή σε κάνα δυο φροντιστήρια C αλλά μετά βαριόμουνα
Dinos_12345 Δημοσ. 2 Ιουλίου 2016 Δημοσ. 2 Ιουλίου 2016 Ε ναι. Είχα πάει στην αρχή σε κάνα δυο φροντιστήρια C αλλά μετά βαριόμουνα Χαχαχα! Είναι γαμάτος, αλλά σου καίει τον εγκέφαλο.
stavrosyomafias Δημοσ. 24 Ιουλίου 2016 Δημοσ. 24 Ιουλίου 2016 Καλοκαιρινό και ταιριάζει!Ίσως και να έχει ξανά περάσει από εδώ.. αλλά μου άρεσε. 3
Alithinos Δημοσ. 25 Ιουλίου 2016 Δημοσ. 25 Ιουλίου 2016 Περί "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 Να προσθέσω και ένα δικό μου ? 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"); } } } 1
Alithinos Δημοσ. 25 Ιουλίου 2016 Δημοσ. 25 Ιουλίου 2016 Όταν βρίσκεις τη λύση σε ένα bug εύκολα και γρήγορα... Όταν σου έρχεται ξαφνικά και απ το πουθενά στο μυαλό η λύση σε ένα πρόβλημα που σε κούρασε λίγο, τη γράφεις, τη δοκιμάζεις, και λειτουργεί μια χαρά: Όταν αντιλαμβάνεσαι πως έκανες ένα σημαντικό λάθος στο σχεδιασμό, μήνες αργότερα, ενώ έχεις ήδη φτιάξει πάνω απ' το 50% του project:
Tmark Δημοσ. 2 Αυγούστου 2016 Δημοσ. 2 Αυγούστου 2016 Why Russia still has talented software engineers: 2
stavrosyomafias Δημοσ. 18 Αυγούστου 2016 Δημοσ. 18 Αυγούστου 2016 Δεν ταιριάζει με τον καιρό αλλά τώρα το είδα. 6
Alithinos Δημοσ. 1 Σεπτεμβρίου 2016 Δημοσ. 1 Σεπτεμβρίου 2016 (επεξεργασμένο) Τι σόι μαγείες είναι αυτές βρε παιδιά ; Νόμιζα ότι συμβαίνει μόνο σε εμένα, αλλά με ένα googlάρισμα αντιλήφθηκα ότι είναι γνωστό φαινόμενο. edit: Για την ιστορία, το πρόβλημα λύθηκε αφού έτρεξα την επιλογή 'Repair' στον Installer του VS. Επεξ/σία 2 Σεπτεμβρίου 2016 από Alithinos 2
tr3quart1sta Δημοσ. 7 Σεπτεμβρίου 2016 Δημοσ. 7 Σεπτεμβρίου 2016 The two main stages of programming (you can also swap them) 7
Προτεινόμενες αναρτήσεις
Δημιουργήστε ένα λογαριασμό ή συνδεθείτε για να σχολιάσετε
Πρέπει να είστε μέλος για να αφήσετε σχόλιο
Δημιουργία λογαριασμού
Εγγραφείτε με νέο λογαριασμό στην κοινότητα μας. Είναι πανεύκολο!
Δημιουργία νέου λογαριασμούΣύνδεση
Έχετε ήδη λογαριασμό; Συνδεθείτε εδώ.
Συνδεθείτε τώρα