vote up 336 vote down star
134

Background: According to my resume I'm supposed to be pretty good at programming. I've worked on a ton of big projects at big companies over many years. When I go for an interview and someone looks at my resume they immediately assume I really know what I'm talking about. I generally communicate well, present myself well, know the 'jargon' and know a lot about technology at a high level, which makes matters worse because after talking to me for a while an interviewer really believes that what my resume says is probably true.

The Problem: The problem arises when someone asks me to code something. I choke. As a programmer I have almost no capacity to come up with creative solutions of my own. I can't think through solutions to a programming problem the way good programmers are usually able to. I read questions on StackOverflow and the answer is obvious to me after I read other people's answers but if I am the first person to look at a question with no hints from anyone else I usually don't know where to start. At work it's the same thing. I'm fine if I'm correcting other people's code. I can identify the source of a bug quicker than anyone I work with. But if you ask me to sit down and code up a new application from scratch I will spend ten times longer than programmers who are much more junior than me.

Question: Now that I am looking for work this is raising its ugly head in interview situations and making me feel desperately that I'm in the wrong career. I don't know if this problem is incompetence, laziness or some combination of these. Does anyone have any ideas about what I might be dealing with - are there books or exercises that could help me with this basic problem?

flag
198  
+1 for brutal honesty, even though you may be selling yourself short. How about testing, writing documentation, writing specs, evaluating tools, etc? – n8wrl Aug 7 at 17:44
15  
out of curiosity, do you have a CS degree? – SP Aug 7 at 17:45
64  
You just got 200+ rep points on stackoverflow in like 5 minutes, you must be a good programmer – Max Schmeling Aug 7 at 17:53
29  
Sounds like you'd be a good teacher. – KevinDeus Aug 7 at 18:06
24  
Does anybody else think this question is bogus? I don't want to be rude or call anyone a liar, but "Now that I'm looking for work" doesn't really mesh with the "At interviews this makes matters worse" part. If you have impressed that many employers, how is this just now become a problem? If you know the "jargon" and can read and comprehend SO answers, that means you know more than concepts. I read SO Q/A that may as well be in Chinese. If you really are sincere, and the problem is with creativity, have you considered occupational therapy? Or finding a guru of your own? – Anthony Aug 8 at 5:43
show 17 more comments

85 Answers

1 2 3 next
vote up 84 vote down check

From reading your question it seems the major cause of your concern is that when faced with a "blank slate", you just can't get started.

Surely you realize that this is the hardest part of any creative process! The fact that you find this difficult is completely normal and healthy.

I have had this problem in the past and the solution was incredibly easy. I just start programming something, anything, related to the problem, no matter how seemingly stupid.

The simple act of bringing something into existence then allows me to objectively criticize and improve it. This "something" is only a small part of the overall objective and might only take an hour or two.

You also sound a bit "hung up" on job titles and reputations such as being the "Guru". In other words, once you have attained the Guru status in a company you know all and see all. But in software development this is a recipe for being made to look very stupid when you get caught out by the rate of change. Of course it also just adds to the pressure that you seem to be feeling.

Saying that you "choke" suggests that you are putting way too much emphasis on writing top quality code, first time, every time. If you know that your first few attempts are simply to start fleshing out a real design, you have no pressure to make them perfect.

Your problem isn't incompetence or laziness. It's more like a lack of confidence due to becoming a bit rusty after not exercising these skills for a few years, combined with placing un-due pressure on yourself to perform.

link|flag
4  
You should develop a first-draft solution, then, you can see where the solution has weaknesses and then fix those weaknesses using your own code and cleverness (better known as “solve the problem you actually have, not the one you imagine”) – idober Aug 26 at 20:27
8  
I found that as I became more proficient as a programmer, the initial phases of a project got harder. This isn't because I was becoming less, skilled, quite the opposite. The kind of code I would jump into five years ago is the kind of code I can't write in good conscience anymore. When I finally get around to producing a solution, the quality is that much higher. Instead of thinking about how much time you're spending up front, consider how much you are saving down the line by doing things right the first time. – Adam Bellaire Sep 6 at 14:16
show 2 more comments
vote up 211 vote down

