This file contains hidden or 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
// State machine, for event handlers and other mischief | |
define([], function() { "use strict"; | |
/////////////////////// | |
var stateM = { | |
create: function(target, config) { | |
var instance = Object.create(stateM.proto); | |
instance.statesHash = {}; | |
instance.statesStack = []; | |
instance.begunStates = {}; | |
instance.listeners = []; |
This file contains hidden or 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
<?php | |
$file = realpath(@$_GET['f']); | |
$p = pathinfo($file); | |
if (!$file || strtolower(@$p['extension']) !== 'md') { | |
http_response_code(403); | |
exit; | |
} | |
$cmd = sprintf( | |
'./md/peg-multimarkdown/multimarkdown "%s" --smart | sed "s/\–\;/\&mdash\;/g"', | |
escapeshellcmd($file) |
This file contains hidden or 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 python | |
from random import randint | |
from fileinput import input | |
from argparse import ArgumentParser | |
from sys import stdout | |
# "data set of leet unicode chars" stolen from | |
# Tchouky's Zalgo Generator on eeemo.net | |
This file contains hidden or 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
<?php | |
/* Table schema | |
CREATE TABLE `params` ( | |
`key` varchar(255) NOT NULL DEFAULT '', | |
`value` varchar(255) NOT NULL DEFAULT '', | |
PRIMARY KEY (`key`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
*/ | |
// Settings |
This file contains hidden or 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
// uses https://github.com/neckro/LPD8806 | |
#include "LPD8806.h" | |
#include "SPI.h" | |
// strip settings | |
const uint16_t PIXEL_LENGTH = 32; | |
// tracer settings | |
#define NUM_TRACERS 4 | |
const int16_t MIN_POSRATE = 2; |
NewerOlder