Skip to content

Instantly share code, notes, and snippets.

View komly's full-sized avatar

Dmitry Petrov komly

  • aliexpress.ru
  • Moscow
View GitHub Profile
Paste in console:
window.addEventListener("beforeunload", function() { debugger; }, false)
import struct
import SocketServer
from base64 import b64encode
from hashlib import sha1
from mimetools import Message
from StringIO import StringIO
class WebSocketsHandler(SocketServer.StreamRequestHandler):
magic = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'
print("".join([random.choice(string.printable[:-6]) for i in range(100)]))
#!/usr/bin/env python3
import socket
import re
from hashlib import sha1
from base64 import b64encode
HANDSHAKE = 'HTTP/1.1 101 Switching Protocols\r\n\
Upgrade: websocket\r\n\
Connection: Upgrade\r\n\
Sec-WebSocket-Accept: {0}\r\n\r\n'
#!/usr/bin/env python3
import socket
import re
from hashlib import sha1
from base64 import b64encode
from struct import unpack
from select import select
@komly
komly / gist:a0890e0f7731d4ffad12
Last active August 29, 2015 14:21
Caesar chipher python oniliner
"".join([chr((i - ord('A') + 3) % 26 + ord('A')) for i in map(ord, 'SAMPLE')])
cat access.log | awk '{ print $2}' | sort | uniq -c | sort -n | tail -10
# Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key
# that enables you to choose a character from a menu of options. If you are on Lion
# try it by pressing and holding down 'e' in any app that uses the default NSTextField
# for input.
#
# It's a nice feature and continues the blending of Mac OS X and iOS features. However,
# it's a nightmare to deal with in Sublime Text if you're running Vintage (Vim) mode,
# as it means you cannot press and hold h/j/k/l to move through your file. You have
# to repeatedly press the keys to navigate.
# Twitter
from app.config import TWITTER_APP_KEY, TWITTER_APP_SECRET
twitter_oauth = oauth.remote_app(
'twitter',
consumer_key=TWITTER_APP_KEY,
consumer_secret=TWITTER_APP_SECRET,
base_url='https://api.twitter.com/1.1/',
request_token_url='https://api.twitter.com/oauth/request_token',
#!/usr/bin/env python3
import random
import string
import time
import sys
import json
while True: