This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: | |
# git tag-review 'Rob Miller <[email protected]>' | |
tag-review = "!f() { git commit --amend -m \"$(git log -1 --pretty=\"format:%s%n%n%b%n%nReviewed-by: $1\")\"; }; f" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The best place to put this is your `fastcgi_params` file. | |
set $_ssl "off"; | |
# We run SSL on ports 443+, not just one port, to get | |
# around the lack of SNI in clients' browsers; you might | |
# safely be able to use "$server_port = 443" | |
if ( $server_port != 80 ) { | |
set $_ssl "on"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git branch-name: prints the name of the branch in a safe/scriptable/non-porcelain way | |
# git publish: publishes the current branch on the remote "origin", using the same name as the current branch | |
# git unpublish: deletes the remote branch with the same name as the current one (potentially destructive) | |
# git recreate: given a branch name, recreates the branch with that name from the latest master. Deletes both the local and remote copy of the branch first. Very destructive, use with caution | |
branch-name = "!git rev-parse --abbrev-ref HEAD" | |
publish = "!git push -u origin $(git branch-name)" | |
unpublish = "!git push origin :$(git branch-name)" | |
recreate = "!f() { [[ -n $@ ]] && git checkout \"$@\" && git unpublish && git checkout master && git branch -D \"$@\" && git checkout -b \"$@\" && git publish; }; f" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I love tpope's solution to ctags regeneration[1]; he creates | |
# a template from which all Git repositories take their default hooks, | |
# and then uses these hooks to regenerate ctags. | |
# | |
# [1]: http://tbaggery.com/2011/08/08/effortless-ctags-with-git.html | |
# | |
# It's an elegant solution, but what do you do about repositories that | |
# already exist? The template will only apply to newly cloned or newly | |
# initialised repositories. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo bzcat /var/log/secure*.bz2 \ | |
| perl -ne '/authentication error for( illegal user)? (\S+) from/ && print "$2\n"' \ | |
| sort | uniq -c | sed 's/^ *//' | sort -n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Working with branches | |
# | |
# Get the current branch name (not so useful in itself, but used in | |
# other aliases) | |
branch-name = "!git rev-parse --abbrev-ref HEAD" | |
# Push the current branch to the remote "origin", and set it to track | |
# the upstream branch | |
publish = "!git push -u origin $(git branch-name)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db = SQLite3::Database.new ":memory:" | |
# A sample SQLite table; all that's necessary is the lat and log fields | |
db.execute <<-SQL | |
CREATE TABLE users ( | |
email VARCHAR(255), | |
lat FLOAT, | |
lon FLOAT | |
) | |
SQL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function nscp() { | |
nslookup $1 | sed -n 'x;$p' | cut -d' ' -f2 | tee >(pbcopy) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Requirements: Ruby and the Chronic gem | |
# | |
# Install Chronic with: `gem install chronic` | |
# | |
# Examples: | |
# | |
# $ strtotime 'in 60 days' | |
# 6 Dec 2013 14:55:44 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "rubygems" | |
require "liquidplanner" | |
# Assumes a file called ~/.lprc exists that contains: | |
# { "email": "[email protected]", "pass": "pa55w0rd", "space": 1234 } | |
config = JSON.parse(IO.read(File.expand_path("~/.lprc"))) | |
lp = LiquidPlanner::Base.new(email: config["email"], password: config["pass"]) | |
workspace = lp.workspaces(config["space"]) |