Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@bencevans
Created August 4, 2016 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bencevans/74ef2335647c47aaf4750500378412dd to your computer and use it in GitHub Desktop.
Save bencevans/74ef2335647c47aaf4750500378412dd to your computer and use it in GitHub Desktop.
List Projects .js
// https://github.com/bencevans?tab=repositories
var repos = document.getElementsByClassName('repo-list-name')
var arr = Array.prototype.slice.call( repos )
var names = arr.map((r) => { return 'bencevans/' + r.innerText })
names.join('&')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment