vote up 120 vote down star
53

I've always been a software development nerd. I got started with web development (HTML, JavaScript, CSS, etc) and continued with PHP, Java and C#. All along I never seemed to become really good at coding; when I solved problems it was equal parts copy-paste-customize and spending too much time on what seemed to be basic stuff. I thought it was because I was still young, that I was too young too grasp certain concepts.

Now I'm much older yet my old habits are still here and I've realized that I, frankly, am a bad programmer. Which is kind of sad since I'm still very curious about software development and read the literature, keep myself updates with new languages, development methods, tools and libraries. I find pretty much everything from algorithms to interface design to be interesting, so it's not like I don't care - quite the opposite. With "bad programmer" I mean that it's difficult for me to even analyze basic problems and implement them in code. I often find myself going back to basics and looking up trivial information.

Should I just quit being a software developer? I find being a talentless hack far worse than being unemployed, but it kills me to think that I will never become a great or even good programmer.

I've been coding professionally for about a year now.

Addendum: I've received a lot of incredibly uplifting feedback in this thread and I just wanted to say to you all how much I value it and that I will take your advice about perseverance, getting more formal education, and having fun while programming to heart. Again, thank you very much Stack Overflow.

flag
25  
I commend you for being brave enough to ask this question. – Si Keep Feb 19 at 14:02
7  
You've been "coding professionally for about a year now"? That is not enough time to develop good programming skills. – lamcro Feb 19 at 14:48
show 10 more comments

69 Answers

1 2 3 next
vote up 0 vote down

Learn C, that will help a lot. You started out as a script kiddie and don't seem to have grasped the basics. Dig deep. That should give you a new perspective.

link|flag
vote up 0 vote down

I would recommend if you dream about programming then try to not measure yourself against how good you if other folks are, incidentlly they likely are not that good really, and just focus on realising your dream. Reading books and staying up to date is necessary and good, but you need to make a point of implementing some of the new things you learn routinely otherwise you just overload on theory and then get intimidated by it all.

Starting out professionally in most careers is tough but if you stick with it as long as it is what you want to do then you will get there. I would suggest you take stock of the type of programming you are doing then look at the whole range of possibilities to see if you are in the right area of the business. For example apart from Web Development and corporate enterprise coding there are all sorts of programming opportunities in technology infrastructure from data center utilities, network programming, security etc etc. Not to mention embedded development for robotics, CNC machines. The diversity of programming challenges is enormous so take a fresh look at all possibilities and just confirm you are in the area of the business you think you will enjoy the most.

Good luck!

link|flag
vote up 0 vote down

Hey it's me on the long tail of this conversation, but since I found it (and read it all) maybe others will too.

If you study the history and works of great artists you will find them all wracked by self-doubt and by the idea that they shouldn't even be painting/composing, etc. The difference between the ones who succeed and the ones who don't was the passion to keep trying, even when it wasn't fun, no one liked it, and it look like it was going nowhere. I am sure that this is pretty rare book recommendation on this board but I would recommend "The Creative Habit" by Twyla Tharp. (not 'instead of' the other programming books, but in addition too, and it can be a real uplifting read)

Van Gogh is often portrayed as a brilliant flash of madness, when in fact it took years of methodical study and failure till he reached his first significant work. He started out sucking and continue sucking for a long time, more than 10 years.

The most important skill you need is to be willing to hunker down and learn, and practice, and learn, and fail. It's hard, it sucks, and it doesn't pay off tomorrow or the next day (well sometimes it does). Start marking the things you look up often and set them aside for memorization, or if is an abstract concept, developing some practice exercises around it. Programming is not the only thing you need to be creative about; learning about programming takes learning your weaknesses and strength and discovering the types of learning that suit you best. (Do some research into learning theory) Personal Wiki's, MindMaps, Flashcards, whatever it takes to make it possible.

I think looking up simple things is not about level of skills whatsoever, it's about taking the time to memorize them. Because if you can't internalize these basics, you can never progress. World class violinists are the ones who practice, and they practice scales and the basics through every level of their career and practice at a high level of self-evaluation.

I really, really, feel where you are. But I believe that anybody with a rudimentary set of skills and drive can become a good programmer. It might be harder for you than some people, but it's also easier for you than some.

