Skip to content

Instantly share code, notes, and snippets.

View ErinsMatthew's full-sized avatar

Matthew ErinsMatthew

  • Northwest Arkansas, USA, North America, Earth
View GitHub Profile
@ErinsMatthew
ErinsMatthew / go-bag-contents.md
Created January 22, 2023 21:25
Go Bag Contents

Go Bag Contents

Being prepared for a natural disaster or other emergency is important. To prepare for such an event, you and your family should make sure you each have a go bag kit with basic necessities. Here is a list of things that I keep in mine, along with links where you get your own.

I encourage you to have at least one Go Bag per person, and one per vehicle as well.

Remember to rotate perishable items like snacks and bottled water every year.

@ErinsMatthew
ErinsMatthew / bot.js
Created December 13, 2016 21:35
Dynamically Load `hears` from External JSON File with Botkit
const Botkit = require( 'botkit' );
const Q = require( 'q' );
const _ = require( 'lodash' );
var controller = Botkit.slackbot();
var bot = controller.spawn( {
token: process.env.token
} ).startRTM( ( err, bot, payload ) => {
loadHears()