Skip to content

Instantly share code, notes, and snippets.

View DeveloperMeier's full-sized avatar

Colby Meier DeveloperMeier

  • LifePoint Mobile, LLC
  • Denver, Colorado
View GitHub Profile
@DeveloperMeier
DeveloperMeier / app.js
Last active April 4, 2018 22:11
Cheezy's Implementation of a bot for Snipely's server
// Load up the discord.js library
const Discord = require("discord.js");
// This is your client. Some people call it `bot`, some people call it `self`,
// some might call it `cootchie`. Either way, when you see `client.something`, or `bot.something`,
// this is what we're refering to. Your client.
const bot = new Discord.Client();
// Here we load the config.json file that contains our token and our prefix values.
const config = require("./config.json");
@DeveloperMeier
DeveloperMeier / SetupSBT.sh
Last active January 31, 2017 20:18
SBT Project Setup Script
#!/bin/sh
mkdir -p src/{main,test}/{java,resources,scala}
mkdir lib project target
# create an initial build.sbt file
echo "name := \"$1\"
version := \"$2\"
scalaVersion := \"2.10.0\"" > build.sbt