And lastly, as the "warm, fuzzy" post on this question (which is one I have posed to myself recently), I would add, what do you want out of life? Even great programmers die, but they enjoyed the journey and I am sure many of them did not expect to be the titans they were. Embrace your struggle to be good. Don't look for quick wins or peer recognition (unless you want the constructive feedback) There are no prizes awarded when you die for best programmer. What you need to do is find peace with the struggle and embrace it and enjoy it. It does get fun.

Being a struggling to be good programmer seems like a pretty good slot. Could be worse, you could love being a clown.

link|flag
vote up 0 vote down

One year of professional experience only?

Your journey has just begun and it will get better :)

I have been writing code professionally for over ten years, I have professional training, I have/and still learn from some fantastic people and I still think I am a hack. But I love every minute of it.

Don't get me wrong. Developing software is HARD. You will come across unrealistic deadlines, unrealistic people, temperamental development tools. etc. You will burn out and you will bounce back. As one of my professors in college put it "it is a ride".

But at the same time you have the opportunity to solve problems and make peoples lives a little bit easier through software.

As high school coach turned minor league player Jimmy Morris in the film The Rookie said to a teammate "you know what we get to do today, we get to play BASEBALL!"

You know what you get to do today (and get paid for it) you get to write software!

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

I have had the same things 6 years later when I started programming; the problem is that you want to create something useful NOW while you don't know how, so you try to burn steps. This happen, try to convince yourself to learn, the solution is a BOOK. Some books introduce programming on a cool and attractive way. Now I'm a good programmer and about to take Microsoft Certificates. Good Luck :)

link|flag
vote up 0 vote down

Yep during the first year you will be surrounded by people who make themselves feel better by putting you down in some way. Its not just in programming its most areas of IT. This maybe a source of your anxiety.

As for the programming aspect what really helps me is writing down my objective. Then writing down the steps i need to take to do my objective IN SIMPLE ENGLISH. Break down the problem and then look at ways you can do each step in your programming language. (There are structured ways of doing this like UML but this is just the way i learned).

EG Primary Objective: Display a list of contacts for a phonebook user.

To fulfil primary objective I need to: 1 Get a list of contacts from a database 2 Display on a page/UI

To fulfil objective 1 1.1 Recognise who the user is 1.2 pass the user details to the sql query engine 1.3 bring back the contact for the user.

To fulfill 1.1 1 Maybe the user can login. Maybe i can just recognise the user using Active X controls. (If you cant think of anything, google an answer. You can then start looking at the pros and cons of each and implement best solution).

To fulfil 1.2 Look at ways to communicate in your environment. Webservices, http, xml (If you cant think of anything, google an answer. You can then start looking at the pros and cons of each and implement best solution).

You get the jist. You can then figure out a way to work out each of the steps. In no time you will be doing these steps in your mind without much effort. You wont have to think of the answers to each step, you will know. At this point you can then start looking at your code and figure out ways to reuse it in the future. and ways to make code easy to maintain, ie i can change it in one place and not a million. Then as you get better, you can look at design patterns, OO principles and so much more! Look up UML use case, orm diagrams, write down good functional, user, business and quality requirements. all these things will help you.

Soon you will be a top programmer!

link|flag
vote up 0 vote down

Wow, one year is really short time of experience. I know a guy who does develop websites for like seven years (!!!). And he sucks hard at it. Yet somehow, he manages to finish all of his projects and earns quite some money from it. So if you really want to be a programmer, you can.

link|flag
vote up 0 vote down

Self-consciousness costs 30 IQ points.

If you want to hit a bird on the wing, you must have all your will in focus, you must not be thinking about yourself, and equally, you must not be thinking about your neighbor: you must be living in your eye on that bird. Every achievement is a bird on the wing. - Oliver Wendell Holmes

link|flag
vote up 0 vote down

It takes roughly 2 years to become able to really sit down and write programs from scratch. 1 year for the gifted, 3 for the slow, 1.5, 2 for regular people, e.g., me.

I've seen a lot of people in college pass through the "???" to "hmm" to "ok" to "yeah, no sweat". It's not fast. Do you play an instrument? It takes about 4 years to become able to play well unless you're really gifted. Same concept with programming.

link|flag
vote up 0 vote down

