This file contains hidden or 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
cl_cmdrate "66" | |
cl_interp_ratio "1" | |
cl_lagcompensation "1" | |
cl_pred_optimize "2" | |
cl_smooth "0" | |
cl_smoothtime "0.01" | |
cl_updaterate "66" | |
rate "60000" |
This file contains hidden or 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
alias forwardspawn_random "join_class "random"" | |
alias forwardspawn_medic "join_class "medic"" | |
bind f1 forwardspawn_random | |
bind f2 forwardspawn_medic | |
bind d "+showscores_netgraph" | |
bind i "hide" | |
bind mouse2 "+attack2;say_team woop woop! that's the sound of da police! move out!" | |
bind r "toggle_without" |
This file contains hidden or 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 serial | |
import socket | |
import string | |
import struct | |
import zlib | |
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP) | |
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) | |
sock.bind(('', 7040)) | |
mreq = struct.pack("=4sl", socket.inet_aton("230.0.0.1"), socket.INADDR_ANY) |
This file contains hidden or 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 serial | |
import socket | |
import string | |
import struct | |
import zlib | |
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP) | |
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) | |
sock.bind(('', 7040)) | |
mreq = struct.pack("=4sl", socket.inet_aton("230.0.0.1"), socket.INADDR_ANY) |
This file contains hidden or 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 incomingByte = 0; | |
int nov = 12; | |
int numberOfBytes = 0; | |
int rta = 13; | |
void getLastByte(){ | |
for(int i = 0; i < numberOfBytes; i++){ | |
incomingByte = Serial.read(); | |
} | |
} |
This file contains hidden or 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
#include <stdio.h> | |
#include <windows.h> | |
#include <winsock2.h> | |
int pid = 0; | |
STARTUPINFO lpStartupInfo; | |
PROCESS_INFORMATION lpProcessInformation; | |
BOOL CALLBACK EnumChildWindowsProc(HWND hwnd, LPARAM lparam){ | |
DWORD p; |
This file contains hidden or 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
#! /bin/bash | |
IFS=$'\n' | |
for a in `find -type f -size 1M -not -path '*.svn*'`; do | |
grep -inH "$1" $a | |
done |
This file contains hidden or 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
# generated by Slic3r 1.3.0-dev on Sat Jan 30 21:21:01 2016 | |
avoid_crossing_perimeters = 0 | |
bottom_solid_layers = 3 | |
bridge_acceleration = 750 | |
bridge_flow_ratio = 1 | |
bridge_speed = 40 | |
brim_width = 0 | |
complete_objects = 0 | |
default_acceleration = 2000 | |
dont_support_bridges = 1 |
This file contains hidden or 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
console.log("script inserted"); |
This file contains hidden or 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
'use strict'; | |
/** | |
* RSA hash function reference implementation. | |
* Uses BigInteger.js https://github.com/peterolson/BigInteger.js | |
* Code originally based on https://github.com/kubrickology/Bitcoin-explained/blob/master/RSA.js | |
* | |
* @namespace | |
*/ | |
var RSA = {}; |