Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×
Programming Education

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

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."

This discussion has been archived. No new comments can be posted.

Programming Education: Selling People a Lie?

Comments Filter:
  • by TWX ( 665546 ) on Friday December 04, 2015 @06:34PM (#51059987)
    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.
    • I agree logic and programming are two separate disciplines but I wonder how one would go about teaching logic outside the confines of programming without getting even more abstract and discouraging the student.
      • Re: (Score:3, Insightful)

        by Anonymous Coward

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

        • Sure and how would that teaching be applied in a fashion that doesn't discourage people wanting to learn programming, which was the thrust of my question.
          • by Rei ( 128717 ) on Saturday December 05, 2015 @04:02AM (#51061939) Homepage

            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.

      • by JustOK ( 667959 ) on Friday December 04, 2015 @06:51PM (#51060105) Journal
        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.
      • There was a discussion on slashdot [slashdot.org] about this in 1999. Interesting the comment quality between then and now.
      • Re: (Score:2, Interesting)

        by Anonymous Coward
        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.
      • by rtb61 ( 674572 )
        The problem with programming is the lack of logic, that internal logic purely being bound to the creators of the programming laguage and differing from language to language. Biggest problem I with generating solutions was when presented with a problem I would come up with a range of solutions and unfortunately try to implement more than one style of solution at a time, making it real difficult to find the fault, as each part should work but of course just not together. No unifying structure and logics, like
    • 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 comput
    • Might it make more sense to people to think logically and procedurally, then worry about applying that to a computer?

      By the time they are in school its been drilled in this is totally unnecessary for everyday life and is likely to make you unpopular. That seems to be a fairly large chunk of this issue, as well as a host of issues in later life, when large scale and coherent rational thought escapes people.

    • by WarJolt ( 990309 ) on Friday December 04, 2015 @07:01PM (#51060205)

      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.

      • by Kjella ( 173770 )

        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, i

      • 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.
    • Re: (Score:3, Interesting)

      by mikael ( 484 )

      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 di

    • Back in the last century, as an undergraduate who didn't take a programming course (and had never programmed) until after completing all of the coursework for a math major, I found programming to be like doing math proofs.
    • by TheRaven64 ( 641858 ) on Saturday December 05, 2015 @06:25AM (#51062095) Journal

      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'.

  • by Anonymous Coward

    "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.

    • Re: (Score:2, Insightful)

      by Anonymous Coward

      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 i

      • by perpenso ( 1613749 ) on Friday December 04, 2015 @08:02PM (#51060579)

        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.

    • 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)

    • they have an app for your comment.

      MBA PHB app: if I don't understand it, it must be easy & take no time.

      what's your degree in ? and how long after you started working in that field did you realize you barely knew enough to start and had a lot more to learn ?
      What age did you think you were a master at your craft ?
      Are people still paying extra for the experience & wisdom of a master? or has offshoring/Walmart/H1B visa reached your field.

      I was an IT worker & a master at my specialty. I have switc

    • by gweihir ( 88907 )

      For all the bad coders do: Yes. There are a few that actually solve difficult tasks that need solving. For example cleaning up the security mess these bad coders routinely create or actually do things that need to be fast and reliable. That will not be automated anytime soon.

  • by JoelKatz ( 46478 ) on Friday December 04, 2015 @06:36PM (#51060003)

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

    • This would be more like a music program at a conservatory.
    • by hey! ( 33014 ) on Friday December 04, 2015 @06:55PM (#51060151) Homepage Journal

      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.

      • Re: (Score:2, Insightful)

        by AmiMoJo ( 196126 )

        Almost anyone can become a competent programmer. They need the right teaching and opportunity, but it's definitely something that can be learned.

        A lot of complex programming tasks are less about software engineering and more about knowledge of the application. Business knowledge, systems knowledge, that sort of thing. Stuff that can be learned.

        The ability to learn is the real key to it.

        • by hey! ( 33014 )

          Almost anyone can become a competent programmer. They need the right teaching and opportunity, but it's definitely something that can be learned.

          A lot of complex programming tasks are less about software engineering and more about knowledge of the application. Business knowledge, systems knowledge, that sort of thing. Stuff that can be learned.

          The ability to learn is the real key to it.

          Well, while I mostly agree with what you're saying, I think a lot depends on what your standard of "competence" is.

          Suppose the standard is this: take a clearly defined task and code a solution in a reasonably acceptable style using the first approach that pops into your head. Well, anyone of average intelligence could be trained to do that, and I think this the kind of conception of competence that a lot of HR departments use. That's why they like certifications; certifications measure exactly this kind o

      • 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

        This says no [retractionwatch.com]. In short, if you claim it is inborn, you need to be able to make a test that distinguishes between those who "have it" and those who "don't have it." Alan Kay has good things to say, too [secretgeek.net] as usual.

    • by ImprovOmega ( 744717 ) on Friday December 04, 2015 @08:16PM (#51060645)

      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.

      • by thogard ( 43403 )

        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

  • ahem (Score:5, Insightful)

    by jasno ( 124830 ) on Friday December 04, 2015 @06:43PM (#51060061) Journal

    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.

  • Cut the fat. (Score:5, Insightful)

    by pushing-robot ( 1037830 ) on Friday December 04, 2015 @06:44PM (#51060067)

    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'...

    • I've had half a dozen jobs as an engineer and the majority of the work, I could have done with my high school degree and stuff I'd taught myself. I've also had several high level positions in software, but have never taken a software class. Interestingly, one of my jobs was with a bunch of software people, but I was the only one who knew things like .bss and wimg bits and how caching and paging works or fixed and floating point maths (all self taught).
      • by quax ( 19371 )

        I've been in IT for all my working live without ever having attended a software class, I majored in physics, coding was just something you were expected to pick up.

        But I also always had a passion for history. Even as a teenage student I could have explained to Ronald Reagan (who I adored at the time) why giving Stinger missiles to Islamic warlords was a really bad idea.

        Maybe we should teach history to all students just on the off chance that one of them becomes president?

    • by gilgongo ( 57446 )

      Mod parent up!

    • 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'...

      Nice impersonation of Corporate America you're doing right there; that's my read on the exact thing they'd like to see: 100% privatization of education from kindergarted on up, turning the whole process into just a lengthy trade school, to produce the workers they want -- and that never learn anything else.

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

      You're stumbling into enlightenment without quite knowing it. The history curriculum in schools is not pushed by politicians or exploitive corporations as some sort of training for a career as a historian. There's no false claims of "shortages" of historians.

      There's a ridiculous idea that by forcing everyone to "learn programming" (which means different things to different people) they will somehow gain proficiency wit

  • Geometry (Score:5, Interesting)

    by Anonymous Coward on Friday December 04, 2015 @06:51PM (#51060107)

    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.

    • 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.

      Oh, I don't know, you could probably get an injection of midichlori... *whack* *augh!* *pow* *No, I was just joking* *punch* *aiiiiiiii* (flees from mob of angry "Episodes IV-VI fans.)

    • My grade 10 math was exactly the same: Geometry and Proofs. I always felt it helped me with the thought process for programming.

      My high school had a grade 11 course in programming (cards going into an IBM 1150) and the a language called "MLS" ("Machine Language Simulator"). The teacher was an alcoholic who really didn't care whether or not you did anything, so most of the other students were there as an easy credit and you could get banners printed by filling out your cards as each line making a line of t

  • Is this even true? Most of the major free software developers have degrees.
  • by paavo512 ( 2866903 ) on Friday December 04, 2015 @06:57PM (#51060161)

    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.

  • I strongly recommend for anyone considering a computer science degree to pick a dual major.

    Mine was a hybrid telecommunications engineering and computer science degree - it was very interesting to observe those of us who clearly enjoyed programming and had the knack for it would elect for increasingly more programming and computer science oriented courses, while those who didn't had many other good course options. In our course of about 35 people, about half had the knack for programming while the other hal

  • by Archangel Michael ( 180766 ) on Friday December 04, 2015 @07:03PM (#51060213) Journal

    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.

  • A great sculptor (I forgot who) was asked how he makes his wonderful statues. He said "Easy. Just chip away all the marble that doesn't look like the statue".

    It's the same for programming. Yes, it's easy if you know how it's done. It's insanely difficult for people who don't.

    I've spent quite a bit of time trying to teach people how to program. It's futile. Mostly because we teach them the wrong skills. People don't need to learn how to program until they grasped the basic underlying concept of logic and pro

  • by unimacs ( 597299 ) on Friday December 04, 2015 @07:13PM (#51060263)
    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.
    • by gweihir ( 88907 )

      Pointer arithmetic? Seriously? I taught myself how to do that way before I started my CS studies.

    • t. However I would bet that there are certain types of projects that are mostly handled by people with formal training.

      The stereotypical answers are creating a regular expression parser and a compiler. Hard to do those without a lot of CS theory.

      Also knowing about Big-Oh is really helpful in a lot of areas of programming.

  • by cshark ( 673578 ) on Friday December 04, 2015 @07:14PM (#51060277)

    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.

    • I think a course in physics would be even more valuable. Even on supposedly higher educated sites such as this one, most people fail at anything physics that doesn't have an associated tv program. Eg, know how a black hole works, but don't know the difference between power and energy.
  • Big parts of the US college / higher ed system is that way.

    Division 1 football and basketball The team only takes 20 hours a week. On paper only for the big games you have to miss class and you get lot's joke classes to fill the gaps. That voluntary team stuff is not so voluntary and it get's in the way of class.

    You need to go to college has made trade / tech schools some what of a joke and they can be better off not being tied down to the college system.

    The student loan system big banks make big bucks off

    • The average balance of outstanding student loan debt for households with some debt was $25,700. The median debt was $13,000, and seventy-five percent of borrowers had less than $29,000. These burdens are relatively modest given the annual earnings of these households. The average annual wage earnings among this population was $71,700.

  • by prefec2 ( 875483 ) on Friday December 04, 2015 @07:30PM (#51060411)

    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.

  • The title is lying (Score:4, Informative)

    by zJe ( 206118 ) on Friday December 04, 2015 @08:16PM (#51060643)

    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 [stackoverflow.com], 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.

  • That is really the bottom line here. If you want to be good at coding, you have to be smart, creative and logical. Additionally, it's also hard work so if you don't, at least, like it, you will not be able to take the pressure of the work that comes after you've overcome the frustration of something as fundamental as the semantics of coding languages.

    Of course the way to fix this issue is to triple the salary of every coder, dba, sysadmin and networking professional on the face of the earth. But that won

  • This obsession with teaching everyone to "program", for a seemingly unlimited range of definitions of 'program', is a fraud. It's solely to drive down the wages of programmers by convincing everyone that it doesn't require any special ability or mental discipline. Ten years from now the people studying it will realize they've been had but that will only be after a lot of corporate profits and human suffering.

  • First of all, you don't need to be a programmer to benefit from programming skills. Countless small business owners benefited from custom batch files, DBase forms and putting together Excel, Access and a little VB. We should work on modern replacement for these as well as widespread literacy rather than wasting people's money on cloud apps which are not tailored to a specific business.

    Second, self-learning is a privilege of growing up with computers, stable/peaceful living arrangement and no other responsib

  • Now this is where formal education has a place. Anyone with the necessary abstract reasoning abilities and problem-solving intuition, etc... can become a self taught programmer. Formal education can help foster those skills in students that may have less aptitude in those areas.
  • There are 10 Types of People.
    (The ones that understand the above sentence and the ones that don't.)
  • There are certain basics you have to know. The difference between a variable and its value for instance. Assignment vs. Comparsion. Conditions, arrays etc. How to format your code and how to break down a problem into comments, terms and eventually code.

    Everyone can understand these things. The problem is: If you haven't understood these, no education whatsoever will get you anywhere near programming. If you don't know what the tab-key and the clipboard are and how and when to use them you will fail at the m

  • At least to anybody that can write good code and has tried to teach others. From my experience, you can give people a few pointers, tell them when to start and how to avoid obvious pitfalls. They then neatly sort themselves in people that get it and ones that do not. From my experience, about half of CS undergraduates do _not_ get it. Which makes me suspect that in the general population, less than 10% can learn to code well.

    One reason why coding is essentially self-taught in those that can do it well is th

  • Love... (Score:4, Insightful)

    by The Code Hog ( 79645 ) on Friday December 04, 2015 @11:10PM (#51061329)

    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.

  • Beyond arithmetic most people find all the math that they learn in school to be pointless; something a hair more useful than trivia. It's on the reasons why they're so frustrated with it. Sure a teacher could tell them about some sort advanced scientific calculation which will need it, but that's so far out of the realm of what they imagine themselves doing, it just adds to the frustration.

    But if some math classes were converted into programming classes, sure lots of students still wouldn't like it, but I i

  • by umafuckit ( 2980809 ) on Saturday December 05, 2015 @05:59AM (#51062063)
    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.

Get hold of portable property. -- Charles Dickens, "Great Expectations"

Working...