-
Download & install from http://www.mamp.info/
-
Set MySQL root password using MAMPP Pro UI
-
Configure Pow to proxy unknown hosts to Apache with:
echo 8888 > ~/.pow/default
-
Set up local mysql socket in standard location:
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 bash | |
### | |
# Run this script as root | |
### | |
# Setup variables for this script | |
echo "Settings for this machine--" | |
[ -z "$HOSTNAME" ] && read -p 'Hostname: ' HOSTNAME | |
[ -z "$LOCALE" ] && read -p 'Locale [en]: ' LOCALE |
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
> whathaveidone 2013-02-18 | |
Tuesday, 19 February, 2013 | |
Fix the rake task to pull the real data! | |
Correct off-by-one error | |
Wednesday, 20 February, 2013 | |
Wrap deep properties with presenters | |
Thursday, 21 February, 2013 |
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
class Currency | |
def initialize(value) | |
@value = (value || 0).to_d.round(2) | |
end | |
attr_reader :value | |
alias_method :to_d, :value | |
def to_currency; self; end |
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
class BlackHole | |
def method_missing(*args, &block) | |
self | |
end | |
def unmaybe | |
nil | |
end | |
# ... |
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
// How I had it as of this morning, 8/20/2013 | |
var _inputSheet; | |
function inputSheet() { | |
return _inputSheet || ( | |
_inputSheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Input') | |
); | |
} | |
function continueFormulas() { |
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
/* | |
* Runs in the context of | |
* https://docs.google.com/spreadsheet/ccc?key=0AsonuW5GGQ5sdGtaTEFBZ1pzYTZ2ZzFZTWZvbW1nbmc | |
*/ | |
var sheetDefaults = { | |
firstDataRow: 2, | |
firstDataCol: 1, | |
spreadsheetId: '0AsonuW5GGQ5sdGtaTEFBZ1pzYTZ2ZzFZTWZvbW1nbmc', | |
}; |
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
AWS_ACCESS_KEY_ID=$(keychain_account s3.amazonaws.com) | |
AWS_SECRET_ACCESS_KEY=$(keychain_password s3.amazonaws.com $AWS_ACCESS_KEY_ID) |
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
def get_inputs(a, b, c) | |
Hash[local_variables.map { |name| [name, binding.local_variable_get(name)] }] | |
end | |
get_inputs('one', 'two', 'three') | |
#=> {:a=>"one", :b=>"two", :c=>"three"} | |
# Or package that in a reuseable method like so: | |
def get_local_variables(a_binding) |
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 pre-commit hook to block forbidden code | |
# | |
# Installation | |
# | |
# ln -s /path/to/pre-commit.sh /path/to/project/.git/hooks/pre-commit | |
# | |
# Based on | |
# | |
# http://codeinthehole.com/writing/tips-for-using-a-git-pre-commit-hook/ | |
# http://mark-story.com/posts/view/using-git-commit-hooks-to-prevent-stupid-mistakes |