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
// The Omegle.com "pervy chat" detection algorithm. (From http://www.omegle.com/static/omegle.js.) | |
function pervy(s) { | |
return /^\s*f\s*\?\s*$|horny|slut|(?:rub|touch|lick|suck|finger)\s+(?:my|your|ur)|boner|(am|i'm|so|im|my|your?)\s+(hard|wet|tight)|\bcum|sexy|boob|\btits\b|nipple|penis(?:[^e]|$)|cock(?:[^s]|$)|dick(?:[^s]|$)|\bvag(?:\b|ina)|pussy|\bclit|spank|(?:jack|jerk)\s+off|\bfap|nudes|kink/i.test(s); | |
} | |
/* | |
An expanded version of this regex for readability: | |
/ | |
^\s*f\s*\?\s*$| |
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
#!/usr/bin/env python | |
""" | |
Iterable ZIP archive generator. | |
Modified from https://github.com/SpiderOak/ZipStream. | |
""" | |
import struct, os, sys | |
import binascii |
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
p.q:before { | |
content: "Q: "; | |
font-weight: bold; | |
} | |
p.a:before { | |
content: "A: "; | |
font-weight: bold; | |
} |
OlderNewer