Can Anyone Become a Programmer?
another random user writes "A Q&A on Ars Technica asks about an old adage that many programmers stick to: 'It takes a certain type of mind to learn programming, and not everyone can do it.' Users at Stack Exchange are wading in with their answers, but what do Slashdot users think?"
No
Some people do not have the logical thinking skills that are required to be a successful programmer.
I've had this conversation in many different formats over the years, and I keep coming back to the peculiar nature of programming, or at least good programming. There is no doubt that technical background or training is highly desirable, but there is also an intuitive aspect that makes it more than just fitting blocks together. Given the right tools, I think anyone can code, but programming beyond basic HTML form processing or Excel macros takes something more.
The world's burning. Moped Jesus spotted on I50. Details at 11.
With simplified programming languages like Java, that take care of the "hard stuff", anyone can string together some code and do tasks.
It's just like anything else that can be learned. Everyone can do it, but few people can do it well.
Programming (a.k.a. Coding) has many levels, but yes, most people are able to handle the logic necessary and can acquire the skills in time.
Development is another level which many programmers either don't attain or are not willing to go to, but it is a step that makes a big difference in the code produced.
Unfortunately, the terms seem to be used interchangeably, thus diluting the developer's value and putting expectations on programmers that they cannot live up to.
If you don't enjoy something, then usually you don't have motivation to learn and perfect the art. Perhaps anyone can be a satisfactory opera singer with enough training, but that doesn't mean they WANT to be an opera singer.
It's also true some pick up on programming and learning new languages faster. While anybody can probably learn with enough practice, it may not make economic sense to you and the company to take a long time to get into the flow of things. Possible, yes. Practical, no.
Table-ized A.I.
the only answers you will find in this thread will answer a different question:
"what prejudicial preconceptions of yours about the field of programming tweaks your ego?"
intellectual property law is philosophically incoherent. it is your moral duty to ignore it or sabotage it
I think it requires a certain level of intelligence as a minimum. Nothing incredibly special but above average and an interest in learning how to control that box. Interest can drive aptitude. But a low IQ is going to hamper working in, say, C. Object-oriented and the workings of inheritance in C++ are going to be hard to work with if you're plain dumb.
Documentation for libraries is not infrequently poor or even wrong and there seems to be some tacit assumption that programmers will work out how things work anyway, even if that just means knowing where to get help.
And it depends what you call "programming". If that includes designing solutions to complex or novel (hence no off-the-shelf libraries) solutions, then you have to design complex algorithms, which requires creativity. You need to be able to evaluate and select the right solution, too, something even very smart programmers get wrong.
I think a distinction should be made between a programmer and a *good* programmer. My CS program had a number of *really* smart kids - 1600 SAT scores and the like - but many of them really struggled at the concepts and barely made it through the curriculum. I think a good programmer takes 1. Creativity to think about problems from different angles 2. Drive to hunker down and get through hard problems (be it starting a new language, that pesky compile error, starting a large project from scratch). 3. I'm sure fellow slashdotters can think of many more
Your whole post left my mouth agape. The standpoint that you are coming from, all programming can be simplified into dragging and dropping visual widgets and throwing in a bit of high-level platform code to tie it all together. If that is your view of what programming is, no wonder you think it isn't special. You aren't always programming on Windows. You don't always have desktop-sized amounts of memory. Sometimes YOU need to write one of those libraries that are NOT "already coded".
And no, an astronaut doesn't just "drive the shuttle"
"When life gives you lemons, don't make lemonade. Make life take the lemons back!" -- Cave Johnson
Your whole post left my mouth agape.
It's called "trolling"...
No sig today...
Anyone can become a programmer, just like anyone can become a painter.
It does not mean that the person would be a good programmer though. I could be an artists, but I would not be a good painter if my life dependent on it.
Your whole post left my mouth agape. The standpoint that you are coming from, all programming can be simplified into dragging and dropping visual widgets and throwing in a bit of high-level platform code to tie it all together. If that is your view of what programming is, no wonder you think it isn't special. You aren't always programming on Windows. You don't always have desktop-sized amounts of memory. Sometimes YOU need to write one of those libraries that are NOT "already coded". And no, an astronaut doesn't just "drive the shuttle"
You have to keep in mind, the post seems to have come from a designer. It just sounds like a lot of sour grapes to me.
Just like anybody can learn to draw. Or to swim.
But that doesn't mean anybody can be the next John Carmack, Leonardo Da Vinci, or Michael Phelps.
Even if we reduce it to the nonphysical work and remove the naturally talented aspect, there is the simple matter of time and drive -- which few people have.
Well, you hit the nail of the problem right on the head. We have met the enemy, and it is you and people like you. The fact that you make this statement shows that you are one of the 80+ percent in the industry that don't belong who are destroying the software ecosystem and making garbage software the norm.
You should have just put an end to your post after the first question, since you clearly don't know the answer.
And there it is. The winning answer in this round of Final Stupidity. The fact that you don't think that designing everything from internal data structures to quality unit tests for your code shows how much you truly have no idea what you are talking about. Abraham Lincoln could have told you that tis' better to remain silent and be thought a fool than to speak and remove all doubt.
Guns don't kill people; Physics kills people! - John Lithgow as Dick Solomon on Third Rock From The Sun
Almost anyone can grasp algebra 1. The way you make them "get it" is to quit handing out medals just for showing up to class and reintroduce some competition for high grades among students. Kids need to do homework (AKA practice) just like any other endeavor. Right now, in schools, there is no consequence for doing poorly. You'll get passed to the next grade level whether you've mastered the current one or not. Teacher and parents keep patting you on the back just for showing up.
I estimate that maybe 80% of my adult patients born after 1975 are on some form of antidepressant drug. I'm starting to think that they were that early/first generation of kids whose self-esteem was made the prime importance in school, rather than learning and achievement. They finish school and get thrown out into the real world where they are expected to perform to some minimum standards and they can't do it and can't understand why, especially in light of the history of being patted on the back for underachievement. The next step is to get prescribed an antidepressant to help their bruised self-esteem cope with the fact that they never learned anything in school and are likely to remain unemployable for the rest of their lives.
But not everyone is going to be a good programmer. I think the 80/20 rule applies here too. 80% of programmers can program, 20% can do it efficiently.
I see examples of bad programming all the time (or you can just read thedailywtf.com) and currently it doesn't matter all that much whether you spend 100,000 extra cycles in a loop. But we're heading once again to a level where efficient programming is going to become more important (low-end, cheap devices like Arduino and Raspberry for the consumer-end and high-end multi-processor systems like GPGPU and shared clusters on a pay-per-cycle on the other end).
In a GPGPU scientific environment (where I work) shaving 10ms off a single looped calculation can easily end up giving you a result 7 days faster. Finding out that a buffer gets flushed every 64-bytes or every 100 microseconds and understanding why filling up a buffer with 0's (and how to do it efficiently) is faster than waiting for a timer to expire is real programmer's work but none of the documentation or even advanced classes on the subjects don't explain such things.
Custom electronics and digital signage for your business: www.evcircuits.com
Computer science is, practically by definition, a subset of math. But there are many branches of mathematics out there, and being great at one doesn't necessarily mean a person is great at all of them.
Also, just because someone happens to be a great computer scientist doesn't mean they must also be a great programmer.
Happy people make bad consumers.
I agree. Everyone can learn to write basic programs. That isn't to say that everyone can become a good programmer.
I think it requires a certain level of intelligence as a minimum. Nothing incredibly special but above average
There you have it. You think being able to program makes you special in some way or indicates that you're above average.
Here's the truth: Any idiot can write code. Hell, half of Slashdot taught themselves to program when they were between the ages of 8-13.
All it takes is the will to learn something new. It's no different than learning to work on cars. Do you think auto-mechanics have these same discussions? No. They're more emotionally stable, apparently, than the average developer.
Yeah, just about anyone can learn to write computer programs. Just like every who has ever learned to write code, they'll get better and better as they gain experience
Being able to write computer programs does not make you special. Get over yourself.
Required reading for internet skeptics
Anyone can draw, most people can draw pictures, the really good ones make art.
Nearly anyone can be taught to code. Most of the coders can make programs to solve problems, but a few of them can make software.
A lot of the skills are similar to art, a lot of touchy feely stuff learned thru skill and practice. We can learn the skills but it takes real practice to be good at it.
If something is so important that you feel the need to post it on the internet... It probably isn't that important.
Oh for heaven's sake. If you aren't a computer scientist (and the above statement demonstrates that you are not), don't make assertions about computer science. And if you aren't a mathematician, don't make assertions about math. "Math is continuous?" That's about as meaningful as saying "pink is ten." What you are talking about is a difference in notation. Look up lambda calculus on wikipedia, and get back to us when you've cleaned up the brain cells that dribbled out your ears when your brain exploded. Don't even get me started on type theory...
Programming is like cooking.
When your oven starts emitting cryptic messages because you put the spatula back in the wrong drawer, I might agree.
Moving to programming from cooking is a far vaster bridge than just "interest".
Now a car mechanic on the other hand, is used to dealing with the kind of malign electronic entities programmers face often.
Perhaps that in the end is the real reason we see so few women programmers, they are not as willing to fight virtual evils just for the sake of victory when complete.
"There is more worth loving than we have strength to love." - Brian Jay Stanley
Creating an algorithm for a specific outcome is not like drooling on a rocket scientist, but describes cooking and programming.
Cooks are FOLLOWING the algorithm. Most cooks are in fact computers, not programmers.
Chiefs and programmers yes create algorithms to follow. But how many people create dishes from scratch often?
"There is more worth loving than we have strength to love." - Brian Jay Stanley
I think it requires a certain level of intelligence as a minimum. Nothing incredibly special but above average
There you have it. You think being able to program makes you special in some way or indicates that you're above average.
Here's the truth: Any idiot can write code. Hell, half of Slashdot taught themselves to program when they were between the ages of 8-13.
All it takes is the will to learn something new. It's no different than learning to work on cars. Do you think auto-mechanics have these same discussions? No. They're more emotionally stable, apparently, than the average developer.
Yeah, just about anyone can learn to write computer programs. Just like every who has ever learned to write code, they'll get better and better as they gain experience
Being able to write computer programs does not make you special. Get over yourself.
I think the problem is that people are trying to answer the question with a "one size fits all" approach to answering the question. Sure anybody who can make toast can program. But not everybody can make a toaster.
What I mean by that is you mentioned that the average joe mechanics don't have these conversations, but you have to consider that the average mechanic is not making the advancements or creating the car from pouring casts and machining the parts. They're assembling or disassembling. There is creativity in finding a problem with a car before taking the whole thing apart but otherwise it's fairly laid out.
Programmers, the big daddy programmers are special and unique. Just like the engineers who created a ferrari or any other major achievement. Any body can program, but not everybody has the patience, confidence or desire to take on massive tasks by themselves.
I have programmed for many years and I have never found a good workflow of working with a large team of developers to create a specific product. So far what I have seen is one or two highly motivated individuals to create the bulk of the product and the rest become break/fix contributors or continuing development after the product is well underway.
It's just what I have seen. And those examples could make me an exception not the rule but that's what I've seen.
Were projects like MySQL or PostgreSQL initially effects of one or two highly motivated and focused individuals? I know that unix was and about evey project I have ever seen at the early stages.
Being that these efforts are largely surrounded by individual contributors I think it enables these individual's to feel special and different. And to be honesty, anyone who takes on these massive feats and succeeds is unique and different. The rest are "programmers".
Programmers, the big daddy programmers are special and unique. Just like the engineers who created a ferrari or any other major achievement.
No, they're not. They are not special and unique.
Skill comes from experience -- it's as simple as that. The engineers who created a Ferrari? They're not special either -- engineering is a learned skill that, yes, anyone can learn. Grab the average auto mechanic and plop them in to a university engineering program and you'll have a competent engineer in a few years. A decade or so or work after that, and you'll have a great engineer. Some will be better than others, sure, but it's not a matter of intelligence -- it's a matter of dedication.
No one is born with a natural ability to write code or design car engines.
Programming itself doesn't require anything special. Designing does.
Guess what else is a learned skill? Design! Even better, it's a skill that can be taught! It doesn't take anything special -- just some education and experience.
Required reading for internet skeptics
There you have it. You think being able to program makes you special in some way or indicates that you're above average.
Think of everyone you knew from high school. Now imagine each one of them piloting an airplane you are a passenger in. Not everyone is cut out for every job. Some jobs do require the right person to do the job correctly.
And if you think any idiot can write code you clearly haven't ever been given the task of maintaining some other idiot's code base before. If you really think anyone can do the job I recommend you peruse this site some.
Unlike brain surgery, you can be self taught and be good at programming. But just like brain surgery not everyone should be doing it.
Weaselmancer
rediculous.
You can put anyone through music school but they aren't going to necessarily come out as a Mozart.
No, they won't. They will, however, be a competent and skilled musician.
The problem with developers who think themselves exceptional because they can program is that they all fancy themselves a Mozart.
Required reading for internet skeptics
I've got no problem in saying I have no musical talent. I learnt the saxophone for 3 years when at school. By the end, I was still worse than most people after their first year, and I was never going to get very good at it.
Why would this be different with coding?
I think it requires a certain level of intelligence as a minimum. Nothing incredibly special but above average and an interest in learning how to control that box. Interest can drive aptitude. But a low IQ is going to hamper working in, say, C. Object-oriented and the workings of inheritance in C++ are going to be hard to work with if you're plain dumb.
Documentation for libraries is not infrequently poor or even wrong and there seems to be some tacit assumption that programmers will work out how things work anyway, even if that just means knowing where to get help.
And it depends what you call "programming". If that includes designing solutions to complex or novel (hence no off-the-shelf libraries) solutions, then you have to design complex algorithms, which requires creativity. You need to be able to evaluate and select the right solution, too, something even very smart programmers get wrong.
AFAIK every professional, in every field I know, says almost the exact same thing, and you know what? The ones who say it are usually insecure about something. Anyone can learn. You did get one thing right, it takes interest, but more importantly it takes motivation (necessity) and inspiration. Unless there is something genetically or mentally wrong with you due to trauma, anyone can learn anything and apply it. We as a species are innately creative. It's why we made tools and developed technology as a species. Now, some people have genetic dispositions for learning things like syntax, morphology, and may even have strong mathematical skills. Awesome for them! They will learn things like programming, foreign languages, music theory, physics and chemistry quicker than others and may be able to develop improvisations quicker to address challenges when applying what is known, but as long as there are no issues with brain function, yes, anyone can learn whatever they want, even programming. Whether they will be able to turn it into a vocation is an entirely different issue unrelated to learning having more to do with the speed of applying what was learned relative to competitors in a market.
No one is born with a natural ability to write code or design car engines.
No, but a great many people have a natural inability. In the case of car engines, the resulting products will never hit the road. In the case of programs, they do, as we all witness every day.
Programming skill isn't the same as an ability to string small pieces of code together, any more than writing skill is the ability to touch type. It takes both perception andperspiration to be a decent programmer or decent author. Having an English literature grade may be useful, but it doesn't impart the ability to captivate your audience with your words. And taking programming classes won't hurt, but also won't make you come up with new elegant and efficient algorithms.
At best, you can become a codemonkey, who is to programming as an assembly man is to an engineer, or a typist is to an author.
Disclaimer: I am a senior sysadmin. I deal with both programmers and codemonkeys on a daily basis. In my long experience, there are hard-working and otherwise smart individuals who will never produce good code, and there are naturals who could, but are too lazy or careless. And there are a few who both have the ability and the drive to do so. Those are programmers, and I respect their profession.
They will, however, be a competent and skilled musician.
No, they won't. Some people just don't have rhythm, or can't even tell when something is "in tune".
I think you have spent too much time around talented and driven people to realise how many people there are out there that just wouldn't be able to handle writing anything more than a trivial piece of software.
Programmers aren't "special" as in "better than others", but they are "different" in the same way that a lot of engineers are. More likely to be on the autistic spectrum for a start, which generally means they are more logical, focused and able to solve problems systematically.
which is totally what she said
You didn't want to learn it and you never applied yourself to learning it. It's hardly surprising that you then didn't learn it.
[FUCK BETA]
Why would this be different with coding?
Quite so. This kind of comment seems to be missing from the thread.
Being good at programming does make you special in as much as you can sell that skill for money, and the better you are the more you can sell it for.
I don't think there's much wrong with many slashdot residents claiming to be skilled at programming. It is a tech forum after all.
I claim to be skilled at programming. There's nothing wrong with that and without arrogance I am happy claiming that most people (not most programmers) simply won't be as good as me because I have a natural aptitude and a natural drive which makes putting in the requisite 10,000 hours pretty much effortless.
But that's OK. I would bet that almost everyone is better than average at something.
I'm a terrible musician. I'm a terrible writer---I could never write a novel. I would suck as a politician. I can't dance. I would be a terrible administrator, organiser or logistics kind of person. I could never teach school below 16 and even then only good, motivated students, without flipping out or giving up. I probably could run a marathon if I trained, but I would never be good at it. I suck at chess despite a fair amount of playing. I'm a poor actor. I'm bad with kids.
I can never be good at any of those things above. I lack the innate talent and I lack the ability to make myself work at them enough.
I don't claim this makes me better than other people (except of course at programming) because clearly programming isn't the be-all and end-all of things.
So, I think that almost anyone could learn to assemble a few statements of code together. But programming is more than that, and I don't think many people could be programmers, much like most people can't be artists even though splatting down paint from a brush is trivial.
SJW n. One who posts facts.
I played saxophone in the band for 6 years. I have no special musical ability. I played alto sax with the regular band and tenor sax with the jazz ensemble. I was much better at the "jazz" than the regular band music. The difference was that I really enjoyed the jazz ensemble's music selection and I practiced it a couple hours a day, much to the dismay of my neighbors. If you find an interest and practice you can be okay. If someone has an interest in coding/programming they can practice and be okay even if minimally talented.
I only look human.
My mother is a halfling and my dad is an ogre, so that makes me an Ogreling