Skip to content

Instantly share code, notes, and snippets.

View aubricus's full-sized avatar
Coffee.

Aubrey Taylor aubricus

Coffee.
View GitHub Profile
# paths
base_path = "./"
config_path = "./config.rb"
@aubricus
aubricus / bourbon-neat-compass.sh
Created August 6, 2014 20:47
Install Bourbon & Neat, Compatible with Compass (i.e., SASS 3.2)
gem install bourbon -v 3.2.3
gem install neat -v 1.5.1
@aubricus
aubricus / devbot-html-into-devbot-django.md
Last active August 29, 2015 14:04
Install Devbot HTML into Devbot Django Template

How to Install Devbot HTML into Devbot-Django

  1. In a new directory, create a Devbot-Django Project
  2. In a new directory, create a Devbot-HTML Project
  3. Devbot-Django: Delete all things in /static
  4. Devbot-HTML > Devbot-Django: Copy all things in /src to /static
  5. Devbot-HTML > Devbot-Django: Copy /config.rb into the Devbot-Django project root
  6. Devbot-Django: Update new /config.rb, replace src/ with static/
  7. Devbot-Django: Update vagrant, fab css_watch task: see: https://gist.github.com/aubricus/72edfdba60c0a4b89d0c
  8. Devbot-Django: Index.html remove require include
@aubricus
aubricus / SassMeister-input-HTML.html
Created September 16, 2014 00:41
Generated by SassMeister.com.
<div class="page">
<header>
<h1>Hello I'm The Header</h1>
</header>
<div class="hero">
<div class="one">
<h2>I'm by myself</h2>
</div>
<div class="two">
<div><h3>I'm 1</h3></div>
@function get($dict, $key, $default: false) {
/* a python-style "get" function to emulate dictionary access in scss
param: $dict the dict you'd like to 'get' from
param: $key the 'key' to access
param: $default a default value to return should the 'get' fail
see:
- http://bit.ly/1cPvYXx
- http://stackoverflow.com/a/11041421
@aubricus
aubricus / SassMeister-input.scss
Created March 14, 2015 00:04
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
@mixin foo($section){
.foo.#{$section} & {
@content;
}
}
@aubricus
aubricus / rebase-local-branch-from-rebased-upstream.sh
Last active October 6, 2015 18:13
Rebase a local branch who's upstream has been rebased.
# Thanks to:
# http://stackoverflow.com/a/20423029 (recover rebased upstream)
# http://stackoverflow.com/a/11868440 (get current branch name)
# Note:
# Be sure to checkout the branch you wish to re-sync / recover
# change this to desired upstream
upstream_branch=upstream/environment-detail
@aubricus
aubricus / perfect-pixel-custom-style.css
Last active December 4, 2015 00:11 — forked from anonymous/perfect-pixel-custom-style.css
Custom styles for PerfectPixel Chrome Extension
#chromeperfectpixel-panel button {
padding: 0.7em;
border-radius: 0 !important;
background: #dedede !important;
}
#chromeperfectpixel-panel #chromeperfectpixel-panel-header {
height: 33px !important;
background: #dedede !important;
}
@aubricus
aubricus / view.js
Last active May 2, 2016 20:18
Micro-visual-state-transition mechanic
define(function (require, exports, module) {
var _ = require("underscore");
var $ = require("jquery");
var backbone = require("backbone");
var marionette = require("marionette");
var UploadImagesModalView = marionette.LayoutView.extend({
validTansitionStates: ["initial", "activity", "valid", "invalid"],
@aubricus
aubricus / brew-upgrade-all.sh
Created October 25, 2016 03:42
Brew Upgrade All
brew upgrade $(brew outdated | grep '^[a-zA-Z]')