Become a project manager

link|flag
15  
What makes you think that doesn't take creative thinking too? – T.E.D. Aug 7 at 17:44
37  
+1 a lot of being a good programmer is just the way a person's brain works. Some people just aren't wired for it, just like some people just aren't wired to do sales or be painters. The experience and knowledge you have is invaluable though, so your organization and communication skills combined with that should be killer as a PM. Most PMs don't have a clue, so you'd be a rare and sought-after resource. – Rex M Aug 7 at 17:44
18  
@T.E.D. Have you worked with PM's before :D – Alan Aug 7 at 17:45
6  
I'm not sure if this is the right answer, but it's certainly a good potential right answer. +1. – Beska Aug 7 at 17:50
13  
@TED: He didn't say he was bad at creative thinking, just that he was unable to design and develop software. However, with seriously-above-average technical skills, the ability to speak the programming language and understand concepts, and (assuming he has the people skills) the ability to understand software projects -- I'd kill to have a PM like that. – John Rudy Aug 7 at 18:26
show 6 more comments
vote up 41 vote down

A business analyst is another good avenue. You can help defined the business problem and with testing, but do not need to figure out the actual code to do it.

link|flag
6  
Or figure out what the problem is, if my experince of business analysts is anything to go by. – Neil Butterworth Aug 7 at 20:18
show 2 more comments
vote up 5 vote down

Would you feel comfortable moving into Software Management rather than coding? Since you understand the jargon and technologies, perhaps that's a direction you can think of taking.

Coding is not for everyone, so don't feel bad. Personally I'm somewhere between a civil engineer and a programmer.

EDIT

And if you really want to remain a programmer, then I suggest you enroll in some courses or seek help from programming gurus ... Unfortunatley there are no programming psychologists around.

link|flag
vote up 3 vote down

The question is: do you want to continue programming or find a new track?

  • If you want to continue programming, you need to focus on your creativity and problem solving ability. I recommend a personal project to make an application from the start to end.
  • If you want to get out of programming, I recommend becoming a Project Manager. You should start managing projects instead of working on them. You programming background will be an asset to you as a manager or programming projects, even if you don't write code.
link|flag
vote up 152 vote down

There are plenty of jobs out there for testers and debuggers. That may be a very good position for you. If you can identify, isolate, and clearly report issues and solutions you would probably make a pretty good software tester.

link|flag
8  
This is definitely the best answer! I feel he may be lacking the higher level view when it comes to design or architecture. These rules also apply when trying to write a simple function/method because design is involved in these lower level things as well. Tester/Debugger sounds like a perfect solution. – beef Aug 7 at 18:52
1  
I guess I should also add... A lot of these answers involve management type positions which I think should be avoided if lacking understanding in design or architecture. – beef Aug 7 at 18:54
8  
In podcast #64 of Stackoverflow [37:45], Joel Spolsky talks about this topic and I think it backs up this answer 100%. In summary, he mentions that developers and testers are like two different personality types. Developers tend to be more cowboy coders so they write code, test their solution and they have to move on to avoid stalling the project. Testers tend to be more concerned with correctness so even if they code slower, they may find bugs faster. Also from the podcast are 2 points to take away: 1) The nature of both work are different and 2) A tester is not a demoted developer – medikgt Aug 8 at 6:00
3  
yeah, but noone really wants to move from dev to test...less pay and is perceived as a step down... – LuftMensch Aug 10 at 21:01
show 2 more comments
vote up 5 vote down

If you want to code, pair programming might be a good way to build other skills. Or the others have good suggestions about related tech careers.

link|flag
vote up 5 vote down

If you can logically think things through like this, then surely you'd be right for some sort of "consultancy" role? You get asked questions, you get to ask for more info, and you hash out a solution together :D

link|flag
vote up 11 vote down

Programming is creativity.

Creativity comes by learning, copying and adapting.

Learning comes by doing. copying and adapting comes from studying.

Just do and study.

