Thread: I'm a pimp

  1. #16
    |<o>| <--cyclopse LouDu's Avatar
    Join Date
    Mar 2003
    Posts
    137
    i would be happy with any laptop as long as a compiler owuld work on it
    Languages <> C++, HTML

    /*The Ledgend of Ludlow Coming to a PC Near
    You intro Cinenmatic Needed email me of
    Reply to one of my threads if you can make
    one, thats decent. */

  2. #17
    I lurk
    Join Date
    Aug 2002
    Posts
    1,361
    Where did you dig that up from?
    I'd LOVE an old laptop to tinker around with. Minix looks like a lovely OS to slap onto a machine like that.

    I suppose I could check the local computer stores and classified ads. How much did it cost you?

  3. #18
    |<o>| <--cyclopse LouDu's Avatar
    Join Date
    Mar 2003
    Posts
    137
    About how much is a crappy laptop? that is jsut enough for me to run a compiler, and code ?
    Languages <> C++, HTML

    /*The Ledgend of Ludlow Coming to a PC Near
    You intro Cinenmatic Needed email me of
    Reply to one of my threads if you can make
    one, thats decent. */

  4. #19
    Registered User Xei's Avatar
    Join Date
    May 2002
    Posts
    719
    In Calgary, Pentium 200Mhz laptops are being sold for $200. Could probably find them for less.

  5. #20
    Back after 2 years Panopticon's Avatar
    Join Date
    Dec 2002
    Posts
    262
    so you finally traded up...
    I AM WINNER!!!1!111oneoneomne

  6. #21
    l'Anziano DavidP's Avatar
    Join Date
    Aug 2001
    Location
    Plano, Texas, United States
    Posts
    2,743
    that laptop cost $10, i got it from a friend. his dad's company was getting rid of its old computers.

    as i said already, i installed Turbo C++ 2.01 on it. well, i did some compile time testing are here the results:

    Basic "Hello, World!" program (with iostream.h and conio.h included):

    Code:
    #include <iostream.h>
    #include <conio.h>
    
    int main (void )
    {
        cout << "Hello, World!";
        getch();
        return 0;
    }
    That exact code took 42 seconds to compile on the computer. Mainly because of all the overhead from the header files.

    I took out conio.h and the getch() function and it reduced to abotu 24 seconds.

    I then created a basic graphics program using BGI...which compiled but had some run-time logical errors made by me because i didnt know what graphics mode to use to properly do graphics on that old thing....that program took about 10-15 seconds to compile, and it consisted of only graphics.h. (a Borland header file).

    Meanwhile, I have done some BASIC programming on it as well, and those compile in a jiffy! (Mainly because QBasic 1.1 is an interpreter, not a compiler).
    My Website

    "Circular logic is good because it is."

  7. #22
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    You should consider yourself lucky. Not many 8086 machines have hard drives. Nor 640k of ram either. You must have gotten one of the later models...

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. I made a times table program, could i have some pointers?
    By Cwarrior in forum C++ Programming
    Replies: 4
    Last Post: 05-02-2003, 01:21 PM
  2. Fourth root program. Help plese?
    By correlcj in forum C Programming
    Replies: 7
    Last Post: 07-12-2002, 09:07 PM