Skip to content

Instantly share code, notes, and snippets.

# I have a hash `dates` that I get from "DateTime.now - 7, DateTime.now" in my database.
# I need to turn it into a full week where if the date doesn't exist put a 0 in as the value of the date key.
dates = {"2014-01-15"=>1, "2014-01-17"=>1, "2014-01-18"=>1, "2014-01-19"=>17}
week_hash = {
"2014-01-13"=>0,
"2014-01-14"=>0,
"2014-01-15"=>1,
"2014-01-16"=>0,
@iamjohnlong
iamjohnlong / gist:7668077
Created November 26, 2013 23:20
Flat UI Colors in SASS
$turquoise: #1ABC9C
$green-sea: #16A085
$emerland: #2ECC71
$nephritis: #27AE60
$peter-river: #3498DB
@iamjohnlong
iamjohnlong / reset.sass
Created November 16, 2013 22:54 — forked from trey/reset.sass
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
##Userable
module Userable
def self.included(base)
base.has_one :user, :as => :userable, :dependent => :destroy, :autosave => true
base.validate :user_must_be_valid
base.alias_method_chain :user, :autobuild
base.extend ClassMethods
base.define_user_accessors
end
$list: add edit remove details
=action-list
@each $action in $list
.#{$action}-icon
background: url('#{$action}-info.png') no-repeat
+action-list
@iamjohnlong
iamjohnlong / mixin.less
Created September 10, 2012 18:08
LESS mixin for background with an image stacked on a gradient
.img-grad(
@color: "#fff",
@bgimg: "..",
@pos: 50% 50%,
@repeat: repeat,
@begin: #fff,
@end: #000,
) {
/* browsers without support for multiple bgs */
background: @color @bgimg @pos @repeat;
@iamjohnlong
iamjohnlong / bootstrap-plugins.txt
Created March 9, 2012 19:51 — forked from mklabs/bootstrap-plugins.txt
h5bp + twitter bootstrap integration
bootstrap-tooltip.js
bootstrap-popover.js
bootstrap-alert.js
bootstrap-button.js
bootstrap-carousel.js
bootstrap-collapse.js
bootstrap-dropdown.js
bootstrap-modal.js
bootstrap-scrollspy.js
bootstrap-tab.js