Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Jul 8th, 2005, 12:55 AM   #1
Josef_Stalin
Programmer
 
Join Date: Apr 2005
Posts: 77
Rep Power: 4 Josef_Stalin is on a distinguished road
The next level

I pretty much understand c++ and the standard library. I somewhat understand the winapi. I think I'm ready to go to the next level. The question is what do I look to learn now. I hear that there are things that you must learn to be an effective programmer which are not covered in the standard library (high-level graphics). What would be the next logical step from here?

Thank you.
Josef_Stalin is offline   Reply With Quote
Old Jul 8th, 2005, 5:59 AM   #2
nnxion
Programming Guru
 
nnxion's Avatar
 
Join Date: Jun 2005
Location: elemental plane
Posts: 1,429
Rep Power: 5 nnxion is on a distinguished road
It's pretty much up to you, you can go do directx, opengl, go write code for *nix, graphic applications in *nix for the X11 window system and you can do kernel level programming, edit your *nix kernel or write a completely new OS.
__________________
"Employ your time in improving yourself by other men's writings, so that you shall gain easily what others have labored hard for."
-- Socrates
nnxion is offline   Reply With Quote
Old Jul 8th, 2005, 7:18 AM   #3
Cerulean
Professional Programmer
 
Cerulean's Avatar
 
Join Date: Apr 2005
Location: London, England
Posts: 459
Rep Power: 4 Cerulean is on a distinguished road
Quote:
edit your *nix kernel or write a completely new OS.
Whoa there, hold your horses . I severely doubt either of those, as they require high degrees of proficiency in communicating with hardware and the like... and the Linux kernel is written in C, so your C++ skills will of little use when you see a billion const char*'s.

But yeh, i'd say the next logical step is what you're interested in. Network programming, maybe? GUI programming and writing software for desktop users? Game programming? Multimedia stuff? Or a combination of all those (like myself)? Find something you're interested in, and give it a go. Have fun ;-)
Cerulean is offline   Reply With Quote
Old Jul 8th, 2005, 9:21 AM   #4
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,472
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
Application development! Optimization of algorithms, starting a reusable code base, playing around with graphics libraries, etc.
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote
Old Jul 8th, 2005, 10:35 AM   #5
nnxion
Programming Guru
 
nnxion's Avatar
 
Join Date: Jun 2005
Location: elemental plane
Posts: 1,429
Rep Power: 5 nnxion is on a distinguished road
Come on, const *char exist in C++ also, you can edit part of the *nix kernel you don't have to change it all.
__________________
"Employ your time in improving yourself by other men's writings, so that you shall gain easily what others have labored hard for."
-- Socrates
nnxion is offline   Reply With Quote
Old Jul 8th, 2005, 12:48 PM   #6
BlazingWolf
Hobbyist Programmer
 
Join Date: Sep 2004
Posts: 207
Rep Power: 5 BlazingWolf is on a distinguished road
This is the time to do whatever intrests you.

It's all fun(Hopefully anyway) from here on out.
__________________
_______________________________
BlazingWolf
BlazingWolf is offline   Reply With Quote
Old Jul 8th, 2005, 10:17 PM   #7
Josef_Stalin
Programmer
 
Join Date: Apr 2005
Posts: 77
Rep Power: 4 Josef_Stalin is on a distinguished road
Thanks for the suggestions. I think I have an idea what to do and that is to work on application devlopement and code organization and then I'll look work with graphics and sounds. Then I'll look at some other languages, and maybe hardware-based programming. Guess I'll be busy again. The quest to be a good programmer never ends.
Josef_Stalin is offline   Reply With Quote
Old Jul 8th, 2005, 10:55 PM   #8
clearbit
Newbie
 
clearbit's Avatar
 
Join Date: Jun 2005
Location: far..far..away
Posts: 25
Rep Power: 0 clearbit is on a distinguished road
Quote:
Originally Posted by Cerulean
Whoa there, hold your horses . I severely doubt either of those, as they require high degrees of proficiency in communicating with hardware and the like... and the Linux kernel is written in C, so your C++ skills will of little use when you see a billion const char*'s.

But yeh, i'd say the next logical step is what you're interested in. Network programming, maybe? GUI programming and writing software for desktop users? Game programming? Multimedia stuff? Or a combination of all those (like myself)? Find something you're interested in, and give it a go. Have fun ;-)
Unix is almost entirely written in C, but all things written in C can be converted to C++, or atleast thats what they claim, right?
clearbit is offline   Reply With Quote
Old Jul 15th, 2005, 7:07 PM   #9
Shapeless
Programmer
 
Shapeless's Avatar
 
Join Date: Jul 2005
Location: germany/hamburg
Posts: 32
Rep Power: 0 Shapeless is on a distinguished road
Send a message via ICQ to Shapeless Send a message via MSN to Shapeless
Quote:
Originally Posted by nnxion
Come on, const *char exist in C++ also, you can edit part of the *nix kernel you don't have to change it all.
thats right but the same syntax isnt everything u have to look for,...
it is one thing to edit a part but its another one to rewrite it in another language even if the one is compatible to the other ,since programming and design depends on coding paradigms ... and Object-Oriented Programming isnt the best solution for kernel coding i think. And without a doubt it aint the same as in a functional or imperative or logic programming language.

Quote:
Originally Posted by josef_stalin
I pretty much understand c++ and the standard library
hmm thats a good thing indeed, but programming in c++ is much more than using the stl. One , i think very important "toolkit" are theboost libraries..
if u can handle them.. u can write xml/html ( or anything else) parsers or something like that. boost::spirit contains so many posibilities...
if you are well in handling the interessting parts of boost how about metaprogramming ( have a look at Andrei Alexandrescu's "Modern c++-Design") btw have u read scott meyers "effective c++" and "more effective c++" ?? all this things are important or will make u a better designing coder...
and if this all is behind ya, or you are not interested at all, than try something else like gui ( i prefer wxWidgets myself)

so far ...
__________________
of all the things he has lost, i think he misses his mind the most

typedef typename pizza_t<oven_policy<225,12.5>,ingredient_policy<salami,mushroom,cheese> > Pizza;
Shapeless is offline   Reply With Quote
Old Jul 16th, 2005, 12:14 PM   #10
Ancient Dragon
PFO God In Training
 
Ancient Dragon's Avatar
 
Join Date: Jun 2005
Location: near St Louis, MO. (USA)
Posts: 598
Rep Power: 4 Ancient Dragon is on a distinguished road
Quote:
Originally Posted by Josef_Stalin
Thanks for the suggestions. I think I have an idea what to do and that is to work on application devlopement and code organization and then I'll look work with graphics and sounds. Then I'll look at some other languages, and maybe hardware-based programming. Guess I'll be busy again. The quest to be a good programmer never ends.
If you work with MS-Windows operating system, download the DirectX SDK (free from M$) and learn to use it. It comes with lots of example programs and short tutorials.
Ancient Dragon is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 11:03 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC