Slashdot Mirror


Is a Computer Science Degree Worth Getting Anymore?

snydeq writes "Self-taught technologists are almost always better hires than those with a bachelor's degree in computer science and a huge student loan, writes Andrew Oliver. 'A recruiter recently asked me why employers are so picky. I explained that of the people who earned a computer science degree, most don't know any theory and can't code. Instead, they succeed at putting things on their resume that match keywords. Plus, companies don't consider it their responsibility to provide training or mentoring. In fairness, that's because the scarcity of talent has created a mercenary culture: "Now that my employer paid me to learn a new skill, let me check to see if there's an ad for it on Dice or Craigslist with a higher rate of pay." When searching for talent, I've stopped relying on computer science degrees as an indicator of anything except a general interest in the field. Most schools suck at teaching theory and aren't great at Java instruction, either. Granted, they're not much better with any other language, but most of them teach Java.'"

62 of 630 comments (clear)

  1. I'll take getting a job Alex by Anrego · · Score: 5, Informative

    Self taught and degree arn't mutally exclusive.

    Most of the really good programmers I know were largely self taught. They probably did a lot of coding in their spare time through high school, THEN went on to get a degree and finally a job..

    This is of course why there is a thing between getting a degree and getting hired .. it's called a job interview! An interest in programming prior to formal education is usually seen as a good quality and will put you ahead of a similar candidate who didn't know what a c++ was till his second year. You probably won't even get in the door at most places without the degree however... so still worth getting one until there is a massive (not just one recruiter) shift in thinking among the HR departments of the world.

    Also university isn't just about learning a trade (that's trade school). It's about getting a rounded education in stuff you probably don't give a shit about, building non-technical skills that are important (writing for instance), proving that you can tackle non-trivial problems with minimal supervision, and proving that you can handle a certain level of stress.

    1. Re:I'll take getting a job Alex by White+Flame · · Score: 4, Interesting

      To pull out my standard Slashdot Car Analogy(tm), it's like a mechanic who knew nothing about cars before deciding that fixing cars looked like a stable career and went to trade school but doesn't tinker on his own vehicles because "that's work", vs somebody who's been under the hood of a cars since they were 13.

      Sure, those who enter the field later in life might be great at it, but your average worker in that position won't hold a candle to the one who was self-taught through driven interest, especially if they then went on to formal education in the field.

      Disclaimer: On the flip side, too many solo hobbyists don't know how to convert their hobby into professional work when it comes to demands, tradeoffs, and communication on the job.

    2. Re:I'll take getting a job Alex by frosty_tsm · · Score: 5, Interesting

      This is just the once-a-month self-taught vs CS-degree article to start a flame war. Seriously, enough is enough.

      Self taught people are effective, but sometimes they do things that are traditionally dumb like build their tree upside down. They can come up with creative solutions (because by their nature they think out of the box), but stumble on things a university graduate would find basic because we studied it and they didn't. Many can't do pseudocode or understand what big-O notation means because you never encounter it unless you've taken an algorithms class. On the flip side, non-CS-degree people are behind a large part of the CouchDB and no-SQL movement because they weren't constrained by traditional thought.

    3. Re:I'll take getting a job Alex by Mad+Merlin · · Score: 4, Insightful

      A CS degree is a requisite but not sufficient property to make a good developer. They also need a genuine interest in the field, which most often manifests as being self-taught before getting a degree, and continuing to self-teach after getting said degree.

      Purely self-taught developers will miss learning a lot of important topics, not because they're difficult, but because they don't realize what they don't know. In particular, data structures (anything beyond arrays), databases (and normal forms) and algorithmic complexity. I don't care how good you are with $language, if you don't understand the above topics like the back of your hand, you're going to make a mess.

      On the flip side, purely academic developers are typically going to have knowledge gaps in more practical topics like input validation, version control systems and bug trackers. Again, you can get by without these, but you're going to make a mess (or someone else is going to make a mess of it for you when they exploit it).

    4. Re:I'll take getting a job Alex by xtal · · Score: 4, Insightful

      ..and the point being missed is that you can be someone who worked on cars their entire life, have a mechanical engineering degree, too - those are the guys who work on F1 cars.

      The best candidates will have proper academic training AND drive. They're not exclusive!

      I grew up taking apart 8-bit machines, hacking opcodes in memory and messing with analog phone lines. First I wanted to know how stuff worked.. then I wanted to know WHY stuff worked.

      YMMV. It's not black and white.

      --
      ..don't panic
    5. Re:I'll take getting a job Alex by ShakaUVM · · Score: 4, Funny

      >Of course, the fact that he had an awesome and EXTREMELY memorable last name didn't hurt matters either (name withheld for obvious reasons).

      Tip of the Day: Legally change your name to Edsger Dijkstra Tanenbaum Knuth.

      Junior.

    6. Re:I'll take getting a job Alex by SJS · · Score: 5, Insightful

      However, I stay clear of Java or Visual Studio only people. They have a truly warped and unrepairable mindset.

      Stay clear of anyone who is [anything]-only.

      Anyone who will only use one language will warp all problems to that language -- and worse, warp all solutions to only those that they don't have to think about. It doesn't matter if the language is Java, C#, C++, C, Perl, Python, Ruby, or COBOL. If they are only willing to code in one language, let them go.

      Nearly every accredited university offers "language survey" courses. This is where a CS degree can be useful -- the graduates have, in theory, been exposed to other languages. Bring this up in the interview. See if they can articulate the tradeoffs of various languages.

      Entirely-self-taught developers often require a lot of basic remedial training. I'd suggest investing in them only if they will spend their evenings completing a CS degree. For an intelligent and skilled person, this isn't terribly difficult. The ones to be careful with are the "Meh, I can't be bothered to obtain/complete a degree." types. They might be intelligent, and they might be skilled. But their ego is going to make a lot of work for everyone else, as that can't-be-bothered attitude is a sign.

      (Yes, there are lots of people who could only possibly succeed in an academic environment where the problem is carefully structured to be completed in five weeks by a mediocre and distracted person. This is where "what do you do in your free time?" comes in useful. One of the best teams I've ever worked on had "What are the last three books you've read for pleasure, and when?" as a key interview question.)

      As for the 10% effect ... Sturgeon's Law.

      --
      Pick One: http://www-rohan.sdsu.edu/~stremler/sigs/sigs.html (Note - disable Javascript first!)
    7. Re:I'll take getting a job Alex by Greyfox · · Score: 5, Insightful
      Acing a programming interview isn't rocket science. Just take notes, ask questions that show you're listening and don't fuck up when they ask you to design a function that does X.

      People seem to have the most problem with the last one, so let me break it down for you: Do NOT go to the whiteboard and start coding. Do that and you have pretty much failed before you have even started. Start by asking some questions. Is it OK if X modifies its parameter(s) in place, or should it pass them in as consts and return by copy? (Usually X is something with a string.) Is it OK to allocate memory if necessary? Is it OK to return a copy or should the programmer pass a buffer? Should I worry about unicode? Should I use char*'s or strings (In the case of C++)? Is there anything else about X that I should be aware of? This is called "gathering requirements." It indicates that you're not just some code monkey. It would also be a good idea to write requirements down somewhere. Like on the whiteboard, maybe.

      At this point do not go to the whiteboard and start coding! Go to the whiteboard and a start analyzing the problem. Draw out your memory and look at what happens when you do swaps and things. Push variables around. Consider various methods of solving the problem and their advantages and disadvantages. Think about the loops you'll need to go through. Show the interviewer your train of thought. This is called "designing." It indicates that you're not just some code monkey.

      Once you've got that down a couple of them might still want you to code something, but you've already proven you're a man and not a cabbage or something. And even if they DO want code, it'll be easy at this point! You don't have to die on this question, people! Of course that still might not get you in the door at a Google or an Amazon, but that's still all you need at a lot of other companies.

      --

      I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

  2. Mercenaries by asmkm22 · · Score: 5, Insightful

    The mercenary culture is a direct result of companies not sufficiently increasing wages for existing employees. If you want to avoid having talent leave, then pay them what the competition is offering, and treat them well. It's pretty simple.

    1. Re:Mercenaries by Dogbertius · · Score: 5, Informative

      It is very difficult for the average worker when employers collude to artificially lower wages and keep dissenters unemployed:

      http://apple.slashdot.org/story/12/01/20/1433231/doj-investigates-google-apple-and-others-for-no-poaching-agreement

    2. Re:Mercenaries by Desler · · Score: 5, Funny

      Pay your employees decent ages and treat them well? That's fucking communism! GTFO.

    3. Re:Mercenaries by Anonymous Coward · · Score: 5, Insightful

      I think its fair to say loyalty is dead on both sides.

    4. Re:Mercenaries by Anonymous Coward · · Score: 5, Insightful

      Loyalty may be dead on both sides, but it's the business that creates that culture, because the business is (more or less) in the position of power. An employee can do little to create an organizational culture that is conductive to loyalty (short of being the CEO, but that's another kettle of fish)- the only thing an employee can do is vote with their feet. It's whoever is in charge of the management that does things like set salaries, policies for fair and timely promotions, employee development, vacation time, quality of the health care, work/life balance, etc etc.

    5. Re:Mercenaries by Anonymous Coward · · Score: 5, Insightful

      I am at the point now where if I am in an "at will" state, I will not give notice. The last place I worked that fired my entire team--and it was actually the fourth employer to do that, out of a total of five on my resume--gave us all of 3 and a half days warning before giving five dozen people the bum's rush.

      You want more than a mercenary? Treat your employees as a long-term investment rather than a profit/loss ledger entry. Otherwise, I will never stop sending out resumes, and will never stop looking for a better job. The instant I get a better offer letter, I will demand a raise, and rescind my agreement to your bullshit non-compete if you say no. Then I will burn all my accumulated leave days and resign the day I return.

      Don't give notice. Tradition be damned. If they want to hire you without a contract and treat you like a fungible asset, they need to accept the possible consequences of that. Don't. Give. Notice. If you want to be professional about it, put together a continuity plan that they can execute if you disappear.

      When *anyone* on your team is laid off, start looking for jobs. When ownership changes, particularly if purchased by leveraged buyout, start looking. When someone else jumps ship, start looking. Keep a current list of your (competent) co-workers with reliable contact info at all times, and don't be shy about trying to bring them along when you go.

      They want us to be mercenaries.

    6. Re:Mercenaries by Grishnakh · · Score: 4, Interesting

      This kinda reminds me of those women who refuse to date a man unless he's married, and their goal is to get the man to leave his wife and marry her. And then, when the man cheats on her with yet another women, she's shocked!

  3. Poor article. by Anonymous Coward · · Score: 5, Insightful

    Poorly written and full of absurd sweeping generalizations.

    1. Re:Poor article. by Kittenman · · Score: 5, Funny

      Poorly written and full of absurd sweeping generalizations.

      Agreed. I've found most Slashdot articles (well, over 98% of them) have absurd sweeping generalizations. And some of them use odd-sounding comparisons for no reason at all, which is like putting pants on a dog.

      --
      "The greatest lesson in life is to know that even fools are right sometimes" - Winston Churchill
  4. CS != Coding by Strider- · · Score: 5, Insightful

    People are making a fundamental error in terminology here. If you're looking to hire someone for a programming job, then you shouldn't be looking at someone with a CS degree. Computer Science is not about coding or programming, it's about the practices behind it. If you want a coder, go hire a code monkey from your local technical college. If you want someone to design the software, make sure it's sane, and then hand it off to a code monkey, then hire a CS grad.

    --
    ...si hoc legere nimium eruditionis habes...
    1. Re:CS != Coding by JoeDuncan · · Score: 4, Informative

      I second this. This is the crucial point.
      Would mod you up if I had any points...

    2. Re:CS != Coding by Anrego · · Score: 5, Insightful

      Personally I don't think they should be decoupled.

      My experience has been most people out of uni with a CS degree can't do either well. I'd rather someone in an architect role who worked their way up from code monkey and thus has a solid foundation in the realities of actual software projects (rather than someone spewing stuff out from their design patterns book).

    3. Re:CS != Coding by mooingyak · · Score: 4, Interesting

      People are making a fundamental error in terminology here. If you're looking to hire someone for a programming job, then you shouldn't be looking at someone with a CS degree. Computer Science is not about coding or programming, it's about the practices behind it. If you want a coder, go hire a code monkey from your local technical college. If you want someone to design the software, make sure it's sane, and then hand it off to a code monkey, then hire a CS grad.

      I've met some guys who were decent coders but not very good designers, but I've never once encountered the opposite. I haven't seen much in the way of correlation between lack or presence of a degree.

      --
      William of Ockham had no beard. The most likely explanation is that it was chewed off by squirrels every morning.
    4. Re:CS != Coding by Pseudonym · · Score: 5, Interesting

      If you want to understand how and why a compiler works, and how to build one, CS is for you.

      If you just want to use one, it's probably not.

      "If you want to understand how English works and how it came to be, linguistics is for you. If you just want to be a writer, it's probably not."

      "If you want to understand how music works and is put together, music theory is for you. If you just want to play an instrument, it's probably not."

      Do you see the problem here? You can't call yourself a professional writer of English (or any other language for that matter) without some knowledge of the grammar, morphology, semantics and pragmatics of it. No, you don't need to be a linguist to the point that you can diagnose speech delay in children, or construct your own conlang. But you need to know how your language works, and you need to know it well.

      As for your specific example, even if you never consider writing a compiler, many (if not most) programming tasks involve at least some work that is compiler-like. For example, any time you need to write code which reads a file which has some structure, or implement a network protocol, you're writing a parser. If you don't know you're writing a parser, you'll inevitably write a bad parser which will either cause your code to die an obscure death, be a maintenance headache for years to come, or require a rewrite by someone who did study CS.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
    5. Re:CS != Coding by nightfire-unique · · Score: 4, Insightful

      Computer Science is not about coding or programming, it's about the practices behind it. If you want a coder, go hire a code monkey from your local technical college. If you want someone to design the software, make sure it's sane, and then hand it off to a code monkey, then hire a CS grad.

      My friend, they are one and the same.

      There is no such thing as a "code monkey." The term refers to someone who knocks out a lot of code (of varying quality). That's called programming.

      A good coder understands what every line does, and how it expands to CPU instructions. They understand why unrolling loops can avoid pipeline stalls. They understand O(n) and algorithmic complexity, clean API design, and memory management.

      Bad coders don't.

      Don't over-complexify the issue.

      --
      A government is a body of people notably ungoverned - AC
    6. Re:CS != Coding by lennier · · Score: 5, Funny

      "If you want to understand how English works and how it came to be, linguistics is for you. If you just want to be a writer, it's probably not."

      That's exactly why Languages and Literature departments in universities are opposed warring camps.

      You Philistines over in Languages only care about the mechanics! You have no soul! Literature has as much to do with brute words as... as computer science has to do with telescopes! Besides, it's all about the deconstruction of the articulation of the biopolitics of the transgressive post-post-ironic feminist inter(de)mediation now. You'd never understand.

      Huh. Buncha latte-slurping coffee-shop hippies. Lets see you guys trek into Kazakhstan to catalogue the Indo-Ayran migration drift of the Mongolian antelope herders' nasal pluperfect tenses, or construct a crude field-expedient LL(R) parser for their iconographic system out of sticks and dead beetles. I did that last week. Had to kill a buncha snow leopards that got in my way.

      You think that's hard? Over in Library Sciences we had to convert our whole stack from Dewey to Library of Congress classification. At midnight. By hand.

      Hey guys! I'm the visiting speaker from the fiction writing workshop over in Adult Education! I've been writing professionally all my life and I just made a million bucks from my latest novel! Can I join in?

      (all turn and glare)

      --
      You are not a brain: http://books.google.com/books?id=2oV61CeDx-YC
  5. As a person that has hired a lot of developers-- by Anonymous Coward · · Score: 5, Insightful

    I would not hire anybody who is "Self Taught". In fact, I looked at schools, GPA, the whole shebang. I want to see that someone has the discipline to go through the process, work with others, and actually see something through to completion.

    Tattoos, piercings, etc-- Didn't matter, I had lots of good people that may look funky. Degree from a good school- Mandatory.

    Your mileage may vary, but I think you deserve to hear the truth from somebody that has actually hired developers and managed them.

  6. Engineering was always a better bet.. by xtal · · Score: 5, Interesting

    If you've got the chops for a real CS degree, you have largely the same options open for you with an electrical engineering degree, and a lot of other ones you'd be excluded from, too.

    If you want to do applied math.. well.. I'd get a math degree and take some CS courses to bolster the programming. Discrete mathematics is just that. Math degrees aren't that common, and IIRC, sought after, especially in finance and statistical analysis.

    CS is in an awkward spot. It never was meant to be a trade degree.. somewhere along the lines it was expected to be one. Hilarity did not ensue.

    YMMV.

    --
    ..don't panic
    1. Re:Engineering was always a better bet.. by Dogbertius · · Score: 4, Insightful

      I'm still surprised that there are /.'ers cannot distinguish between the degree/career mappings that be. At least in Canada and the USA

      IT:
      -Learn: Active directory, Windows or UNIX servers, user management, e-mail server management, virus removal, setting up routers and VPN
      -Jobs: IT help desk, corporate IT, call centres


      Comp Sci:
      -Learn: Discrete math, basic programming, databases and DB theory, algorithm design, basic physics,
      -Jobs: University/academia, entry-level programming jobs


      Engineering (Electrical and Computer):
      -Learn: Calculus, discrete math, electrical circuits, electronics, materials, advanced physics, chemistry, economics
      -Jobs: advanced programming/development jobs, embedded dev, chip fabrication, academia


      Most IT programs in Canada are 2-year full-time/accelerated programs, while CS is a full-time 4 year program, and engineering is a 4-5 year double-full-time program. I still laugh when people are surprised that comp-sci majors know shit about removing viruses from PCs, while the engineering and IT students have been removing and even MAKING viruses since elementary school (ie: before they were 13 years old).

    2. Re:Engineering was always a better bet.. by Pseudonym · · Score: 4, Insightful

      Comp Sci:
      -Learn: Discrete math, basic programming, databases and DB theory, algorithm design, basic physics,
      -Jobs: University/academia, entry-level programming jobs

      Engineering (Electrical and Computer):
      -Learn: Calculus, discrete math, electrical circuits, electronics, materials, advanced physics, chemistry, economics
      -Jobs: advanced programming/development jobs, embedded dev, chip fabrication, academia

      I love it how a CS degree gets you an "entry-level programming" job, but an engineering degree gets you an "advanced programming/development" job, as if someone will hire you as a team lead straight out of university.

      If you want an "advanced development" job, a CS degree will do just as well as a SE degree in the long run. The advantage of CS is that it will work marginally better for you if you want to do R&D rather than just D.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
  7. Apples and Oranges? by SA_Democrat · · Score: 4, Insightful

    The Author doesn't seem to make the point that he's trying to make. Computer Science degrees may not be a good predictor for coding in language-of-the-week, but computer scientists would not make the kind of dumb rookie errors that you see every day in the real world. I still shudder about a self-taught contractor who wasted weeks trying to write a sort. I'm surprised that an article as poor as this one made the front page.

  8. Derp? by kelemvor4 · · Score: 4, Informative

    [quote] that's because the scarcity of talent[/quote] Hogwash, no such scarcity exists. There is a scarcity of talented programmers that will work for minimum wage (inside the U.S.). But that's not really the same thing now, is it?

    1. Re:Derp? by ranton · · Score: 4, Insightful

      [quote] that's because the scarcity of talent[/quote]
      Hogwash, no such scarcity exists. There is a scarcity of talented programmers that will work for minimum wage (inside the U.S.). But that's not really the same thing now, is it?

      Whenever someone claims there is no talent scarcity in the software development industry, I am reminded of the poker proverb: If after ten minutes at the poker table you do know know who the sucker is, you are the sucker.

      If you work as a developer and you do not notice the severe level of talent scarcity, you are probably not talented enough to notice. I don't know you at all so I could be way off base in this one case, but I have never met a skilled developer who wasn't frustrated with the lack of talent in the industry.

      --
      -- All that is necessary for the triumph of evil is that good men do nothing. -- Edmund Burke
  9. Description of most of my CS classes by Anonymous Coward · · Score: 4, Interesting

    I'm doing Bachleor's of CS now. In most CS classes I do the following: Look left, look right, look at palm, apply palm to face. I know most of these clowns won't make it to the end, but the fear of some making it is what keeps me up at night. To put it gently, the piece of paper is not enough. CS seems like one of the fields were you always need to take the concepts you learn, apply them, and take them further. You also learn more things not covered in the course, but that are in your book. Then you learn things not in the book. If you expect the average CS curriculum to turn you into a genius, then you have a problem. In addition to my studies, I provide supplemental in class tutoring in several CS courses at local community college. Now in their defense a lot of people in those classes are not CS, usually you get Engineers, and those that are usually have dreams of making video games because playing them is all they do with their time. But the most bizarre question I get after they learn a simple program is: "What can I do with this?" It's like you show a cavemen how to make fire, and they ask you: "What can I do with this fire?" It's like showing a cavemen the wheel and having them remark: "So what?" I just don't know how to answer this question properly. I have tried several responses.

  10. Fuck this asshat by Desler · · Score: 5, Informative

    In fairness, that's because the scarcity of talent has created a mercenary culture: "Now that my employer paid me to learn a new skill, let me check to see if there's an ad for it on Dice or Craigslist with a higher rate of pay."

    Actually, in true fairness people do this because most companies have no loyalty to their engineers are more than willing to ship their jobs overseas or give it to some less experience person so that they can pay the person shit wages while overworking them.

  11. cost by girlintraining · · Score: 5, Interesting

    Of course it's worth getting; assuming the cost of the education is low enough. I believe the average person goes through 3 career changes in the course of his/her life. That's about 16 years in the field, give or take. We'll say the average income in the field is $50,000 -- just for comparison's sake. And let's say your education costs $80,000 (a not unreasonable sum, considering how quickly costs are ballooning). Now obviously because of interest rates and taxes and whatnot, this is an overly-simplistic estimate and I won't consider those -- but given the above, you'd be paying 10% of your income back over the expected life of your career.

    The real question you have to ask is -- is the increase in income greater than the cost of the education? Now, obviously, the above numbers are overly simplistic, but it's a starting point to a more in depth analysis. I think you'll find that when all the variables are taken into account, a college education only delivers a marginal benefit to your overall quality of life compared to either trying to get your foot in the door without one, or doing a job that doesn't require one. At least in my country (the United States), with the middle class rapidly imploding due to greed and other factors... you probably want every edge you can get. Work the numbers carefully; If you miscalculate, your financial future is grim.

    --
    #fuckbeta #iamslashdot #dicemustdie
  12. Bullshit bullshit bullshit by MrEricSir · · Score: 5, Informative

    But CS graduates are often unemployed after graduation due to the lack of experience in hard times.

    Um, what? We just went through the worst recession in years, and recent CS grads were still getting jobs without a whole lot of effort.

    What IT needs is someone to fix shit. Not talk about mathmatical models when the server goes down.

    Now we're knee deep into WTF territory. If you have a CS degree, why the hell are you working an IT job?

    --
    There's no -1 for "I don't get it."
    1. Re:Bullshit bullshit bullshit by afgam28 · · Score: 4, Informative

      What IT needs is someone to fix shit. Not talk about mathmatical models when the server goes down.

      Now we're knee deep into WTF territory. If you have a CS degree, why the hell are you working an IT job?

      Exactly. For some strange reason, people seem to lump all "computer" jobs together, whether it's IT, Software Engineering or web design.

      Do people need a degree to do IT work? No.
      Do people need a degree to be a software engineer? Almost always, yes, unless they're exceptionally good.

      I'm not saying that there's anything wrong with IT, or that it's any less of a job. But it is a different job and it requires different skills.

  13. New Skill SHOULD == More Pay by HapSlappy_2222 · · Score: 4, Insightful

    "Now that my employer paid me to learn a new skill, let me check to see if there's an ad for it on Dice or Craigslist with a higher rate of pay."

    Or, you know, my employer could pay me what I'm worth now that I have expertise with this new skill. You paid for the training. Great, thanks; much appreciated. Now pay me the new salary I can command, too. Them's the breaks. You needed the skill to be brought on board, and I learned it, now pay for it. Consider it an investment in a better employee.

    I went in to ask for a raise years ago, having just graduated with my (you guessed it) CS degree, and also now that I had many more responsibilities and was travelling for the company.

    I was told that "travel is a perk, and your responsibilities are the logical progression of your position. We can't afford to give you that large of a raise." So I found someone who could. Best job I ever had, but below a certain threshold, the money really did matter.

    Honest employers realize this, and while everybody likes to save a few bucks, the best employers are the ones who care. It's a rare gift when you work for one.

  14. And it can keyword match by Sycraft-fu · · Score: 4, Insightful

    A job requires a bachelors? Well there you go it matches. If they require one in "computers" it also matches.

    Also don't whine about keyword matching: Learn it and use it. In many big companies, resumes are filtered by HR. They don't know shit about technical jobs. So what they do is look at the list of requirements given to them, and see if the resume matches. If so, it goes in the "good" pile, if not it isn't sent on.

    So if a company asks for experience in TCP/IP and you have networking experience, don't put networking, put TCP/IP. HR doesn't know those two things are related.

    This is how it works at the university I work at. Most departments have HR filter their resumes so the manager doing the hiring isn't inundated by crap. Some people resume spam no matter how little their experience is related to the job so you can have literally hundreds to wade through. So they have HR filter. What that means is only resumes that meet the requirements are passed on and THAT means buzzwords have to match.

    Like writing code, writing resumes requires using the proper terminology. Don't bitch about it, learn it and do it.

    1. Re:And it can keyword match by Sycraft-fu · · Score: 4, Insightful

      "Nobody is asking you to lie, they're asking you to jump through a hoop."

      Precisely. When I got my current job at the university I work at the situation was one of HR filtering. I knew this (particularly having worked there as a student before getting a staff job) and I tailored my resume accordingly. I did not lie, I didn't exaggerated, I just made sure my terms matched the terms asked for. If I recall correctly (it was 8 years ago) one of the things they asked for was experiencing with "routing and switching" not "networking". I had this in spades, and I made sure to phrase it as that.

      Yes, this does mean you need to customize your resume per job. Guess what? You should do that anyhow. When a resume is spammed, it tends to show. What it shows is you really aren't that interested in that job, it is just one of very many you are applying for. A customized resume means that the candidate might actually want that job, and just just a job.

      Regardless of it it works or not, it is the way things are at many places. At some places, there is no option. HR filters all resumes, period, the hiring manage has no say. So that being the case you should assume it is always the case and write a resume accordingly.

      It doesn't hurt you with the actual tech people who review you. I don't care if you put "networking experience", "routing experience," "TCP/IP experience," "Cisco experience," or whatever. I can reason out you mean that you've done more with a network than just use it. However an HR person can't, they can only match what is asked for with what you claim to have.

      Also, as the parent mentioned, it is something of an indicator. If you are unwilling or unable to play HR's game, that doesn't speak well for you. Being good at a job is more than just technical skill.

    2. Re:And it can keyword match by AK+Marc · · Score: 4, Interesting

      Nobody is asking you to lie, they're asking you to jump through a hoop.

      I've been asked to lie. A job required a computer science degree and 5 years experience (it was an entry level help desk position doing phone support). HR called me. I had a B.S. in an unrelated field and 12 years experience. I was asked to say that the experience is equivalent to a degree, so that I could be considered for the position. I'm guessing there was a shortage of people with a degree in computer science and 5 years experience looking for a low-paying phone support position for a crappy bank website. Given the requirements and the fact that they were so high, despite not being able to find suitable candidates, it was a clear sign that I didn't want to work for a circus master who finds it amusing to make others needlessly jump through hoops. Have a test in the interview. Don't have a hidden test in the form of hoops before getting there. That's just mean, and I wouldn't want to work for a prick like you.

    3. Re:And it can keyword match by Bremic · · Score: 5, Informative

      In my previous job my manager was asked to provide a list of keywords that would be used as a filter for resumes.

      The list of keywords did not reflect what is in the advertised job description, so if you didn't guess the correct keywords, you were never going to get through.

      More and more it's just blind luck if you will put in the phrases that are important, at the same time as writing something that will parse well enough to demonstrate good communication skills.

  15. Computer Science degree is absolutely needed. by sageres · · Score: 5, Insightful

    Self-taught, learned Basic, Pascal, C back in High School. Got a job and career without a degree, wanted to get a degree, thirteen years after high-school eventually got Computer Science degree.
    From that perspective I can tell you that it only made me a thinking programmer (not just a coder), a program designer. Topics such as asymptotic analysis are indispensable. Those who do not have such a degree, I found them to be lacking in code quality.
    Computer Science degree is absolutely needed.

  16. Self taught often have gaps in their knowledge by perpenso · · Score: 5, Interesting

    Self taught and degree aren't mutally exclusive ... Also university isn't just about learning a trade (that's trade school). It's about getting a rounded education in stuff you probably don't give a shit about ...

    I can't agree more. Learning on your own **and** learning as part of a formal degree program is probably the best. Most purely self taught tend to have gaps in their knowledge. They are just as smart, possessing the same raw talent and I have worked with many and would be happy to work with them again ... but occasionally gaps are evident. There are classes in a degree program that a person has no interest in and they are unlikely to study on their own. However these "uninteresting" topics are sometimes important or may provide an unexpected solution or insight into something you are working on.

    I have only met one person who is purely self taught, reads computer science textbooks or the equivalent, and reads such books covering a wide variety of topics comparable to what one sees in a traditional computer science program. When I was working on my degree I borrowed Knuth vol 1-3 from this person, these were not vanity books for a bookshelf, they were all obviously read.

    Most people do not posses the discipline to do it on their own. They will benefit from a formal program that forces them to do things they would not otherwise do.

  17. More than just the language de jour.. by dthanna · · Score: 4, Interesting

    The professors at the university I went to specifically told us that they were not there to teach us how to program in a particular language. But to give us the fundamentals to program in any language that we needed to. If you need to program in x, go buy a book on x and learn the language. And, to make that point, we were thrown at Pascal (all the data structures classes), ADA, C (networking, operating systems), C++ (OOP) , COBOL, databases, a couple flavors of assembler, file systems (I can still do block calculations) computers and law, and, to top things off, PostScript. I also was able to pick up a minor in mathematics, classes on Russian history, Western Civ., communications, economics, physics, chemistry and all that other 'crap' that is to make you a well rounded egghead. Because of that expanded world-view, I can actually work with my counterparts in India and treat them like human beings. (For everyone that is bemoaning the fact that jobs are going over there - don't blame the Indians - they want the same thing for their families as you do - food on the table, roof over their head, clothes on there back and a better life for their children. Blame your local politicians and business leaders).

    Because of the way they designed the CS environment, and how they approached the material, I was able to build stuff that ran circles around the 'self taught' folks. Sure, we can build a linked list and tree in COBOL 85 to do fast data lookups (COBOL didn't support pointers in that release, but it has this really good array system). I understand the multiple tree structures inside of a PDF - and how the file actually organized as it is written to disk.

    I have a CS degree.. I work in IT... and to be honest, I rarely use the programming skills to actually program - most of what I did was in PostScript when I did program. But, I've also had to learn Python, JavaScript, Visual Basic, 370 Assembler, JCL, and SAS when the need arose. Lately what I've needed to do is advise other folks on good practices vs. bad. Talk to the engineering departments at my vendors how their systems work (or don't) .. sometimes with an uncanny insight into how their systems were actually programmed (I'll bet Bob wrote this at 3AM) hopefully with some great ideas on how to make their better. I can translate business rules into software rules (four years coding pension plans) and generally understand why business operates the way they do. Finally, I made some great friends there. The kind of friends that are still friends 20 years later.

    Yea, at least for me, the CS degree was worth it.

  18. The answer is simple.... by raehl · · Score: 4, Insightful

    What you want a guy who went to automobile trade school and owns at least one performance car he built/maintains himself.

    Employers don't have to choose between CS degree OR self-taught. They can choose both - look for people with CS degrees and side projects. Lots of kids I went to school with wrote some other software that had nothing to do with their classwork. And we put that on our resumes.

    That's why the whole, "I have a CS degree but I can't get a real job because I don't have experience!" excuse is BS. Anyone worth their salt as a programmer who has a CS degree can MAKE THEIR OWN EXPERIENCE at ANY TIME! When you get home from your call center job, just put down the controller and write some software, and assuming you stick with it, 6 months later you'll have some experience.

    1. Re:The answer is simple.... by Nitewing98 · · Score: 5, Funny

      Isn't this the same as every Jedi building their own lightsabre?

      --

      Nitewing '98

      Everything works...in theory.

    2. Re:The answer is simple.... by Anonymous Coward · · Score: 5, Insightful

      Employers want to hire people who can do really hard things, do them well, and not charge a lot for it.

      Employees no longer receive pensions, and in the field of computer programming they expect to be completely un-employable at 40 years of age (not due to lack of talent, but to rampant unchecked agism). So, employees *need* to charge a lot for their work.

      So what is the whine here? Fresh college grads don't instantly perform at the level of seasoned veterans? Boo-fucking-hoo. If you want top of the industry talent then you must pay a top of the industry salary.

      Don't like the fact that employees aren't loyal? Take a good long look in the mirror there, mister "job-creator."

    3. Re:The answer is simple.... by mcrbids · · Score: 5, Insightful

      Employer here... When hiring, I look for two things:

      1) Can they program? Simple question, really. I don't expect them to be all that proficient in our specific langauge, so I usually leave questions open ended in terms of tools used. I'm looking for general ability to approach a problem and come up with a reasonably structured, workable solution using whatever tools he/she desires.

      2) Suitability to our company. Here, I'm looking to see that working at our company would actually be a reasonable match. If somebody's interested in big city life, they probably don't want to work at our company because we are in a small-ish California valley town. We do heavy doses of databases with SQL. So if your passion is 3D or firmware, I'm probably not thinking it's a good match, etc.

      You'd be stunned how many applicants with otherwise gorgeous resumes cannot perform a simple string replace in any language whatsoever. Also, don't put something on your resume that you know nothing about, because I will ask. Don't tell me "5 years of Enterprise database experience with SQL Server" without being able to write a query or something. If you mention Linux, you'd better know basics like how to read output from ls -l or use find or sed with some grace.

      --
      I have no problem with your religion until you decide it's reason to deprive others of the truth.
    4. Re:The answer is simple.... by beelsebob · · Score: 5, Informative

      That's why the whole, "I have a CS degree but I can't get a real job because I don't have experience!" excuse is BS. Anyone worth their salt as a programmer who has a CS degree can MAKE THEIR OWN EXPERIENCE at ANY TIME!

      Actually, that excuse is not bullshit in large part, but not because of the employers – because of idiot recruitment agencies. When I was looking for a job (thankfully, in work now), I had several recruitment agencies tell me I was insuitable because I did not have 5 years experience coding for the iPhone. When it was pointed out to them that 1) The iPhone API had only existed for 2 and a half years 2) I had apps in the store, making money 3) I had 10 years of experience coding for Cocoa on OS X, and a bunch of stuff before that, they typically came back with "yes, but those were all hobby projects, not actual industrial experience, we can't accept that".

    5. Re:The answer is simple.... by Scarletdown · · Score: 5, Insightful

      Sounds like those mental midgets did you a big favor by not hiring you into their little circle of hell.

      --
      This space unintentionally left blank.
    6. Re:The answer is simple.... by Xest · · Score: 5, Insightful

      "Employees no longer receive pensions, and in the field of computer programming they expect to be completely un-employable at 40 years of age (not due to lack of talent, but to rampant unchecked agism). So, employees *need* to charge a lot for their work."

      I see this complaint a lot on Slashdot, perhaps it's country specific (the US?) but in my experience it's completely and utterly false in the UK and is merely an excuse for people who just don't cut it, and simply haven't kept their skills uptodate, or are merely just crap employees which makes them useless, no matter how much they've done before. It's the IT world's equivalent of manual labourers whinging about immigrants - sorry, but if an immigrant beats you to a job despite you being native to a country with a better education system, and often a native language advantage then it's your fault for not taking the opportunities given to you whilst the immigrant managed to make himself the better candidate despite not having the advantages you did. Oh, he took less pay? tough shit, you were probably overpaid- no one thinks they're overpaid, but it doesn't mean they aren't.

      Honestly, it's tiresome to hear, if you're good at what you do and are willing to put in the hours then no one gives a fuck how young, or old you are, what race you are, what sex you are. It's the same as the women who whinge about the glass ceiling whilst simultaneously saying "Oh, but I need to leave at 3pm every day to pick the kids up" - tough fucking shit, get your husband to do it or accept that that's the price you pay for choosing to be the member of the family who opts to do less hours.

      I know plenty of 40+ and 50+ programmers and none of them are having a problem with employment because they're good at what they do, and they've kept learning continuously throughout their careers. I do know some unemployed 30-somethings who worked in software development, but they're all unemployed because they're simply shit, they are the bottom 8%. Others I know that age and younger are seeing booming careers because they're simply superb at what they do.

      There still seems to be far, far more software jobs around than there are suitable candidates. If you find yourself long-term unemployed in this field for more than maybe 3 months and think someone else is to blame, then you're probably one of those people incapable of introspection, if you're incapable of introspection, you're not going to be able to look objectively at your skills and abilities and recognise why employers don't want you. Or to put it simply, you are the problem.

      Most employers aren't stupid, if you're asking for a sensible wage, and are extremely competent, then they'll jump at the opportunity to hire you whatever the fuck other traits you have. Racists, ageists and other bigots thankfully tend to get selected out in the world of business, because their competitors that aren't bigotted will rapidly snap up the talent they didn't want, leaving them with the shit.

    7. Re:The answer is simple.... by somersault · · Score: 5, Insightful

      Um.. it's called an analogy.. and it's quite apt.

      --
      which is totally what she said
    8. Re:The answer is simple.... by TheRaven64 · · Score: 4, Insightful

      So what is the whine here? Fresh college grads don't instantly perform at the level of seasoned veterans?

      No, it's fresh college grads that don't instantly perform at the level of seasoned veterans, don't want to learn on the job, and expect to be paid at veteran salary levels.

      --
      I am TheRaven on Soylent News
    9. Re:The answer is simple.... by bluestar · · Score: 5, Interesting

      "yes, but those were all hobby projects, not actual industrial experience, we can't accept that"

      That's why I created a "company" and registered a domain. I credit all my "hobby" work to that company. It at least gets you past the HR idiots and then you can explain things better to an interviewer. I don't "use Linux at home", I build HA web clusters for fun.

      --
      "The cost of freedom is eternal vigilance." -Thomas Jefferson
    10. Re:The answer is simple.... by BVis · · Score: 5, Insightful

      No, it's fresh college grads that can't instantly perform at the level of seasoned veterans, want to learn but are forced to work 90 hour weeks with no training opportunities, and expect to be paid a living wage.

      Fixed that for you.

      --
      Never underestimate the power of stupid people in large groups.
    11. Re:The answer is simple.... by Xest · · Score: 5, Insightful

      No, your inability to stand up for yourself and your inability to ensure you're talented enough to be able to jump ship from any such company that expects such a thing are the reasons you have to work an 80 hour week.

      I've never worked an 80 hour week, not once, I wouldn't even touch an employer who expected such a thing and you're an idiot if you do. If you do, then that also makes you the reason you have to work an 80 hour week - because you're actually letting companies get away with such absurdity. If you don't like it then walk, go get a job elsewhere, can't get a job elsewhere? skill up, improve yourself, then go get a job elsewhere. The only thing stopping you working somewhere that doesn't expect you to work an 80 hour week is you.

    12. Re:The answer is simple.... by tompaulco · · Score: 5, Insightful

      If you're good at what you do, you'll be employable (no matter what the field, no matter what your age).
      I used to believe that, too. Whenever somebody couldn't find a job no matter how hard they looked, I just said it was because they weren't head and shoulders above everyone else in the field. Then, when it happened to me, I changed my tune. I realized that just because you are really good at something and even if your last employer fought to the last tooth to keep you as long as possible, doesn't mean that you are employable, at least not in a down economy. In a down economy, a company would rather hire cheap below average performers than a guy who is expensive but could blow the roomful cheap guys out of the water in terms of performance.

      --
      If you are not allowed to question your government then the government has answered your question.
  19. Not in my experience by psperl · · Score: 4, Insightful

    I manage software developers for a large tech firm and have done significant hiring.

    My experience is in direct conflict to the ideas presented here. I have found the best results with pure CS graduates. The vast majority of self-taught developers I've worked with have huge gaps in their fundamental CS knowledge, while CS graduate rarely make poor algorithmic choices that we come to regret when our projects scale. Their code is often of higher quality so code reviews are less cumbersome and require less rework. CS graduates are usually nerds from an early age, and to a large degree self-taught before they reached college. These people are generally "serious" about computers, general nerdiness, and their work.

    Some self-taught people may be brilliant developers with less student loan debt than CS graduates, but they are not a reliable source of talent. If you are a professional bulding a team, stick with CS graduates, or you take a big risk. That well-spoken self-taught programmer might seem like a great candidate, but wait until you come across real CS problems.

    PS - There are a few engineering degrees which I think are just as good as CS

  20. Sad degradation of expectations by tranquilidad · · Score: 4, Interesting

    I started programming in 1976 while I was still in high school. I went to a university and signed up for computer science but did not do at all well in the non-CS courses - probably because of the arguments I used to get into with the professors. I took as many CS courses as I could and quit school and started working. I retired at 43 in 2004 after ending up running a lot of very large product organizations within a pretty large company. The lack of a degree almost kept me out of the company but I had advocates within the company with whom I had worked who championed my cause.

    A VC called me to visit one of their startups in 2006 to see about joining at a fairly high level. Things went well until I interviewed with their head of HR and had the following conversation:

    HR - "You left education off of your resume. Why?"
    Me - "I didn't finish school and felt that a couple years of college weren't important compared to the rest of my resume."
    HR - "Don't you feel unfulfilled?"
    Me - "I'm sorry, unfulfilled in what way?"
    HR - "Don't you feel unfulfilled in not having a degree."
    Me - "Not really. I'm retired and your investor asked me to come see if I could help out. If it's not a fit then we can both walk away happy."
    HR - "Well, we'll need a notarized affidavit confirming your level of education."
    Me - "I'm not claiming to have a degree in anything and I'm willing to say I've had no schooling whatsoever if it will save us this process."
    HR - "No, we'll need the affidavit."
    Me - "I swear, I'm not hiding an advanced degree in nuclear engineering. How are you going to confirm that I'm not hiding advanced degrees?"
    HR - "It's policy."

    I never went back but I tell the story often about how the hiring process has degraded to a point of near uselessness. It's extremely difficult to find good talent to begin with and when we do find it the processes and legal jiu-jitsu we force the good applicants to endure makes it very difficult to bring them on board.

    The successful companies will continue to be those that get the processes out of the way and hold accountable the individuals who make bad decisions - be they hiring decisions or others.

    When you want to hire someone a good HR person will say, "Let me see how we can make that happen." Likewise, when you want to fire someone that good HR person should have the exact same response. Too often the HR and legal departments just become wielders of the veto pen and don't provide good support to the underlying mission of the organization.

    As a result, we end up with sadly degraded expectations where hiring becomes a check list of acceptable and non-acceptable gates through which our candidates pass and out the other end of the process is a mealy mash of homogeneity that does little to promote diversity of thought within an organization.

    The degree is still important but only as a single component in an overall tapestry that represents any particular candidate.

  21. Re:As a person that has hired a lot of developers- by girlintraining · · Score: 5, Insightful

    I want to see that someone has the discipline to go through the process, work with others, and actually see something through to completion.

    So what you're saying is, you're an asshole. You aren't hiring based on experience or ability, but because you went to school and therefore they should go to school. You say that you value someone seeing something through to completion -- but you can't fake ability or skillset for years on end. You can fake test scores, classes, hell -- you can buy yourself a degree online if you so desire.

    But you can't fake job references. You can't fake supervisors saying "that guy really knows his stuff." You're a bad manager because you've made an assumption, you're operating on belief. That's what bad managers do. Good managers go on instinct and experience... and maybe, if you had worked your way into your position instead of having been handed a degree and slotted into it, you'd know that.

    I have no respect for you, and I wouldn't work for you whether I had a degree or not, regardless of the pay. I work for managers who understand information technology is a creative profession, where skills change faster than courses can be designed to teach them, and experience is worth more than book smarts. I don't want to work with someone who can name all the layers of the OSI model but can't explain to me why having large buffers on the border router is a bad idea when it serves a call center.

    And that's what you get with a college degree: Book smart. Not street smart.

    --
    #fuckbeta #iamslashdot #dicemustdie
  22. "I don't have a computer science degree" by melted · · Score: 4, Insightful

    >> "I don't have a computer science degree"

    Found this sentence and did not read the article. The guy lucked out by being in the right place at the right time, and now he's spouting his confirmation bias to anyone who would listen. I'm also pretty sure he doesn't know what "confirmation bias" is. :-)

  23. Uh, no. by symbolset · · Score: 5, Interesting

    You don't even know. MIT grads can be excellent, or not. I've known a few I wouldn't trust to do my laundry.

    Dude, I had a BA in computer science and a decade in the field when I was washing dishes in a cafe and deli many years ago. That's a vast understatement of my qualifications then. I've cleaned the same grease trap over, and over, and over. Do you know what a grease trap smells like? It smells like fragrant death. I had to deal with the owner's daughter, whose sole gift to humanity was that she was born rich and thought that was a reason to beat me down. I used to pause while walking the mile to work in all weather here and there to vomit.

    And at that time I had implemented LZW, designed my own operating system, programming languages, popular BBS forums, a platform for magazine distribution through self-executing e-zines, a streaming graphics protocol and a number of other things. Had been a Unix admin for a decade. Everybody involved knew I shouldn't be there but that did not change my life. And I guess that's OK. I had to survive to find the opening I needed to get out of that hole, and they needed things too. I'm not afraid of honest work. I managed to learn some useful things: I'm still a killer chef and baristo. I had to fight my way out of that hell.

    Eventually I got lucky and got back in the tech game, and have since found a good spot for me. Ever since I don't assume things about others, no matter their situation or education. They have only to show me they can and will do the work, and they suit.

    --
    Help stamp out iliturcy.