Hacker News new | ask | show | jobs
by DrJokepu 5617 days ago
The fact is than even the educated kids are unemployable. We constantly try to hire graduate developers here in London but the fact is that most of those kids are simply unemployable. They have impressive degrees from the best universities, but I simply can't hire someone who can't code a simple Fibonacci algorithm at the whiteboard in the interview room. In the language of their choice. I'd even accept an only marginally working solution with a few bugs. Still, most of them just can't do it. They don't even know how to start.

Universities simply don't prepare kids for the needs of the industry. After 3-5 years of higher education, many of the graduates can't solve even the most basic programming problems. I suspect that this must be the case in other professions as well. Something has to be done about the completely defective higher education systems.

3 comments

I was fortunate in community college because the instructor for my major (Linux admin) liked to spend large parts of class time telling stories from working in the IT industry.

Many interesting stories from dealing with MS audits in a mixed source environment.

The most interesting classes were those where he had us solve a real world problem (like researching and preparing an executive summary for a purchase).

Or the time he mangled all the computers while we were on break and had us troubleshoot them.

    fib a b 1 = 1
    fib a b 0 = 0
    fib a b n = (fib a b (n - 1)) + (fib a b (n -2))
Where do I send my CV (I always loved London).
Universities simply don't prepare kids for the needs of the industry.

I've been working in industry for over 10 years and the only time I've ever had to write a fibonacci sequence generator was during a code challenge (that lead to an interview).