Skip to content

Instantly share code, notes, and snippets.

View ghickman's full-sized avatar
🏠
hash tag farm lyfe

George Hickman ghickman

🏠
hash tag farm lyfe
View GitHub Profile
name Gitalist
<Model::CollectionOfRepos>
#git /path/to/git
# Configure this to where your repositories are.
repo_dir /home/git/repositories/
</Model::CollectionOfRepos>
sitename "Gitalist"
@ghickman
ghickman / add_inline.js
Created June 11, 2011 11:19
Add an inline Django form to the formset without reloading the page.
function add_inline_form(prefix) {
var count = parseInt($('#id_' + prefix + '-TOTAL_FORMS').val(), 10);
var last_form = $('.' + prefix + ':last');
var new_form = last_form.clone(false).html(last_form.html().replace(
new RegExp(prefix + '-\\\\d-', 'g'), prefix + '-' + count + '-'));
new_form.find('input[type="text"], textarea').each(function () {
$(this).val('');
});
new_form.hide().insertAfter(last_form).slideDown(300);
@ghickman
ghickman / .noserc
Created April 30, 2011 14:18
Example noserc file
[nosetests]
with-spec=1
spec-color=1
with-growl=1
@ghickman
ghickman / post-receive
Created April 5, 2011 22:22
Post-Receive hook. Runs when the repository is pushed to.
#!/bin/bash
while read oldrev newrev refname
do
if [ "$refname" == "refs/heads/master" ]; then
WORKDIR=/path/to/local/repo
export GIT_DIR=$WORKDIR/.git
pushd $WORKDIR >/dev/null
git pull --quiet >/dev/null
# run some code
popd >/dev/null
@ghickman
ghickman / setup_load_paths.rb
Created April 3, 2011 23:44
Ruby script to tell RVM which environment to load
if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm')
begin
rvm_path = File.dirname(File.dirname(ENV['MY_RUBY_HOME']))
rvm_lib_path = File.join(rvm_path, 'lib')
$LOAD_PATH.unshift rvm_lib_path
require 'rvm'
RVM.use_from_path! File.dirname(File.dirname(__FILE__))
rescue LoadError
# RVM is unavailable at this point.
raise "RVM ruby lib is currently unavailable."
ssh-rsa <the Gateway's generated key> Gateway
ssh-rsa <the Satellite generated key> Satellite
ssh-rsa <the generated key> User 1
ssh-rsa <the generated key> User 2
ssh-rsa <the generated key> User 3
[submodule "Contrib/json-framework"]
path = Contrib/json-framework
url = https://github.com/stig/json-framework.git
[submodule "Contrib/scifihifi-iphone"]
path = Contrib/scifihifi-iphone
url = https://github.com/ldandersen/scifihifi-iphone.git
@ghickman
ghickman / gist:835009
Created February 19, 2011 11:25
Set vim to 256 colours for iTerm2
set t_Co=256
@ghickman
ghickman / dbtest.java
Created December 16, 2010 17:04
Check the validity of a MySQL connection profile in a Java app. Requires the mysql jdbc connector.
package dbtest;
import java.sql.*;
/**
*
* @author George Hickman <george@ghickman.co.uk>
*/
public class Main {
@ghickman
ghickman / clean build install
Created October 14, 2010 09:02
Installation Instructions for Tv Renamr
python setup.py clean -a
python setup.py build
python setup.py install