Skip to content

dvelton/who-codes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

who-codes

Find out which people in your LinkedIn network code.

Upload your LinkedIn connections file, and this tool searches GitHub to find which of your professional contacts are active developers. It shows you what languages they use, what they've been working on, and whether they maintain any code your projects depend on.

Everything runs in your browser.

Try it: dvelton.github.io/who-codes


What you'll need

  1. Your LinkedIn connections file (a CSV file you download from LinkedIn)
  2. A GitHub account (optional but recommended, for faster results)

That's it. No installation, no sign-up, no payment.


How to get your LinkedIn connections file

  1. Go to linkedin.com and log in
  2. Click your profile picture (top right), then Settings & Privacy
  3. Click Data privacy in the left sidebar
  4. Click Download your data
  5. Check Connections and click Request archive
  6. LinkedIn emails you when it's ready (usually a few minutes)
  7. Download the file -- it will be called something like Connections.csv

For a more detailed walkthrough, see the export guide.


How to create a GitHub token (optional)

A token lets the tool run faster. Without one, you're limited to 60 searches per hour. With one, you get 5,000. The token only needs access to public data that anyone can already see.

  1. Go to github.com/settings/tokens
  2. Click Generate new token, then Generate new token (classic)
  3. Name it something like "who-codes"
  4. Don't check any boxes under "Select scopes" -- leave them all unchecked
  5. Click Generate token
  6. Copy the token (it starts with ghp_)
  7. Paste it into who-codes when prompted

The token is stored in your current browser tab.


Using the tool

  1. Open dvelton.github.io/who-codes
  2. Drop your Connections.csv file onto the upload area
  3. Optionally paste your GitHub token for faster results
  4. Wait while the tool searches GitHub for your connections
  5. Review the matches it found
  6. Explore the insights dashboard

The search takes about 2 seconds per connection. For a network of 500 people, that's roughly 17 minutes with a token, or several hours without one. You can pause and resume at any time; your progress is saved in your browser.


What you'll see

  • Match confidence levels: Each match is scored as High, Medium, or Needs Review based on how closely the GitHub profile matches your LinkedIn connection (name, company, bio, location).

  • Language clusters: What programming languages your network uses most.

  • Activity status: Who's been active on GitHub recently, who's been quiet, and who hasn't pushed code in months.

  • Dependency overlaps: If you upload a package.json, go.mod, or similar file, the tool will tell you which connections maintain packages your projects depend on.

  • A full table of all matched connections with links to their GitHub profiles.

You can export everything as a CSV or JSON file.


Privacy

  • Your LinkedIn CSV is parsed in your browser.
  • Your GitHub token (if you use one) is stored in your browser tab's session storage.
  • The complete source code is in this repository. You can read every line.

Troubleshooting

"This file is missing required columns" Make sure you're uploading the Connections CSV from LinkedIn, not a ZIP file or a different export. The file should have columns like "First Name", "Last Name", and "Company".

"Rate limit reached" GitHub limits how many searches you can do per hour. The tool will automatically pause and show a countdown timer. If you add a GitHub token, the limit goes from 60/hour to 5,000/hour.

"Token didn't work" Double-check that you copied the full token (it starts with ghp_). Make sure there are no extra spaces. Try generating a new one.

Matching seems slow Each connection requires a search query plus lookups for potential matches. With a token, it runs at about 2 seconds per connection. Without a token, it's much slower because of the tight rate limit.

I closed the tab mid-run Your progress is saved in your browser's local storage. When you come back, the tool will offer to pick up where you left off.


How matching works

For each LinkedIn connection, the tool:

  1. Searches GitHub for users with a matching full name
  2. Looks at each candidate's company, bio, and location
  3. Scores the match on a 0-100 scale based on how many signals align
  4. Classifies the result as High confidence (strong match on multiple signals), Medium (one signal beyond name), or Low (name only)
  5. Only shows you High and Medium matches by default

The scoring is transparent. For every match, you can see exactly why it was matched and what signals contributed to the score.


Built with

  • Vanilla HTML, CSS, and JavaScript (no framework, no build step)
  • Papa Parse for CSV parsing
  • GitHub REST and GraphQL APIs for data
  • Hosted on GitHub Pages

License

MIT

About

Find out which people in your LinkedIn network code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors