Danny Morabito 1 month ago @npub1yqsx...msk0 @npub1w35x...nfml @npub109hh...qj2a 😄 (hint: filters don't work) and you can't stop me!
Danny Morabito 1 month ago ```ts const purgeAiSlop = () => document.querySelectorAll('a.author[href="/apps/coderabbitai"]') .forEach(el => el.closest('.TimelineItem')?.remove()); const debounce = (fn, ms) => { let t; return (...a) => (clearTimeout(t), t = setTimeout(() => fn(...a), ms)); }; new MutationObserver(debounce(purgeAiSlop, 100)) .observe(document.body, { childList: true, subtree: true }); purgeAiSlop(); ``` you're welcome (gets rid of the coderabbit spam in github)