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
=> ~/hacking/tmux-fingers vagrant status | |
#<Thread:0x000055afada899d8@/opt/vagrant/embedded/gems/gems/vagrant-2.0.2/lib/vagrant/util/checkpoint_client.rb:76 run> terminated with exception (report_on_exception is true): | |
Traceback (most recent call last): | |
2605: from /opt/vagrant/embedded/gems/gems/vagrant-2.0.2/lib/vagrant/util/checkpoint_client.rb:78:in `block in check' | |
2604: from /opt/vagrant/embedded/gems/gems/hashicorp-checkpoint-0.1.5/lib/checkpoint.rb:91:in `check' | |
2603: from /usr/lib/ruby/2.5.0/net/http.rb:1213:in `get' | |
2602: from /usr/lib/ruby/2.5.0/net/http.rb:1455:in `request' | |
2601: from /usr/lib/ruby/2.5.0/net/http.rb:909:in `start' | |
2600: from /usr/lib/ruby/2.5.0/net/http.rb:920:in `do_start' | |
2599: from /usr/lib/ruby/2.5.0/net/http.rb:935:in `connect' |
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
#!/bin/bash | |
# place this script in your path, with filename "eslint" | |
if [[ -f ./node_modules/eslint/bin/eslint.js ]]; then | |
./node_modules/eslint/bin/eslint.js $* | |
else | |
echo "No eslint found in this folder!" | |
exit 1 | |
fi |
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
(ns clojure-dojo.core) | |
(use '[clojure.string :only (join split)]) | |
(defn letter-index | |
[letter] | |
(- (int letter) 64)) | |
(defn letter-pairs | |
[letter] |