I hereby claim:
- I am 75th on github.
- I am lanny (https://keybase.io/lanny) on keybase.
- I have a public key whose fingerprint is 289E F59E 082B EE68 6222 B893 B2A4 430B C0F9 403F
To claim this, I am signing this object:
// Make vertical mousewheel movement scroll a page horizontally. | |
// | |
// Seems to work well with Mac trackpads and Magic Mouse on macOS. | |
// Also works with either scroll direction on macOS. | |
// If body has class 'scroll-horizontal' | |
if(document.body.className.split(' ').indexOf('scroll-horizontal') !== -1) { | |
['wheel', 'mousewheel', 'DOMMouseScroll'].forEach(function(eventName) { | |
// Test for browser support of event | |
if(typeof window['on' + eventName] !== 'undefined') { |
{ | |
"al": { "full": "alabama", "other": ["ala"] }, | |
"ak": { "full": "alaska", "other": ["alas"] }, | |
"az": { "full": "arizona", "other": ["ariz"] }, | |
"ar": { "full": "arkansas", "other": ["ark"] }, | |
"ca": { "full": "california", "other": ["calif", "cal"] }, | |
"co": { "full": "colorado", "other": ["colo", "col"] }, | |
"ct": { "full": "connecticut", "other": ["conn"] }, | |
"de": { "full": "delaware", "other": ["del"] }, | |
"dc": { "full": "district of columbia", "other": ["washington dc", "wash dc"] }, |
I hereby claim:
To claim this, I am signing this object:
#! /bin/bash | |
# Usage: rot [base] string | |
# | |
# Base is assumed to be 13 if not specified. | |
# | |
# Bases not in 0-25 are taken modulo 26; negatives are increased by | |
# 26es until they're positive. Thus, any integer should work | |
# as expected. |