How to get good fast?
here is something else that may help too.
Find a workflow strategy that suits you, and keep refining it.
I believe this happens naturally anyway, wether you are/become aware of it or not. but if you keep it in mind, it could accelerate the process that leads to "getting good fast(er)". Then work on developing other strategies.
Godmil's remarks above are of interest to me here:
"Make lots of mistakes and persevere in fixing them. You'll learn more from fixing mistakes than doing anything else."
In this sense, getting better at programming faster, means always trying to make less and less mistakes each time you program and about
fixing the ones you do make asap. And you may get better faster by applying a strategy that will enable you to fix mistakes as they happen and especially if you are able
to do it by yourself(i.e. with your own thinking routine/cognitive skills).
So, its a cognitive thing too ( a way of thinking): honing your problem solving skills to find and fix mistakes more quickly. has anyone ever been good enough
never to make mistakes? Not that I know of yet. But you can get good so you make fewer, and/or fix the mistakes fast.
I believe every "successful" programmer has their own personal workflow routine that works, wether they are aware of it or not. I
also believe that a programmer can benefit from being aware of their personal strategy and honing it. Then developing/adapting/adopting
others in a flexible fashion. For me its part of what attracts me to developing/programming. As an example here's a summary of one of my
general strategies:
while(developing software)
{
research (a little)
code(a little)
test(a little)
}
It tends to kepp things fresh and interesting. I have to say this process describes my optimum goals, and is as flexible as I judge it to be for the project. For example, research(a little) may turn out to be research(a lot) if I'm programming in a new domain that requires more knowledge I'm less familiar with or
research(just about nothing) if it is a problem I have dealt with many times before.
code(alittle) and test(alittle): these tend to be not so flexible and depends on my confidence in the new code I write. The term (alittle) represents an arbitrary amount that depends on my confidence level in my ablility to obtain the desired result quickly with minimal testing( there is a bit risk mangement involved).
This is a very important strategy. The potential for errors increases, as the amount of code I write increases. I don't think this point can be emphasised enough, especially for beginners. Maybe some experienced programmers here appreciate my point here: especially those of us that have attempted to help a beginner who may invariably post a bit of code or mountains of code desperately asking for help to debug it because they have "lost thier way" after hours or even days of trying to fix it! I can't help thinking such a beginner is not moving in the right direction, and its not just debugging skills that is needed, but a thinking strategy...
.
Anyhow, while coding a little and then testing a little, and an error occurs, I can be pretty confident I'm very close to the context/source of
that error (i.e. it's usually related to the code added after the last successful test [obviously?]).
There are pros and cons about this strategy that are interesting in thier own right that would be great to discuss(bit nerdy maybe?): but this post seems a bit too long as it is (I don't usually post much), and it might be going a bit off topic? But results of this strategy have proven successful time and time again.
This is by no means the only or best strategy, others may have just as valid, or better strategies that work depending on the nature of the project and the individuals preferences/ability to adapt to that nature in a timely fashion. I use this kind of strategy to pick up/refresh a new (language/ platform/ technolgy) when required for a project that may come along. That is to say, it's useful even if you are an experienced programmer learning something new.
I think that there is a lot more that could be said for developing debugging skills(i.e. mistake management). It still seems to be a critical bottleneck even for some
experienced programmers. I don't know if the OP would mind hearing about other programmer's personal strategies like this. I wouldn't mind.
Or perhaps a thread with a more specific heading could be more appropriate for it.
So to sum up: As you spend time developing you will develop a routine (or workflow strategy) consciously or not, and becoming more aware of it and even directing it could help you become good fast. what do others think?
ps: I like to think I have become good, but sometimes I wish someone told me something like this along time ago, because I'm thinking it just might have made me "good faster". I don't really know.
Cheers