Skip to content

Instantly share code, notes, and snippets.

View devinschumacher's full-sized avatar
🦩
stayin' funky

Devin Schumacher devinschumacher

🦩
stayin' funky
View GitHub Profile
@devinschumacher
devinschumacher / v1-serp-clapper-latest-viewport.js
Last active January 13, 2024 03:46
SERP Clapper - New Code /latest
// keeps clapping in viewport
(async function() {
const events = ['mousedown', 'mouseup', 'click'];
function randomDelay(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
async function scrollToBottom() {