I hereby claim:
- I am trent-boyd on github.
- I am trenternet (https://keybase.io/trenternet) on keybase.
- I have a public key ASA76hoZPpMUT8dIkPeAMsklhV2OUY9FUN2D_r_8OyNs9go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
/* Remap Home / End keys to be correct */ | |
"\UF729" = "moveToBeginningOfLine:"; /* Home */ | |
"\UF72B" = "moveToEndOfLine:"; /* End */ | |
"$\UF729" = "moveToBeginningOfLineAndModifySelection:"; /* Shift + Home */ | |
"$\UF72B" = "moveToEndOfLineAndModifySelection:"; /* Shift + End */ | |
"^\UF729" = "moveToBeginningOfDocument:"; /* Ctrl + Home */ | |
"^\UF72B" = "moveToEndOfDocument:"; /* Ctrl + End */ | |
"$^\UF729" = "moveToBeginningOfDocumentAndModifySelection:"; /* Shift + Ctrl + Home */ | |
"$^\UF72B" = "moveToEndOfDocumentAndModifySelection:"; /* Shift + Ctrl + End */ |
body::before { | |
background-color: white; | |
color: black; | |
content: ''; | |
padding: 5px; | |
position: absolute; | |
z-index: 1000000; | |
} | |
@media only screen and (min-width: 600px) { |
.font(@name, @file, @style: normal, @weight: normal) { | |
@font-face { | |
font-family: @name; | |
src: url('../fonts/@{file}.eot'); | |
src: url('../fonts/@{file}.eot?#iefix') format('embedded-opentype'), | |
url('../fonts/@{file}.svg') format('svg'), | |
url('../fonts/@{file}.ttf') format('truetype'); | |
font-style: @style; | |
font-weight: @weight; | |
} |
-- Move to Space 1 | |
tell application "System Events" to keystroke (key code 105) | |
delay 1 | |
tell application "Moom" to arrange windows according to snapshot named "Development Panel" | |
-- Move to Space 2 | |
tell application "System Events" to keystroke (key code 107) | |
delay 1 | |
tell application "Moom" to arrange windows according to snapshot named "Communication Panel" |
tell application "System Events" | |
-- Only runs if Rdio is running | |
if (name of processes) contains "Rdio" then | |
tell application "Rdio" | |
-- Shuffle it! | |
set shuffle to true | |
-- Plays 'Morning Jams' playlist | |
play source "p2265948" | |
end tell | |
end if |
<!-- | |
NOTE: United States is first in this list, but if you want | |
to be nice and alphabetical about it, it should go | |
right under "United Kingdom" on line 234. :) | |
--> | |
<select name="Country"> | |
<option value="United States" selected>United States</option> | |
<option value="Afghanistan">Afghanistan</option> | |
<option value="Albania">Albania</option> |
<!-- Full State Name --> | |
<select name="State"> | |
<option value="AL">Alabama</option> | |
<option value="AK">Alaska</option> | |
<option value="AZ">Arizona</option> | |
<option value="AR">Arkansas</option> | |
<option value="CA">California</option> | |
<option value="CO">Colorado</option> | |
<option value="CT">Connecticut</option> |