Slashdot Mirror


Why Non-Coders Shouldn't Write Code

jfruh writes "Software firm FreeCause made a bit of a splash with a policy that requires all its employees — including marketers, finance, etc. — to write JavaScript code. And not just 'code to learn basics of what JavaScript can do,' but 'write code that will be used in production.' Phil Johnson, a tech writer and editor who himself once coded for a living, thinks this is nuts, a recipe for miserable workers and substandard code."

70 of 421 comments (clear)

  1. Marketing guy's function by crazyjj · · Score: 5, Funny

    function MarketingFunction(originalText)
    {
    var revisedText = new String(originalText + ", which will help build synergy and increase marketshare.");
    return revisedText;
    }

    --
    What political party do you join when you don't like Bible-thumpers *or* hippies?
    1. Re:Marketing guy's function by olsmeister · · Score: 5, Funny

      Or just use the Corporate BS Generator.
      Or, alternatively, here.

    2. Re:Marketing guy's function by Scott+Swezey · · Score: 5, Funny

      The other side of the coin... why non marketing guys shouldn't write marketing materials:

      function MarketingFunction(originalText)
      {
      var revisedText = new String(originalText + ", which will help build synergy and increase marketshare.");
      return revisedText;
      }

      --
      Scott Swezey
    3. Re:Marketing guy's function by Gripp · · Score: 3, Interesting

      You know, I almost wonder if anyone has ever sat on a phone conference and just parroted whatever comes up on that thing. I think with a typical non-technical tech PM talking to another non-technical tech PM (something I've actually seen a lot) this could actually fly. Would be at least fun to try!

    4. Re:Marketing guy's function by Anonymous Coward · · Score: 2, Insightful

      The other side of the coin... why non marketing guys shouldn't write marketing materials:

      function MarketingFunction(originalText) { var revisedText = new String(originalText + ", which will help build synergy and increase marketshare."); return revisedText; }

      Quite true, unlike marketers and politicians, IT professionals usually have an aversion to lying or even stretching the truth via "spin". Your marketing will fail when compared to your competitors if they aren't mostly lies and half truths.

    5. Re:Marketing guy's function by eljefe6a · · Score: 2

      The real one:

      function MarketingFunction(originalText)
      {
      var revisedText = new String(originalText + "!!!!"); //would add more exclamation marks, but Slashdot won't let me
      return revisedText;
      }

    6. Re:Marketing guy's function by pla · · Score: 2

      The other side of the coin... why non marketing guys shouldn't write marketing materials:

      The difference: Even the craziest of PHBs wouldn't ask a coder to write marketing materials. Then again, yesterday I would have said the same thing about expecting marketing people to write code.

      "We think you should buy our product. It doesn't really work, as such, but we would like to continue to get paid".

    7. Re:Marketing guy's function by RenderSeven · · Score: 5, Funny

      Hardly a fair comparison. No one in sales/marketing/management could pass a Turing test to begin with.

    8. Re:Marketing guy's function by CanHasDIY · · Score: 2

      You know, I almost wonder if anyone has ever sat on a phone conference and just parroted whatever comes up on that thing. I think with a typical non-technical tech PM talking to another non-technical tech PM (something I've actually seen a lot) this could actually fly. Would be at least fun to try!

      Say...

      If you hooked a chatbot up to one of those things, and had a marketing exec play the part of the human, do you think it would pass the Turing test?

      Followup - assuming that the marketing drone affirms the chatbot as human, would that mean that the chatbot passed the Turing test, or that the "human" marketing drone failed it?


      Note: I'm only half-ass joking.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    9. Re:Marketing guy's function by Githaron · · Score: 4, Funny

      would add more exclamation marks, but Slashdot won't let me

      Make it recursive.

    10. Re:Marketing guy's function by CanHasDIY · · Score: 5, Funny

      do you think the marketing exec could pass the Turing test?

      Well, perhaps, if not for the satanic ritual that's part of graduating from marketing school, during which the individual's soul and humanity are removed and replaced with tapioca pudding.

      Before you ask, it's obviously because tapioca is the most evil of all puddings.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    11. Re:Marketing guy's function by Mike+Buddha · · Score: 2

      Inexperienced programmers do that. Experienced programmers know to take their intitial estimate, double it, and add a week before they answer any questions about how much time something will take.

      --
      by Mike Buddha -- Someday the mountain might get him, but the law never will.
    12. Re:Marketing guy's function by SomeJoel · · Score: 5, Funny

      What if your targeted market is IT professionals?

      Then you have a failed business model since IT professionals, as a rule, have no budget.

      --
      <Complete your profile by adding a signature!>
    13. Re:Marketing guy's function by theshowmecanuck · · Score: 4, Insightful

      Sometimes (OK often) I think it is one of the reasons that companies think young guys are better programmers. Because too many managers want to believe the young programmers who do this. Yep might as well get rid of the older guys who say it'll take a month when this kid can do it in a week. And if the kid does it in a week it is shit, but everyone is so excited the feature is done that they refuse to notice it really sucks for a few weeks.. And then we get people writing papers about what is wrong with the software industry and blah blah blah. Rose coloured glasses on almost every manager sinks both projects and reasonable programmers.

      --
      -- I ignore anonymous replies to my comments and postings.
    14. Re:Marketing guy's function by Fallingcow · · Score: 3, Funny

      Here, I fixed it for you:


      (function() {
              var MarketingFunction = new function (options, callback) {
                      var revisedText = new String(options.originalText + "!!!!");
                      callback(revisedText);
              }
              Function.prototype.toString = MarketingFunction;
      });

    15. Re:Marketing guy's function by HornWumpus · · Score: 3, Funny

      Each one is a live baby Tapioc. They scream in your stomach as the acid kills them.

      --
      John McAfee 'It was like that time I hired that Bangkok prostitute; to do my taxes, while I fucked my accountant'
    16. Re:Marketing guy's function by cowdung · · Score: 5, Funny

      Or just use the Corporate BS Generator.
      Or, alternatively, here.

      I prefer this site for my Corporate BS. Thanks.

    17. Re:Marketing guy's function by ozmanjusri · · Score: 2

      No, a Black Pudding is the most evil of all puddings

      Any Australian will tell you that Albert is the most evil of all puddings.

      --
      "I've got more toys than Teruhisa Kitahara."
    18. Re:Marketing guy's function by dadioflex · · Score: 2

      Marketing gets a bad rep, but if you were a tech company would you want your coders or engineers selling your products to the general population? An engineer selling the benefits of their company's product to an engineer at a different company is pretty effective, but will produce a conversation that is meaningless babble to the average person in the street. Solution? Have these conversations behind closed doors, well away from the street.

    19. Re:Marketing guy's function by Anonymous Coward · · Score: 2, Insightful

      This is only a real argument because there are a bunch of tools who only want to hear marketing speak on the other end. So you get a bunch of engineers on one end making a product that doesn't make any sense to them, and then their marketing team sells it to another group of nontechnical employees that doesn't even understand what the product is supposed to do much less how bad it is at it, and then engineers get frustrated on the other end when they have to use some product that doesn't actually solve any problem they had because somebody signed a three year contract on it without asking them.

      Both sides would have been better served if they had put their paper pushers and bean counters out on the street.

    20. Re:Marketing guy's function by rtb61 · · Score: 2

      Surely in the case of buzzwords being good at them means everything to this company how else would a person with a degree in political science end up in charge of a software company. So it has nothing to do with coding, it's all about buzzwords, which are the good javascript coding ones and when and how to stick them in communications.

      Somehow I think something deeply delusional is going on. If everyone in the company learns how to code then we can sack all of the coding only staff, think of the money I will make, lead the world in software production. Shit this dud was on the John McCain election team, part of the least go with Sarah Palin mob. Now, don't tell that isn't something that someone with a degree in political science would dream up especially a Republican.

      --
      Chaos - everything, everywhere, everywhen
    21. Re:Marketing guy's function by FireFury03 · · Score: 2

      Marketing gets a bad rep, but if you were a tech company would you want your coders or engineers selling your products to the general population?

      No, but similarly I'm also concerned about marketers selling my products since my company hinges on customers trusting us, and the trust is likely to go out of the window as soon as your average salesman starts making up any old bullshit in order to sell the product.

      Solution? Have these conversations behind closed doors, well away from the street.

      My thoughts exactly. Non-engineers really shouldn't be directly involved with purchasing engineering solutions.

    22. Re:Marketing guy's function by Mike+Buddha · · Score: 2

      One of the biggest rookie mistakes (that I still make from time to time) is that in my estimate, I assume I'll actually be able to work on the project uninterrupted. Yes, simple things could be cranked out in a couple of days, if that were the only thing on my plate, but that ain't ever the case.

      --
      by Mike Buddha -- Someday the mountain might get him, but the law never will.
  2. Appreciation Exercise by nurb432 · · Score: 5, Insightful

    It will at least give the non coders an appreciation of what is being done.

    Now, they need to take the coders and make them do sales for a day.. finance go clean trash for an afternoon.. .etc etc.

    --
    ---- Booth was a patriot ----
    1. Re:Appreciation Exercise by t4ng* · · Score: 4, Funny

      Oh, oh... Executive Officers clean up overflowing toilets. Not so they get an appreciation of what is being done, but for the general entertainment of the rest of us!

    2. Re:Appreciation Exercise by Chemisor · · Score: 5, Interesting

      Every cook has to learn how to govern the state.
              - Vladimir Lenin

      In the early days of the Soviet Union it was a very popular idea that there should be no specialization in work. No man should have to do the same thing over and over every day of his life. Jobs should be changed regularly to keep the worker interested and motivated.

    3. Re:Appreciation Exercise by CanHasDIY · · Score: 5, Insightful

      At the same you complain that Marketing people look down on you. But your job is important right? You're better then janitor right?

      Huh? I used to be a janitor, fella, and I can tell you, the people who spend their careers cleaning up your shit so you don't have to are some pretty fucking awesome people.

      Here's a word of advice - your pay scale does not, in any way, reflect what kind of person you are. One look into any boardroom in this nation is all one needs to know that most of the people who take home the lion's share are complete, abject pieces of shit. Hell, nevermind looking at them, just look at how much they pay themselves to do virtually nothing, compared to how much they pay the people who actually make their money for them.

      You want marketing people to respect you, but you don't respect them, or people that make your work comfrtable.

      I couldn't give a shit less what 'marketing people' or anyone else thinks of me, Chief. Spending your entire life trying to live up to other people's expectations of you is no way to live.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    4. Re:Appreciation Exercise by DanTheStone · · Score: 2

      At the same you complain that Marketing people look down on you. But your job is important right? You're better then janitor right?

      Oh come on, it's not like we haven't all vacuumed or plunged a toilet or cleaned up vomit at some point. We're not better than the janitors, it's honest work, we just don't want to do it. We could legitimately consider ourselves better than the marketers; most of them are liars, and lying is bad (m'kay?)

    5. Re:Appreciation Exercise by theshowmecanuck · · Score: 4, Interesting

      About 20 years ago I worked at a chemical company. Almost all the junior engineers hired had to work out in production facilities for six months to a year, disigning and implementing the occasional needed improvement they discover. After that they were allowed to become office based engineers if they wanted, or stay in operations but move to real management. It worked very well.

      One time we had an electrical engineer who was trained to program Distributed Control Systems, and somehow he was never required to work in a production facility before that time. He built some attrocious logic into the system making it a pain to manage the smelter I was at. Things that should have been grouped for safety (i.e. you adjust a control, but the reading you needed to watch was on another screen) or just good functionality so the operators could focus on the situation in the plant and not switching screens all the time.

      When we complained he told us we were whiners and not capable. Since a few of us were actually closer to the operations manager in terms of grade, we had him forced to use his own software in production on a few weeks of midnight shifts. There was a noticable improvement in functionality before the 3 weeks were up. And even more in the months that followed. It is often very good to forcefully put people in someone else's shoes, since they will often say it, but not do it on their own (even metaphorically).

      --
      -- I ignore anonymous replies to my comments and postings.
    6. Re:Appreciation Exercise by Anonymous Coward · · Score: 5, Funny

      I would have hated to get heart surgery from one of their doctors.

    7. Re:Appreciation Exercise by Tom · · Score: 4, Insightful

      It will at least give the non coders an appreciation of what is being done.

      No, it won't. A simple javascript program is not representative of a complex system design, and it will, on the contrary, make people think that this new MIS they are requesting from the software development department can't be all that much more complex than a bit of jquery.

      --
      Assorted stuff I do sometimes: Lemuria.org
    8. Re:Appreciation Exercise by Anonymous Coward · · Score: 3, Interesting

      "your pay scale does not, in any way, reflect what kind of person you are. One look into any boardroom in this nation is all one needs to know that most of the people who take home the lion's share are complete, abject pieces of shit."

      How did you manage to pull that off within a sentence?

      1) Your payscale doesn't reflect you
      2) Your payscale determines who is an abject piece of shit

      Truly you are amazingly mentally flexible.

    9. Re:Appreciation Exercise by manu0601 · · Score: 2

      I would have hated to get heart surgery from one of their doctors.

      But if there were no specialized worker in the field of making you eat junk food, perhaps you would not need heart surgery

    10. Re:Appreciation Exercise by colinrichardday · · Score: 2

      That might explain Lenin's death at the age of 54, from stroke I believe.

    11. Re:Appreciation Exercise by Daniel+Dvorkin · · Score: 2

      No, it won't. A simple javascript program is not representative of a complex system design, and it will, on the contrary, make people think that this new MIS they are requesting from the software development department can't be all that much more complex than a bit of jquery.

      This is a really important point, and I'm surprised more people haven't picked up on it. Learning to write short code snippets that do one thing is really easy for most reasonably intelligent people. Learning to understand the scope of a major project takes years of experience.

      --
      The correlation between ignorance of statistics and using "correlation is not causation" as an argument is close to 1.
  3. I see nothing wrong with this by Sparticus789 · · Score: 5, Funny

    While they are at it, perhaps their accounting department should replace the plumbing in their office building, the secretaries should swap the engine in the CEO's car, and let's have the janitors install a new security system. What could possibly go wrong?

    --
    sudo make me a sandwich
  4. Everyone needs to start somewhere by davidwr · · Score: 5, Insightful

    We were all non-coders once.

    Saying non-coders shouldn't write code is like saying non-writers shouldn't write.

    How about: Don't expect consistently professional-quality code from inexperienced coders.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:Everyone needs to start somewhere by MrEricSir · · Score: 4, Insightful

      We were all non-coders once.

      And did you learn to code because you wanted to, or because your company required it?

      --
      There's no -1 for "I don't get it."
    2. Re:Everyone needs to start somewhere by mykepredko · · Score: 5, Interesting

      Back in the '80s, IBM Canada gave a number of employees the chance to learn how to write code after being told that they didn't have any other skills that the company required. If you wanted to stay employed by IBM, you had to take a two year course which was actually quite substantial (covering assembly language, PL/1 (which was the language of choice at IBM back then), databases, and the usual IBM system stuff like JCL) and was administered by Ryerson (which was a polytechnic, not a University then).

      A surprising number of people graduated the course - I seem to remember that it was 80% or more - and went on a new career path coding in the Toronto Lab.

      So learning to program because your employer requires it is not necessarily a bad thing for both the company and the employee.

      myke

    3. Re:Everyone needs to start somewhere by Genda · · Score: 3, Insightful

      Welcome my friend to the land of the Pointy Haired Bosses... See, you can tell a person whose playing their first games of Chess, mate in 18 moves and that sounds like voodoo. But you've bothered to study openings, middle and end games, and you can see in those first 7 moves this is now a done deal. Telling the pointy haired boss, that an appreciation for consistent, tight code, that is syntactically succinct, clear, conforms to coding conventions, is well documented, but most of all, reflects that the coder understands abstraction, algorithms, reusable elements, and order of precedent to name but a few basic concepts, is the difference between an application that is quick, elegant and highly useable, and a reeking pile of digital sewage. If anyone could write software, it would pay $8 an hour and robust brown gentlemen you picked up a the day worker center would hustle you out an application after pulling your weeds. It actually takes years to learn enough to write proper programs and more years to hone that skill to a useful edge. Expecting people to just learn syntax who haven't the fundaments of logic or information management, to write code that isn't just a slow motion disaster, is at best deluded.

    4. Re:Everyone needs to start somewhere by mykepredko · · Score: 3, Interesting

      I was told that some kind of test was applied to determine aptitude and this was used to select the individuals for the program but...

      I tutored one our (former) secretaries as she went through the class and she had a devil of a time understanding that after a statement like:

              a = b;

      "b" wasn't 'empty' (ie she felt there was something physically moved from "b" into "a", leaving "b" empty). The idea that "b" would continue to have the same value after the value in the variable is stored somewhere else just didn't compute (if you can excuse the pun).

      She eventually got past this hurdle and made it through the course.

      So, maybe IBM knew something 25 years ago that seems to have been lost.

      myke

  5. A recipie by Anonymous Coward · · Score: 2, Funny

    a recipie for miserable workers and substandard code.

    Which is why non-spellers shouldn't spell. Or something

    1. Re:A recipie by hawguy · · Score: 4, Funny

      a recipie for miserable workers and substandard code.

      Which is why non-spellers shouldn't spell. Or something

      No, that's spelled correctly - it's recipie, shorthand for a recipe for a delicious pie. Which fits perfectly since miserable workers can't make a delicious pie, but if they had a delicious pie they wouldn't be so miserable.

  6. Wrong way to do it by gman003 · · Score: 4, Insightful

    There's nothing wrong with making all your employees learn how to code, if you're in the coding business. That can help the non-coding guys realize the limitations of code, and let them write quick, dirty code themselves to test something. And if they have a knack for it, maybe they can serve as a coder as well as their old position (assuming your corporate structure is flexible enough for this).

    But demanding everyone be putting code into production is wrong. Would you demand all your employees learn graphic design and have them all create graphics to be used in production? Would you demand all your employees study law and write contracts?

    No, because that's stupid.

    1. Re:Wrong way to do it by Hatta · · Score: 4, Insightful

      Everyone should know enough about coding to ask smart questions of the actual coder. If you say something like "if you put into the machine wrong figures, will the right answers come out?", you don't know enough code. If you've never touched a line of code, you're not going to be able to adequately describe your needs to your coder. You may be asking for the impossible and not even know it.

      --
      Give me Classic Slashdot or give me death!
    2. Re:Wrong way to do it by RabidReindeer · · Score: 2

      Would you demand all your employees learn graphic design and have them all create graphics to be used in production?

      Actually, I have been made to produce entire websites from the data tier all the way up to the artwork on may occasions.

      Then they laugh at my artwork.

      The most powerful graphics programs in the world can't help when the person using them is so artistically challenged that everything looks like it should have been rendered in Crayolas (the fat ones) and stuck to the door of Mom's refrigerator.

  7. CS101 by Larry_Dillon · · Score: 4, Insightful

    In a tech company, it makes sense to have everyone take something along the lines of CS101. Specifically JavaScript? I don't think it matters but it helps give everyone a sense of how computers really work and what they can and cannot do.

    --
    Competition Good, Monopoly Bad.
    1. Re:CS101 by radtea · · Score: 4, Insightful

      In a tech company, it makes sense to have everyone take something along the lines of CS101.

      And in a legal practice or doctor's office it makes sense for everyone to have a bit of legal or medical education, which for the most part people do.

      But only a gibbering idiot would think that in any way supports the statement, "Everyone should learn to draft contracts" or "Everyone should learn to diagnose and treat diseases" simply because they work in legal or medical environments.

      --
      Blasphemy is a human right. Blasphemophobia kills.
  8. I wish all comapanies would do this. by csumpi · · Score: 3, Insightful

    At every place I worked at, executives and managers had never any clue what they were talking about, what their decisions meant or in general what the programmers/artists/workers did. This made for lots of meetings to explain them stuff , stupid decisions and lost money and effort.

    So making them learn about what the company actually does, could accomplish:

    a) that they make better decisions or, preferably:

    b) that they let the people who know what they are doing do their job

  9. Just so long as you are willing as well by Sycraft-fu · · Score: 2

    So long as you are willing to spend the same amount of time per job learning all the other jobs that make the company work, including management. Turns out managing people it tougher than you might think. I've no desire at all to go in to management, though if I stay working for the university it is probably inevitable that I'll be made to.

    If you are willing to do the same amount of cross training (per job) that you expect people to do for yours, then ok. However it is rather arrogant to think that your job is the only one important enough to have other people need to learn, or that you "already understand those other jobs."

  10. Been there... by Anonymous Coward · · Score: 2, Insightful

    Many moons ago, I was called in to clean up a project which had been assigned to an individual chosen for a particular task because he wasn't doing anything at the time...

    The code in question was a real-time application that was to run on an in-house production system. People would flick a badge at a badge reader, which would transmit data to the production system in question, and the app, in real time, would do the usual things -- is the user authorized for this reader, log the event, do the right thing.

    Except what usually happened was someone would walk up to a reader, flick their badge, and buggy real-time code would bring down the entire system.

    After a few days of this yo-yo routine on a valuable system, I was given the opportunity (sic) to fix things.

    Mess, spaghetti code, dog's breakfast, n^2 monkeys on bad acid, it was worse than that.

    Previous "author" returned to his previous position. I re-wrote the pig (after writing a spec), debugged it on a non-production machine, and when it was checked out, put it into production.

    Pain in the ass. Yeah, most everybody can be taught to write programs. Not everybody can write correct or good programs.

    Oh, HTML isn't programming, but I'll leave complex website design to them that knows what they're doing.

  11. "Pilots training flight attendants how to fly" by rrohbeck · · Score: 2

    Dude, you missed the keyword "everyone".
    So make that
    "Pilots training flight attendants and passengers how to fly"

    What could *possibly* go wrong?

    I'm looking forward to see the janitor working on our modified FC kernel driver.

    Corollary: Don't even think about using FreeCause products.

  12. Real Coders Need a Union, or a Guild, or Something by reallocate · · Score: 3, Insightful

    People who are really professional coders ought to resist this kind of silliness because it is rooted in the notion that anyone can create professional quality code. If that's true, why pay the real coders?

    It isn't true, of course, no more than is the notion that if you can stick a frozen pizza in the microwave you should be preparing food in a restaurant.

    --
    -- Slashdot: When Public Access TV Says "No"
  13. Re:At My New Hospital... by David_W · · Score: 2

    Everyone will be required to perform surgery every week.

    Especially the patients.

  14. Re:Code? by Anonymous Coward · · Score: 2, Insightful

    I know better than to feed trolls, but what exactly is wrong with Node.js - I get that it is a polarizing topic (anti-hipsters versus hipsters?). I'm just making some of my first web apps, and am very comfortable in c-type languages. I don't love javascript, but I don't hate it either, and have found some really nice projects in Node that have been easy to get started with, and seem to "just work" the way I expect so far. Is there something I'm missing?

  15. Geekcentric Nonsense by fm6 · · Score: 5, Insightful

    Back in the 60s Robert Townsend was brought in to turn around a dying Avis Rent-a-Car. He decreed that everybody spend some time working a rental counter so they would understand the activity that was at the core of the business. He was very amused by the experience of his chief programmer, who fled in panic upon seeing his first customer!

    That was appreciation. This is geekcentric nonsense. The CEO doesn't just want everybody to better understand the coding, he actually thinks everybody can contribute to the codebase in an ongoing fashion. This is the classic geek fallacy of "everybody's brain works just like mine."

    1. Re:Geekcentric Nonsense by theshowmecanuck · · Score: 4, Interesting

      In the late 90s I was at a software company that created circulation system software for the newspaper industry. We had a good number of system testers (pretty much all of them) who had never worked at a newspaper before. As one of the senior leads, on every project I worked on I made sure that a system tester went on site with me to sit with the various departments and help them understand/learn the new system (as opposed to just classroom teaching). This was a 'bonus' for the customer.

      My bosses were leery of not getting money for this extra training. But when they realized that the system test people improved by orders of magnitude because they actually understood implicitly what the features were for they started sending coders on site as well (to program in situ on projects). The quality of our system improved immensely, much quicker than otherwise would have happened.

      --
      -- I ignore anonymous replies to my comments and postings.
    2. Re:Geekcentric Nonsense by fm6 · · Score: 3, Insightful

      That's the classic lamer fallacy of posting a comeback that makes no sense.

  16. good question! by Razgorov+Prikazka · · Score: 2

    Why Non-Coders Shouldn't Write Code
    Why Non-Surgeons Shouldn't Operate
    Why Non-Terminators Shouldn't Terminate
    Why Non-Welders Shouldn't Weld
    Why Non-Judges Shouldn't Judge
    Why Non-Burglars Shouldn't Burgle
    Why Non-Existent Shouldn't Exist
    Why Non-Veterinarians shouldn't Vet
    Why Non-Fiction Shouldn't Fict
    Why Non-Player Character Shouldn't Charact Play
    Why Non-Females Shouldn't Do the Dishes
    Why Non-Males Shouldn't do Men's Jobs

    And so on. If everybody does what he/she does best, all will be fine! It's that easy! :-)

    --
    rm -rf --no-preserve-root / ...and let /dev/null sort them out...
  17. Really?!?! by bobthesungeek76036 · · Score: 2

    I'm glad I don't work for a surgery center with the same mentality...

    --
    Karma: Bad
  18. Stupid. by MaWeiTao · · Score: 2

    Throughout my career I've had to work on Flash files built by designers. Most programmers I've encountered consider Actionscript beneath them and refuse to touch it. Companies figure that since Flash is supposedly a designer's tool that designers should also code.

    You haven't seen bad code until you've been exposed to a designer's creation. It's the most convoluted garbage imaginable. I'd always be handed half-finished, barely functioning junk that needed "minor" edits. It would inevitably turn into an excruciating nightmare trying to figure out what this incompetent had done. In the end I'd just redo the thing completely because it was less work than trying to decipher and modify the original mess.

    I'm convinced one of the big factors that led to Flash's downfall was crap code from designers. I couldn't stand, as a designer, being expected to code Actionscript. It's why I stopped including it on my resume.

    From a perspective of quality, expecting every one of your employees to code is about the stupidest thing you can do. But more importantly, it's inefficient and an incredible waste of resources.

    1. Re:Stupid. by Anonymous Coward · · Score: 2, Funny

      What's fun is to write a script that produces a list of non-repeating random numbers. Especially when you don't know what the hell you're doing.

      First time around? I made a list by using a random number generator and then going over the numbers already in the array with an if statement in order to make sure that the random number wasn't in the list. Guess how fast that thing ran? Took like a minute and a half just to make a list of 100 non-repeating randomized integers with values from 1 to 100.

      Then I talked to one of my internet friends that had more of a clue, as he is an actual programmer. So I was told there was definitely a better way. Not how to find the better way (wasn't his job anyways), just that the code I had was ugly. (Which I expected, since I knew I wasn't that great at it.)

      Next time around? Looked more at how arrays work, since it was hinted at. First populated one array with sequential numbers, thus they didn't repeat. Then used a random number generator to pop items from one array to populate another. Result? Random numbers that again didn't repeat, and each time it looped the list of random numbers to choose from got a lot shorter. Waaay faster than the first time around, and it did what I wanted.

      Still I suspect it's not ideal from a statistical point of view (in the degree of randomness generated), but it's definitely workable. And it's likely I re-invented the wheel because there's some script library I don't know about. It's uses? Basically to scramble the order of a finite number of things where you don't want repeats. Quizes or card games are the first two things that come to mind.

      But my first example shows what's more likely to happen with a non-programmer coding. However if a programmer offers advice or insight, a non-programmer is able to re-do a better version. (Well at least if they understand that there's something wrong to begin with and are willing to work on that.)

  19. vanity by spongman · · Score: 4, Interesting

    this isn't about altruistically teaching others a valuable skill. it's about vain programmers trying to show their non-programmer colleagues how hard it is to code in order to get more respect. how much more condescending can you get? different people have aptitudes for different skills. go teach some dis-interested people how to do the rubic's cube, or something.

  20. Scott Adams did. by Medievalist · · Score: 5, Insightful

    He didn't just spout computer-generated buzzwords on the phone, though, he actually put on a fake mustache and physically attended a meeting - spouting total drivel. Nobody noticed until he started drawing Dilbert cartoons on the blackboard!

    http://www.tealdragon.net/humor/articles/dil-hoax.htm

  21. Re:Funny: I made YOU look like an IDIOT before by snowraver1 · · Score: 2

    Did you KNOW that capitalizing and BOLDING random words makes YOU look like a retard?

    --
    Copyright 2010. All rights reserved. This comment may not be copied in any way including, but not limited to caching.
  22. Then try working for a small company ... by perpenso · · Score: 3, Informative

    Oh, oh... Executive Officers clean up overflowing toilets. Not so they get an appreciation of what is being done, but for the general entertainment of the rest of us!

    Hell, I'd pay to see just one of the suits around here cleanin' a shitter or two...

    Then try working for a small company that is owned by one person, or maybe two if they are spouses. Then you may very well see an owner come in half an hour early to clean the bathroom in the morning. And yes one person I once worked for who did so was a suit, a business/marketing guy. He never asked one of the programmers, qa/support guys or the receptionist to do so. Small shop, 6 employees, plus a consultant or two at times.

    As an added bonus the suit above trusted our judgement on technical issues.

    YMMV.

  23. *Facepalms* by lightknight · · Score: 2

    Let them write code, but for the love of my future cat, choose something like Java or C++ or C# that actually forces them to adopt a decent coding style.

    JavaScript is, like Visual Basic or PHP, an undead language that requires a decent burial and a priest of the highest order to dispatch. I mean, these languages are really, really, not good starting places for learning proper programming, they're just languages that let you learn some basics very quickly. It's like the bike you got when you were 6, that had clickety-clacks and was composed primarily of plastic; no one is saying that you can't ride them at age 12 or 25 or 40, but once having mastered the general idea of human-powered mechanics, it's best to move onto faster and more capable things. The way some of these people use these languages, you'd think someone had attached a lawn-mower engine to a preschooler's tricycle; yes, that's awesome (and no, I did not know you could do that, let alone would want to), but try out some of these bigger toys, which I think you will find much more fun.

       

    --
    I am John Hurt.
  24. Re:Real Coders Need a Union, or a Guild, or Someth by js33 · · Score: 2

    If your guild actually had some basic education and standards for what constitutes "professional quality code" independent and irrespective of the marketing buzzword du jour, as well as some good-quality continuing education to keep up with the technology behind the latter, it might actually benefit you, people who want to learn to code, and ultimately the employers who want to hire coders.

    But as it stands now, the entire high-tech industry has acquired such a fly-by-night mentality that I don't think there's any demand for "professional quality code". The demand is "do a marketing blitz quick ship it out the door before the hype dies down and let me collect my bonus and move on to the next project." The hubris and arrogance that seems typical of developers themselves doesn't help either. Whether non-coders could or should or would code is a totally minor side-issue, given the amount of professional-quality enterprise-grade crap software out there.

    I'm one of those non-coders who code -- I end up writing a few scripts in Perl or PHP or Javascript or R or whatnot for miscellaneous tasks, but I don't want to be a programmer. I'm just glad I get to put my education to use and develop my skills in a different industry, where there isn't quite so much nonsense to put up with.

  25. The policy is deomonstrably idiotic. by http · · Score: 3, Informative

    http://developers.slashdot.org/story/12/09/16/1631239/can-anyone-become-a-programmer
    If you want to dig deeper, here's a page with the link to the 2006 study. Short version: not only can not everybody learn to program effectively, but that there's a simple test to predict if someone could or not without putting them through a year of school:
    http://www.eis.mdx.ac.uk/research/PhDArea/saeed/
    The overlapping bell curves explain a lot about grade distributions when I went to college.

    --
    If opportunity came disguised as temptation, one knock would be enough.
    3^2 * 67^1 * 977^1
  26. The companies' rationale is all wrong by flimflammer · · Score: 3, Informative

    FTA:

    Every FreeCause employee, from CEO Mike Jaconi on down, is learning JavaScript. Inspired by the dictate within its Japanese parent company Rakuten to have all its employees become fluent in English, Jaconi decided to have everyone, from himself down to the interns, learn to code.

    Emphasis mine.

    A Japanese firm having staff which are fluent in English is actually useful. It's a very common language around the world. There is almost no benefit to having an entire company that knows JavaScript, especially if they're not in coding roles. Sounds like the man just wanted to make headlines as a pioneer of some sort, regardless of the fact it makes him look stupid.