I hereby claim:
- I am auxiliary-character on github.
- I am auxchar (https://keybase.io/auxchar) on keybase.
- I have a public key ASAgy3ZmgSjzvCl2EKfOiFRnM9SGlgZ57Wo6o_RDWIsvXgo
To claim this, I am signing this object:
[21:19:58] [Client thread/INFO]: [CHAT] [a] RaySipe: wtffffff | |
[21:20:34] [Client thread/INFO]: [CHAT] [a] RaySipe: I think it belongs to inglip | |
[21:20:41] [Client thread/INFO]: [CHAT] [a] ncordo: Nah, he has a place | |
[21:20:54] [Client thread/INFO]: [CHAT] [a] RaySipe: the lower floor has a door leading to the underground | |
[21:20:56] [Client thread/INFO]: [CHAT] [a] RaySipe: that reads | |
[21:21:00] [Client thread/INFO]: [CHAT] [a] RaySipe: "Inglip's hovel" | |
[21:21:07] [Client thread/INFO]: [CHAT] [a] ncordo: well that is odd | |
[21:21:13] [Client thread/INFO]: [CHAT] [a] RaySipe: im triggered | |
[21:21:17] [Client thread/INFO]: [CHAT] [a] ncordo: Reee the city isn't perfect | |
[21:21:29] [Client thread/INFO]: [CHAT] [a] auxchar: Probably Inglip, then. |
#!/usr/bin/env python3 | |
import urllib.request | |
import json | |
import sys | |
import time | |
def get_url(url): | |
opener = urllib.request.build_opener() | |
opener.addheaders = [('User-agent', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36')] | |
return opener.open(url) |
#!/usr/bin/env python3 | |
import urllib.request | |
import json | |
import sys | |
import time | |
def get_url(url): | |
opener = urllib.request.build_opener() | |
opener.addheaders = [('User-agent', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36')] | |
return opener.open(url) |
#include <string.h> | |
#include <stdio.h> | |
static const float scale[] = { | |
0, //rest | |
11.175303405856125, | |
13.289750322558245, | |
15.804265640195972, | |
16.74403617923831, | |
17.739688382519812, |
I hereby claim:
To claim this, I am signing this object:
package org.usfirst.frc.team4009.robot; | |
import edu.wpi.first.wpilibj.SpeedController; | |
class CorrectionSpeedController implements SpeedController { | |
SpeedController actualController; | |
double correctionFactor; | |
public CorrectionSpeedController(SpeedController controller){ | |
actualController = controller; | |
} |
#!/usr/bin/env python3 | |
from networktables import NetworkTables | |
import urllib.request | |
import re | |
import time | |
from pprint import pprint | |
data_regex = re.compile("(\w+) = ([\d\.\-]+)") | |
def getTable(): | |
with urllib.request.urlopen("http://10.40.9.13/data.html") as f: |
#!/usr/bin/env python3 | |
import yaml | |
from pprint import pprint | |
yaml_code = """ | |
Example: | |
name: "Example" | |
timestamp: 1500421023 | |
nested: | |
- name: "Part 1" |
import java.io.*; | |
import java.net.*; | |
import java.util.concurrent.locks.ReentrantReadWriteLock; | |
import java.util.concurrent.locks.ReadWriteLock; | |
import java.util.regex.*; | |
import java.util.HashMap; | |
import java.util.Scanner; | |
import java.util.Timer; | |
import java.util.TimerTask; |
execute pathogen#infect() | |
filetype indent plugin on | |
syntax on | |
set nu | |
set backspace=indent,eol,start | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set shiftwidth=4 |