Skip to content

Instantly share code, notes, and snippets.

View toddanglin's full-sized avatar

Todd Anglin toddanglin

View GitHub Profile
@toddanglin
toddanglin / blinkTimer.js
Last active December 13, 2015 20:29
A simple NodeJS timer script for the blink(1) USB status light. The script accepts a duration (in minutes) + a warning time (in minutes or seconds) + a "flash" time (in minutes or seconds) via the command line. For example: node blinkTimer.js duration=10,warn=2,flash=1 This command will display a green light first. At 5 minutes (automatic half-w…
//////////////////////////////////////////////////////////////
// blink(1) timer //
// by: @toddanglin //
//////////////////////////////////////////////////////////////
var http = require("http");
console.log("blink(1) Timer Started");
//PROTOTYPE Customizations
@toddanglin
toddanglin / kendo.lessy.css.less
Created September 20, 2011 21:01
Kendo UI Beta 1 LESS CSS Theme
/* LESS Powered Kendo theme*/
@activeColor: black;
@hoverColor: yellow;
@selectedColor: white;
@errorColor: red;
@disabledColor: gray;
@borderColor: red;
@activeBorderColor: blue;