Also, don't pretend to code a new application from scratch, ground up. Do it progressively. It will get much easier.

If you are in the wrong career path? could be. Maybe you are a great tester and maintainer. Maybe you are a great manager. who knows ? You don't have to be a good coder to produce (indirectly) good code.

link|flag
1  
+1: more practice. – S.Lott Aug 7 at 17:56
4  
+1 for saying "copying." – yar Aug 7 at 18:10
show 1 more comment
vote up 17 vote down

You could test yourself for symptoms of ADD/ADHD. I almost always get hung up on layout and design because I can fiddle with it for hours like a game and never get anything "done".

link|flag
2  
AFAIK, lack of creativity is not an ADD sympton, it's more like the opposite. – Jaime Pardos Aug 7 at 18:11
4  
+1: This happens to me too, but it's usually because I'm trying to postpone the annoying bugs/features at the top of my fogbugz list – SnOrfus Aug 7 at 18:15
show 3 more comments
vote up 2 vote down

Unfortunately probably not. I used to be a programming tutor in college and found some people just have a knack for programming, while others don't. It's not related to intelligence, diligence, or computer aptitude. But it's not all doom and gloom. So you're not an A+ programmer from the ground up, maybe you'd be happier as a tester - or in a pair programming environment. You at least can admit the fact you have a deficiency, most people can't do that - you have somewhere to start from. I would look at other positions in the company, see if you can do 4-6 month rotations and maybe find something more to your skill set.

link|flag
show 3 more comments
vote up 23 vote down
  Those who can do - are doing.
  Those who can't do - are teaching. 
  Those who can't teach - are managing.

(a saying, rough translation)

PS. Don't take it personally. I'm well aware there is people out there who can both do, teach and manage.

link|flag
13  
Hmm, I thought it was "Those who can't teach - teach gym" – John Rasch Aug 7 at 17:49
4  
Being a cockroach is very competetive too. – Neil Butterworth Aug 7 at 20:20
2  
I learned "those who can't teach -- teach teachers." My father was in the state education department. – S.Lott Aug 7 at 20:56
1  
I thought it was, those who can't get 3 months off in the summer teach. – GuinnessFan Aug 12 at 18:01
show 2 more comments
vote up 1 vote down

There is a certain knack that good programmers seem to have. However, if you actually want to be a programmer (decide this first), the best way to learn is by practice. There are hundreds of sites on the Internet that have problems for you to try to figure out, with solutions.

At the same time, as you said yourself, you may not want to be a programmer. Nothing wrong with that. You said you could find bugs quickly - there are companies who would love a good V&V guy. Or, if you understand the technology, and not just specific implementations, look into becoming an architect. And, if you like the business side of things more, go down that path.

link|flag
show 1 more comment
vote up 15 vote down

I've seen questions like this here before, and always find them interesting. A common piece of advice, which I believe, is that the very fact that you're here and asking indicates you're neither lazy nor incompetent.

Can I ask: do you enjoy coding?

I think if the answer is "no, not really", then maybe it would be worth looking at taking another avenue, and going more for the project manager / business analyst route. I think in a job interview situation you could come to the table and say that your coding days are pretty much behind you (if indeed you would be happy they were), but don't feel or show shame in that admission.

If the answer is "yes, I love coding", then perhaps it's a question of continuing to plug away at it, maybe going at coding with a different approach, set yourself some different challenges. I too find sometimes that it's hard to write up a whole application from scratch, perhaps partly due to a constant feeling of needing to look up Google for what the "right way" of doing things is; so perhaps to build confidence, set yourself a simple programming task and try to do it with the internet turned off. I think you'd be surprised at what you can achieve. It may not be perfect. But then look at it a week later, and you'll be able to see the problems in it just as you can with other people's code.

link|flag
show 1 more comment
vote up 7 vote down

If you enjoy the technology and code, consider finding a position in support. You admit you can read and understand code, as well as grasp the technology. Combine that with troubleshooting skills (methodical testing) and you probably have your dream job.

link|flag
vote up 39 vote down

