vote up 1 vote down star

Possible Duplicate:
What is the best way to get back into programming after years of neglect?

I've been out of programming practice for over three years now - since then, I haven't written a single line of code. I wasn't a pro by any stretch of my imagination, but I seem to have forgotten basics. Do I really have to start all over or is there a better way to get reacquainted with programming in general?

I used C++ back in the day, only console programs, rarely did anything outstanding, never have worked with GUIs.

Thanks.

flag
2  
Dupe: stackoverflow.com/questions/58138/… – EBGreen Sep 1 at 15:22

closed as exact duplicate by George Stocker, EBGreen, Dominic Rodger, Marc Gravell Sep 1 at 15:36

5 Answers

vote up 7 vote down

Pick a small project and dive in! There are lots of free development tools (Eclipse, C# Express, etc.) so you shouldn't have a problem getting the software you need to get started. Also, there are thousands of tutorials available in whatever language you choose. For someone with a background in C++, Java and C# are probably good options (or C++). And Stack Overflow is great site to ask questions on when you get stumped. Good luck.

link|flag
vote up 3 vote down

Get reacquainted with programming by programming. I imagine it will come back quickly.

link|flag
vote up 0 vote down

Maybe re-read a C++ textbook to refresh your memory. You won't be "starting all over again" because you only need to be reminded of what you know already.

link|flag
vote up 0 vote down

As Jay said, just get back into it. You might start by taking a look at some C++ "refreshers" suggested here, if you used to be familiar with C++.
Also, take a look at some of practice project resources that have been listed on SO before, such as Project Euler. They can be useful for helping you find a problem to chew on and get the hang of things.
Finally, don't get discouraged, just go ahead and start! You'll probably be surprised at how much you remember.

link|flag
vote up 0 vote down

Don't worry. Things might seem fuzzy now, but you'll get back into it soon enough. Here's a quick checklist of things you might want to take a look at:

  • Automate minor tasks that you find yourself doing often. This is a great starting point for some shell scripting and reacquainting yourself with the basics.

  • Join a local users group for a language or project you think you're interested in.

  • Socialize with other developers to expand your knowledge. I learn best when I'm talking to people who are much smarter and more experienced than me. You might find that you get the same kind of benefit.

  • Attend meetups, unconferences, hack nights, and free code camps. This might be a bit bewildering at first, but groups are often only too happy to welcome new people in their midst.

  • Get passionate about a project, environment, library, or technology. The human brain is far too pliable for you to really get rusty at something that you like.

A few months back in the saddle, and you'll be dumbfounded as to why you ever felt this way in the first place. Good luck!

reallypathetic

I hope that, in a few months, you feel like you're back in the groove, and that you can change that user name to something more inspiring.

link|flag
Thanks! I'll be back :) – reallypathetic Sep 1 at 15:31

Not the answer you're looking for? Browse other questions tagged or ask your own question.