View gist:9935650
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
https://www.python.org/download/releases/3.3.4/ <- Python 3.4 released |
View gist:e2c2281fc3cc01f54043
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
### Keybase proof | |
I hereby claim: | |
* I am ghickman on github. | |
* I am ghickman (https://keybase.io/ghickman) on keybase. | |
* I have a public key whose fingerprint is D05C 5A1C 502A 3734 9698 2B15 EEC6 7845 093B 01FD | |
To claim this, I am signing this object: |
View media-rename.sh
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/local/bin/bash | |
# use bash 4 from homebrew | |
set -e | |
shopt -s globstar | |
FORMAT="%Y-%m-%d_%H-%M-%S" | |
# Video files |
View config.yml
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
defaults: | |
format: '%n - %s%e - %t%x' | |
library: thetvdb | |
organise: yes | |
renamed: /Volumes/Media/TV/ | |
the: true | |
'24': | |
format: '%n - %s%e' |
View clean build install
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
python setup.py clean -a | |
python setup.py build | |
python setup.py install |
View dbtest.java
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
package dbtest; | |
import java.sql.*; | |
/** | |
* | |
* @author George Hickman <george@ghickman.co.uk> | |
*/ | |
public class Main { |
View gist:835009
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
set t_Co=256 |
View .gitmodules
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
[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 |
View setup_load_paths.rb
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
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." |
OlderNewer