Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: init top honors page #278

Merged
merged 9 commits into from
Aug 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ const blitzConfig = require("@blitzjs/next/eslint")

module.exports = {
...blitzConfig,
extends: [...blitzConfig.extends, "plugin:tailwindcss/recommended"],
extends: [
...blitzConfig.extends,
"next/core-web-vitals",
"plugin:tailwindcss/recommended",
],
rules: {
...blitzConfig.rules,
...{
Expand Down
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,8 @@ teachable_dat*.json

# Database backups
db/*.bak.json

# Python deps
*.venv
*.venv/
*/venv/
29 changes: 29 additions & 0 deletions scripts/analytical/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Ladderly.io Analytical Scripts

This directory contains scripts and data for various insights

## usage

navigate to the directory containing this README in a terminal and create a virtual environment:

```bash
python3 -m venv .venv
source .venv/bin/activate
```

install the requirements file and run your script of choice!

```bash
python3 -m pip install -r requirements.txt
python3 blog-15-job-search-regression.py
```

## contributing

1. ensure requirements are tracked in requirements.txt
2. include a comment at the top of the script summarizing the purpose.
1. This comment should be terse, ideally tweet length or less. If you require a verbose explanation, consider creating a blog article instead and referencing the blog article from the script comment.
3. submit a pull request! optionally contact the team over Discord to get your work prioritized. To join the Discord:
1. visit https://ladderly.io
2. from the top navigation menu, click community -> Discord
3. you can post about your PR in any channel. Within the specific #contributor-chat channel you can optionally tag `@everyone`
60 changes: 60 additions & 0 deletions scripts/analytical/blog-15-job-search-regression.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# analysis supporting blog article
# `15. On Cover Letters and Resume Tailoring`
# found at
# `ladderly-3/src/pages/blog/2024-08-03-no-cover-letters.md`
# explains interview attainment

import pandas as pd
import statsmodels.api as sm

# Load the CSV file
file_path = './vandivier-censored-job-search-may-2024.csv'
df = pd.read_csv(file_path)

# Step 1 of 3: Construct Variables
def determine_interview_corrected(status):
status = status.lower()
if status in ['rejected, pre-r1', 'r1 cancelled', 'applied', 'timed out']:
return 0
return 1

# Apply the function to the Status column to create the attained_interview column
df['attained_interview'] = df['Status'].apply(lambda x: determine_interview_corrected(x))

# Calculate `is_low_effort`
df['is_low_effort'] = ((df['Contact Role'].str.lower() == 'skipped') & (df['Job Post Title'].str.lower() == 'skipped')).astype(int)

# Convert `Company` and `Resume Version` to categorical codes
df['Company'] = df['Company'].astype('category').cat.codes
df['Resume Version'] = df['Resume Version'].astype('category').cat.codes

# Create dummy variables for Referral and Inbound Opportunity
df['Referral'] = (df['Referral'].str.upper() == 'YES').astype(int)
df['Inbound Opportunity'] = df['Inbound Opportunity'].astype(int)

# Step 2 of 3: Validate Features
# Expected values
expected_total_inbound = 17
expected_inbound_attained_interview = 14

# Actual values
total_inbound = df['Inbound Opportunity'].sum()
inbound_attained_interview = df[(df['Inbound Opportunity'] == 1) & (df['attained_interview'] == 1)].shape[0]

# Print validation results
if total_inbound == expected_total_inbound:
print(f"Success: Total inbound records = {total_inbound}")
else:
print(f"Failure: Total inbound records = {total_inbound}, expected {expected_total_inbound}")

if inbound_attained_interview == expected_inbound_attained_interview:
print(f"Success: Inbound records that attained interview = {inbound_attained_interview}")
else:
print(f"Failure: Inbound records that attained interview = {inbound_attained_interview}, expected {expected_inbound_attained_interview}")

# Step 3 of 3: Run Multiple Regression
X = df[['is_low_effort', 'Resume Version', 'Company', 'Referral', 'Inbound Opportunity']]
y = df['attained_interview']
X = sm.add_constant(X)
model = sm.OLS(y, X).fit()
print(model.summary())
2 changes: 2 additions & 0 deletions scripts/analytical/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pandas
statsmodels
134 changes: 134 additions & 0 deletions scripts/analytical/vandivier-censored-job-search-may-2024.csv

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions src/pages/blog/2024-07-31-impact-accounting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
title: "14. Impact Accounting"
date: 7/31/24
author: John Vandivier
---

In July of 2021, [John Vandivier dedicated his TikTok channel](https://www.tiktok.com/@johnvandivier/video/7397477281800752430) to programming education content. October of 2021 marks the [initial commit of the original Ladderly](https://github.com/Vandivier/ladderly-slides/commit/897b3066de1645e53e7afa2acf11fbc33dbcbf27) repository. This article tracks quantitative achievements over time. These metrics are useful when describing the impact of Ladderly.io in a word of mouth, marketing, behavioral interview, or other context.

## 10 Notable Achievements

This section describes ten notable achievements as of July 2024 in reverse metric size order, which is not identical to impact order but it is more straightforward to determine:

1. Ladderly.io has exceeded 15 million organic social impressions
1. Just over 14.4 million views on [TikTok](https://www.tiktok.com/@johnvandivier)
1. Just over 11 million of those views related to coding, career development, tech humor, and education content.
2. Non-tech humor and socio-economic commentary were the major themes among the remainder.
2. Over 1M from YouTube from April 1, 2023 to July 31, 2024
3. At least 300k additional views from LinkedIn, Twitter, Instagram, Twitch, and Facebook.
2. Ladderly.io has exceeded 33k total social media followers and over 29k unique social social media followers
1. Over 24.4k TikTok followers
2. Over 3500 [LinkedIn followers](https://www.linkedin.com/in/john-vandivier/)
1. I just created an [official company page](https://www.linkedin.com/company/ladderly-io), but I'm currently the only follower.
3. Over 2800 [Twitter followers](https://twitter.com/JohnVandivier)
4. Over 1750 [YouTube subscribers](https://www.youtube.com/channel/UCPvdqd363fzrAv68aN1Qk-A)
5. Over 1400 [Facebook](https://www.facebook.com/ladderlyio/followers) followers
6. There are hundreds, but not thousands, of additional followers on other platforms including Twitch and Instagram.
7. In June of 2024, [John ran a poll](https://www.linkedin.com/posts/john-vandivier_i-wonder-how-much-overlap-my-network-has-activity-7206670687346851840-cept) that found that half of his LinkedIn followers were exclusive to LinkedIn. This article extrapolates that finding across channels to estimate the count of unique social subscribers as `24.4+(3.5+2.8+1.75+1.4)/2`, the result of which is greater than 29k.
3. Ladderly.io had over 3k unique and organic direct site visitors during the Google Analytics observation period from July 1, 2023 to July 31, 2024.
1. About 2.2k are from the United States
4. The ladderly.io open source ecosystem consists of 790+ commits from seven individual contributors across six active repositories, earning 58 stars. The projects are:
1. [ladderly-3](https://github.com/Vandivier/ladderly-3), which has over 105k lines of code.
2. [ladderly-slides](https://github.com/Vandivier/ladderly-slides)
3. [arias-tale-rpg](https://github.com/Vandivier/arias-tale-rpg)
4. [arias-tale-tcg-python](https://github.com/Vandivier/arias-tale-tcg-python)
5. [rect](https://github.com/Vandivier/rect)
6. [redyellowgreen](https://github.com/Vandivier/redyellowgreen)
5. Ladderly.io generated $600 in revenue in 2024, largely driven by the first Ladderly Small Group cohort.
6. 271 unique users have signed up
7. 222 members have joined the Discord community
8. Ladderly.io had 28 unique paying customers over the period from June 2023 to July 2024.
9. The first Ladderly Small Group had six members of which five were job seekers. The pilot program and ran from February to mid-June, with one member accepting a new job offer within one month of completion!
10. Ladderly.io open source work has resulted in improvements to Pyodide, Blitz.js, and other notable projects.

## Achievements as of August 2024 and Later

This section is currently empty and it will be populated with notable achievements in chronological order. Feel free to submit a pull request if you have a notable metric or achievement regarding Ladderly.io impact!
97 changes: 97 additions & 0 deletions src/pages/blog/2024-08-04-no-cover-letters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
---
title: "15. On Cover Letters and Resume Tailoring"
date: 8/4/24
author: John Vandivier
---

This article makes a data-driven case that creating a cover letter and tailored resume for each job post is not an optimal use of time and effort for most software engineers during their job search.

The article combines scholarly research with original analysis to push back on an observed error in common wisdom on the subject.

This article makes the case with nuance, pointing out edge cases in which that standard advice may not hold.

## Common Wisdom

Common wisdom holds that tailoring your resume will lead to increased response rates. [This LinkedIn poll](https://www.linkedin.com/pulse/one-size-fits-all-vs-custom-fitted-resumes-which-get-you-anderson/) (n=938) from Chris Anderson in 2021 documented this popular advice. 56 percent of respondents affirmed that "one or two" tailored resumes would "get better results" than "a large number of generic resumes." Here are a few problems with this analysis:

1. "Better results" is ambiguous and mathematically falsifiable under some assumptions about what constitutes "a large number of generic resumes."
1. Imagine that a tailored resume performs ten times as well as a generic resume. Then, the generic resume would get more callbacks and job offers with as few as eleven applications, ceteris paribus.
2. While some job seekers might consider ten or twenty applications to be "a large number," this would not be the normal usage in statistical work, where large would imply at least one hundred.
2. The term "generic" has a stigma, which will repel poll votes for psychological and behavioral reasons independent of real resume performance.
1. Social acceptability bias exacerbates this effect when polls are not anonymous, as in the case of a LinkedIn poll.
2. Psycho-social biases are further exacerbated on LinkedIn due to echo chamber effects. Respondents tend to be members of the network of the poll creator rather than the general public, and social networks tend to share opinions and desire to affirm one another, so stigma response will be doubly problematic in LinkedIn polls.
3. This advice is not specific to software engineers or the technology industry, and application norms vary significantly by industry.

To get a slightly better read on this with respect to software engineers, [I ran my own poll](https://www.linkedin.com/posts/john-vandivier_which-approach-is-likely-to-generate-more-activity-7225517862566670336-IX3L/) with more precise wording, asking:

> Which approach is likely to generate more interviews for software engineers (and nearby roles like web developer, full stack developer, data engineer and so on)? Which application approach will likely generate more interviews? 100 apps tailored per role or 10 apps tailored per job post?

This poll is more useful for the Ladderly.io audience for four reasons:

1. It is specific to software engineering and similar roles.
2. The quantities are concrete, resulting in a debiasing effect and also more useful quantitative interpretation.
3. This poll avoids stigmatic language.
4. This poll is more recently, notably existing after the use of AI for tailoring has become common.

<img width="401" style="margin: auto;" alt="image" src="https://github.com/user-attachments/assets/e66051da-9f39-4bb9-9e72-74aed9551dd6">

This poll indicates that popular support for post-tailored resumes not only holds for software engineers, but the support is exaggerated compared to other industries with a strong majority expecting at least ten times higher performance from a tailored resume!

In summary, common wisdom holds that tailoring is not merely beneficial, but it is a multiplier technique rather than an incremental improvement. The prediction from common wisdom is that time spent on tailoring has a better return on investment compared to allocating that same time toward a second application. The main problem with this belief is that there is concrete data to suggest other practices provide better return.

A notable secondary issue is that the practice of tailoring a resume varies widely. [Here](https://career.arizona.edu/resources/tailoring-your-resume/) is a five-step method from the University of Arizona. All five steps are partially addressed by tailoring a resume to a job family or role rather than a particular job post.

## Ladderly's Guidance

A different school of common wisdom holds that a personal discussion will often reveal more about a person than their resume. This is closer to Ladderly.io's guidance, which is that social networking and brand building are far better allocations of time compared to fine-tuning the resume or writing a cover letter.

There is a technical implication of this model which is that social networking attenuates the effects of the resume and the cover letter. Indeed, original data later in this article will show that social networking effects dominate the job search, so the resume and cover letter are not only attenuated but also small to negligible after social networking is accounted for.

Instead of sending a cover letter to a hiring manager, connect with them on LinkedIn. There are two additional benefits to this approach:

1. Reaching out on LinkedIn can generate a referral, while a cover letter does not. Referrals are powerful.
2. Your social network grows independent of whether you achieve an interview.

## Existing Research

Consensus.app is a tool that aggregates scholarly literature to find papers relevant to a particular research question. On the question ["Does resume customization improve job search outcomes?"](https://consensus.app/results/?q=Does%20resume%20customization%20improve%20job%20search%20outcomes%3F&synthesize=on) the tool finds nine related papers but there is not enough data to provide a consensus answer because several metrics are identified, but it is not clear whether they constitute an improvement. My review indicates two highlights:

1. Providing job seekers with resume and cover letter templates as well as tips on how to look and apply for jobs "increased job-finding rates, particularly among job seekers aged 35-50 (up to 8 percentage points)"
1. From Guglielmo Briscese et al. "Improving Job Search Skills: A Field Experiment on Online Employment Assistance." Political Methods: Experiments & Experimental Design eJournal (2020). https://doi.org/10.2139/ssrn.3584933.
2. Resume characteristics such as experience and education, positively impact the likelihood of receiving an interview invitation from an organization.
1. This was the only paper that assessed factors of interview attainment. Tailoring was not supported.
2. From Peg Thoms et al. "Resume Characteristics as Predictors of an Invitation to Interview." Journal of Business and Psychology, 13 (1999): 339-356. https://doi.org/10.1023/A:1022974232557.

From these papers I think we can conservatively and generously award an upper-bound of a 10 percent increase in interview attainment or job finding to the cover letter and tailored resume.

## An Original Contribution of Data

John Vandivier is the founder and lead maintainer of Ladderly.io and in 2024 he conducted a job search from May through early August. He censored and open sourced his job search data and it provides useful insight into the topic of the current article.

Specifically, his data showed no significant correlation between different resume versions and the attainment of an interview.

The data can be found here and the analytical script used for the above regression table can be found here.

A caveat in this result is that even the earliest version of the resume could be describe as fair in quality, without obvious grammatical errors, major ATS parsing issues, or other major issues. So the fact that the variation in resume version did not correlate with outcomes does not mean that resume quality has no impact, but it does mean that once you have a fairly high quality resume, fine-tuning it into an ultra-high quality resume has negligible return, which is exactly applicable to the discussion of whether a resume should be optimized per job post or simply at the level of the job family or role.

Notably, although the effect was insignificant, it was also positive and small, which is consistent with the idea that a larger study with many rows of data may indeed find some small positive effect. It is also consistent with the idea that fine tuning the resume for each job post is not an optimal use of time and effort.

## Edge Cases

When you have a singular target role or company, fine-tuning your resume to that role or company makes sense. While social networking will have a greater impact, you can do both. In generally, Ladderly.io recommends against targeting a specific company for most people. Such a strategy increases timeline for the job search and generally reduces potential compensation by eliminating the ability to obtain competing offers.

Still, there is an exceptional case where tailoring does make sense. This is the case when a job candidate intends to fully exhaust the market of potential employers. If a candidate has a timeline which can support applying to every employer of interest with additional time remaining, it makes sense to invest such additional time into improving the odds of success for that given pool of employers.

Here are a few such cases which might motivate an individual without respect to timeline, compensation, or risk:

1. An individuals is interested in an ultra-niche technologies, skills, activities, or causes.
2. An individual is already paid top-of-market, so only a few companies could potentially support an increase in desired compensation.
3. An individual is restricted for geopolitical or other reasons to work with a small market of potential employers.
4. An individual is attracted to a particular brand or working with specific people that occupy specific companies.

Earlier in this article, I gave the advice: "Instead of sending a cover letter to a hiring manager, try to get them on a call." Two objections to this advice come to mind:

1. What if the hiring manager and other networking targets at the company of interest cannot be identified or are unresponsive?
2. What if you already had a call with them? Why not do both?

Ladderly.io's general advice would be to spend your time and effort at another company with more transparency and responsiveness, but that general advice isn't useful in the edge cases reviewed here where there are no other viable employment options for the candidate.
Loading