Skip to content

Instantly share code, notes, and snippets.

View jeffjewiss's full-sized avatar

Jeff Jewiss jeffjewiss

View GitHub Profile
@jeffjewiss
jeffjewiss / about:config.md
Created January 13, 2018 16:40 — forked from haasn/about:config.md
Firefox bullshit removal via about:config

Firefox bullshit removal

Due to the incessant swarm of complete and utter nonsense that has been forcing its way into Firefox over time, I've decided to start collecting my personal list of “must-have” about:config tweaks required to turn Firefox into a functional brower.

NOTE: Unfortunately this is somewhat out of date. The comments link to some resources that may be more up-to-date. Patches welcome.

WebSockets

These can be used for nefarious purposes and to bypass access restrictions.

@jeffjewiss
jeffjewiss / keybase.md
Last active August 4, 2016 03:26
keybase.md

Keybase proof

I hereby claim:

  • I am jeffjewiss on github.
  • I am jeffjewiss (https://keybase.io/jeffjewiss) on keybase.
  • I have a public key ASDhldpbGI-bYkRRGIvEP-4iwqASLEwfWiGpQsDum01SyQo

To claim this, I am signing this object:

@jeffjewiss
jeffjewiss / _foundation-settings.sass
Created October 19, 2012 18:12
Foundation Settings Partial
@import "foundation/common/ratios";
// Settings file containing Foundation defaults
// Grid Settings
// $rowWidth: 1000px;
// $columnGutter: 30px;
// $totalColumns: 12;
// $mobileTotalColumns: 4;
@jeffjewiss
jeffjewiss / mq.css
Created October 3, 2012 20:35 — forked from chriscoyier/mq.css
@media only screen and (min-width: 320px) {
/* Small screen, non-retina */
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px),
@jeffjewiss
jeffjewiss / input.scss
Created March 14, 2012 16:32 — forked from twe4ked/input.scss
FREE! Sass (SCSS) mixin for including retina images (useful when developing for iOS).
@mixin background-image-retina($file, $type, $width, $height) {
background-image: url($file + '.' + $type);
@media (-webkit-min-device-pixel-ratio: 2) {
& {
background-image: url($file + '@2x.' + $type);
-webkit-background-size: $width $height;
}
}
}
@jeffjewiss
jeffjewiss / Gemfile
Created December 17, 2011 17:53 — forked from chriseppstein/readme.md
How to integrate Compass with Rails 3.1 asset pipeline
group :assets do
gem 'sass-rails', '~> 3.1.0'
gem 'coffee-rails', '~> 3.1.0'
gem 'uglifier'
gem 'compass', '~> 0.12.alpha'
# include other compass plugins here. E.g.:
gem 'compass-susy-plugin', :require => 'susy'
end
@jeffjewiss
jeffjewiss / osx_lion_rail_setup.md
Created December 15, 2011 17:19 — forked from jpantuso/osx_lion_rail_setup.md
Setup OS X 10.7 w/ homebrew, oh-my-zsh, rvm, rails, and MySQL
@jeffjewiss
jeffjewiss / editable-text.html
Created October 7, 2011 03:09
HTML Contenteditable
<div contenteditable="true">This text will be editable in webkit.</div>
@jeffjewiss
jeffjewiss / GitCommitMessages.md
Created September 6, 2011 18:38
A Note About Git Commit Messages

Capitalized, short (50 chars or less) summary

More detailed explanatory text, if necessary. Wrap it to about 72 characters or so. In some contexts, the first line is treated as the subject of an email and the rest of the text as the body. The blank line separating the summary from the body is critical (unless you omit the body entirely); tools like rebase can get confused if you run the two together.

Write your commit message in the present tense: "Fix bug" and not "Fixed