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:
| global main | |
| extern puts | |
| extern sprintf | |
| section .text | |
| main: | |
| push rbx | |
| mov r15, 100 | |
| mov r14, 1 | |
| loop: | |
| ;print the loop variable into the buffer |
| 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 |
| 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; |
| #!/usr/bin/env python3 | |
| import yaml | |
| from pprint import pprint | |
| yaml_code = """ | |
| Example: | |
| name: "Example" | |
| timestamp: 1500421023 | |
| nested: | |
| - name: "Part 1" |
| #!/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: |
| 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; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #include <string.h> | |
| #include <stdio.h> | |
| static const float scale[] = { | |
| 0, //rest | |
| 11.175303405856125, | |
| 13.289750322558245, | |
| 15.804265640195972, | |
| 16.74403617923831, | |
| 17.739688382519812, |
| #!/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) |