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 socket | |
import threading | |
import select | |
import sys | |
terminateAll = False | |
class ClientThread(threading.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
int COPROCCESSORCOPY_1(void) { | |
int uVar1; //?? | |
int iVar2; //?? | |
int in_pc; //?? | |
undefined4 in_cr0; //Coprocessor address 1 | |
undefined4 in_cr1; //Coprocessor address 2 | |
undefined4 in_cr2; //Coprocessor address 2 | |
undefined4 in_cr6; //?? | |
undefined4 in_cr7; //?? | |
uVar1 = coproc_movefrom_Control(); //?? |
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
/* | |
donut.js - donut.c for Node.js | |
Port/Compile Made by sc39 | |
Original by a1k0n | |
*/ | |
// The Module object: Our interface to the outside world. We import | |
// and export values on it. There are various ways Module can be used: | |
// 1. Not defined. We create it here | |
// 2. A function parameter, function(Module) { ..generated code.. } |
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 random | |
import os | |
num = 15 | |
listt = list(",./<>?;:[]\{}|=-+_)(*&^%$#@!~") | |
listnum = 0 | |
for i in range(256): | |
for i2 in range(256): | |
print(listt[listnum] * 2, end="") | |
listnum = listnum + 1 | |
if listnum > len(listt) - 1: |