Slashdot Mirror


Programming Education: Selling People a Lie? (blogspot.com)

An anonymous reader writes: It's hard to exist in the tech world today without hearing the constant refrain about learning to code: "it's easy, we desperately need programmers, and everyone should learn how!" UK software developer Mike Hadlow disagrees, strongly. He says, "Formal education for programmers seems not to work very well and yet the majority of those who are successful programmers are mostly self taught. On the one hand we seem to have people who don't need any guided education to give them a successful career; they are perfectly capable of learning their trade from the vast sea of online resources available to anyone who wants to use it. On the other hand we have people who seem unable to learn to code even with years of formal training.

This rather puts the lie to the barriers to entry argument. If the majority of current professional software developers are self taught, how can there be barriers to entry? Anyone with access to the internet can learn to code if they have the aptitude for it. The evidence points to a very obvious conclusion: there are two populations: one that finds programming a relatively painless and indeed enjoyable thing to learn and another that can't learn no matter how good the teaching. The elephant in the room, the thing that Yvette Cooper, the 'year of code' or 'hour of code' people seem unwilling to admit is that programming is a very high aptitude task. It is not one that 'anyone can learn', and it is not easy, or rather it is easy, but only if you have the aptitude for it. The harsh fact is that most people will find it impossible to get to any significant standard."

