http://compass-style.org/reference/compass/css3/font_face/#mixin-font-face
Setting weights and styles http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration
Source Sans Pro Regular
| /** | |
| * jQuery.support.cssProperty | |
| * To verify that a CSS property is supported | |
| * (or any of its browser-specific implementations) | |
| * | |
| * @param p css property name | |
| * @param rp optional, if set to true, the css property name will be returned | |
| * instead of a boolean support indicator | |
| * @return {mixed} | |
| * |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |
| #!/bin/bash | |
| # A simple script to backup an organization's GitHub repositories. | |
| #------------------------------------------------------------------------------- | |
| # NOTES: | |
| #------------------------------------------------------------------------------- | |
| # * User @jimklimov (and probably some others called out in the long comment | |
| # thread below) have modified this script to make it more robust and keep | |
| # up with various changes in the GitHub API and response format at: | |
| # https://github.com/jimklimov/github-scripts |
http://compass-style.org/reference/compass/css3/font_face/#mixin-font-face
Setting weights and styles http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration
Source Sans Pro Regular
| /*! normalize-mobile.css v1.0.0 | MIT License */ | |
| /* ========================================================================== | |
| HTML5 display definitions | |
| ========================================================================== */ | |
| /* | |
| * Prevents modern browsers from displaying `audio` without controls. | |
| * Remove excess height in iOS 5 devices. | |
| */ |
Either copy the aliases from the .gitconfig or run the commands in add-pr-alias.sh
Easily checkout local copies of pull requests from remotes:
git pr 4 - creates local branch pr/4 from the github upstream(if it exists) or origin remote and checks it outgit pr 4 someremote - creates local branch pr/4 from someremote remote and checks it out| { | |
| "scope": "text.html.ruby source.ruby.rails.embedded.html", | |
| "completions": | |
| [ | |
| { "trigger": "lorem_image", "contents": "lorem_image('$1', :random_color => true)" }, | |
| { "trigger": "lorem_email", "contents": "lorem_email" }, | |
| { "trigger": "lorem_date", "contents": "lorem_date" }, | |
| { "trigger": "lorem_name", "contents": "lorem_name" }, |
| <html ng-app id="ng-app" class="ng-app"> | |
| <head runat="server"> | |
| <title></title> | |
| <!--[if lte IE 8]> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/json3/3.2.5/json3.min.js"></script> |