Skip to content

Instantly share code, notes, and snippets.

View case's full-sized avatar

Eric Case case

View GitHub Profile
@case
case / README.md
Created June 26, 2016 21:29
WWSD #2: Leaflet Basic Styling
@case
case / README.md
Last active June 26, 2016 21:28
WWSD #1: Leaflet starter
@case
case / gist:0c492b9ca3525a7d5728
Created April 27, 2015 22:30
iTerm Mac editing shortcuts
  • ⌘⇠0x01 (hex code)
  • ⌘⇢0x05 (hex code)
  • ⌘⌫0x15 (hex code)
  • ⌥⇠b (escape sequence)
  • ⌥⇢f (escape sequence)
  • ⌥⌫0x17 (hex code)
  • ⌥⌦d (escape sequence)
@case
case / keybase.md
Created June 7, 2014 21:19
keybase.md

Keybase proof

I hereby claim:

  • I am case on github.
  • I am case (https://keybase.io/case) on keybase.
  • I have a public key whose fingerprint is A142 A038 317A 1B0B D55D C224 7E94 15FD 5D22 F59D

To claim this, I am signing this object:

@case
case / chrome-refresh.scpt
Created February 20, 2014 18:30
AppleScript to refresh a Chrome tab at a regular interval
set counter to 0
tell application "Google Chrome"
repeat
tell the active tab of its first window
reload
set counter to counter + 1
log counter
end tell
delay 5