This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){if(!navigator.clipboard){alert('Clipboard access is not available on this page. Please open a webpage and try again.');return;}navigator.clipboard.readText().then(function(t){if(!t){alert('Clipboard is empty or unreadable.');return;}t=t.trim();if(!t.match(/^[a-zA-Z0-9]+$/)){alert('Clipboard text is invalid.');return;}const u=[`https://gmgn.ai/sol/token/${t}`,`https://rugcheck.xyz/tokens/${t}`];if(t.endsWith('pump'))u.push(`https://trench.bot/bundles/${t}`);u.forEach(l=>window.open(l,'_blank'));}).catch(function(e){alert('Error reading clipboard: '+e);});})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
caffeinate -d -u & pid=$!; trap "kill $pid" EXIT; blink=$(( $(date +%s) + 10 + RANDOM % 21 )); nextdir=$(date +%s); px=$((RANDOM % 3)); py=$((RANDOM % 3)); while sleep 0.5; do now=$(date +%s); if [ $now -ge $nextdir ]; then px=$((RANDOM % 3)); py=$((RANDOM % 3)); nextdir=$((now + 2 + RANDOM % 3)); fi; if [ $now -ge $blink ]; then clear; echo -e " +-------+ +-------+"; echo -e " |-------| |-------|"; echo -e " |-------| |-------|"; echo -e " |-------| |-------|"; echo -e " +-------+ +-------+"; echo -e "\nStay up till you wake up\nPress Control + C to exit"; sleep 0.2; blink=$(( $(date +%s) + 10 + RANDOM % 21 )); fi; clear; echo -e " +-------+ +-------+"; for r in 0 1 2; do row=""; for c in 0 1 2; do if [ $r -eq $py ] && [ $c -eq $px ]; then row="${row}\033[107m\033[30m@\033[0m"; else row="${row}\033[107m \033[0m"; fi; done; echo -e " | ${row} | | ${row} |"; done; echo -e " +-------+ +-------+"; echo -e "\nStay up till you wake up\nPress Control + C to exit"; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){document.querySelectorAll('*').forEach(el=>{if(el.classList.contains('blurred-job-card')){el.classList.replace('blurred-job-card','job-card');}});})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function whereyallfrom() { | |
OUI_FILE="$HOME/oui.txt" | |
if [[ ! -f "$OUI_FILE" ]]; then | |
echo "Error: $OUI_FILE not found!" | |
return 1 | |
fi | |
clean_mac() { | |
echo "$1" | tr -d ':-.' | tr '[:lower:]' '[:upper:]' |
OlderNewer