49 of 397 comments (clear)

  1. Logic versus programming by TWX · · Score: 5, Interesting

    Seems to me that there's a disconnect in the way people think about programming versus thinking about math and logic. Might it make more sense to people to think logically and procedurally, then worry about applying that to a computer? Those skills are useful in life itself and are not limited to even mathematics disciplines, let alone computer programming.

    --
    Do not look into laser with remaining eye.
    1. Re:Logic versus programming by alvinrod · · Score: 2

      Exactly my sentiments. Problem solving skills are important no matter what discipline a person may enter into or as you put it, just generally useful skills for life. If a person's job requires no more thought than that of a mindless drone, odds are that someone can build a robot or a computer to do that job more efficiently.

      Programming isn't the only way to teach those skills to kids, but it is a rather good one and with computing becoming so ubiquitous, odds are that there's some overlap between computing and the interests of most young people which does help with buy in.

    2. Re:Logic versus programming by Anonymous Coward · · Score: 3, Insightful

      You realise that logic teaching of various kinds predates programming by millenia, right?

    3. Re:Logic versus programming by JustOK · · Score: 4, Interesting

      end of one school year, they took a bunch of students to the library. They needed to test the schedule for the following year. Some students became "Rooms", some "Classes" (e.g 6a, 7b etc) and some were teachers. The rooms were positioned, and they started the clock. Teachers went their way, classes came in. Clocked ticked on, with teachers and classes following their schedules and time tables. They looked at mis-assignments, double bookings, "traffic" jams in hallways etc. It was kind of a neat way to look at programming, although they were just testing the results of the scheduling software.

      --
      rewriting history since 2109
    4. Re:Logic versus programming by everett · · Score: 2
      --
      Sig withheld to protect the innocent.
    5. Re:Logic versus programming by WarJolt · · Score: 4, Insightful

      The problem with teaching someone to program is that they tend to miss the part where you have to think about the problem abstractly and structure the problem properly. If you can communicate the problem effectively to other people, then you can find a programmer to code up your idea relatively easily. The aptitude problem comes from the fact that many people think learning to program is the point. Good programmers are able to communicate abstract concepts at a high level, which can't really be taught through just learning to program. Honestly, I think you learn how to program better simply by explaining what you are trying to do in plain English. The actual programming task has almost little educational value.

      Students should come up with a problem they are trying to solve, conceptualize it and then explain it to their coding buddy and if their coding buddy can code it then the student probably understands how to program well.

    6. Re:Logic versus programming by thinkwaitfast · · Score: 2

      There was a discussion on slashdot about this in 1999. Interesting the comment quality between then and now.

    7. Re:Logic versus programming by Anonymous Coward · · Score: 2, Interesting

      I studied logic under philosophy without a computer in sight. It's easy and it teaches you to understand other people's arguments... and how to find the holes in them. Sleigh of hand no longr works. If the wider population understood logic, politicians and ideologues would have a much harder time fooling the electorate.

    8. Re:Logic versus programming by mikael · · Score: 2, Interesting

      The desired solution for any problem is always some kind of plumbing taking into account user inputs, user output, databases, system state and storage. Some people can only solve a problem if they have been taught how to handle those particular "patterns" before. Creative types can come up with a solution using either deductive analysis or by writing code as they go along.

      Some projects just require someone who has read all the web page design textbooks and the patterns are fairly simple to match - create dialog form, send SQL query to database, return results to web page. Others can require intricate programming such as designing an interface unit to connect together two pieces of hardware with proprietary protocols from separate vendors. Then there is no textbook or online tutorial.

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    9. Re:Logic versus programming by Kjella · · Score: 2

      Honestly, I think you learn how to program better simply by explaining what you are trying to do in plain English. The actual programming task has almost little educational value.

      Technically, yes. Practically, no. What you want them to do is come up with an actual method/formula/implementation for doing it, not just the hand-waving. Like the task is to sort a stack of books. The person giving the task might not even understand that there is such a thing as sort algorithms and that the computer needs a very precise set of steps on what to do. He's just got the start and end points, now the stack is unsorted and when it's done it's sorted.

      And that's maybe fine in a business setting, it might not matter or it's an implementation detail left to the developer because in this case it's fairly obvious it can be done. But in many other cases I'm like okay you've defined some inputs and output, but there's no obvious relation between them and you're trying very hard to make that my job to make it work, even if it's way into the business domain where you should explain to me how this should work. I don't think you understand it until you have a computer that refuses to think for you.

      --
      Live today, because you never know what tomorrow brings
    10. Re:Logic versus programming by demonlapin · · Score: 2

      I did CS 101/102 in college in C++. I learned a lot about data structures and the various ways to establish them, move them from one place to another, save and load, etc. What I didn't learn was how to create a Windows (or MacOS, or anything other than text-mode Unix) application that would do what I wanted. Algorithms are an essential and interesting part of computer science, but they are a long way from working applications.

    11. Re: Logic versus programming by swillden · · Score: 2

      Planning is programming. In a way this reflects the post. Some people plan and prepare. They can program.

      I'm lousy at planning, but a pretty decent programmer. I know lots of good programmers who are bad at planning.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    12. Re: Logic versus programming by Anonymous Coward · · Score: 2, Insightful

      > Programming existed for millenia before computers. Planning is programming

      The fact this gets upvoted, is part of the problem. A disconnect from reality.

    13. Re:Logic versus programming by Rei · · Score: 4, Interesting

      I think the whole term "learn programming" leads people to think in the wrong direction. One semester should be enough for a person to learn the "basics of programming". If they can't get the basics down in that time, they're never going to. Most of the time spent on programming education needs to be not on basics or learning languages, but on getting your future-programmers to avoid the giant list of common pitfalls that programmers make in every field of programming. Teach them O(N) notation. Teach them data structures. Teach them of buffer overflow. Teach them of injection. Teach them how and when to optimize and to recognize what optimizations actually help versus just making the code confusing. Teach them to avoid directly overwriting important files, rather to write the data to a temporary and then move it to the ultimate destination to prevent data corruption during crashes. Teach them refactoring. Teach them threading and race conditions. Teach them the importance of server-side checks on data validity rather than just client side. Etc. Basically one should take a survey of people working professionally as programmers and ask them, "What lack of knowledge or bad programming habits have frustrated you the most about any of your coworkers, past or present?" - the most common answers should form the basis of a good programming education, along with whatever teaching about tools and principles that will increase their productivity.

      I really don't have too much to complain about with how my college taught CS, although some things could have been improved. I have more of an issue with some of the maths courses that were required which really had nothing to do with programming except in very specialized fields. I actually got a lot more out of my elective math courses than I did out of my required ones.

      --
      Nothing says 'welcome to the neighborhood' like a gunny sack full of dead squirrels.
    14. Re: Logic versus programming by Demena · · Score: 2

      They are not bad at planning their program and how the code would work or they would not be good programmers would they? Not being able to plan would prohibit being able to structure a program. So, I have some issues with your observation.

    15. Re:Logic versus programming by TheRaven64 · · Score: 4, Interesting

      TFA seems to be completely missing the point. We're not teaching programming because we expect everyone to be a full-time programmer, we're teaching programming because it's an important life skill. Even if they just learn that there are some tasks that can be automated and when to ask a professional programmer to do it (and, ideally, what tasks can't easily be automated) then that's a huge win. If they can do the simple automation tasks themselves, that's even better.

      How often have to seen people in admin jobs spending ages doing something in MS Office that half a dozen lines of VBA could have done in under a second? Eliminating that is the kind of productivity win that we expect to see from teaching everyone a little bit of programming. The argument makes as much sense as saying 'most people won't become novelists, we shouldn't teach English', or 'most people won't become accountants, we shouldn't teach mathematics'.

      --
      I am TheRaven on Soylent News
  2. What a load of CS-degree-holding crap by Anonymous Coward · · Score: 2, Interesting

    "High aptitude task" my ass. Programming these days is assembly line work at the direction of your team lead. It'll be automated away soon enough.

    1. Re:What a load of CS-degree-holding crap by Anonymous Coward · · Score: 2, Insightful

      Maybe if you're developing YAWA (yet another web application) but if you're doing something interesting it is a high aptitude task. Also, having a CS background (I didn't say degree - there is a difference) WILL make you a better programmer because you'll have an understanding of what's going on behind the scenes. Otherwise you're a code monkey who when confronted with a problem that can't be solved by gluing some libraries from codeplex together doesn't know what the fuck to do.

      I mean think about it. How is writing a kernel module or a compiler a low aptitude task? Have you ever tried debugging why your kernel isn't receiving interrupts even though you have an IDT only to discover it's because your GDT hadn't been initialized yet? Have you ever tried to write a tokenizer? Heck, even high level languages like C# and Java allow you to do some cool, weird, things thanks to reflection. Have you ever written a method that copies all the properties of one object to another object using reflection?

      tl;dr; apps are ruining America

    2. Re:What a load of CS-degree-holding crap by gremlinuk · · Score: 2

      In that case, you're doing it wrong.

      Programming is a creative, problem-solving exercise involving predictive thinking and failure mode effects analysis. All of which are 'hard' problems in the AI sphere, so they're not about to be automated any day soon. Also, given that description, there's no wonder your average mouth-breather can't learn to program effectively. Most of them haven't had a creative thought in their entire lifetime. (doubly so for politicians like Yvette Cooper)

  3. It's not entirely a lie by JoelKatz · · Score: 5, Insightful

    Programming education should try to find people who have the aptitude to be good programmers and quickly weed out those who never will.

    1. Re:It's not entirely a lie by hey! · · Score: 4, Insightful

      Well, I don't know whether it's inborn, although if sometimes seems this way. But without taking a position on whether programmers are born or made, there are skills and habits involved with being a good programmer that would be useful to anyone. That said, however, I'm not convinced that these skills and habits are what the programming education movement is teaching. I am convinced that coding isn't the only way to gain those things.

      What a really skillful programmer does that special is transform problems from something it isn't clear how to solve into other problems that are readily solvable. That takes a peculiar mix of discipline and imagination which simply teaching coding per se will not foster.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    2. Re:It's not entirely a lie by ImprovOmega · · Score: 4, Interesting

      Programming education should try to find people who have the aptitude to be good programmers and quickly weed out those who never will.

      I had a professor in college who would actively and zealously apply this principle. His class was the one gateway class in all of the computer science department - if you couldn't pass his class, you couldn't get a CS degree period. When I was an undergraduate I remember his class being a lot of work but surprisingly engaging and with interestingly tricky problems to solve. When I was a graduate student I got to see behind the veil a bit and he explained how those tricky problems would separate out the folks that shouldn't have been in the class in the first place. I always thought that was kind of cool, that he cared about the state of the field that much to not want people who shouldn't have a CS degree to get one.

    3. Re:It's not entirely a lie by thogard · · Score: 2

      The weed out programs worked well when you could drop a class an hour before the final exam but universities decided that wasn't a good idea for some reason so now there is an enormous stress on students to follow their course even if the weed out course said they shouldn't be in that field at all. Oddly enough these changes seemed to have come from the accreditation side of the teaching business yet mecreases the vaule of degrees.

      My take is only about 1 in 100 people will ever understand how the machines work well enough to be great programmers. I want to be able to pick a page out of "The Art of Computer Programming" and have a prospective programmer explain what the page is talking about and why (or why not) the concept mentioned would be used.

  4. ahem by jasno · · Score: 4, Insightful

    Even if you *can* program it doesn't mean you'll actually want to do it.

    Many aspects of programming are boring and tedious. You need someone who can handle the abstract thinking, memorize the various components involved, understand how they fit and how to change them, and then sort through the various administrative steps(version control, bugtracking, communicating with devs/qa/mgmt, etc). Also, many programming jobs are very un-social. I've had times at work where I did't speak to another human for several weeks.

    --

    http://www.masturbateforpeace.com/
  5. Cut the fat. by pushing-robot · · Score: 4, Insightful

    We should get rid of history classes while we're at it... how many kids become historians?

    In fact, let's go back to apprenticeships and work-training. Imagine how quickly we could get working-class children into their lifetime careers of burger-flipping and form-filling and ditch-digging if we remove all the distraction of a 'well-rounded education'...

    --
    How can I believe you when you tell me what I don't want to hear?
  6. Agile/Scrum == hot potato by Anonymous Coward · · Score: 5, Insightful

    In my experience, from numerous Agile/Scrum/Kanban meetings, the concept was sound -- get people together, find out where everyone is at, find what is slowing stuff down, go on.

    However, that works in Japan where there is a level of respect from employers to employees.

    Here in the US, what was, "what did you do, what are you planning to do, and what is in your way" becomes "explain the pathetic amount of stuff you did", "make promises for next meeting", and "point the finger at someone else." The concept of a blocker, for example is used as a way to blamestorm, and ultimately, a way to find who gets shitcanned first.

    As for development in general, find a niche. Mainstream development stuff is offshored, and if by chance it isn't, it is handled by H-1Bs that rotate out after 90 days so they can't get a chance at a green card. Even if you find a dev job, you have to program at least 1000 lines of code a day, or else you will get replaced by someone who will. Bugs? If it builds, ship the damn thing. Security problems? Security has no ROI, worry about it when the lawsuits happen.

    I personally recommend people go law, accounting, or a trade. You cannot offshore a plumber, electrician, or lawyer, and there is no such thing as an unemployed attorney. No, one may not wind up as a senior partner at Ben Dover & C. Howlett Fields... but one can eke out a living.

    1. Re:Agile/Scrum == hot potato by mikael · · Score: 3, Insightful

      Effectively, the person who is getting the least work done is the one to be promoted to management or fired. That leads to an arms race where programmers start working until the late hours of the morning to make sure they are not the one completing the least number of tasks.

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    2. Re:Agile/Scrum == hot potato by Anonymous Coward · · Score: 5, Informative

      REALLY bad advice. Unemployment for law school grads is >15% and climbing fast. 2 out of 3 are not working in the profession of law at all. Meanwhile developers are in huge demand, and no one is offshoring anything interesting.

    3. Re:Agile/Scrum == hot potato by Anonymous Coward · · Score: 2, Insightful

      I personally recommend people go law, accounting, or a trade

      Brilliant idea: let's continue down the road of We Don't Make Anything In America and towards the dead-end town of ServiceEconomyville, which is smack-dab in the middle of Thirdworldistan. By the year 2100 the Chinese will be importing American workers to give them mani-pedis and pick their lettuce, while here in the former United States we'll have underage workers working 18 hour days assembling smartphones for the South Koreans and Vietnamese to buy.

    4. Re:Agile/Scrum == hot potato by delusrexpert · · Score: 2, Interesting

      Agree 100% after nearly 15 years in IT as a professional and many years programming as a child I got out of IT the day the DBA googled the phrase "cartesian join" just after I mentioned it. I'm now a tradie after mentally taking my work home most nights and the personal time required to keep up to date with languages, algorithms, methodologies, different technologies and on and on and on I'm so glad I made the transition.

      I'm so glad that now the only thing I take home are my dirty hands and the skills set that I now require gets better on every job instead of having to spend hours of my own time trying to keep afloat. Recruitment agencies and hr don't understand your code and the IT dept aren't going to review your code and spot the ways you handled the problems you encounter but as a tradie pictures of my work speak for themselves and anyone can understand whats going on.

      I still love to code thou its in me those self-taught will understand.

    5. Re:Agile/Scrum == hot potato by manu144x · · Score: 2

      Look at what happened (and is still happening) with furniture: the value is moved on the creative side, because robots can build all the parts required, assemble it, and ship it to IKEA. If you really need custom furniture, it's the same. A designer can design it in a CAD software, split it up into separate parts, send the file to a factory that will build the parts and ship it to the people who will assemble it. Done. He can reuse designs and just change the sizes, the colors, the software adjusts what needs to, and bam, it's shipped.

      I don't see why this can't be scaled to entire buildings? Yes, once you have the complete CAD of the entire building, and I do mean everything, humans assisted by robots that have the schematics uploaded can do the work of hundreds of men.

      I don't think it's about destroying all jobs, it's just about from a team of 100 people, you keep 10 people that operate/supervise a few robots. I don't think anybody will risk having AI building entire buildings, but saving 90% in salary costs? That's achievable, and there are new and more advances assist-type machines used every day in constructions.

      It's like a guy with 1 jackhammer can do the work of 20 people working with manual hammers. (I don't know the numbers exactly, but it's an example).

    6. Re:Agile/Scrum == hot potato by 605dave · · Score: 4, Interesting

      Sadly I think this is way too true. What are people going to do when robots can build a house or a bridge? Or when everything else turns robotic, like cars. What are people going to do? The reality is that we will have to move to a world without money because no one will be able to make any. Only those at the top will have a source of income, ownership of the automation.

      Reading that last sentence I wonder if Marx wasn't somewhat right. Those that own the means of production are going to end up with all of the power.

      --
      Be kind, for everyone you meet is fighting a difficult battle. - Plato
  7. Geometry by Anonymous Coward · · Score: 5, Interesting

    Back In The Day, I had Geometry in High School. 10th grade.

    I don't know what others Geometry classes looked like, but ours was proofs. All proofs, nothing but proofs. We never did anything with compasses, protractors, straightedges, etc. Just proofs. Day in and day out. First 6 weeks was vocabulary, the rest of the year -- proofs.

    Strangely, at the time, we had Saturday classes -- just the way it worked. I had to go in to Geometry class on Saturday, all of the students did.

    But on those days, the teacher would basically hand out worksheets and we would work problems. These worksheets typically had 3 problems on them.

    I would finish those problems in 2 minutes. Literally, zing, zang, bing, bang, boom. Done.

    For me, proofs in Geometry were trivial. As the year advanced, we simply adde more theorems and axioms to tap in to do the proofs, but the logic -- that was all the same. Since Geometric proofs are all about logic. Damnable, inarguable logic.

    "Teacher, can I leave now?" "No! You must stay here the entire class." he'd shout at me as he was helping some other student. And we all know that student, perhaps it was you. The student who Did Not Get Geometry and proofs. They'd been sitting in that chair the entire year, and, never "grokked" it. All they can do is struggle.

    So, it was no surprise that I took to computer programming like a moth to flame. I get it. I'm good at it.

    And I know there are a lot of people who will not be. I did not know Geometry going in, heck I don't know it now -- it's been so long. But they did not have to teach me Geometry per se, they had to show it too me, show the logical relationships, how it starts, and that was it. After that, just feed me theorems. Operations that I can use.

    I have no problem with children being exposed to programming. That's how you find people like me. But I think, with the ubiquity of it today, when you could program on your cell phone if you were so inclined, the people that will do well and attend those classes, will already know what they need to know before they even go in.

    But it's like the Force. You have it or you don't. Some have it stronger than others, some develop it more easily than others. But if you don't have it, the Force won't be with you. No matter what Master Jedi you train under.

  8. the majority of those who are successful ...... by avandesande · · Score: 2

    Is this even true? Most of the major free software developers have degrees.

    --
    love is just extroverted narcissism
  9. Doctors are no different by paavo512 · · Score: 2

    In the article there are a lot of comparisons to doctors. Like, how you can become a doctor by spending 7 years in a medical school, etc, whereas in programming you do not have a clear path.

    To my mind, this only proves that nobody really questions the qualification of the doctor. The patients are (or considered to be) not qualified to do that, so unless you are very bad, you can carry out a successful doctor career without really mastering the skills. I am sure in no way can all people become good doctors if they spend 7 years in medical schools, and the same applies to programmers. The only difference is that for a computer program it is much easier to see if it works and who is responsible when it doesn't.

    1. Re:Doctors are no different by paavo512 · · Score: 2

      If you fuck up as a doctor, people die.

      Yes, the do. For example, in Switzerland it is estimated that health care errors cause 1,000-plus deaths a year.

  10. Re:One door it does open for the failures: by Opportunist · · Score: 3, Insightful

    Those who can do, those who can't manage?

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  11. Aptitude, Ability and Desire by Archangel+Michael · · Score: 3, Insightful

    Anyone with access to the internet can learn to code if they have the aptitude for it. The evidence points to a very obvious conclusion: there are two populations: one that finds programming a relatively painless and indeed enjoyable thing to learn and another that can't learn no matter how good the teaching.

    I fall somewhere in the middle. I have programmed in languages from Assembly to PHP/Javascript (if you call those languages), so I have the ability to code.. I also know I don't have the aptitude to; I find typing at a keyboard to be very monotonous and am quickly bored. This doesn't mean I don't have desire to code, I just find it boring. I wish I wasn't bored with it.

    However, I have a colleague who loves to code and is quite good at it. However, when he gets stuck he doesn't ask other programmers (I no longer code), he asks me, because I don't see the code, I only see the logic. I've helped him solve a number of problems simply by not being a coder but being a problem solver. I'll let him code the details needed to accomplish the solution.

    That being said, knowing logic is fundamental to solving problems. People with strong logic skills can solve problems. Coding does help you learn how to be logical and solve problems.

    --
    Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
  12. Re:Egalitarianism by careysub · · Score: 4, Informative

    For those of you who are blessed to find this reference utterly mysterious, I hold up for you a case in point of John Roger's insightful comment on Kung Fu Monkey:

    “There are two novels that can change a bookish fourteen-year old’s life: The Lord of the Rings and Atlas Shrugged. One is a childish fantasy that often engenders a lifelong obsession with its unbelievable heroes, leading to an emotionally stunted, socially crippled adulthood, unable to deal with the real world. The other, of course, involves orcs."

    --
    Starships were meant to fly, Hands up and touch the sky - Nicky Minaj
  13. Not all coding requires the same skill set by unimacs · · Score: 2

    The OP claims that most professional programmers are self taught. Certainly a lot are, - maybe even most. However I would bet that there are certain types of projects that are mostly handled by people with formal training.

    I've worked with lots of programmers, both self taught and those with CS degrees. There are certain concepts that the self taught group aren't usually proficient with, - pointer arithmetic being one of them. But a lot of coding can be done without understanding that.

    Programming is like any other skill. Some people have more of an aptitude for it than others. And like any other skill, there is more than one way to learn it. I have no formal training as a plumber but I managed to replace a ton of galvanized pipe in my home with copper about 15 years ago. That said, I don't have near the skill and knowledge a Master Plumber does.

    I had an aptitude for programming. A lot of what I've learned over the years has been self taught. I also have a CS degree. Though I've always been interested in computers, those early programming classes I had back in high school (over 30 years ago) were valuable and I may have chosen a different career had I never had that exposure.

  14. Let's agree to agree and disagree. by cshark · · Score: 2

    He's absolutely right... if you're talking about production floor, practical, every day professional programming skills. But it's fair to note that the majority of self taught programmers do take formal programming courses through the course of their careers, especially if they move from full stack to specializing. As you get older, you end up doing so much formal course work and ongoing education that the line between self taught and formally educated gets very blurry.

    But I digress.

    The problem with statements like this is that we as programmers assume that everyone who learns how to code is going to want to do it professionally. My first language was BASIC on the Vic 20 in 1987. We learned how to write loops, draw vector graphics on the screen, save code to a tape drive, and read bar codes by sight. I was in elementary school with 35 other New York City yeshiva kids, who I happen to know the majority of which are not programmers today.

    For me, it was the logical basis of what has become an extremely gratifying, and often enjoyable career.

    But even if it didn't work out that way, I would still think of the class as beneficial.
    Coding teaches you to walk through problems step by step. It's a skill that's absolutely invaluable in life, and it does go against the grain of what most people consider natural thinking.

    It doesn't really matter if you're trying to teach people to be production engineers or not.
    The skill is incredibly valuable to have. Even if you completely forget the grammars.

    --

    This signature has Super Cow Powers

  15. Re:One door it does open for the failures: by currently_awake · · Score: 2

    Avoid jobs you can do from home, because that means someone from the third world can do it from their home and take your job. The only "Benefit" from teaching programming to the masses is a glut of workers to drive down wages and benefits.

  16. CS Education by prefec2 · · Score: 2

    He is right in one thing. Programming is not easy. It is easy for programmers. However, it requires a specific mind set which includes to be able to deconstruct problems. You cannot really teach this at university. And you need to be able to tolerate frustration which is required to get an CS degree, at least at all universities I have been. And to some extend you can train that.

    However, CS education does help people to become better or even good programmers if they have the right mind set. And CS is not only programming it is also about inquiring customers, deriving requirements, features, planning, software design, combined with topics like continuous integration and delivery, software evolution, product lines, version control, documentation (real documentation not the shit most people write which contains the same information as the code) etc.
    And you should understand the application domains you code for.

  17. Re:Majority of successful programmers uneducated? by Anonymous Coward · · Score: 2, Interesting

    I've met people like you before. I have found those like you lack severely in one area (probably some of you don't)

    I left work one day and came in the next day to find a bunch of guys, like you, still at work from the night before. They were excited because they came up with a speed up for their software. They implemented a rebalancing binary tree, but invented it themselves on the fly (Years ago before there were a lot of libraries that did this). They were so excited and explained it to me in great detail, what they did was very close to an red-black binary tree.

    Had I been there and they told me what they needed to do, I would have told them to look up red-black binary trees. They would have been done by 10 PM and gone home. Instead they spent the entire night "inventing" it and debugging all the issues involved.

    Obviously pretty smart, hard working, and everything else good you can say, but not efficient. If they had taken typical CS classes they would have known it existed already and just copied the algo. Other than not knowing some of which basic things were possible they always spent a lot of time redoing stuff they didn't need to.

    Probably wouldn't happen nearly as often today with all the libraries being used all the time.

  18. Degree vs self-taught is a bogus comparison by perpenso · · Score: 3, Interesting

    Also, having a CS background (I didn't say degree - there is a difference) WILL make you a better programmer because you'll have an understanding of what's going on behind the scenes.

    And often a greater breadth of knowledge. One of the advantages of a formal CS program is that one will most likely take classes in topics a student has no interest in. Yet those topics may be important or yield info that unexpectedly solves problem in other areas/topics. Many self taught tend to skip a topic or two and have gaps in their knowledge.

    That said, in a formal CS program there are two obvious groups. Those who are there because they have a genuine interest in coding and the problem solving it involves, and then there are those who are there because someone told them it is a good career path. While both can graduate, the former (genuine interest) tend to be far better programmers. They will learn something, or more importantly do something, just for their own curiosity. Things unrelated to class assignments, and they learn more and become more proficient.

    So the whole degree vs self-taught is sort of a bogus comparison. Many top programmers are both, degree and self-taught are not mutually exclusive.

  19. The title is lying by zJe · · Score: 4, Informative

    So the blogger uses 2 polls in his article, one his own twitter poll of 101 responses, hardly meaningful. The other is a the 2015 Stack Overflow developers survey, that survey had 21,314 respondents for the education question which is certainly better than 101. He uses the graph for education to backup his statements which has the following data:

    41.8% I'm self-taught
    37.7% Bachelor of Science in Computer Science (or related field)
    36.7% On-the-job training
    18.4% Masters degree in Computer Science (or related field)
    17.8% Online class
    16.7% Some university coursework in computer science (or related field) but no degree
    6.1% Industry certification program
    4.3% Other
    3.5% Intensive code "boot-camp" or night school
    2.2% PhD in Computer Science (or related field)
    1.0% Mentorship program

    He then goes on to say "Only a third have a computer science or related degree and nearly 42%, the largest group, are self taught."

    Turns out the percentages add up to 186.2%, the horror, some people had more than one source of education or they lied about their education. Now it's probably safe to assume that if the poll respondent had a PHD they didn't also claim a Bachelor and Masters degrees, that would mean that 58.3% of the poll have a computer science or related degree. If you include the response of some university course work it turns out that 75% of the respondents had some level of university training. It would seem that according to Mr. Hadlow's sources that university training is important.

    Perhaps Mr. Hadlow should head back to university, his math and logic skills need refreshing.

  20. Love... by The+Code+Hog · · Score: 3, Insightful

    As I've gotten older (started BASIC with a Timex/Sinclair XZ81, do NoSQL engine design for a living now), I've come to believe that the population split is true; there is a segment that has the aptitude to code, and the rest who don't.

    The easiest way to see this aptitidue is to look and see whether someone loves to code. Just loves it. Works late because they have their teeth into a problem, holds incredibly complex systems in their head comfortably, etc. LOVES to code. Who feels, to paraphrase The Wind in the Willows: "There is nothing-- absolutely nothing-- half so much worth doing as simply messing about in code."

    You rarely find crappy software folks who enjoy puttering about in the code. You often find crappy devs who got into it for the high salary.

    --
    -- "Vote Democrat. Because the current crop of conservatives are just bugnut crazy."
  21. Re:Majority of successful programmers uneducated? by cshark · · Score: 2

    Red and black binary trees are fucking awesome!

    Now, to be fair, I'm not entirely self taught anymore... if I ever was.

    I've spent the better part of a decade and a half taking formal classes and working with mentors. I've even gone out of my way to work at companies where famous and semi-famous programmers work, in an effort to meet them and suck the wisdom out of their brains with a straw. By the way, if you're interested, that doesn't usually go over well. But most of the time, they're gracious enough to answer your questions.

    Can't stress how important it is to find mentors in this trade.
    The old crazy gray haired guys that have done things like contributing to the unix kernel, or invented on-demand tv, or the internet.

    You can probably get there on your own, but mentors will challenge and annoy you.
    If you're not challenged and annoyed, you're not learning anything at all.

    --

    This signature has Super Cow Powers

  22. I teach students who need, but don't like like it by umafuckit · · Score: 2

    I'm in a weird situation: I teach programming to people who need it but wish they didn't. They're PhD students from life and social sciences. They nowadays have so much data that they need to program, but most of them don't really want to. They find it hard and it takes up too much of their time. The biggest mistakes I find is that their code is terribly organized. They don't plan ahead, they don't break down the problem, they don't think about code re-use, they seem to fight the process of coding rather than learn it. It's as though they don't understand what it's for (even though they have access to a lot of good example code. They seem to ignore it). They're making progress, but it's slow. Learning the language isn't their biggest problem: learning how to use it is.