I'm just like you! Though I wouldn't think about stopping now. Sincerely, I agree with thenduks. I think you ought try to have a girlfriend, something like ruby, python, emacs, or a lisp is for some people. Something that will suddenly ignite again your passion for software.

link|flag
vote up 0 vote down

You're only a year in? That's nothing. If you're truly interested, then don't give up yet... it's just too early. But if you feel that you haven't improved since day one, then maybe it's better to cut your losses now and move on to something else.

link|flag
vote up 0 vote down

The approach you take to learning is critical. Don't dilute your attention and efforts by trying to learn too much at once. Concentrate on one language/technology and write a program/app from scratch. Go slow at first and make sure you understand everything you do. Start with the basics and go from there. Then look at other other people's code. Concentrate on understanding.

Once you have a solid grasp of the foundations and features of a language you will be able to much more easily gain proficiency in other languages and also to ask the right questions which will lead you to understanding.

link|flag
vote up 1 vote down

I've been a professional developer for forty-odd years, now (on and off, but mostly on); my peers seem to think I'm OK (good, even); but I still can pick up stuff I wrote three months ago and say "Did I write this cr*p!?

If you think you're enjoying yourself, keep at it!

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

I had the same question a year into my current job. I had never done well academically, and after reading a famous book on software, was convinced that the writer would never hire me...so I must be a crappy programmer. And I found out my former boss wanted to fire me. (He was let go instead). I was a go-to guy in my former job in the Marines, and had a strong entrepreneurial sense. But I started this programmer thing late in life.

I had failed the Sun Certified Programmer test. I went online and looked for others that had failed the test, and followed some recommendations. I studied for months. I bought a test simulator. I learned the language well. I passed the test. The other programmer’s started to come to me for advice.

Also…when I had a programming success, which was rare…I really liked it. So I started to analyze WHY I wasn’t doing well in some things. I didn’t know the language well. I didn’t know my TO weapon well (Marine speak here). I learned more about the machine and tools to use it. I recommend reading Neal Ford’s The Productive Programmer. This is really a bible of how to improve your basic skill set and really know your TO weapon. Not just your programming language but HOW you program. Your developer’s box and what you put on it, and how you use those tools.

We judge our lives on successes and failures. But it’s not a failure if you don’t give up…and succeed later. Then it’s a greater success. Much better than those who everything comes easy to. We don’t celebrate the guys who never make a mistake and walk on water throughout their lives as much as we celebrate the average guys who struggle and fail and try again, until they get it. Cause that’s who most of us are.

My plan is to get Java certs up to the architect level, and then switch over and learn the .net framework well. Maybe not get certified on it…but I probably will. Just for fun. And I get to learn something every day. How cool is that?!

Many on this site have said that a certification is worthless…and doesn’t mean anything. I have seen programmers come through here with architect certs, and they were completely worthless…not because of their cert though. They had a listening disorder…they didn’t listen, they stopped learning, and they didn’t work. Their certs weren’t worthless, it was their mindset that was.

I consider myself a below average programmer now, but I really like the job now. I was tinkering with a date problem this morning that would have had me really frustrated a year ago. Today I dissected it and was really having fun.

So my answer to your question is: make this your own story. Don’t give up…work hard, learn your TO weapon.

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

In my opinion, one year is not a long enough time to become truly proficient in any profession. Your question indicates a level of self-awareness that is all too rare in our society and I applaud you for it.

Many have suggested that you need to find a mentor and while I agree that would be great, it may not be practical or possible depending on where you work. I suggest that you become your own mentor.

