- CSSConf EU 2014 - CSS Performance Tooling — by Addy Osmani
- React: CSS in JS — Slides, November 2014
- AngularJS: Realtime Eye Candy — by FITC
| // Set up line-height and colour defaults for this mixin. | |
| $line-height: 20px!default; | |
| $line-color: #94d4ff!default; | |
| /** | |
| * | |
| * Baseline Mixin | |
| * Handy dandy mixin to provide a baseline for your typography. | |
| * | |
| * The mixin carries two arguments — the $baseline, which should match your line-height, and $baseline-color, the colour you want the lines to be. |
Styleguide Generators, it doesn't matter if they automatically generate the final output or not. As long as it's a solution to create a styleguide, then it's a valid entry.
Due to the high usage of this guide and the lack of comfort in Gist's commenting area, I decided to make a blog post out of this which you can find here:
http://blog.frd.mn/install-os-x-10-10-yosemite-in-virtualbox/
| #!/usr/bin/env bash | |
| # Source: https://gist.github.com/jordan-brough/48e2803c0ffa6dc2e0bd | |
| # See also: https://stackoverflow.com/a/25095062/58876 | |
| # Download this script as "git-recent" (no extension), chmod it to be executable and put it in your | |
| # path somewhere (e.g. /usr/bin). You can then use it via `git recent` from inside any git repo. | |
| # Examples: |
| class ApplicationController < ActionController::Base | |
| # stuff | |
| private | |
| # These groups are equivalent: | |
| # | |
| # render action: :new, locals: { item: x } | |
| # render :new, locals: { item: x } |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Copyright (C) 2014 ADDY OSMANI <addyosmani.com> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION |
| javascript:(function () { | |
| var iframe = document.createElement("iframe"), | |
| console; | |
| iframe.src = "about:blank"; | |
| iframe.style.display = "none"; | |
| document.body.appendChild(iframe); | |
| console = (iframe.contentWindow || iframe.contentDocument).console; | |
| iframe.parentNode.removeChild(iframe); |