Skip to content

Instantly share code, notes, and snippets.

View bsatrom's full-sized avatar
🏠
Working from home

Brandon Satrom bsatrom

🏠
Working from home
View GitHub Profile
@bsatrom
bsatrom / CoffeeScript.md
Created February 16, 2012 14:04
Publication Cast-Offs

Removed from Article on CoffeeScript for .net Magazine

So if you're looking to improve your craft as a JavaScript programmer, try CoffeeScript. And if you're of the firm opinion that CoffeeScript has no place for you because it doesn't generate JavaScript as well as you can, don't use it for your production code. But do use it. Try some things out, and inspect the result. It probably won't make you grow a neckbeard and switch to Python. Probably.

@bsatrom
bsatrom / click.js
Created March 14, 2012 17:49
Example of script for Kendo UI DataViz Gauge
$('#add').bind('click', function() {
var amt, intakeRecord, grid, gauge;
amt = parseInt($('#dailyIntake').val()) || 0;
intakeRecord = { date: getDate(), amount: amt }
intakeData.add(intakeRecord);
gauge = $("#srirachaGauge").data("kendoGauge");
gauge.value(avgIntake());
});​
@bsatrom
bsatrom / web.config
Created March 28, 2012 18:15 — forked from jglozano/web.config
Simple web.config
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="webpages:Version" value="1.0.0.0"/>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
const Dotenv = require('dotenv')
const Winston = require('winston')
const Mongo = require('mongodb').MongoClient
var XervoHost
Dotenv.config()
const createURI = (port, user, password) => {
if (!user || !password) {
return `mongodb://localhost:${port}`
@bsatrom
bsatrom / ledmirror.cpp
Last active July 13, 2018 18:23
Mirror the onboard RGB LED on Particle devices to an external RGB LED
// Automatically mirror the onboard RGB LED (Photon, Electron) to an external RGB LED
// LEDMirror.cpp
// Class set-up
class LEDMirror {
public:
LEDMirror(pin_t r, pin_t g, pin_t b) : pin_r(r), pin_g(g), pin_b(b) {
pinMode(pin_r, OUTPUT);
pinMode(pin_g, OUTPUT);
pinMode(pin_b, OUTPUT);
@bsatrom
bsatrom / keybase.md
Last active September 7, 2018 19:50

Keybase proof

I hereby claim:

  • I am bsatrom on github.
  • I am bsatrom (https://keybase.io/bsatrom) on keybase.
  • I have a public key ASDI02GdW9ZXkuQdvIzH5IdSLjo_PLMz8aarJ_mRPPPM0Qo

To claim this, I am signing this object: