Skip to content

Instantly share code, notes, and snippets.

View ahmet's full-sized avatar
:shipit:
Shipping!

Ahmet Aygün ahmet

:shipit:
Shipping!
View GitHub Profile
@ahmet
ahmet / remove-gh-stars.js
Created May 15, 2023 19:35 — forked from rublev/remove-gh-stars.js
remove all github stars
// open console and run cmd+v every time
var i = 0;
var el = document.querySelectorAll('[aria-label="Unstar this repository"]');
function myLoop () {
setTimeout(function () {
el[i].click()
i++;
if (i < 30) {