Skip to content

Instantly share code, notes, and snippets.

View ampedandwired's full-sized avatar

Charles Blaxland ampedandwired

  • Sydney, Australia
View GitHub Profile
@ampedandwired
ampedandwired / NumberSpec.js
Created July 11, 2014 01:57
Webpack mocha loader runs multiple times
expect = require('chai').expect;
describe('arithmetic', function() {
it("adds numbers", function() {
expect(1 + 1).to.eql(2);
});
});
@ampedandwired
ampedandwired / README.md
Created August 5, 2014 12:19
Chef Intro Workshop

Chef Workshop

This workshop will take you through the very basics of creating and running Chef recipes with chef-solo.

This workshop assumes you're running on a Mac or Linux. If you're running Windows best to set up a Linux VM to run this workshop.

Getting Started

@ampedandwired
ampedandwired / myservice
Last active August 29, 2015 14:10
Generic sysv init
#!/bin/bash
service_name=`basename $0`
# Load default variables. Provides a way to configure the service
# differently in different environments.
if [ -f /etc/default/${service_name} ]; then
source /etc/default/${service_name}
fi
@ampedandwired
ampedandwired / gist:3682627
Created September 9, 2012 04:39
A simple command line client for JSON (Rails) APIs - basically a curl wrapper
#!/bin/bash
baseurl='http://localhost:3000'
output_file=zb.out
rm $output_file
action=`echo $1 | tr '[a-z]' '[A-Z]'`
shift
url=$1.json
shift
@ampedandwired
ampedandwired / jenkins.conf
Created September 25, 2013 06:35
Configuring nginx as a Jenkins proxy with SSL
upstream app_server {
server 127.0.0.1:8080 fail_timeout=0;
}
server {
listen 80 default;
rewrite ^ https://$host$request_uri? permanent;
}
server {
@ampedandwired
ampedandwired / trello-bz.js
Created October 27, 2016 07:24
A TamperMonkey script that turns bugzilla bug references in Trello into clickable links. Handles formats
// ==UserScript==
// @name Trello Bugzilla Linker
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Links Trello issues to Bugzilla
// @author Charles Blaxland
// @match https://trello.com/*
// @grant none
// ==/UserScript==
@ampedandwired
ampedandwired / trello-bz.js
Created October 27, 2016 07:24
A TamperMonkey script that turns bugzilla bug references in Trello into clickable links. Handles formats
// ==UserScript==
// @name Trello Bugzilla Linker
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Links Trello issues to Bugzilla
// @author Charles Blaxland
// @match https://trello.com/*
// @grant none
// ==/UserScript==
@ampedandwired
ampedandwired / trello-bz.js
Created October 27, 2016 07:24
A TamperMonkey script that turns bugzilla bug references in Trello into clickable links. Handles formats like "BZ123", "BZ-123", "BZ 123" or "BZ#123"
// ==UserScript==
// @name Trello Bugzilla Linker
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Links Trello issues to Bugzilla
// @author Charles Blaxland
// @match https://trello.com/*
// @grant none
// ==/UserScript==
@ampedandwired
ampedandwired / docker-cleanup.sh
Created February 12, 2017 22:33
Docker cleanup
#!/bin/bash
# Remove exited containers
docker rm $(docker ps -qa --no-trunc --filter "status=exited")
# Remove dangling containers
docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
# Remove unused images (https://github.com/docker/docker/issues/9054#issuecomment-184246090)
docker rmi $(grep -xvf <(docker ps -a --format '{{.Image}}') <(docker images | tail -n +2 | grep -v '<none>' | awk '{ print $1":"$2 }'))
@ampedandwired
ampedandwired / gist:3385002
Last active October 8, 2017 11:53
Zip a directory to memory in Ruby. The rubyzip library is pretty hard to use. I tried for ages to figure out how to zip a directory to a string in memory. So here's an example that zips the given directory to a Ruby StringIO object using rubyzip.
require 'zip/zip'
def zip(dir)
Zip::ZipOutputStream::write_buffer do |zos|
Dir["#{dir}/**/**"].each do |file|
path_for_file_in_zip = file.sub(/\A#{dir}\//, '')
if !File.directory?(file)
zip_entry = zos.put_next_entry(path_for_file_in_zip)
zos << IO.read(file)
end