You have four options as I see it.

  1. Continue to be a programmer - read books/blogs and for goodness sake, write some code on your own time. Contribute to an OS project, join a user group, whatever. If you want to be a better programmer, then you have to act like it.
  2. Get a different technical job - if you like the tech field, there are plenty of jobs that don't require programming know-how. You could be a server administrator, Network cable monkey, software tester, etc... That's not to say that these jobs require no programming, but it will be much more watered down if you actually need to code something.
  3. Quit and become a manager of programmers - this might make some sense because you already have some technical experience and might be adept at knowing what your programmers need. This isn't quitting by any means, but if you don't want to learn more about programming then I suggest you get out.
  4. Change professions completely - just because you have programming experience does not mean you have to stay in the field. There are plenty of other fields where having some above-layman computer knowledge will actually make you a commodity.
link|flag
5  
don't be a manager unless you are good with dealing with people, that's what that jab really is.. your computer skills would be secondary. – KevinDeus Aug 7 at 18:08
show 1 more comment
vote up 43 vote down

But if you ask me to sit down and code up a new application from scratch I will spend ten times longer than programmers who are much more junior than me.

Being quicker is not always the best way, and subsquently taking too long without justification is also bad. There is a fine balance to be had between doing something effectively and within a reasonable time limit.

Although these Junior Programmers are doing it quicker, are they doing it better?

  1. Is their code maintainable?
  2. Is their code extensible?
  3. Are they following patterns and practices?

There is also a case where something is not good enough and you consistenly look at the work you do, and think "WELL THIS CAN BE BETTER!" On this scale I would take a pragmatic view and say "Do not let perfection get in the way of good enough!"

Something I like to practise is always to start out simple and extends where ever possible. So even if you have the smallest idea for a core application. Break it down into smaller parts and repeat until what was once large, becomes modular and may allow you to get a better perspective of things!

OMO

Cheers,

Andrew :-)

p.s. Keep programming, it sounds like you would begrudge having to give it up, i would be the same, absolutely!!!!

link|flag
vote up 13 vote down

I discovered when my wife took a CS course that she's very much like you. She got A's on all her tests, but couldn't create a program de novo if her life depended on it. She's just not a creative person. Most people aren't. There's nothing wrong with that. She's so much better than me at organizing things and remembering things that it isn't funny.

I'm with Max on this one. Go ahead and be good at what you are good at. I am a good creative person, but I've spent most of my time in the last 10 years porting or debugging code someone else wrote. Some of the time I've floundered, because that isn't really my forte'. Pretty much any job we ever take here is "just like" some other job we did before, with perhaps a few changes.

We also have an entire group where I work who's only job is maintaining software at various customer sites. It would be a wonderful job for someone like you who enjoys travelling. We have large numbers of other software folk at permanent sites charged with maintaining code. There's plenty of work out there for someone like you.

link|flag
4  
I've heard this theory before- That creativity is something that a person is born with- And some people "have it" while others don't. I would like to register here that I am extremely skeptical of this idea, and I suspect that creativity is a skill that you can excercise, like a muscle- or other skills like basket weaving, skateboarding, and long division. I'm not saying I'm sure of it, just that I can't understand how anyone can be sure of the alternative without ever seeing any evidence. All things being equal, try out my theory for a while and see if it fits. – Breton Aug 8 at 13:29
1  
No. Two of my three kids just cannot pay attention, no matter how hard they try. They try really hard, and it frustrates them nearly as much as the rest of us that they can't. One has been diagnosed with ADHD, but that's really just a fancy name for "the way his brain is built, it is really hard for him to concentrate". My middle kid has no problem concentrating. Never did. Different people have different brains. We all just have to figure out how best to use what we've got. – T.E.D. Aug 11 at 16:15
show 3 more comments
vote up 1 vote down

Take a look at my "Building Skills" books -- you're part of my target audience.

http://homepage.mac.com/s_lott/books/index.html should work

link|flag
show 2 more comments
vote up 2 vote down

I was surprised to learn from someone that, at IBM, the position of "Sr. Programmer" does not involve any actual programming. I think its just a natural progression on one's career. Programming isn't a profession you can age into like medicine for example. You don't see many 70 year old code-monkeys.

