Skip to content

Instantly share code, notes, and snippets.

View gavq's full-sized avatar
What's happening?

gavq

What's happening?
View GitHub Profile
@gavq
gavq / removeCollaborator.js
Created February 4, 2021 08:24 — forked from pimentel/removeCollaborator.js
Remove yourself as a collaborator from many github repositories
var GithubApi = require("github");
// you can install the required module using `npm install github`
var user = "myUsername";
var password = "myPassword";
function filterRepos(item) {
var lowerName = item.full_name.toLowerCase();
return item.owner.login !== 'berkeley-stat243' &&