This file contains 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
color 0A |
This file contains 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
//80 chars long! Not bad. | |
const internalScreaing=s=>`***${s.split(' ').join(' ').split('').join(' ')}***` | |
/* | |
How to use: | |
1. Open Discord. | |
2. Open script, and run this function with the phrase of your choice | |
3. Paste the result into Discord. | |
Examples! |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Levels Quickview</title> | |
<style> | |
#flexbox { | |
position: fixed; | |
top: 0; | |
left: 0; | |
bottom: 0; |
This file contains 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
// Override death function, INVINCIBLE!!! | |
Runner.prototype.gameOver = () => {} | |
// Super speed oh yeah | |
Runner.instance_.currentSpeed = 9001 |
This file contains 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
// Alert src | |
alert(document.getElementsByTagName("video")[0].children[0].src) | |
// Open new tab | |
window.open(document.getElementsByTagName("video")[0].children[0].src, '_blank') | |
// Alert src bookmarklet | |
javascript:alert(document.getElementsByTagName("video")[0].children[0].src) |
This file contains 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
x = `Amethyst | SU | |
Aries (Himawari) | Strange alien girl??? | |
Atsuko Kagari | Popular | |
Azuki | Nekopara | |
Backpack | Meme | |
Ball Guy | Meme | |
Bianca | PKMN | |
Bloody Painter | CRPY | |
Celebi | PKMN | |
Chloe | DBH |
This file contains 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
sendMessage = msg => { | |
socket.emit('webhooksend', { | |
username: document.getElementsByClassName('infoname')[0].value, | |
avatar: localStorage.getItem('avatar'), | |
content: msg, | |
banned: false, | |
ID: Math.floor(Math.random() * 1000) | |
}); | |
} |
This file contains 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
// an array with all the lines in the document. | |
let lines = $("pre").innerHTML.split("\n"); | |
// filter out all the names, we only want the 4 numbers at the end | |
let discrimList = lines.map(v => v.split("#").pop()); | |
// Change each string discriminator into a number | |
discrimList = discrimList.map(v => parseInt(v)); | |
// init the missing array | |
let missing = []; |
This file contains 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
const readline | |
= | |
require | |
( | |
"readline" | |
) | |
; | |
const rl | |
= |
This file contains 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 sendCard(cardIndex, email, fullName, message) { | |
const possibleCards = ["2020042908 - OGW - JCovey Hug.png", "2020042907 - OGW - JCovey Spanish Flowers.png", "2020042906 - OGW - JCovey Music Notes.png", "2020042905 - OGW - JCovey Daisies.png", "2020042904 - OGW - Stein Sunset.png", "2020042903 - OGW - Stein Flower.png", "2020042902 - OGW - Stein Dog.png", "2020042901 - OGW - Stein Sunshine.png", "2020042506 - OGW - Espresso.png", "2020042505 - OGW - Dog Batter.png", "2020042504 - OGW - Cherry Blossom.png", "2020042503 - OGW - Heart Symbol.png", "2020042502 - OGW - Yellow Flower.png", "2020042501 - OGW - Flowers Espanol.png", "2020042441 - OGW - Umbrella.png", "2020042440 - OGW - Roots.png", "2020042439 - OGW - Birdie.png", "2020042438 - OGW - Whale.png", "2020042437 - OGW - Swimming.png", "2020042436 - OGW - Sports Balls.png", "2020042435 - OGW - Sunshine.png", "2020042434 - OGW - Road to Recovery.png", "2020042433 - OGW - One Step.png", "2020042432 - OGW - Mah Jongg.png", "2020042431 - OGW - Hot |
OlderNewer