views:

143

answers:

5

I just graduated from a fairly well-known liberal arts college in May. Interestingly, I majored in psychology, with a concentration in social psychology. In college I took Intro to Computer Science and hated it (used to blame it on myself; now I blame it on the professor :) However, I've always wanted to be a programmer, and finally got my wish by getting hired by a company that was willing to let me learn coding from scratch in exchange for low pay. Well, what do you know, I just got laid off this morning, and need a new job by November to pay the bills. I loved the coding part of my job at the company, and managed to learn enough Java to feel competent in the job and curious to learn more. I think my goal now is to become a professional programmer. I still know very little (never used Swing, for example) but nothing that a good book can't fix.

That's the background anyway; sorry for the rambling - I'm still in shock from the layoff :( It seems to me the quickest way to get noticed by companies, without a CS degree, is by getting certification. I'm halfway through studying for the SCJP and can probably sit for an exam in a week or two. Am I right in my assumption that certs will help in my case? And in general, do I have a bat's chance in hell of making it against formally trained programmers? My assets are really just raw intelligence and intense curiosity; well, maybe a love for problem-solving too.

Thanks all - feel free to edit/tag the post!

A: 

http://careeroverflow.com/

kahoon
Should be a comment. And see mine in response to CoolBeans
TheLQ
+1  A: 

Yes, for 3 reasons

  1. It shows that you possessed a body of knowledge at a certain point in time.

  2. It is a great way to be busy with something you like doing

  3. It shows an employer you have the stamina and drive to achieve non-trivial things.

1 and 3 give you an edge in the employment market, I would say nr 3 weighs more than nr 1, but plenty of other candidates won't have this. In the virtual reality game that a hiring process is, this is a distinct advantage.

Nr 2 is a personal bonus. Nr 2 is what gets you through and is the intrinsic motivation employers are also looking for, but they cannot measure it and you cannot fake this. (Good hiring manager can spot this: they see the twinkle the eyes).

Go for it!

Peter Tillemans
+2  A: 

Interesting situation! I do a lot of hiring of Java developers, and am an experienced one myself. Bottom lines:

  • Sun certification alone will not get you an interview at a reputable company. Do it for the experience if you want to get the benefits of the training (personal opinion: hobby projects and deep dives on languages/frameworks you are interested in are better, but without the fundamentals training in a degree it is probably useful to you to learn the language this way and properly)
  • you will have a tough time getting interviews without a degree, but it isn't a dealbreaker (for a good company) if you have depth in the areas that are important to the job. You'll need to sell yourself through your experience, which probably means doing non-trival hobby projects.
  • Master the answers to all of these. For interviews you do get, you need to know these fundamentals. http://sites.google.com/site/steveyegge2/five-essential-phone-screen-questions
Pete
+1  A: 

First of all, Certification does not guarantee anything. Sorry to say that. Getting certification tells others that you can answer the given problem set. No more no less.

As you say in your question that "I think my goal now is to become a professional programmer". Do professional programmer must have a certification or CS degree? They mustn't. Pragmatically, i will say that professional programmers do programming to make life.

Now, in your case i will encourage yo to do so because :

  1. When you try to achieve such certification, you need to learn in some way. This, of course, will improve your skill.
  2. In interviewer eyes, not having a CS degree is a big weakness. But you do something to fix this weakness. That is getting certificate. Hence this big weakness turns into big strength.
  3. "Professional" or "good" or "able" are very qualitative words which can't be measured precisely. To measure that, we (mankind) invent techniques to change those words into something quantitative. It's called certification in Programming world. Further, in programming, certification doesn't represent "professional" nor "good". It represents "able". Hence, having a certification quantitatively proves that you able to write computer program.
jancrot
+2  A: 

All answers above are pretty solid on the importance of certification.

I would like to add just a couple of things.

  1. Try to solve some problems on project euler or ACM UVA site. These problems will appear difficult at first but there are tons of helpful hints out on the web on these problems which will help you solve them. This will not only improve your problem solving skills but also sharpen your coding skills (like use of right data structure, coding for efficiency, etc).
  2. Another option that might help you stand out if you take on some self projects. For example, you can try to contribute to a open source project and highlight that as an experience on your resume. Here is a link to a somewhat brief list of open source projects in java.
  3. Do you still live near to a college town? Perhaps you can try to enroll in a graduate program in Computer Science. If that's not possible you can try to take some undergrad level classes to get some fundamental concepts ironed out.

Good luck!

CoolBeans
Funny that you should mention Project Euler. I'm obsessed with it! Was working on it late into the night last night, and only let it slip today because of the news. I'm actually trying to scale back on them because even though I do okay on, and love, those problems, they seem to be serving more and more as an addictive sort of ego reassurance rather than a fun game.Grad degree is on the list too, just waiting for me to get a CS college degree equivalent. Unfortunately there are no schools here, so it's just me and books. And I'm looking at the open source projects. Thanks for the ideas!
Anita
You are welcome Anita.
CoolBeans