month
stringlengths 8
14
| type
stringclasses 2
values | parent_id
int64 2.4M
45.4M
| comments
listlengths 0
975
|
|---|---|---|---|
October 2025
|
permanent
| 45,438,503
| [{"by":"nomadiccoder","id":45443400,"text":"Ford Motor Company | Staff Cloud Site Reliability Engine(...TRUNCATED)
|
October 2025
|
freelancer
| 45,438,502
| [{"by":"ageospatial","id":45450790,"text":"SWITZERLAND | REMOTE<p>www.ageospatial.com/jobs and (...TRUNCATED)
|
September 2025
|
permanent
| 45,093,192
| [{"by":"hartator","id":45098052,"text":"SerpApi | <a href=\"https://serpapi.com\" rel=\"no(...TRUNCATED)
|
September 2025
|
freelancer
| 45,093,191
| [{"by":"ageospatial","id":45213032,"text":"SWITZERLAND | REMOTE<p>www.ageospatial.com/jobs and (...TRUNCATED)
|
August 2025
|
permanent
| 44,757,794
| [{"by":"jamesjyu","id":44757802,"text":"Sudowrite | <a href=\"https://sudowrite.com\" rel=(...TRUNCATED)
|
August 2025
|
freelancer
| 44,757,793
| [{"by":"subleq","id":44757808,"text":"Fusionbox | Python + TypeScript Engineers | Denver, CO | REMOT(...TRUNCATED)
|
July 2025
|
permanent
| 44,434,576
| [{"by":"robbertvdg","id":44570283,"text":"Deeploy | Software Engineer (Full-stack) | Onsite Hybrid |(...TRUNCATED)
|
July 2025
|
freelancer
| 44,434,575
| [{"by":"tallytarik","id":44437973,"text":"Remote | Integration Engineers, Content Writers<p>IPLocate(...TRUNCATED)
|
June 2025
|
permanent
| 44,159,528
| [{"by":"vnchr","id":44162329,"text":"GoodParty.org | Multiple Roles | REMOTE (US) | Full-time & (...TRUNCATED)
|
June 2025
|
freelancer
| 44,159,527
| [{"by":"benzguo","id":44166154,"text":"Substrate Labs | NYC or Remote | <a href=\"https://(...TRUNCATED)
|
Context
This dataset contains all first-level comments to Hacker News Who Is Hiring posts from April 2011 in various formats. All data is derived from the official Firebase API and no data cleansing has occurred with the exception for removing SEEKING FREELANCER from the start of such comments..
Who wants to be hired? and Seeking Freelancer posts are included. For privacy reasons, job seeker posts will not be included. Although the data is public, do not want to create an easily accessible permanent record.
Content
Each row contains the content for a single month which includes:
- month: the month in mmmm yyyy format)
- parent_id: the submission id
- comments: list of comments for the given month.
A single row for each month so that the data can be easily appended to with new data. Threads are closed to new comments after two weeks so a new row can be appended to the start after the middle of the current month.
| month | type | parent_id | comments | |
|---|---|---|---|---|
| 0 | March 2024 | permanent | 39562986 | [{'id': 39563104, 'by': 'jnathsf', 'text': 'Ci... |
| 1 | February 2024 | permanent | 39217310 | [{'id': 39375047, 'by': 'lpnoel1', 'text': 'Di... |
| 2 | January 2024 | permanent | 38842977 | [{'id': 38844766, 'by': 'pudo', 'text': 'OpenS... |
| ... | ... | ... | ... | ... |
| 159 | June 2011 | permanent | 2607052 | [{'id': 2607280, 'by': 'yummyfajitas', 'text':... |
| 160 | May 2011 | permanent | 2503204 | [{'id': 2504067, 'by': 'jfarmer', 'text': 'Eve... |
| 161 | April 2011 | permanent | 2396027 | [{'id': 2396144, 'by': 'pchristensen', 'text':... |
Updates
May 2025 Seeking freelancers are now being saved in their own row. The data is interlaced by months, so the most recent posts will be in the first two positions.
April/May 2025 Starting with the May 2025 update (second half of the month), both hiring and seeking freelancer posts will be part of the dataset. The dataset with data up until April 2025 has been updated and the begining of the May 2025.
Formats
Data is available in compressed parquet, feather, pickle or uncompressed pickle formats
The data frame can be easily converted into a row-for-comment format
import pandas as pd
hiring_df = pd.read_parquet('hiring.parquet')
exploded_df = hiring_df.explode('comments').dropna().reset_index(drop=True).rename(columns={'comments': 'comment'})
comments_df = exploded_df.join(pd.DataFrame(exploded_df['comment'].tolist())).drop('comment', axis=1)
| month | type | parent_id | id | by | text | |
|---|---|---|---|---|---|---|
| 0 | March 2024 | permanent | 39562986 | 39563104 | jnathsf | City Innovate |
- Downloads last month
- 185