link|flag
2  
Lockheed Martin was like that when I worked there too. The higher levels on the engineering track didn't do any actual programming. However, they did have to work on a lot of bids and proposals, which requires a certian amount of ability to visualise how programmers are going to have to go about solving the customer's problems. – T.E.D. Aug 7 at 19:11
show 1 more comment
vote up -2 vote down

Which of your skills/abilities have past employers valued?

link|flag
1  
You should ask this as comment. – Arnis L. Aug 8 at 13:44
vote up 2 vote down

I appreciate your honesty. This takes a lot of guts. But because of that I expect you're doing yourself short. Many people underperform without ever having the guts to admit it. Hey, there's even taxi drivers who can't drive... ;-)

Please take some time to evaluate yourself and focus on the strong points; to find your core values. I'm quite sure you've made a lot of good contributions to projects and people around you. Possibly you're 'ok' according to other people's standards. Or you may have enabled other people and/or teams to succeed. If projects preform well because of what you did, it may have been the right thing. After all, it's the team success which really matters.

Depending on your values you can make choices to alter course. If you're unhappy in software engineering: is it because of your role, or because of other things? If you're happy, you may find a different role which better fits your qualities. Years of experience count for something too. Whether it is as a PM, or as QA or as a people manager is something for you to decide.

link|flag
vote up 2 vote down

You ask just one question: "Does anyone have any ideas about what I might be dealing with - are there books or exercises that could help me with this basic problem?"

Yes: build something. Take an idea you have, pick a technology you enjoy, and start. Speed is a question of practice, concentration, inspiration, and the same with creativity. Make some software yourself following an idea you have. You'll see how you resolve problems, dance, or sink. You suspect you'll sink, I suspect that you'll see how fast you really are.

link|flag
vote up 2 vote down

Many companies have people whose role it is to be current with advancing technologies, research them and suggest plans for purchasing or integrating technologies to improve the business.

I have a friend who did this for HP, and he earned top dollar as well.

This even applies to roles such as CTO's etc.

link|flag
vote up 4 vote down

Hello Confess,

I like your question, because I feel many people may have the same issue. I don't think I can tell you the good answer, but only give you some piece of reflexion on that question.

Well every time in my experience I found I was slow or unable to begin my work, I've realized lately that it was only a question of motivation.

I don't know what are the projects you've worked on. But for me every time I've worket on graphical interface, I realized I was very bad at it. Too much bugs, taking too much time to deliver, and not pretty at all. I know by now that I like pretty graphical interface, I can even have good ideas at it. I may be critic about other's GUI. But it is really not the part that I like in the programming world.

Take some time and think of it. Did you ever found a project that you made yours? Working on a part that motivates you? So much that you really want it to be a sucess?

For instance, how much time I dreamt of my ideallistic IPhone killer app. As far as I remember, I've only created the XCode project, drag and drop an Image view on the window. Then no more .. I will need big efforts to finish it, or help from someone who like to do that... :-)

link|flag
show 1 more comment
vote up 13 vote down

Everybody's given helpful and useful answers, but one thing to remember is that the scariest thing for anyone in a creative endeavor is a blank canvas/sheet of paper/etc.

Programming tasks don't begin with writing code--they begin with organizing an understanding of the problem at hand. Some people organize better in the limited world of a programming language, others organize with pictures of boxes on a screen or piece of paper (UML), some people organize better on whiteboards or napkins in an ad-hoc fashion. It all depends. Ultimately, of course, as a programmer you need to eventually get to the point where you're churning out code, but that has to come after the organizational understanding.

It could be that you've just lost your "mojo" after doing what you've been doing for so long. Similar things have happened to me over the years because the job has pushed aside the creative aspect of programming in favor of the logical, methodical side. My solution has been to find a technology that intrigues me and dig into that on my own, learning about it in my own ways, and re-discovering the "play" that drew me into this hobby/profession/passion in the first place. If you once had that same playfulness, then you can probably rediscover it if you find something that tickles your fancy.

