Skip to content

Instantly share code, notes, and snippets.

View jcamenisch's full-sized avatar

Jonathan Camenisch jcamenisch

  • Raleigh, NC
  • 21:58 (UTC -04:00)
View GitHub Profile
@jcamenisch
jcamenisch / server_setup.sh
Last active December 11, 2015 00:28 — forked from ericboehs/gist:3863345
Slightly tweaked server setup, shamelessly copied from the Eric
#!/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
@jcamenisch
jcamenisch / output sample
Last active December 14, 2015 05:08
List the short description of my git commits since a given date, grouped by day.
> 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
@jcamenisch
jcamenisch / MacSetupNotes.md
Last active December 14, 2015 12:59
Mac Setup notes

Install MAMP Pro for Apache/PHP/MySQL

  • 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:

@jcamenisch
jcamenisch / currency.rb
Last active December 18, 2015 22:39
A simple currency class
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
@jcamenisch
jcamenisch / unmaybe.rb
Created June 25, 2013 04:00
Return blackhole object with maybe(something), but convert blackhole back to nil with a chain-closing method. Because sometimes we need to send values to outside code that understands the nil idiom, but not our "exotic" blackhole object.
class BlackHole
def method_missing(*args, &block)
self
end
def unmaybe
nil
end
# ...
@jcamenisch
jcamenisch / continueFormulas.js
Created August 21, 2013 02:14
To be triggered on form post in a Google Spreadsheet. This simple function will copy calculations from an early row to the rest of the rows (including the blank row that was newly inserted by the form post).
// How I had it as of this morning, 8/20/2013
var _inputSheet;
function inputSheet() {
return _inputSheet || (
_inputSheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Input')
);
}
function continueFormulas() {
@jcamenisch
jcamenisch / volunteerNotifications.js
Last active December 21, 2015 10:09
Given a list of people on a rotation to cover some responsibility, send notifications to the next people who's shift is approaching. To test this, 1. Make a duplicate of https://docs.google.com/spreadsheet/ccc?key=0AsonuW5GGQ5sdGtaTEFBZ1pzYTZ2ZzFZTWZvbW1nbmc for your sandbox. 2. In the menu of your spreadsheet, navigate to Tools > Script Editor.…
/*
* Runs in the context of
* https://docs.google.com/spreadsheet/ccc?key=0AsonuW5GGQ5sdGtaTEFBZ1pzYTZ2ZzFZTWZvbW1nbmc
*/
var sheetDefaults = {
firstDataRow: 2,
firstDataCol: 1,
spreadsheetId: '0AsonuW5GGQ5sdGtaTEFBZ1pzYTZ2ZzFZTWZvbW1nbmc',
};
@jcamenisch
jcamenisch / .read_sensitive_data_into_environment
Last active August 29, 2015 13:56
With latest (master) version of dotenv, you can load in sensitive information straight from the Mac OS X keychain.
AWS_ACCESS_KEY_ID=$(keychain_account s3.amazonaws.com)
AWS_SECRET_ACCESS_KEY=$(keychain_password s3.amazonaws.com $AWS_ACCESS_KEY_ID)
@jcamenisch
jcamenisch / list_method_arguments.rb
Last active August 29, 2015 14:02
List arguments to a Ruby method
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)
# 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