Skip to content

Instantly share code, notes, and snippets.

View deoxxa's full-sized avatar

Conrad Pankoff deoxxa

View GitHub Profile
--- jsonix-original.js 2014-02-17 21:50:01.000000000 +1100
+++ jsonix-runtime.js.x 2014-02-17 21:36:23.000000000 +1100
@@ -1,10 +1,4 @@
-var Jsonix = {
- singleFile: true
-};
-
-if (typeof require === "function") {
- module.exports.Jsonix = Jsonix;
-}
@deoxxa
deoxxa / -
Created February 20, 2014 10:51
-----BEGIN PGP MESSAGE-----
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - https://gpgtools.org
owEBjwFw/pANAwAKAZzAXvyIad43ActfYgBTBd4zSUxwaFF0b3pFaUxUblRtdnl6
R0lSZDZIKzd6VXR4MlNXaWl3blg5K0Fpb0ZWNXNybmtPQTVrNUE0THEyV3p6ckx0
VmIvTzZETXdYSVM0Q2JPdk9jazh3PQqJARwEAAEKAAYFAlMF3jUACgkQnMBe/Ihp
3jc4vAf/T+Yqb5beJORcYgTOoDbgkld6V02tYSJqb9Ad9707S9on+ntCEDwv4wjV
82PxBfxqdubiv+ky3oRPA9A0t9Iv+crbcfu1i0RT5hS5Rk9rPFSZngLeu7aO2d03
IMtC/b+K9RhfDsN0AD5n1VPZqnCaTG52hp3dj0Q0QXo5096T0DSF4nGSPLWOwwH+
#!/bin/sh
if [ "${MAINTAINER}" = "" ]; then
MAINTAINER=${USER};
fi;
AVAILABLE_NODES="0.8.6 0.8.7 0.8.8 0.8.9 0.8.10 0.8.11 0.8.12 0.8.13 0.8.14 0.8.15 0.8.16 0.8.17 0.8.18 0.8.19 0.8.20 0.8.21 0.8.22 0.8.23 0.8.24 0.8.25 0.8.26 0.9.1 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 0.9.10 0.9.11 0.9.12 0.10.0 0.10.1 0.10.2 0.10.3 0.10.4 0.10.5 0.10.6 0.10.7 0.10.8 0.10.9 0.10.10 0.10.11 0.10.12 0.10.13 0.10.14 0.10.15 0.10.16 0.10.17 0.10.18 0.10.19 0.10.20 0.10.21 0.10.22 0.10.23 0.10.24 0.10.25 0.10.26 0.11.0 0.11.1 0.11.2 0.11.3 0.11.4 0.11.5 0.11.6 0.11.7 0.11.8 0.11.9 0.11.10 0.11.11";
PACKAGE_JSON="${1}/package.json";

Keybase proof

I hereby claim:

  • I am deoxxa on github.
  • I am deoxxa (https://keybase.io/deoxxa) on keybase.
  • I have a public key whose fingerprint is C060 463C 17EF 788E 77F5 AC0A 9CC0 5EFC 8869 DE37

To claim this, I am signing this object:

#!/usr/bin/env node
var _ = require("underscore"),
async = require("async"),
exec = require("child_process").exec,
ProgressBar = require("progress"),
treeify = require("treeify");
var keep = [];
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/power.h>
#include <avr/sleep.h>
volatile unsigned char count = 0; // should overflow to 0
void write_leds(unsigned char value) {
int i;
for (i=0;i<8;++i) {
volatile unsigned char kbd_clock_status = 0;
volatile unsigned char kbd_bit = 0;
volatile unsigned char kbd_code = 0;
void read_keyboard() {
// clock was before low and clock is now high, thus rising
if (kbd_clock_status == 0 && bit_is_set(PIND, PIND6) == 0) {
kbd_clock_status = 1;
return;
}

Presentation

Having great data is only one piece of the puzzle: what good is it if you can't act on it? At Moving Data, we believe that for data to be useful, it has to be actionable, and that the end user should be able to choose for themselves the style of presentation that is most suitable for them. To better assist in this decision, we've evaluated a range of third-party systems, and built a couple of our own.

Not all data is created equal. Some information lends itself well to a more

package dotty
import (
"errors"
"fmt"
"reflect"
"strconv"
"strings"
)
package dom
import (
"strings"
)
type Document struct {
Node
DOMImplementation *DOMImplementation