Skip to content

Instantly share code, notes, and snippets.

View zombozo12's full-sized avatar
🎯
Focusing

Wiguna R zombozo12

🎯
Focusing
View GitHub Profile
@zombozo12
zombozo12 / live-chat.js
Created August 26, 2025 18:29
Youtube Live Streaming Chat Auto Reaction Clicker
(function(){
function deepQueryAll(selector) {
const results = [];
const stack = [document];
while (stack.length) {
const root = stack.pop();
try {
root.querySelectorAll && results.push(...root.querySelectorAll(selector));
} catch(_) {}
root.querySelectorAll?.("*")?.forEach(el => {
@zombozo12
zombozo12 / main.go
Created March 5, 2024 16:49
Proxychains socks5 downloader
package main
import (
"bufio"
"bytes"
"os"
"fmt"
"io"
"strings"
"net/http"