Skip to content

Instantly share code, notes, and snippets.

@rrotter
rrotter / private.xml
Created October 30, 2015 04:21
My Karabiner settings, including fixes for Matias Ergo Pro
<?xml version="1.0"?>
<root>
<devicevendordef>
<vendorname>APPLE</vendorname>
<vendorid>0x05ac</vendorid>
</devicevendordef>
<deviceproductdef>
<productname>MATIAS_ERGO_PRO</productname>
<productid>0x024f</productid>
</deviceproductdef>
@rrotter
rrotter / github-markdown.rb
Created June 19, 2015 22:27
Add github-markdown support to Tilt (and thus Sinatra and others).
# usage:
# set :gfm => true to enable GitHub Flavored Markdown mode
require 'tilt/template'
require 'github/markdown'
module Tilt
class GitHubTemplate < Template
self.default_mime_type = 'text/html'