Start working on developing some good habits like using source control, documenting your work and maintaining your own code repository. Joel Spolsky has some excellent advice for developers and I recommend you review some of his articles. I would start with his infamous "Joel Test" which was intended to be a way to evaluate software development organizations, but I find many of his questions apply to developers themselves (http://www.joelonsoftware.com/articles/fog0000000043.html).

You mentioned that you find you have to "go back to basics" and have to look up "trivial information". I suggest that is a sign that you have not taken the time to completely absorb some of these key concepts. Give yourself a chance to learn. When you read, try not to read passively, but actually study the material. Take notes. Ask "why?" when you read about a new concept. And please take the time to document your code. That way when you return to your previous projects, you will be able to discern why you chose to write the code the way you did.

Finally, I would respectfully suggest that you need to identify a single language and take the time to become truly proficient in that language. From the list of languages you listed (very familiar by the way as I too am a language dabbler) I would suggest you focus on a single object oriented language such as C#, provided that lines up with your work responsibilities.

I wish you all the best and I hope you don't let a lack of experience discourage you from pursuing your career.

link|flag
vote up 0 vote down

If you need a mentor I would suggest you start helping out on an open source project. There is a wealth of good developers that will review your submissions and give you feedback.

If you pick a mature project you will find the bar high and that will improve your coding.

link|flag
vote up 0 vote down

Hi, Read a post by Jeff Atwood (man behind the StackOverflow.com) "Programming: Love It or Leave It" http://www.codinghorror.com/blog/archives/001202.html

And know thet on some point every softwre developer has doubts about his/hers skills or attitude.

Do it as long as you love it and work on your skills and attitude.

Take care.

link|flag
vote up 0 vote down

Stop admitting you don't know anything; you'll be a perfect candidate for upper-management, promotion, raise, etc.

link|flag
vote up 0 vote down

Why not become a bad project manager?

link|flag
vote up 0 vote down

What makes you think that you're a hack? Do your programs not compile? Do they not work?

There's no such thing as perfect code. If your code accomplishes its goals (as in meets the requirements), then there's no reason to leave the field. Your code will get more elegant as you continue to learn and gain more experience.

link|flag
vote up 0 vote down

Don't be discouraged--with your interest level and appetite for learning you'll quickly put this "struggling" phase behind you.

In my experience, programming skill has a highly non-linear curve. You'll plod along for a while not really understanding what you're doing (or seeing others do), and at some point you'll have an "aha!" moment and you'll make a giant stride in your comprehension. The more of these you have, the more you'll be able to learn and the more confidence you'll get. Once you really understand a concept (e.g. pointers), you'll no longer be distracted by the syntax used to express that concept and can start to see the bigger picture. Each concept learned becomes a new tool on your workbench.

Furthermore, although you have been doing "programming-related" things for a long time, I would submit that time spent (just) writing HTML & CSS code isn't really programming (flame shield ON!)--it's more layout than anything else. It's not something that will help you understand algorithms, idioms, hardware or software architecture, etc. The only reason I bring this up is to give you a new way to look at your experience level--knock off the time spent doing layout & reevaluate how long you've really been "programming" (i.e. problem solving). I think you'll find yourself much happier with your progress.

Finally, as for the "cut & paste" business, remember that you obviously know enough to know which code to cut & paste to achieve a particular effect. Now take it a step further and really take some time to understand how that "borrowed" code achieves the desired effect. If you're really studying it, you'll soon find that you won't need to borrow as much. Voila--progress!

link|flag
vote up 1 vote down

The fact that you have learned so many languages and other software literature says everything about your passion towards programming. BUT we all have to accept that we cannot always be good at what we love. I love mathematics, I mean REALLY love; but I suck big time when it comes to solving even the trivial of problems. But I enjoy it nevertheless.

If you can take some different career in which you are good and keep software development as a side work than well and good. Not everything you love has to be made into a career. You can take small projects for which your skill levels are appropriate and simultaneously keep practicing programming till you start to become competent. But be on guard; after a year or so if you still think that you are not good at it than better take a different career and keep software development as a hobby.

link|flag
vote up 0 vote down

You've only been doing it for a year - you're not going to be very good. Wait until you've been doing it for 10 years, then you can start to make some judgments about your skill.

But, if you love it, stick with it. Would you prefer to be in a job that you didn't like but were good at?

link|flag
vote up -1 vote down

One year...

LMBO!

One question, do you still code in your spare time? If not...you may be right. Your "job" should be what you enjoy doing. If you are still enjoying coding and (did I understand you right...you are getting PAID?) why would you stop? If you were doing any other job for a year, enjoying yourself and had the potential to keep improving you skills I think your decision would be easy. It is so easy to think of coding like a art, and although it certainly takes a certain mind set, very few people are just born to it. Most good coders becore that way shrough simple time in front of a keyboard. It is simply the fact that they enjoy it so much that they spend a lot of time doing it - hence improving.

I say relax, I remember spending two days to get a dot to bounce around the screen. Not exactly high power...but I spent the time because, uhhh...hmmmm....actually....come to think of it...that damn dot was not that impressive after all!

--Joe

link|flag
vote up 0 vote down

No, if it's fun and if it brings money then I will kick you in the nuts if you quit -- many people don't have jobs at all. Also, majority of those who do hate their jobs.

Instead, try studying basic math like calculus and get your hands on a book on algorithms like Cormenetal. I began coding before I even knew how to solve a system of equations and my big discrete "jumps" in programming were: when I learned quadratic equations, when I learned basic calculus, when I learned how to write (without sucking a lot), and when I learned what red black trees were and perused a code for manipulating one.

These tasks might be harder than your everyday tasks but you have to expand your brain with math, computer science, and writing. It's like this. I remember when I was hardly able to run through 4 miles. Then, I overdistanced myself by forcing through 10 milers and voila, soon, I could run 4 miles day after day and I didn't feel any fatigue at all.

See, I think that programming is much like performance: what an athlete or actor does. You have to practice harder problems so you can solve easier problems faster, in a more elegant and readable way, and be entertained. When you have control over a problem you produce quality and enjoy your work.

That's why you need to practice your brain with solving harder problems.

Also, much like an athlete you must let your working muscle (brain) rest. Otherwise, your performance will drop.

But hey, what do I know, I'm just rebellious, dumb teenager who hasn't even finished high school yet. Maybe you must leave programming and start writing novels or begging for change at the light stops.

PS. I was joking in the first line. Everyone knows programming can't be fun :(

link|flag
vote up 0 vote down

I use to have a simliar problem i would copy and paste code but until I took a computer science course I started to think about concepts of programming when the course was over I started to challenge myself look at other code and ask why and try to figure it out and ask how can I change it so I can understand it better or make it better.

I guess what I am trying to say is challenge yourself its ok to ask questions but with only one year under your belt just keep at it.

Like someone in Stack Over flow told me Practice, Practice, Practice.

link|flag
vote up 1 vote down

If giving up or being a hack are the only choices you can see, perhaps you should give up. Personally, I see spending a bit of time and using your own assessment as constructive criticism a good step in the right direction. As I understand it, the first step, in a twelve step program, is to admit you have a problem. You have publicly admitted it, which means you may have gotten through many more steps.

You have the option of improving. You do it one step at a time.

By the way, a great number of programmers, professional and otherwise, are hacks. I try to fight this trend, one programmer at a time, and would love you to join me. If I can just ge a big enough army, we can stamp out this problem.

Oh, another thing, most manangement is clueless most are hacks, as long as the problem gets solve some time. So don't beat yourself up. Just make the effort to improve.

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

You sound like you should go to project management :)

