Skip to content

Instantly share code, notes, and snippets.

View RossAD's full-sized avatar

Ross Davis RossAD

View GitHub Profile
#!/bin/bash
# Create and configure a AWS IOT
#
set -e
echo -e "What is the device name? \c"
read NAME
# Create the IOT device
aws iot create-thing --thing-name $NAME
@RossAD
RossAD / README-Template.md
Created March 12, 2017 20:20 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@RossAD
RossAD / .babelrc
Created August 23, 2017 00:10 — forked from andrewmunro/.babelrc
Sequelize cli with ES6
{
"presets": ["es2015"],
"plugins": [
"add-module-exports"
],
}
@RossAD
RossAD / .gitignore
Created November 23, 2017 18:17 — forked from smebberson/.gitignore
Express simple authentication example
node_modules
*.swp