I hereby claim:
- I am justbuchanan on github.
- I am justbuchanan (https://keybase.io/justbuchanan) on keybase.
- I have a public key ASD1L3Wi4J_PeKhF5_YV_X1V1B9Em2Sepm6HRtob8TqFRwo
To claim this, I am signing this object:
main | |
cpp-channel |
#include <iostream> | |
#include <vector> | |
#include <memory> | |
using namespace std; | |
struct MyObject { | |
std::vector<char> v; | |
char addr; | |
char port; |
#!/usr/bin/env python2 | |
# | |
# This script builds a ball-placement SSL Referee message for the yellow team | |
# and repeatedly broadcasts it. Usage: | |
# ./send_ssl_placement_cmd.py <x coord> <y coord> | |
# | |
# Install protobuf: | |
# pip2 install protobuf | |
# | |
# Compile protobuf files (this creates referee_pb2.py): |
I hereby claim:
To claim this, I am signing this object:
/* | |
This is a simple program for the MBED intended to determine what happens if a signal for a thread is | |
set before the corresponding wait is called. It behaves as expected, so the bug I'm tracking down is somewhere else... | |
*/ | |
#include <mbed.h> | |
#include <rtos.h> | |
#include <cmsis_os.h> | |
void thread(const void* arg) { |
This project has moved to https://github.com/justbuchanan/i3scripts
#include <string> | |
template<typename TYPE, char BYTE_SEPARATOR = ' '> | |
std::string toBinary(TYPE val) { | |
std::string str("b"); | |
for (int i = sizeof(TYPE)*8-1; i >= 0; i--) { | |
str += ((val & 1 << i) ? "1" : "0"); | |
if (i % 8 == 0 && i !=0 ) str += BYTE_SEPARATOR; | |
} | |
return str; |
#include <iostream> | |
#include <string> | |
#include <sstream> | |
using namespace std; | |
class LogHelper : public stringstream { | |
public: | |
LogHelper(string level) { |
#deb cdrom:[Ubuntu 14.04.3 LTS _Trusty Tahr_ - Beta amd64 (20150805)]/ trusty main restricted | |
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted | |
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted | |
## Major bug fix updates produced after the final release of the | |
## distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted |