Skip to content

Instantly share code, notes, and snippets.

View DR-DinoMight's full-sized avatar
💻
Developing like crazy!

Matthew Peck-Deloughry DR-DinoMight

💻
Developing like crazy!
View GitHub Profile
@DR-DinoMight
DR-DinoMight / frontendDevlopmentBookmarks.md
Created August 18, 2016 07:43 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@DR-DinoMight
DR-DinoMight / gist:6da5f9e9c674ec33fd4dfdd5aa37df63
Last active September 5, 2016 13:03 — forked from trcarden/gist:3295935
Rails 3.2.7 SSL Localhost (no red warnings, no apache config)
# SSL self signed localhost for rails start to finish, no red warnings.
# 1) Create your private key (any password will do, we remove it below)
openssl genrsa -des3 -out localhost.orig.key 2048
openssl rsa -in localhost.orig.key -out localhost.key
openssl req -new -key localhost.key -out localhost.csr
openssl x509 -req -days 365 -in localhost.csr -signkey localhost.key -out localhost.crt
thin start -p 3000 -e development
thin start -p 3001 --ssl --ssl-verify --ssl-key-file ~/.ssl/localhost.key --ssl-cert-file ~/.ssl/localhost.crt -e development
@DR-DinoMight
DR-DinoMight / hipchat-v2.sh
Created September 9, 2016 09:56 — forked from danriti/hipchat-v2.sh
HipChat API v2 - Send a message to a room using cURL
#!/bin/bash
# Set the ROOM_ID & AUTH_TOKEN variables below.
# Further instructions at https://www.hipchat.com/docs/apiv2/auth
ROOM_ID=XXX
AUTH_TOKEN=XXX
MESSAGE="Hello world!"
curl -H "Content-Type: application/json" \