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 socket | |
import requests | |
import time | |
import urllib | |
sms_password = "Password123" | |
sms_username = "jhon" | |
nick = "smsbot" |
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 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 |
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 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 | |
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 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): |
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 python3 | |
# -*- coding: utf-8 -*- | |
import random | |
import sys | |
import time | |
for i in range(1000): |
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
//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 |
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 | |
import numpy as np | |
def np_find_1d(needle, haystack): | |
needle = np.asanyarray(needle) | |
haystack = np.ascontiguousarray(haystack) | |
assert needle.ndim == 1 |
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 | |
import itertools | |
lines = ['one', 'two', 'three'] | |
it, it_look_ahead = itertools.tee(lines) | |
next(it_look_ahead) | |
for line in it: |
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 | |
import hashlib | |
def chunked_sha1sum(filelike, chunk_size=0x100000): | |
hasher = hashlib.new('sha1') | |
while True: | |
chunk = filelike.read(chunk_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
@handler('read', channel=channel_upstream) | |
def read(self, data): | |
offset = 0 | |
while True: | |
shift = 0 | |
size = 0 | |
while True | |
if offset >= len(data): |