I hereby claim:
- I am eoneill on github.
- I am eoneill (https://keybase.io/eoneill) on keybase.
- I have a public key whose fingerprint is E08D 557B 3961 110E 7564 EA84 DEB7 7D23 F625 A1DD
To claim this, I am signing this object:
| # if we have vscode installed... | |
| if hash code 2>/dev/null; then | |
| # VSCode as default editor | |
| export EDITOR="code -w" | |
| # VSCode command line currently does not support piping from stdin | |
| # This helper function wraps the `code` command to capture piped stdin | |
| function code() { | |
| # reference to the original `code` command | |
| local code=$(which code) |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $tmp: ( | |
| a/b: d/c | |
| ); | |
| /* #{inspect($tmp)} */ |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $placeholders: (); | |
| @mixin placeholder($name) { | |
| $name: "%placeholder-#{$name}"; | |
| @if not index($placeholders, $name) { | |
| $placeholders: append($placeholders, $name) !global; |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $placeholders: (); | |
| @mixin placeholder($name) { | |
| $name: "%placeholder-#{$name}"; | |
| @if not index($placeholders, $name) { | |
| $placeholders: append($placeholders, $name) !global; |
I hereby claim:
To claim this, I am signing this object:
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| @import "compass"; | |
| .example { | |
| @include box-shadow(2px 2px red); | |
| &.no-shadow { |
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| .example { | |
| $button-sizes: ( | |
| (small 16px), | |
| (large 22px) | |
| ); |
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| $test: ( | |
| default: true, | |
| color: red, | |
| color: rgba(red, 0.8) | |
| ); |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| /* Load LinkedIn Data into Form */ | |
| function loadData() { | |
| IN.API.Profile('me') | |
| .fields(['id', 'positions', 'educations']) | |
| .result(function(result) { | |
| profile = result.values[0]; | |
| console.log(profile); |