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 | |
"""XBeeTerm.py is a XBee serial command shell for interacting with XBee radios | |
This command interpretors establishes communications with XBee radios so that AT Commands can be sent to the XBee. | |
The interpretors output is color coded to help distinguish user input, from XBee radio output, and from | |
interpretors output. This command-line interpretor uses Python module Cmd, and therefore, inherit bash-like history-list | |
editing (e.g. Control-P or up-arrow scrolls back to the last command, Control-N or down-arrow forward to the next one, | |
Control-F or right-arrow moves the cursor to the right non-destructively, Control-B or left-arrow moves the cursor | |
to the left non-destructively, etc.). |
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
DROP TABLE IF EXISTS foo; | |
CREATE TEMPORARY TABLE foo (x FLOAT); | |
INSERT INTO foo VALUES (1); | |
INSERT INTO foo VALUES (2); | |
INSERT INTO foo VALUES (3); | |
INSERT INTO foo VALUES (4); | |
INSERT INTO foo VALUES (100); | |
SELECT avg(x), tmean(x, 2.0), tmean(x, 1.5) FROM foo; |
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
[ | |
{ | |
"hex": "#EFDECD", | |
"name": "Almond", | |
"rgb": "(239, 222, 205)" | |
}, | |
{ | |
"hex": "#CD9575", | |
"name": "Antique Brass", | |
"rgb": "(205, 149, 117)" |
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
(function ($) { | |
$.waypoints.settings.scrollThrottle = 30; | |
try { | |
mpmetrics = new MixpanelLib("<api_key>"); | |
} catch(err) { | |
var null_fn = function () {}; | |
mpmetrics = { | |
track: null_fn, | |
track_funnel: null_fn, |
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
#! /bin/bash | |
# description: search a directory for a string, output filenames and context | |
# usage: fstring /tmp/whatever mysearch | |
# example: fstring ./ hello (search current directory for string "hello" | |
# better example: | |
# sfitchet@crunchbang:/tmp/myapp$ fstring ./ array_slice |
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
1. Two space soft indents (fake tabs) OR tabs... BUT NEVER BOTH - DO NOT MIX | |
2. Whitespace, Parens, Braces, Linebreaks | |
if/else/for/while/try always have spaces, braces and multiple lines. | |
-------------------------------------------------------------------- | |