- Thread starter
- #1
Sgt Brutus
Goober
Thinking of learning C++ as a side hobby. Only problem is codecademy doesn't carry it so I'd have to buy some books since I've heard none of the other sites that carry it are any good.
Easy to do, when I first learned FORTRAN there were many versions of it (depending on who made the compiler) though there was a defacto standard, FORTRAN IV. When FORTRAN 77 came out it was the first attempt to make it more structured like ALGOL, but most FORTRAN programmers just wouldn't change. Last FORTRAN I used was FORTRAN 90, which finally had dynamic memory allocation and phased out the EQUIVALENCE statement, though it was still in most compilers at the time.I got lost here...
This was more or less my story as well. I was 12 and was forced to spend my lunches in the computer lab as a punishment so I started tearing into the crude games that were on there. One was a star trek game with quadrants and I remember you had to put in angles to shoot torpedoes at the Klingon ships and whatnot. I started tearing apart those games and playing around with the code to see how it worked.I began teaching myself how to program in Basic when I was 12 years old. I remember making a DOS-based Yahtzee game and Mad Libs and all kinds of silly things. I didn't have any reference books or people to tap for knowledge, just the built-in command help and the powers of desire and experimentation.
I wish I still had those 5.25" floppy disks I saved my work on; it would be amusing to see what my 12-year-old mind concocted.
Because of the limitations of punch cards (and memory) programs back then were short, concise and very well planned out. I think that died out with a lot of the newer languages and expansion of memory resources. The code may have been called "spaghetti code" because of its structure but today I see such poor programing without respect to making the code efficient that it just boggles my mind. Had a professor once who said code should work first, worry about the decorations only after you are sure the code gives the correct results...And while I feel super old going back through memory lane into those early days of my programming, at least I'm not so far back as to be in the punch card era like KS.So I don't feel THAT old anyway.
One of the courses I took in college I learned how to do a lot that exceeded the limitations of the machine. One example would be calculating 2^64 on a 32-bit machine without integer overflow (and remember the limitations of 32 bit arithmetic then). Another was how to swap memory using XOR instead of needing swap space allocation.I too made my own games. Made a game similar to snakes and eventually my own version of frogger. I remember making a game and being pissed off that I ran out of room because 64k was the hard cap for the system I was on. I wrote and rewrote code to try and cram more into that limited space. Was a good exercise in how to condense code at least.
If that was true there wouldn't be so many security issues with today's OSes and applications, some of which I attribute to laziness and a lack of understanding of the limitations of a computer language and the hardware.Programming is programming in my opinion.
If that was true there wouldn't be so many security issues with today's OSes and applications, some of which I attribute to laziness and a lack of understanding of the limitations of a computer language and the hardware.
Can't imagine too many things the average poster around here would be playing with in programming languages that would pose a security risk. Little applets and light duty games can be done on just about any modern language.If that was true there wouldn't be so many security issues with today's OSes and applications, some of which I attribute to laziness and a lack of understanding of the limitations of a computer language and the hardware.
I began teaching myself how to program in Basic when I was 12 years old. I remember making a DOS-based Yahtzee game and Mad Libs and all kinds of silly things. I didn't have any reference books or people to tap for knowledge, just the built-in command help and the powers of desire and experimentation.
I wish I still had those 5.25" floppy disks I saved my work on; it would be amusing to see what my 12-year-old mind concocted.
Thinking of learning C++ as a side hobby. Only problem is codecademy doesn't carry it so I'd have to buy some books since I've heard none of the other sites that carry it are any good.
I was just pointing it depends on the type of programming one is doing. I can't imagine most of the posters here programming the diabetes testing models I did either...a lot of high level math and statistics.Can't imagine too many things the average poster around here would be playing with in programming languages that would pose a security risk. Little applets and light duty games can be done on just about any modern language.