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; | |
} |
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
// 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
import base64 | |
from Crypto.Cipher import AES | |
from Crypto.Hash import SHA256, HMAC | |
from Crypto.Random import get_random_bytes | |
class Cipher(object): | |
# This can be 16 (AES-128), 24 (AES-192), or 32 (AES-256) | |
key_length = 32 | |
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
In [41]: from Crypto.Cipher import AES | |
In [42]: from Crypto import Random | |
In [43]: | |
In [43]: key = b'Sixteen byte key' | |
In [44]: iv = Random.new().read(AES.block_size) |
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
def english_count(count, object = None, plural = None): | |
""" | |
Generate an English representation of the count of objects. Plural defaults to object + 's' or object[:-1] + 'ies' for objects ending in 'y'. | |
Examples: | |
In [2]: english_count(0, 'hat') | |
Out[2]: 'no hats' | |
In [4]: english_count(1, 'hat') |
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
def pascals_triangle(): | |
row = [1] | |
while True: | |
yield row | |
row = map(sum, zip([0] + row, row + [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
<a | |
id="some_id" | |
href="http://matchfwd.com/" | |
class="some_class et_cetera" | |
rel="twipsy" | |
title="Mouseover tooltip text." | |
> | |
Link text | |
</a> |
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
def is_hidden(self): | |
if self.state == 'HIDDEN': | |
return True | |
return False |
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
Day job: | |
Freelance programmer and web developer | |
Favorite Python project: | |
Django! | |
Favorite Conference: |
NewerOlder