Skip to content

Instantly share code, notes, and snippets.

View mdrmike's full-sized avatar

mike stewart mdrmike

View GitHub Profile
@mdrmike
mdrmike / ufw-desktop-setup.md
Last active May 19, 2020 20:43
Quick Firewall Setup for VBox Development using ufw

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@mdrmike
mdrmike / Gemfile
Last active March 17, 2016 05:20
Jekyll Gemfile for github pages and Travis-CI
# Gemfile to setup Jekyll for use with Github pages hosting
# Based on
# - https://jekyllrb.com/docs/github-pages/
# - https://jekyllrb.com/docs/continuous-integration/
source 'https://rubygems.org'
require 'json'
require 'open-uri'
versions = JSON.parse(open('https://pages.github.com/versions.json').read)
@mdrmike
mdrmike / Ubuntu-1404--Desktop--addons.sh
Last active December 1, 2015 16:46
Ubuntu 14.04 useful PPA & utility installs
#!/bin/bash
# Copyright (C) 2015 Mike Stewart.
# Permission is granted to copy, distribute and/or modify this document
# under the terms of the GNU Free Documentation License, Version 1.3
# or any later version published by the Free Software Foundation;
# with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
# A copy of the license is included in the section entitled "GNU
# Free Documentation License".
# This script was written for cut & paste into a terminal shell, but it
@mdrmike
mdrmike / Liquid-Theming_array-examples.md
Last active November 26, 2015 17:04
Jekyll / Liquid theming array examples
--
title:
layout: post
foo:
  - bar: Lorem ipsum
    baz: Dolor sit amet, consectetur adipiscing elit. Sed arcu tortor, posuere in nisl vel, finibus blandit est. Nulla scelerisque erat nisl, in ornare massa posuere vitae
    qux: Curabitur egestas purus ut nulla sollicitudin sodales. Curabitur tincidunt suscipit purus ac consectetur. 
  - bar: Pellentesque fringilla
    baz: Augue quis leo finibus porttitor. Cras varius nulla quis quam tincidunt lacinia. Nam at nulla quis ipsum fermentum maximus. Ut arcu enim, consectetur vel justo a, venenatis varius elit. Cras malesuada lorem ut sapien pulvinar, ut ullamcorper massa pretium. Proin pellentesque odio lectus, eget posuere enim egestas a. Cras consectetur rhoncus scelerisque.
@mdrmike
mdrmike / README.md
Last active November 10, 2015 15:47 — forked from rjorgenson/README.md
My ZSH Theme

agnoster.zsh-theme

forked by rjorgenson

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
  • NVM
  • RVM
@mdrmike
mdrmike / WAPRO--1507.md
Last active August 29, 2015 14:24
Long Beach Web and Application Professionals -- Jul 2015

Long Beach Web and Application Professionals -- Jul 2015

http://www.waprolb.org/meetup/2015/07/

News and Announcements

  • Please add comments & meeting resources (such as slides/links, etc) on www.waprolb.org/meetup/
  • Uncoded Initiatives: WAPRO. Coffee & Code. Hack Nights. More groups!! ... Maker Labs (LBPL has a lab)? Drone racing. Art/Designers in Tech. PR in tech. CSULB/LBCC, looking at you? How do you get involved?
    1. Lead. Find and commit to doing something you're passionate about. Regularly.
  1. Do it. (build-it. they will come).
@mdrmike
mdrmike / c9-sculpin-setup.sh
Last active August 29, 2015 14:17
sculpin install on c9.io
#!bash
cd
mv workspace workspace-orig
mkdir workspace
sudo apt-get update
sudo apt-get -y install php5-curl # needed by composer to install dependencies
curl -O https://download.sculpin.io/sculpin.phar && chmod +x sculpin.phar
sudo mv sculpin.phar /usr/local/bin/sculpin
git clone https://github.com/sculpin/sculpin-blog-skeleton.git ~/workspace/sculpin