Ok more seriously, you should really consider it. If what you're saying it's true, then you have a good overview on the development process. Maybe you're not so good coding but you're good on guiding others to code. "... so we need to do this... oh yeah yesterday i saw this lib seems very good give it a try"

link|flag
vote up 0 vote down

Presumably during the years spent as a fledgling nerd you learned to code by coding projects that you were personally inspired or excited by. I didn't learn to code because I wanted to write a better accounting package.

Could it be that now you're 'professionaly' writing code you're mired in professional specifications and obligations that are so far from your personal interests you can't work up any enthusiasm for them, and that lack of enthusiasm for the code you're writing is tainting your perception of your ability to code? Hopefully when you started coding professionaly you didn't just ditch the coding you were doing for fun.

To jump on someone else's analogy, I've sucked at playing guitar for 15 years now but I enjoy sucking at it because I enjoy playing folk and never expect to get paid for it. If someone told me I could only play flamenco and only when I was being paid for it I'd stop tomorrow. If I did both I'd be happy, and probably learn a lot more (except obviously I'm a code weasel, not a rock star).

link|flag
vote up 0 vote down

Software development is not only about programming. It seems you have good attitude toward the subject and asking this question here shows your straight attitude. So, I'll recommend you get some more experience and start looking for satellite options ranging from technical writing, testing, marketing, program management, etc.

This reminds me of Brooks' Surgical Team:

it seems reasonable to have a "good" programmer develop critical system components while the rest of a team provides what is needed at the right time

http://en.wikipedia.org/wiki/The_Mythical_Man-Month#The_Surgical_Team

Good luck

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.