I hereby claim:
- I am russtheaerialist on github.
- I am russellhay (https://keybase.io/russellhay) on keybase.
- I have a public key whose fingerprint is 782A 022A 88B7 D550 16A3 7C61 9F51 0052 D71A 07ED
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// Code by @MetaGlitch | |
float fps = 16.666; | |
int inFrames = 15; | |
int outFrames = 15; | |
int otherFrames = 60; | |
int numFrames = inFrames + otherFrames + outFrames; | |
float t1 = inFrames * 1.0/numFrames; |
#!/usr/bin/env zsh | |
BASE=${0%/*} | |
SQLITE=/usr/bin/sqlite3 | |
echo "Extracting from OmniFocus" | |
$BASE/of-store --debug --out=$BASE/finished.db | |
echo "Exporting to tasks.csv" | |
$SQLITE $BASE/finished.db <<! |
#!/usr/bin/env zsh | |
BASE=${0%/*} | |
SQLITE=/usr/bin/sqlite3 | |
echo "Extracting from OmniFocus" | |
$BASE/of-store --debug --out=$BASE/finished.db | |
$BASE/kanban-fetch --debug --out=$BASE/inprogress.db | |
echo "Exporting to tasks.csv" |
%version 1 | |
%numleds 5 | |
%require imu | |
%green RGB(0,128,0) | |
%red RGB(128,0,0) | |
states { | |
state foo { | |
skipif imu.accel.x > 1 | |
setall %green |
#include "Bounce2.h" | |
#include "Servo.h" | |
#define SERVO_PIN 9 | |
#define READY_PIN 13 | |
#define ARM_PIN 12 | |
#define SERVO_READY 0 | |
#define SERVO_DEPLOY 180 |
import sys | |
import glob | |
import os.path | |
import os | |
import argparse | |
import csv | |
def usage(args): | |
parser = argparse.ArgumentParser() | |
parser.add_argument("--delim", "-d", default="|") |
// Fails to compile in vs | |
using ErrorPair = struct ErrorPairStruct | |
{ | |
int id; | |
std::string message; | |
} | |
using ExceptionErrorMap = std::map <ExceptionType, ErrorPair>; | |
const ExceptionErrorMap errorsMap { | |
{ NotFoundException, { IDS_NOT_FOUND, Lookup(IDS_NOT_FOUND) } }, | |
... |
#include <set> | |
#include <memory> | |
#include <vector> | |
template <typename T> | |
class IObservable; | |
template <typename T> | |
class IObserver | |
{ |
processors: | |
attributes/env: | |
actions: | |
- key: deployment.environment | |
value: production | |
action: insert | |
service: | |
pipelines: | |
traces: |