Be honest when you're interviewing, and be sure to point out the myriad ways in which you bring immediate value to an organization even if that's not programming from scratch. Also, remember that rarely do places have the luxury of starting from a blank canvas on any project and, if they do, it's likely that they'll have a team of people rather than just you. That means that a savvy hiring manager can assemble a group of people with complementary skills in order to accomplish the task at hand, i.e., there will likely be a person on the team for whom the blank canvas is the best thing since sliced bread and can help jumpstart your creative juices.

Good luck!

link|flag
show 1 more comment
vote up 4 vote down

I'm in the same boat actually, so I understand where you are coming from. This is an excellent question that I'm afraid doesn't have a cut and dry answer to.

Your experience as a programmer seems well enough to come up with a solution to any problem, but the answer isn't obvious right away. I believe you would find the answer if you actually relaxed, took a deep breath, and broke the problem down yourself. I know in this business things have to be done relatively fast, so any solution to a problem that already exists without having to come up with will make any job easier. Reinventing the wheel is a waste of time. Researching the problem before attacking it is effective and shouldn't be looked down upon.

Problem solving or using your brain is a muscle like anything else in your body, it does take practice. The programmers you mention that have this problem solving ability probably practice a lot (maybe with their own projects), focus on the problem at hand, and yeah there is some innate ability too, but I don't think you would have gotten this far without a shred of it. I wouldn't say it's laziness, but motivation and focus and both of those can be worked on.

The answer is something you have to find yourself since it's impossible for anyone on here to know you. Get a therapist or confide in someone that knows you to discuss the problem. You will find that as you are discussing it you'll understand yourself better. If it's a focus problem, there are many techniques to get you in that mindset, if it's motivation, maybe it's the work you are doing now is not interesting to you and it could be you love programming just not working on certain things that loose your interest. If you kept your day job and just worked on something that interests you the most that might help you understand what it's like to work on something you chose to do and try and tackle it without looking up the answer. That will take some self discipline and will challenge you, but it will be in a non stressful environment.

link|flag
vote up 28 vote down

It sounds to me like you've primarily worked on code developed by others. Very easy practice to fall in as it's a comfort zone. The other coders you talk about probably worked more with software design. It takes time to find your own 'brand' when designing software and you just need to find yours.

My suggestions:

  1. LEARN to design software. Ideally, learning to design would be the best, first step, then learn a language to fit the design. However, many of us learn the language first THEN come up with the solution. This presents the PROBLEM of 'when all you have is a hammer' mentality, which shuns creativity and language independance.

  2. Buy a copy of CODE COMPLETE and/or Head First Design Patterns if you haven't already to get your creative juices going. Chances are, you learned a language(s) without learning to design. It's a common theme. Don't be discouraged. It's a hurdle you'll have to eventually jump over. We all have/had the same hurdle.

  3. Go home, spend some time and design a piece of software you need, for fun. Put the keyboard aside and design it. Take some time and lay the whole thing out. Enjoy it!

  4. If you still feel you just can't do it, as others have said, sounds like you have an excellent opportunity for tester or software support, which are both very challenging fields and you're already one foot up on them.

link|flag
show 2 more comments
vote up 7 vote down

Sounds like a great candidate for maintenance projects. Maybe atleast for time being. And like someone pointed out, you may be a perfect fit for a tester.

Thrilled with your honesty. And good to see people not ripping you apart as is what usually happens these days!

link|flag
vote up 0 vote down

I can identify the source of a bug quicker than anyone I work with.

That's great, and very useful. So if you want to play to your strengths, find a job fixing other people's code. So long as there are programmers, there will be no shortage of bad code.

Do you want to code? Then figure out how to get better at it. But if you don't, then own up to the fact, and look for jobs that don't have you doing what you don't want to do.

Some things that could help:

  • Write a program for yourself, something you want, so you've got the motivation to get past the tricky bits;
  • Pair with someone who doesn't have your problem getting started, and learn how s/he does it - ideally by having your pair help you through it, rather than simply watching him/her do it.
link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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