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
import random | |
trash = ":3.xddd.rate my desktop.senpai.anon-kun.:3333333.s-senpai.anime is technology.waifu.no bully.asuka.rei.miku.desu".split('.') | |
i = int(input("h-how much anime do you want senpai: ")) | |
print(" ".join( random.choice(trash) for _ in range(i) )) |
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
for(;;){alert(["\u0059\u004f\u0055" + (` r` || 'regexLibrary' && ".active_##"), (3735928559).toString(16).substr(0, 4), (3735928559).toString(16).substr(4)].join(" ").toUpperCase())} |
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
for _ in range(int(42 == 420/10)): | |
while int(not _): | |
_+=int(not 1336 == 666) | |
with open(hex(_), "a+") as ride_my_eggplant: | |
ride_my_eggplant.write(str(_) * 6661337420) |
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
from sys import argv | |
def generatePrimes(words): | |
limit = len(words) ** 2 | |
notPrimes = [] | |
for a in range(3, limit): | |
for b in range(a * 2, limit, a): | |
notPrimes += [b] | |
notPrimes = set(notPrimes) |
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
<script>for(;;)alert()</script> |
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
<(\w*) *(?:(\w*)(?:=("[^"]*"|[^"]*) *)?)*>([^<]*)<\/\1> |
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
import random | |
vocabulary = { | |
"[negative_noun]" : ["whiteknight", "cuck", "jew", "anti-white", "ahmed", "shill"] | |
} | |
templates = [ | |
"you're a [negative_noun]", | |
"fuck off [negative_noun]", | |
"nice try [negative_noun]", |
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
<?php | |
/* | |
One script to rule them all. | |
*/ | |
/* Simple FizzBuzz */ | |
for ($x = 1; $x <= 100; $x++) { | |
if ($x%3 == 0) echo "Fizz"; | |
if ($x%5 == 0) echo "Buzz"; |
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
/* | |
Using these three functions, start in chrome://settings/passwords | |
*/ | |
function listSites() { | |
var listOfSites = document.getElementById("saved-passwords-list").children; | |
var list = []; | |
for (var i = 0; i < listOfSites.length; i++) { | |
if (listOfSites[i].className != "spacer") | |
list.push(listOfSites[i].children[0].children[0].title); |
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
import curses | |
import curses.ascii | |
from sys import argv | |
def main(screen): | |
global termsize | |
# Startup. | |
screen.clear() | |
curses.start_color() | |
curses.use_default_colors() |