-
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
// 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
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
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
> 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
#!/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
var | |
MARK_UNREAD = true, | |
UNSNOOZED_LABEL = null, | |
LABEL_NAME_TEMPLATE = "Snooze/{{days}} days", | |
DEBUG_LEVEL = 0 | |
; | |
var LABEL_REGEX = RegExp(LABEL_NAME_TEMPLATE.replace('{{days}}','(\\d+)')); | |
function debugLog(message, minDebugLevel) { |
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
.with-end-mark-2 > p:last-child::after { | |
display: inline; | |
content: "\0020" url(/attachments/celtic-knot.png); | |
color: #644609; | |
} |
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
.with-end-mark > p:last-child::after { | |
display: inline; | |
content: " \0020\2118"; | |
color: #644609; | |
} |
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
html { | |
background-color: #eed; | |
background-image: url(noise.png), url(noise.png), url(noise.png); | |
background-size: 79px 79px, 101px 101px, 73px 73px; | |
background-position: 0 0, 5px 5px, 11px 11px; | |
} |