Hacker News new | ask | show | jobs
by lmilcin 2228 days ago
Due to roughly exponential growth in the number of developers of all kind over last couple of decades it is true that at any point most developers have very little experience. I don't remember what was doubling time but I think it was more than two years but less than 5 years. It as also easy to see that the growth is already flattening out with some interesting repercussions in the near future (experienced/inexperienced developers ration finally getting better, etc.)

Doubling time shorter for python developers could be explained to be a result of python getting more popular (so even though programming gets more popular as a job, python grows even faster within developer community).

1 comments

> Due to roughly exponential growth in the number of developers of all kind over last couple of decades

That is certainly true until ~2010, but I wonder if it still holds today. At some point it's got to taper off due to the global population being finite. Anyone got some data on this?

I interview a decent number. At least in my area, college grads have leveled off. There's still a ton of them, maybe 5% growth a year and a lot more applying for first jobs. But its a steady percentage.

There's been a huge jump in code camp grads. Gigantic. And unfortunately the vast majority are not great. We give them coding assignments first, otherwise there's just too many to even sort through. I would say over half are unable to complete the (very simple) coding assignment. Build 3 API endpoints in any language that can do a couple different sorts and limits of a static set of data in CSV.

I work in a large corp as a senior developer/tech lead. I interview 1-2 candidates every week. These are typically people who either passed screening or are already employed by an external company. Unfortunately, I have little influence on that process (remember... Big Co...)

Because I typically hire for more senior roles I get candidates with 5 years of experience at the minimum.

Roughly 4 out of 5 candidates do not know answer to ANY of these questions:

- What is virtual memory?

- Can you pass data to another process by passing a pointer to the data? (tricky, but generally processes have separate address spaces unless you put extra effort to have part of the space mapped to same address, using shared memory, mmap, etc.)

- Can you explain what is a breakpoint? (an instruction injected by debugging program that stops execution and causing an interrupt that causes OS to call debugger)

- Can a process allocate more memory than is physically available on the host?

- Is inserting random integers into a huge sorted array faster or slower than inserting into singly linked list (absent any indexes)? (Inserting to array list will require huge data copy but linear search over linked list is so much slower it will cause linked list to be slower than array every time).

- Please, write a program to group an input list of words into lists of anagrams.

Etc.

HN community is quite self selected. The average engineer I've met chose their career for the money and isn't interested in much that's not right in front of them
No hard data to share but there are 2~3B people coming online still, so I doubt the S-curve is leveling off yet.