Skip to content

Instantly share code, notes, and snippets.

View galaakk's full-sized avatar

Eric Dejonckheere galaakk

View GitHub Profile
@anthonyshort
anthonyshort / _media-queries.scss
Created March 13, 2012 10:37
Media Queries in Sass
// Media Queries in Sass 3.2
//
// These mixins make media queries a breeze with Sass.
// The media queries from mobile up until desktop all
// trigger at different points along the way
//
// And important point to remember is that and width
// over the portrait width is considered to be part of the
// landscape width. This allows us to capture widths of devices
// that might not fit the dimensions exactly. This means the break
@ashee
ashee / clone-mygists.rb
Created August 12, 2012 19:37
Clone or refresh all my gists
#!/usr/bin/env ruby
# clone-mygists.rb : clones all mygists or refreshes them
require 'rubygems'
require 'json'
mygists = `curl -u ashee -qs https://api.github.com/users/ashee/gists`
gists = JSON.load(mygists)
gists.each do |g|
@gornostal
gornostal / .bashrc
Created September 18, 2012 14:26
.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth