This file contains 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
############################################################## | |
# Added by SparkFun electronics to support the BadgerStick | |
# Download bootloader from: https://cdn.sparkfun.com/assets/learn_tutorials/3/4/9/BadgerStick_Support_Files.zip | |
badger.name=BadgerStick (3.3V, 4 MHz) | |
badger.upload.tool=avrdude | |
badger.upload.protocol=arduino | |
badger.upload.maximum_size=30720 |
This file contains 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
set polar | |
set grid polar | |
set angle degrees | |
unset xtics | |
unset ytics | |
set border 0 | |
set rrange [0 : 300] | |
set size square | |
set_label(x, text) = sprintf("set label '%s' at (330*cos(%f)), (330*sin(%f)) center", text, x, x) #this places a label on the outside |
This file contains 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
#pragma once | |
#include <QString> | |
#include <QObject> | |
#include <QDebug> | |
#ifndef SPACER | |
# define SPACER " " | |
#endif |
This file contains 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
#!/usr/bin/env python2 | |
######################################################################## | |
# # | |
# fcrypt: Intentionally f****d up cryptography # | |
# # | |
# Copyright 2016 Brendan Whitfield ([email protected]) # | |
# # | |
######################################################################## | |
# # |
This file contains 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 java.awt.AWTException; | |
import java.awt.Robot; | |
import java.awt.event.KeyEvent; | |
import java.util.Map; | |
import oscP5.*; | |
Robot robot; | |
OscP5 oscP5; | |
final int PORT = 8000; |
This file contains 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 | |
function lock { | |
if [ "$#" -ne 1 ]; then | |
echo 'usage: lock [LOCKFILENAME]' 1>&2 | |
return 1 | |
fi | |
LOCKFILE="$1" |
This file contains 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
diff -uprN v2.2/lemmagen/project/makefile/Makefile v2.2_fixed/lemmagen/project/makefile/Makefile | |
--- v2.2/lemmagen/project/makefile/Makefile 2008-04-28 14:34:30.000000000 -0400 | |
+++ v2.2_fixed/lemmagen/project/makefile/Makefile 2016-01-19 18:10:06.206054535 -0500 | |
@@ -27,7 +27,7 @@ OBJINTER=\ | |
$(OBJPATH)/InterLearn.o \ | |
$(OBJPATH)/InterBuild.o \ | |
$(OBJPATH)/InterLemtz.o \ | |
- $(OBJPATH)/InterXval.o \ | |
+ $(OBJPATH)/InterXVal.o \ | |
$(OBJPATH)/InterSplit.o \ |
This file contains 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
# written for obd==0.4.1 | |
# this will need a few modifications once 0.5.0 rolls out | |
import obd | |
from obd.utils import Response, unhex | |
from obd.protocols.protocol import Message | |
This file contains 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 <iostream> | |
#include <opencv2/core/core.hpp> | |
#include <opencv2/highgui/highgui.hpp> | |
#include <opencv2/imgproc/imgproc.hpp> | |
#include <opencv2/features2d/features2d.hpp> | |
using namespace std; | |
using namespace cv; |