Live data from Hacker News

Lowest “Who is hiring?” Post Count in 30 Months

news.ycombinator.com

11–20 of 318 posts

Re: Lowest “Who is hiring?” Post Count in 30 Months

#11
post #9

Earlier quoted context omitted.

Here's a chart from the thread I linked above: https://docs.google.com/spreadsheets/d/13yGlJzFpVzZ-WNHAOsdo... EDIT: I generated a new sheet for the chart with up-to-date data and fixed a data issue noted below.

Does anyone have any idea _why_ there's a peak in Q1 2020?

Things that used to be done in person suddenly went online and everyone was in a rush to make that transition happen quickly and smoothly.

Re: Lowest “Who is hiring?” Post Count in 30 Months

#12
post #9

Earlier quoted context omitted.

Here's a chart from the thread I linked above: https://docs.google.com/spreadsheets/d/13yGlJzFpVzZ-WNHAOsdo... EDIT: I generated a new sheet for the chart with up-to-date data and fixed a data issue noted below.

Does anyone have any idea _why_ there's a peak in Q1 2020?

Covid opening up more companies to the idea of remote workers? Or forcing development to fill gaps of processes that used to happen offline?

Re: Lowest “Who is hiring?” Post Count in 30 Months

#14
post #9

Earlier quoted context omitted.

Here's a chart from the thread I linked above: https://docs.google.com/spreadsheets/d/13yGlJzFpVzZ-WNHAOsdo... EDIT: I generated a new sheet for the chart with up-to-date data and fixed a data issue noted below.

Does anyone have any idea _why_ there's a peak in Q1 2020?

So that appears to be a fun edge case with that quick SQL query!

The spike was in March which was the start of the COVID-19 pandemic in the United States/shelter-in-place, which was a time of odd behavior and so a spike wouldn't be too weird.

It turns out that dang posted a special whoishiring soon after which was massively popular: https://news.ycombinator.com/item?id=22665398

I thought I filtered out nonstandard threads in the query:

   WITH whoishiring_threads AS (
      SELECT id FROM `bigquery-public-data.hacker_news.full`
      WHERE `by` = "whoishiring" 
      AND REGEXP_CONTAINS(title, "Ask HN: Who is hiring?")
    )
...but that filter is a regex, and in a regex the `?` is a modifier character and not a literal. So the query will combine the counts of both the top-level comments of that thread and the original one.

Data science is fun like that, and surprisingly not the first time I've made that particular query mistake.

Re: Lowest “Who is hiring?” Post Count in 30 Months

#17
post #9

Earlier quoted context omitted.

Here's a chart from the thread I linked above: https://docs.google.com/spreadsheets/d/13yGlJzFpVzZ-WNHAOsdo... EDIT: I generated a new sheet for the chart with up-to-date data and fixed a data issue noted below.

Does anyone have any idea _why_ there's a peak in Q1 2020?

I can reflect that we saw this happening in real life hiring. Remote hiring competition got FIERCE from the beginning of the pandemic and really through most of 2021. It has since settled out quite a bit.

There was a combination of large companies needing programmers to enable remote work or process changes due to the pandemic, stimulus funds causing a lot of VC funding to hit startups, hiring binges at FAANG companies, and everyone suddenly being remote-friendly.

Re: Lowest “Who is hiring?” Post Count in 30 Months

#20
post #18

My theory, YC software team has been building features like https://www.workatastartup.com/ and so YC companies are posting less on HN.

Or companies are cutting spending in anticipation of a recession.

This is the obvious answer
Post reply on HN