Skip to content

Instantly share code, notes, and snippets.

@quinkennedy
quinkennedy / code-of-conduct.md
Last active September 22, 2016 17:35 — forked from remy/code-of-conduct.md
Code of Conduct

Code of Conduct

All attendees, speakers, sponsors, volunteers, and organizers at our conference are required to agree with the following code of conduct. Organisers will enforce this code throughout the event. We are expecting coorporation from all participants to help ensuring a safe environment for everybody.

tl;dr: Don’t be a Jerk

Need Help?

You have our contact details in the emails we've sent

@quinkennedy
quinkennedy / integrations.md
Last active March 17, 2016 23:34
thoughts on variout Github Integrations

Codacy

homepage|integration

features

  • test coverage report (via lcov data from Travis)
  • security analysis (unknown sources)
  • checks dependency licenses
  • code style analysis
  • grade-based results
  • historical graphs
@quinkennedy
quinkennedy / openframe_install.sh
Last active September 26, 2019 17:50
wget/curl-able installation script for Openframe
#!/usr/bin/env bash
{ # this ensures the entire script is downloaded #
openframe_has() {
type "$1" > /dev/null 2>&1
}
if [ -z "$OPENFRAME_DIR" ]; then
OPENFRAME_DIR="$HOME/.openframe"

Keybase proof

I hereby claim:

  • I am quinkennedy on github.
  • I am quinkennedy (https://keybase.io/quinkennedy) on keybase.
  • I have a public key whose fingerprint is AFDF 25A1 279F 3F99 33EF E23F 8CC1 FCA1 E20C E390

To claim this, I am signing this object:

// BIND FIX FOR OLDER BROWSERS
if( Function.prototype.bind ) {
} else {
/** safari, why you no bind!? */
Function.prototype.bind = function (bind) {
var self = this;
return function () {
var args = Array.prototype.slice.call(arguments);
return self.apply(bind || null, args);
};
@quinkennedy
quinkennedy / ArduinoConnector.pde
Created May 12, 2012 00:03
Finds arduinos attached via USB and prints out their ID and serial port string
import java.lang.ProcessBuilder;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
import java.io.BufferedReader;
import java.io.FileReader;
static class ArduinoConnector{
public static final String DEFAULT_ECS_MAP_FILENAME = "ECSMap.txt";
public static final String SERIAL_NUMBER = "Serial Number: ";