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
.TODO { | |
position: relative; | |
&:after { | |
background: rgb(250, 255, 185); | |
content: ""; | |
display: block; | |
height: 23px; | |
left: 5px; | |
position: absolute; | |
top: 5px; |
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
guard 'process', :name => 'shrink-images', :command => 'ruby resize-mobile-images.rb mobileretina' do | |
watch /^images\/mobileretina\/.+/ | |
end |
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
# encoding: utf-8 | |
environment_seed_file = File.join(Rails.root, 'db', 'seeds', "#{Rails.env}.rb") | |
def seed_image(file_name) | |
File.open(File.join(Rails.root, "/app/assets/images/seed/#{file_name}.jpg")) | |
end | |
products = [ | |
{:name => 'foo', :description => 'lorem ipsum', :product_type => ProductType.find_by_name('Sandwiches')}, |
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
" Indent navigation in vim - https://gist.github.com/gists/2467046/ | |
" Adapted from http://vim.wikia.com/wiki/Back_and_forth_between_indented_lines_again | |
" Use Option+hjkl to navigate to the start/end of indents, or move in/out of indented code | |
" Additionally, combine the actions <, >, d, and y with these four movements | |
" This is useful for quickly performing actions on functions, objects, anything that begins and ends with a matching indent level | |
" | |
" Examples: | |
" <opt-j> at a function's start moves to the end of the function | |
" ><opt-j> at a function's start indents the whole function another level. | |
" y<opt-k> at a function's end yanks the entire thing |
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
" relative linenumber. very helpful for "8yy"-style operations | |
set relativenumber | |
" once you get used to virtualedit=all, it's so great | |
set virtualedit=all | |
" setting this allows you to undo into previous sessions, all the way back to the start of a file | |
" (providing the path hasn't changed). | |
" very useful with the Vundle plugin | |
set undofile |
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
<% set_bg @page.slug %> | |
<section class="layout"> | |
<article> | |
<% if @page.image.present? %> | |
<%= render 'shared/pic', | |
:url => @page.image.url, | |
:alt => @page.title(current_locale), |
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
guard 'compass' do | |
watch /^.+(\.s[ac]ss)/ | |
end | |
guard 'process', :name => 'minify-screen-js', :command => 'juicer merge js/all.js -o js/all.min.js --force -s' do | |
watch /^js\/brianregan\/screen.js/ | |
end | |
guard 'process', :name => 'minify-mobile-js', :command => 'juicer merge js/mobile.js -o js/mobile.min.js --force -s' do | |
watch /^js\/brianregan\/mobile.js/ |
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
@mixin fit_bg($url){ | |
background-image: image-url($url); | |
display: block; | |
height: image-height($url); | |
width: image-width($url); | |
} | |
// Usage | |
.nav-about { | |
@include fit_bg('assets/structure/nav/about.png'); |
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
guard 'process', :name => 'minify-screen-js', :command => 'juicer merge js/all.js -o js/all.min.js --force -s' do | |
watch /^js\/brianregan\/screen.js/ | |
end |
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
guard 'process', :name => 'shrink-images', :command => 'ruby resize-mobile-images.rb mobileretina' do | |
watch /^images\/mobileretina\/.+/ | |
end |