Skip to content

Instantly share code, notes, and snippets.

View jessejonass's full-sized avatar
🎯
Focusing

Jessé Jonas jessejonass

🎯
Focusing
View GitHub Profile
@TroniPM
TroniPM / globoplay-script.js
Last active May 4, 2025 00:51
Remover poluição visual de player web da GLOBOPLAY
["side-panel-live", "header", "media-control-panel__front-layer"].forEach(el => {
try{document.getElementsByClassName(el)[0].style="display:none;";}catch(e){}
})
@abritinthebay
abritinthebay / consoleColors.js
Last active August 9, 2025 14:55
The various escape codes you can use to color output to StdOut from Node JS
// Colors reference
// You can use the following as so:
// console.log(colorCode, data);
// console.log(`${colorCode}some colorful text string${resetCode} rest of string in normal color`);
//
// ... and so on.
export const reset = "\x1b[0m"
export const bright = "\x1b[1m"
export const dim = "\x1b[2m"