Skip to content

Instantly share code, notes, and snippets.

View mtheoryx's full-sized avatar
🐳
Making happy little clouds

David Poindexter mtheoryx

🐳
Making happy little clouds
View GitHub Profile
aws sts get-caller-identity | jq '.UserId'
#
# Base Image For Installing the Default Starter
FROM node:12.7.0-alpine as builder
#
# Install some build dependencies
RUN apk add --no-cache git
#
# Create and change into our working directory
#include <FastLED.h>
FASTLED_USING_NAMESPACE;
// How many leds in your strip?
#define NUM_LEDS 25
// For led chips like Neopixels, which have a data line, ground, and power, you just
// need to define DATA_PIN. For led chipsets that are SPI based (four wires - data, clock,
// ground, and power), like the LPD8806, define both DATA_PIN and CLOCK_PIN
#define DATA_PIN 6
{
"files.exclude": {
"secret-file-to-hide.json": true
}
}
#include QMK_KEYBOARD_H
// Each layer gets a name for readability, which is then used in the keymap matrix below.
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
// Layer names don't all need to be of the same length, obviously, and you can also skip them
// entirely and just use numbers.
#define _BL 0
#define _FL 1
#define _CL 2
@mtheoryx
mtheoryx / settings.json
Created February 18, 2019 13:44
Customize VS Code toolbar per workspace
{
"workbench.colorCustomizations": {
"titleBar.activeForeground": "#000",
"titleBar.inactiveForeground": "#000000CC",
"titleBar.activeBackground": "#FFC600",
"titleBar.inactiveBackground": "#FFC600CC"
}
}
EastonLee.todopomo
IBM.output-colorizer
Tyriar.lorem-ipsum
alefragnani.project-manager
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
coderfee.open-html-in-browser
CoenraadS.bracket-pair-colorizer
DavidAnson.vscode-markdownlint
dbaeumer.vscode-eslint
/usr/app # node index.js
<status>Web Socket Server Started....
Green Text denotes hardware action
Green Highlight denotes hardware messages sent
Cyan highlight denotes messages received from plugin
Config: /usr/app/SamplePlugin/bin/Release/netcoreapp2.2
pluginExe: SamplePlugin
Registration: -port,3000,-pluginUUID,com.csharpfritz.samplePlugin.action,-registerEvent,registerEvent,-info,{"application":{"language":"en","platform":"osx","version":"4.0.0"},"devices":[{"id":"55F16B35884A859CCE4FFA1FC8D3DE5B","size":{"columns":5,"rows":3},"type":0}]}
@mtheoryx
mtheoryx / gist:1be3caffd063016042db22526cc593e0
Created January 10, 2019 14:35
Create a node project - From Tierney Cyren @bitandbang
$ npx license mit > LICENSE
$ npx gitignore node
$ npx covgen YOUR_EMAIL_ADDRESS
$ npm init -y
@mtheoryx
mtheoryx / settings.json
Created November 30, 2018 21:31
Color your VS Code titlebar
{
"workbench.colorCustomizations": {
"titleBar.activeForeground": "#000",
"titleBar.inactiveForeground": "#000000CC",
"titleBar.activeBackground": "#FFC600",
"titleBar.inactiveBackground": "#FFC600CC"
}
}