Skip to content

Instantly share code, notes, and snippets.

View jrwren's full-sized avatar
💭
🤯💯👍🔥🎉🤷‍♀️😍😕🕴🏽😵😞🤕🤮

Jay R. Wren jrwren

💭
🤯💯👍🔥🎉🤷‍♀️😍😕🕴🏽😵😞🤕🤮
View GitHub Profile
#!/usr/bin/env python3
## This will loop through your controllers and output the model
## version for each model on each controller in your system.
import json
from subprocess import (
PIPE,
run,
)
@jrwren
jrwren / Dockerfile
Last active August 4, 2016 19:40 — forked from anonymous/Dockerfile
FROM ubuntu:16.04
# Set correct environment variables.
ENV HOME /root
ENV PORT 2222
ENV HOSTNAME pair.dasapp.co
RUN apt update && apt install -y software-properties-common
# Use libssh 0.7 https://github.com/tmate-io/tmate/issues/82#issuecomment-216165761
@jrwren
jrwren / kissList.md
Last active February 5, 2019 17:01 — forked from mjeaton/ThroatPunchList.md
Loves who need kisses

All of these people are my friends, well except for Tim and Kramer. They're lovers.

  1. Release Management for Visual Studio *
  2. Communicator for the Mac *
  3. Jim Holmes
  4. Nino
  5. Rob

please note, I wouldn't actually kiss an old dude like Jim in the throat. I was taught to respect my elders, especially those at an advanced age like Jim.

#!/bin/sh
# OPTIONAL FLAGS:
#
# -geoip true
# this will install maxmind geoip and auto update crontab file
#
# -cloudwatch true
# this will install aws cloud watch metrics and send them to aws dashboard
#
@jrwren
jrwren / gist:638625
Created October 21, 2010 15:02 — forked from trek/gist:638615
def some_method(a, b, c=5, *p, q)
if (q) c=7
other_method(a,b,c,p,q)
end
def other_method(a, b, c=4, *p, q)
end