vote up -2 vote down star

What do programmers do?

Do they

(1) Solve a problem, memorize the solution and when they face similar problems they do the coding from their memory(i.e. writes codes newly from previous experience but do not do any copy paste)?

and/or,

(2) Solve a problem, keep the solution/source code in their laptops/mobile disks, and when they face similar problems they open their previous source code and solve the problem by copying and pasting (or at least by doing a comparative study)?

and/or,

(3) make small utility code-snippets as their career progresses, keep the solution/source code in their laptops/mobile disks, and copy-paste those code-snippets whenever they need to solve similar problems?

and/or,

(4) make personal libraries/frameworks and continue to enhance the library/framework as their career progresses, keep the solution/source code in their laptops/mobile disks, and Whenever they face a similar problem, they add a reference to their library/framework and solve the problem?

What you do personally?

flag
If you like this question please vote to reopen it. And kick in the a... of those who voted for closing this post. – JMSA Aug 24 at 18:24
1  
They come to stack overflow. – MattC Aug 24 at 18:25
Really? That is the way you plan to justify reopening? A kick in the a... If you can show how this is not a purely subjective question with no one "right" objective answer thenI'll vote to reopen. Also please explain how the goal of the question is not to generate substantial discussion without any real answer coming out of it. – EBGreen Aug 24 at 18:27
1  
I am a student and just wanting to learn something from you and you just did it by closing this post. – JMSA Aug 24 at 18:30
Now I got a new problem. Somebody is down voting. – JMSA Aug 24 at 19:07
show 2 more comments

closed as not a real question by EBGreen, Thomas Owens, Chris Bunch, Burkhard, Brian Rasmussen Aug 24 at 18:19

3 Answers

vote up 4 vote down check

I'd say : a bit of all your propositions, actually ;-)

1: memorize full solution

For some small problems, like "which combinaison of built-in functions could I use to solve problem X", this is perfectly fine : you don't have to learn it yourself, you just remember it, because you spent lots of time on that problem the first time.

If you forget... Well, either you'll know you did it in another project, or it's because it wasn't that important after all.


2: keep a source and copy-paste

For longer source-code portions, that can help too ; what I generally do is think "oh, I did this on anothyer project, let's reuse that code".

And if this happens quite a few time, I might add it to some snippets-repository ;-)


3: create and use snippets

See previous point ;-)


4: make frameworks / libraries ; enhance it

For really usefull classes you know you will reuse on many projects, why not.

Still, when it comes to problems that occur in many projects, it is most likely that other programmers have encountered those problems before... And quite often, there will be a couple of libraries available on the net you can re-use ;-)

And, if necessary, you can go a bit further, and contribute to those libraries ;-)

link|flag
vote up 0 vote down

Unfortunately, there is a whole new class of 'programmers' now a day who just google for some keywords, and copy/paste the code as-is from a website.

link|flag
Do you do that? – JMSA Aug 24 at 18:18
4  
Even good coders do that sometimes. The difference is people doing that and not understanding what they are doing. – maxpower47 Aug 24 at 18:20
There's nothing wrong with that, assuming that you are actually copying the correct thing, and you are allowed to do that. Or is it better to waste time reinventing the wheel? Once I had to draw a bezier. I could either punch the Schneider Eberly or copy and paste from any code using a bezier curve. Guess which one I did ? – Stefano Borini Aug 24 at 18:21
1  
@maxpower47 : and those developpers are sometimes bringing doom on your project : as they don't undertstand (or don't try to understand) the code they copy-paste, they don't see the implications it can have ; for performances, for instance -- I've seen a website go down seconds after it went live, because of that :-D – Pascal MARTIN Aug 24 at 18:24
yes...copying code is not a problem. My point was that they always do it and don't seem to be able to create the simplest of algorithms anymore. – reinier Aug 24 at 18:41
vote up 0 vote down

A little of everything, for me at least. Some things I know off the top of my head because I've done it so much, some things I keep copies of for reference, some things I keep links to websites or articles that tell me what I need. I've also created small libraries for my own use at different jobs, mostly containing stuff that only pertains to that particular job. You do whatever works for you.

link|flag

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