This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* jQuery Double Tap | |
* Developer: Sergey Margaritov (github.com/attenzione) | |
* License: MIT | |
* Date: 22.10.2013 | |
* Based on jquery documentation http://learn.jquery.com/events/event-extensions/ | |
*/ | |
(function($){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.input.checkbox { | |
label.custom { | |
input[type=checkbox] { | |
position: absolute; left: -10000px; opacity: 0; | |
} | |
span.tick { | |
display: inline-block; width: 17px; height: 17px; | |
position: relative; top: 4px; | |
border: 1px solid $color-border; border-radius: 3px; | |
background-color: #fff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://stackoverflow.com/questions/5527601/normalizing-mousewheel-speed-across-browsers | |
function normalize_mousewheel(e) { | |
var //o = e.originalEvent, | |
o = e, | |
d = o.detail, w = o.wheelDelta, | |
n = 225, n1 = n-1; | |
// Normalize delta | |
d = d ? w && (f = w/d) ? d/f : -d/1.35 : w/120; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BooleanValue | |
# https://github.com/rails/rails/blob/master/activemodel/lib/active_model/type/boolean.rb | |
FALSE_VALUES = [ | |
false, 0, | |
"0", :"0", | |
"f", :f, | |
"F", :F, | |
"false", :false, | |
"FALSE", :FALSE, | |
"off", :off, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /usr/local/var/ | |
mkdir postgres-9.2.1 | |
initdb /usr/local/var/postgres-9.2.1/ | |
pg_upgrade --old-datadir /usr/local/var/postgres --new-datadir /usr/local/var/postgres-9.2.1 --old-bindir /usr/local/Cellar/postgresql/9.1.5/bin/ --new-bindir /usr/local/Cellar/postgresql/9.2.1/bin/ | |
mv postgres postgres-9.1.5 | |
mv postgres-9.2.1 postgres | |
rm analyze_new_cluster.sh | |
rm delete_old_cluster.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["super+u"], "command": "upper_case" }, | |
{ "keys": ["super+l"], "command": "lower_case" }, | |
{ "keys": ["super++shift+'"], "command": "change_quotes" }, | |
// Multiple carets | |
{ "keys": ["alt+up"], "command": "select_lines", "args": { "forward": false } }, | |
{ "keys": ["alt+down"], "command": "select_lines", "args": { "forward": true } } | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default application configuration that all configurations inherit from. | |
scss_files: "**/*.scss" | |
plugin_directories: ['.scss-linters'] | |
# List of gem names to load custom linters from (make sure they are already | |
# installed) | |
plugin_gems: [] | |
linters: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
com.google.android.videos | |
com.phorus.playfi.tv | |
org.droidtv.amazonalexa | |
org.droidtv.demome | |
org.droidtv.eum | |
org.droidtv.freeviewplayers | |
org.droidtv.nettv.market | |
org.droidtv.nettvrecommender | |
org.droidtv.playtv | |
tv.inscape.tvclient.inscapeacr |