To the 3D graphics guys on these forums...

All of you who said that programming languages in-themselves aren't that hard, are absolutely right. For me, the syntax and other language related stuff came very easily, and I am absolutely loving it. A lot of the problems I run into in coding isn't really due to me not understanding what C++ stuff to do, but rather, "What do I need to accomplish this task?"
Yup, by far the most time-consuming task in programming.

Some great references to the basic C/C++ libraries:
www.cppreference.com
www.cplusplus.com

Glad things are working out well!
 
Thanks Chalnoth!

The only problem I have with programming is that I'm addicted to it! I spend more time in C++ books and in an IDE than I do anywhere else nowadays! :D
 
My tiny 2 cents...

When doing some sort of coding exercise / project, you constantly bump into things that are new and you have not done before. Usually you have a choice of either really looking into the matter and spending a few moments wrapping your head around it, or just quickly trying, compiling, looking at the results and repeating until you get the wanted results. Let's say you need to read / write a file and you haven't done it before. Now, usually you might be exited about getting that neat gfx displayed on screen as fast as possible, not really care much about the process of reading / wrinting files, and be tempted just to "hack it away", quickly glance at some API and just try it with some guesstimated parameters until it works. My advice is not to do that, but take a moment to study the API documentation / whatever, and get the big picture of the concept - what is the idea about this method and this class etc. It will take you 0,5h - 1h longer until you see your nice gfx, but you have actually learned something useful in the process, and you don't need to look up that info ever again. Repeat for couple of hours per day times a couple of years and you start to be a pretty knowledgeable person....
 
Intel17 said:
Thanks Chalnoth!

The only problem I have with programming is that I'm addicted to it! I spend more time in C++ books and in an IDE than I do anywhere else nowadays! :D

It never stops, well except for the forums lol!
 
Back
Top