Skip to content

Instantly share code, notes, and snippets.

View BaseCase's full-sized avatar

Casey Brant BaseCase

  • Madison, WI
View GitHub Profile
@BaseCase
BaseCase / github_blame.sh
Last active December 18, 2015 17:19
GitHub Blame: given a filename argument, this will open GitHub's Git Blame view on that file in your current repo and branch.
#!/bin/bash
set -e
filename=$1
function repo_name {
git remote -v |
grep -m 1 "git@.*\.git" |
awk '{print $2}' |
@BaseCase
BaseCase / github_open.sh
Created February 22, 2013 06:19
This script will open up the GitHub page in your web browser for the current git repo in your shell. It's aliased to 'gho' (GitHub Open) in my bash config. Change "github" on line 4 to whatever your GitHub remote is named (default is "origin").
#!/bin/bash
function github {
git remote show -n github |
grep Fetch |
cut -d @ -f 2 |
tr ':' '/' |
sed s/\.git// |
sed s#^#https://#
}
@BaseCase
BaseCase / duplicate_labels.py
Last active December 12, 2015 02:39
This script will take the labels from one GitHub repository's Issues and sync all of your other repos' Issues with them. After running, all of your repos will have the exact same set of Issues labels. It assumes that every repo has Issues enabled.
#!/usr/bin/python
#
# This script will take the labels from one GitHub repository's
# Issues and sync all of your other repos' Issues with them. After
# running, all of your repos will have the exact same set of Issue
# labels. It assumes that every repo has Issues enabled.
#
# REQUIREMENTS: needs the 'requests' library, available from pip
#
# Config variables:
@BaseCase
BaseCase / gist:2140404
Created March 20, 2012 19:42
Cake build task
task 'build', 'Does the full build magic', ->
test -> compile -> stitch -> compress()
@BaseCase
BaseCase / gist:2140355
Created March 20, 2012 19:37
Compile function called by Cake task
compile = (callback) ->
exec 'coffee -o bin/ -c src/', (err, stdout, stderr) ->
throw err if err
console.log "Compiled coffee files"
callback?()
@BaseCase
BaseCase / gist:2139306
Created March 20, 2012 18:28
Cake tasks
task 'test', 'Runs all Jasmine specs in spec/ folder', ->
test()
task 'compile', 'Compiles coffee in src/ to js in bin/', ->
compile()
task 'stitch', 'Stitches all app .js files', ->
stitch()
task 'compress', 'Runs UglifyJS on stitched file in order to compress it', ->
@BaseCase
BaseCase / gist:2139106
Created March 20, 2012 18:17
A sample Cakefile
{exec} = require 'child_process'
task 'test', 'Runs all Jasmine specs in spec/ folder', ->
test()
task 'compile', 'Compiles coffee in src/ to js in bin/', ->
compile()
task 'stitch', 'Stitches all app .js files', ->
@BaseCase
BaseCase / gist:1890855
Created February 23, 2012 05:58
Easy backwards zap-to-char
(defun backwards-zap-to-char (char)
(interactive "cZap backwards to char: ")
(zap-to-char -1 char))
(global-set-key (kbd "M-Z") 'backwards-zap-to-char)
@BaseCase
BaseCase / twitter.com.js
Last active September 30, 2015 14:17
Make it obvious which tweet is last read, and make enter key load new tweets.
var adjust_twitter_view = function () {
//reset colors
$('li.stream-item').css('background','#fff');
//highlight most recent tweet to make it easier to visually ID the new ones
$('li.stream-item').first().css('background','#dedede');
};
adjust_twitter_view();
//attach behavior to the "new tweets" button
import re
with_style = '<div style="things and stuff" class="whatnot">hi there</div>'
without_style = re.sub(r"""style=('|")(.*)\\1""", '', with_style)