➜ bin/carpalx
Keyboard effort
------------------------------------------------------------
k1 1.002 69.6 69.6
k1,k2 1.359 24.8 94.3
k1,k2,k3 1.441 5.7 100.0
b 0.307 13.6 13.6
p 1.134 50.2 127.1
ph 0.000 0.0 0.0
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
source :rubygems | |
gem "puma" | |
gem "sinatra" |
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
*.gem | |
*.rbc | |
/.config | |
/coverage/ | |
/InstalledFiles | |
/pkg/ | |
/spec/reports/ | |
/spec/examples.txt | |
/test/tmp/ | |
/test/version_tmp/ |
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
require 'thread' | |
class AsyncConsole | |
# | |
# Creates a new Asynchronous Console, within the given context. | |
# | |
# @param [Module] context | |
# The context to evaluate code within. | |
# |
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
Verifying my Blockstack ID is secured with the address 1MF4R8dVMT4AQB1KGxmSqBv1HYbRffW3Zh https://explorer.blockstack.org/address/1MF4R8dVMT4AQB1KGxmSqBv1HYbRffW3Zh |
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
# A simple plugin for Jekyll that allows you to use {% url "alt text" %} to add images to your posts. | |
# It will automatically check those images for width and height. | |
# | |
# Requires http://imagesize.rubyforge.org/ | |
require 'image_size' | |
require 'open-uri' | |
module Jekyll |
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 | |
old=$1 | |
new=$2 | |
if ! [ "$new" ]; then | |
new=`psql -V | cut -d' ' -f3` | |
fi | |
if ! [ "$old" ]; then | |
echo "Usage: pgupgrade.sh <old-version> [new-version]" |
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
Capybara.app_host = "http://localhost:3001" | |
Capybara.run_server = false |