I hereby claim:
- I am sarahhodne on github.
- I am sarahhodne (https://keybase.io/sarahhodne) on keybase.
- I have a public key ASA0x8qItGxXN4CBbe5vGcuA-d_SKUrACYy5m5RGnoqcZgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| $(".comment-form-textarea") | |
| .filter(function (index) { | |
| var re = /\+1/; | |
| return re.test($(this).val()) && $(this).val().length < 10; | |
| ) | |
| .parents(".timeline-comment-wrapper") | |
| .hide(); |
| #!/bin/bash | |
| if [ -z "${SAUCE_USERNAME}" ] || [ -z "${SAUCE_ACCESS_KEY}" ]; then | |
| echo "This script can't run without your Sauce credentials" | |
| echo "Please set SAUCE_USERNAME and SAUCE_ACCESS_KEY env variables" | |
| echo "export SAUCE_USERNAME=ur-username" | |
| echo "export SAUCE_ACCESS_KEY=ur-access-key" | |
| exit 1 | |
| fi | |
| SAUCE_TMP_DIR="$(mktemp -d -t sc.XXXX)" |
| payload={ | |
| "id": 1, | |
| "number": 1, | |
| "status": null, | |
| "started_at": null, | |
| "finished_at": null, | |
| "status_message": "Passed", | |
| "commit": "62aae5f70ceee39123ef", | |
| "branch": "master", | |
| "message": "the commit message", |
| #!/bin/bash | |
| pluginpath="$(dirname "$(readlink -f $0)")" | |
| ln -svf "$pluginpath/tmux.conf" "$HOME/.tmux.conf" |
| #!/bin/bash | |
| pluginpath="$(dirname "$(readlink -f $0)")" | |
| ln -svf "$pluginpath/gitconfig" "$HOME/.gitconfig" | |
| ln -svf "$pluginpath/gitignore" "$HOME/.gitignore" |
There's currently an issue with running brew update on the Mac VMs, where you'll get an error along the lines of Error: Failure while executing: git pull -q origin refs/heads/master:refs/remotes/origin/master.
Running git --work-tree=/usr/local --git-dir=/usr/local/.git clean -fd before brew update will fix this. The VMs will be updated later today with a fix, at which point the workaround is no longer needed, but it won't break anything either.
| svenfuchs: 5515 (#1) | |
| joshk: 2234 (#2) | |
| michaelklishin: 2206 (#3) | |
| drogus: 1145 (#4) | |
| rkh: 888 (#5) | |
| roidrage: 674 (#6) | |
| henrikhodne: 394 (#7) | |
| sferik: 302 (#8) | |
| ifesdjeen: 220 (#9) | |
| randym: 192 (#10) |
| (ns leonardo.users) | |
| (defn init-users | |
| [] {}) | |
| (defn add-user | |
| [users username] | |
| (conj users | |
| {username | |
| {:points 0 |