Skip to content

Instantly share code, notes, and snippets.

View mikehow1984's full-sized avatar

Michael Howard mikehow1984

  • Crisis Text Line
  • Los Angeles, CA
  • 06:44 (UTC -12:00)
View GitHub Profile
function errorHandler(err){
try{
JSON.parse(err);
console.error(`Error: ${JSON.stringify(err)}`);
} catch(e){
console.error(`Error: ${err}`);
}
}
@mikehow1984
mikehow1984 / Randomized Honeycomb.markdown
Created January 24, 2016 18:28
Randomized Honeycomb
@mikehow1984
mikehow1984 / Mike's Pomodoro Timer.markdown
Created November 30, 2015 01:48
Mike's Pomodoro Timer
@mikehow1984
mikehow1984 / Random Quote Page.markdown
Created November 22, 2015 13:46
Random Quote Page
#include <iostream>
#include <cctype>
#include <vector>
#include <string>
using namespace std;
vector<string> rotator(const string& s)
{
vector<string> word;