Skip to content

Instantly share code, notes, and snippets.

@rtsmith
rtsmith / link-icloud-drive.sh
Created August 20, 2019 01:10 — forked from ecridge/link-icloud-drive.sh
Add a symbolic link to iCloud Drive in Bash on macOS.
@rtsmith
rtsmith / _linear-gradient.scss
Created November 28, 2012 02:55 — forked from ykhs/_linear-gradient.scss
linear-gradient Sass Mixin
@mixin linear-gradient($angle, $color-stops...) {
$_angle-with-vendor-prefix: "";
$_angle: "";
@if $angle == "to top" or $angle == "bottom" {
$_angle-with-vendor-prefix: bottom;
$_angle: to top;
} @else if $angle == "to right" or $angle == "left" {
$_angle-with-vendor-prefix: left;
$_angle: to right;
} @else if $angle == "to bottom" or $angle == "top" {
@rtsmith
rtsmith / gist:3929546
Created October 22, 2012 03:52
Everything you can override in a refinerycms project with refinerycms-blog
When starting a project that includes refinerycms-blog:
$ rake refinery:override view=refinery/pages/*
$ rake refinery:override view=layouts/*
$ rake refinery:override view=refinery/blog/shared/*
$ rake refinery:override view=refinery/blog/posts/*
$ rake refinery:override view=refinery/*
$ rake refinery:override controller=refinery/blog/*
$ rake refinery:override controller=refinery/*