Skip to content

Instantly share code, notes, and snippets.

View blubberdiblub's full-sized avatar
🤯

Niels Boehm blubberdiblub

🤯
View GitHub Profile
import socket
import requests
import time
import urllib
sms_password = "Password123"
sms_username = "jhon"
nick = "smsbot"
@blubberdiblub
blubberdiblub / badwords.py
Last active March 30, 2017 11:57
Measuring compiled regex vs. regex cache performance
#!/usr/bin/env python3
# There was no noticable difference at the time of testing:
#
# Testing string regex ... took 10.5 seconds
# Verification: good texts: 93307 bad texts: 6693
# Testing compiled regex ... took 10.5 seconds
# Verification: good texts: 93307 bad texts: 6693
import random
@blubberdiblub
blubberdiblub / sub_qt.py
Created January 20, 2017 07:40
Minimal console output of a subprocess with PyQt.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
from PyQt5.QtCore import pyqtSignal, pyqtSlot, QProcess, QTextCodec
from PyQt5.QtGui import QTextCursor
from PyQt5.QtWidgets import QApplication, QPlainTextEdit
@blubberdiblub
blubberdiblub / sub_tk.py
Created January 20, 2017 07:39
Minimal console output of a subprocess with Tk.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from subprocess import Popen, PIPE, STDOUT, TimeoutExpired
from threading import Thread, Event
from queue import Queue, Empty
from tkinter import Tk, Text, END
class ProcessOutputReader(Thread):
@blubberdiblub
blubberdiblub / test.py
Created January 20, 2017 07:36
Program producing some random output and errors in random intervals.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import random
import sys
import time
for i in range(1000):
//Previous code
a = list(map(int, raw_input().split()))
for i in a:
if a.count(i) == 1:
print i
break
// Current code
from collections import Counter
@blubberdiblub
blubberdiblub / numpy_needle_in_haystack.py
Created May 21, 2016 14:45
Search a 1d needle in a 1d haystack with numpy
#!/usr/bin/env python
import numpy as np
def np_find_1d(needle, haystack):
needle = np.asanyarray(needle)
haystack = np.ascontiguousarray(haystack)
assert needle.ndim == 1
#!/usr/bin/env python
import itertools
lines = ['one', 'two', 'three']
it, it_look_ahead = itertools.tee(lines)
next(it_look_ahead)
for line in it:
#!/usr/bin/env python
import hashlib
def chunked_sha1sum(filelike, chunk_size=0x100000):
hasher = hashlib.new('sha1')
while True:
chunk = filelike.read(chunk_size)
@blubberdiblub
blubberdiblub / mcdissect.py
Last active August 29, 2015 14:05
minecraft packet dissector
@handler('read', channel=channel_upstream)
def read(self, data):
offset = 0
while True:
shift = 0
size = 0
while True
if offset >= len(data):