Skip to content

Instantly share code, notes, and snippets.

View FluxAugur's full-sized avatar
🦹‍♂️
(Re)making himself, being other, forging divergent ersatz worlds

Nathanial L. McConnell FluxAugur

🦹‍♂️
(Re)making himself, being other, forging divergent ersatz worlds
View GitHub Profile
@FluxAugur
FluxAugur / el-capitan-install-usb
Created February 27, 2016 02:04 — forked from filmgirl/el-capitan-install-usb
Create Bootable USB Drive for OS X El Capitan
sudo /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ El\ Capitan.app --nointeraction
@FluxAugur
FluxAugur / installCli_SL.sh
Created November 18, 2015 09:17 — forked from tamirko/installCli_SL.sh
install the Cloudify CLI for SoftLayer
#! /bin/bash
apt-get -y -q update
apt-get install -y -q wget
apt-get install -y -q curl
apt-get install -y -q unzip
apt-get install -y -q python-dev
apt-get install -y -q python-virtualenv
apt-get install -y -q git
@FluxAugur
FluxAugur / README.md
Created November 8, 2015 15:20 — forked from kmassada/README.md
Nginx configuration for Mac OS X with Homebrew, using sites-available directory.
mkdir -p /usr/local/etc/nginx/sites-available

File locations:

  • nginx.conf to /usr/local/etc/nginx/
  • default and default-ssl to /usr/local/etc/nginx/sites-available
    #STOP APACHE
    sudo apachectl stop
@FluxAugur
FluxAugur / controller_spec.rb
Last active February 20, 2019 00:17 — forked from tonycoco/controller_spec.rb
Sample Ruby Tests
require "spec_helper"
describe ExampleController do
context "GET #index" do
let(:resources) { FactoryGirl.create_list(:resource) }
before do
get :index
end
@FluxAugur
FluxAugur / deploy.rb
Last active February 20, 2019 00:19 — forked from unithrive/deploy.rb
Sample Ruby Sync
set :sync_directories, ["public/assets", "public/galleries"]
set :sync_backups, 3