Skip to content

Instantly share code, notes, and snippets.

View mdb's full-sized avatar

Mike Ball mdb

View GitHub Profile
@mdb
mdb / tag_release
Created February 19, 2013 01:12
How to tag a release in git.
git tag -a v0.0.1 -m "Version 0.0.1"
git push --tags
@mdb
mdb / some_file_spec.js
Created June 13, 2013 18:37
Example teabag/AMD spec file
// Define your spec file:
define('some/path/some_file_spec',
[
// The file you want to test:
'some/path/some_file'
], function(
SomeFile) {
describe("SomeFile", function () {
it("exists", function () {
@mdb
mdb / gist:5913429
Created July 2, 2013 21:41
tmux.conf
# Set pane divider
set -g pane-border-bg white
set -g pane-border-fg white
set -g pane-active-border-bg white
set -g pane-active-border-fg white
resources:
- name: my-code-pr
type: pull-request
check_every: 24h
webhook_token: ((webhook-token))
source:
repository: user/my-code
access_token: ((github-access-token))
v3_endpoint: https://github.com/api/v3/