Skip to content

Instantly share code, notes, and snippets.

View tdegrunt's full-sized avatar

Tom de Grunt tdegrunt

View GitHub Profile
@tdegrunt
tdegrunt / Gemfile
Created February 14, 2019 21:23 — forked from Dmdv/Gemfile
Nginx, Sinatra, and Puma.
source :rubygems
gem "puma"
gem "sinatra"
@tdegrunt
tdegrunt / halmak.md
Created December 11, 2018 18:49
Carpalx run for halmak
➜ 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

;; Automatically generated
(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 '(anzu-cons-mode-line-p nil)
@tdegrunt
tdegrunt / .gitignore
Created May 22, 2018 07:13
Ruby programming with VS Code
*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/spec/examples.txt
/test/tmp/
/test/version_tmp/
@tdegrunt
tdegrunt / readme.md
Created April 5, 2018 09:37 — forked from maxivak/readme.md
Integrating Gem/Engine and Main Rails App
@tdegrunt
tdegrunt / async_console.rb
Created February 5, 2018 14:35 — forked from postmodern/async_console.rb
An asynchronous Console that can evaluate Ruby code in the background.
require 'thread'
class AsyncConsole
#
# Creates a new Asynchronous Console, within the given context.
#
# @param [Module] context
# The context to evaluate code within.
#
Verifying my Blockstack ID is secured with the address 1MF4R8dVMT4AQB1KGxmSqBv1HYbRffW3Zh https://explorer.blockstack.org/address/1MF4R8dVMT4AQB1KGxmSqBv1HYbRffW3Zh
@tdegrunt
tdegrunt / better_image_tag.rb
Created October 30, 2017 11:28 — forked from pichfl/better_image_tag.rb
Liquid Image Tag for Jekyll
# 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
@tdegrunt
tdegrunt / brew-pgupgrade.sh
Created October 26, 2017 10:00
Auto-upgrade homebrew's PostgreSQL data directory
#!/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]"
@tdegrunt
tdegrunt / env.rb
Created April 20, 2017 17:38
Browserstack remote capabilities and tunnel setup (capybara with cucumber)
Capybara.app_host = "http://localhost:3001"
Capybara.run_server = false