Posts

Showing posts from February, 2005

Some words about me up there... :)

Talha Obaid, a senior and very intelligent person working with bits, bytes and compilers at ATI Source  http://weblogs.com.pk/fahad/archive/2005/02/26/1443.aspx

JAVA goes Open Source................. Finally

Check out http://java.sun.com/j2se/1.5.0/source_license.html

Evolution of a Programmer...

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>   main (argc,argv)   int argc;   char **argv; {   printf ("Hello World!\n");   } Seasoned pro #include <stream.h> const int MAXLEN = 80; class outstring;   class outstring {      private:    int size;      char str[MAXLEN];         public:      outstring() { size=0; }      ~outstring() {size=0;}      void print();      void assign(char *chrs);   };   void outstring::print() {     int i;     for (i=0 ; i< size ; i++)       cout << str[i];     cout << "\n";     }   void outstring::assign(char *chrs) {     int i;     for (i=0; chrs[i] != '\0';i++)        str[i] = chrs[i];     size=