I hereby claim:
- I am davidpett on github.
- I am davidpett (https://keybase.io/davidpett) on keybase.
- I have a public key whose fingerprint is 0BB2 E157 A90E AF28 BDAC 7B5A 4B62 03AC 7840 6BCB
To claim this, I am signing this object:
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@import "compass/css3"; | |
.something { | |
@include transform(translate3d(-50%)); | |
} |
// ---- | |
// Sass (v3.4.0.rc.3) | |
// Compass (v1.0.0.rc.1) | |
// ---- | |
.btn { | |
background: #ff0000; | |
&--small { | |
font-size: 1em; |
// ---- | |
// Sass (v3.4.0.rc.3) | |
// Compass (v1.0.0.rc.1) | |
// ---- | |
%btn { | |
background: #ff0000; | |
} | |
.btn { |
I hereby claim:
To claim this, I am signing this object:
/* | |
* Easing Equations ported to CSS by @matthewlein - http://matthewlein.com/ceaser/ | |
* Converted to SCSS vars by @pettpett | |
* | |
* sample usage: | |
* a { | |
* color: #ff0000; | |
* @include transition(color 0.5s $easeOutQuint); | |
* &:hover, | |
* &:focus { |
'.source.scss': | |
'bp-load': | |
'prefix': 'bp' | |
'body': '@include bp(\'${1:base}\') {\n\t$2\n}' |
/* | |
* Working authentication with | |
* Firebase 2.0.x + Ember.js 1.8.1 + Ember Data Canary + EmberFire 1.3.0 + Ember CLI | |
* works for me! [email protected] | |
* | |
* Note: this assumes you've set up login on your Firebase, | |
* only handles Google and Facebook for now, | |
* | |
* In your templates: <button {{action 'login' 'google'}}>Log in with Google</button> | |
*/ |
path = require 'path' | |
{TextEditor} = require 'atom' | |
TextEditor::getLongTitle = -> | |
if sessionPath = @getPath() | |
fileName = path.basename(sessionPath) | |
directory = atom.project.relativize(path.dirname(sessionPath)) | |
directory = if directory.length > 0 then directory.split('/').pop() else path.basename(path.dirname(sessionPath)) | |
"#{directory}/#{fileName}" | |
else | |
'untitled' |
import DS from 'ember-data'; | |
export default DS.RESTSerializer.extend({ | |
normalizePayload(payload) { | |
payload.rooms.forEach((item) => { | |
item.links = { | |
meetings: `/url-to-meetings/${item.id}}` | |
}; | |
}); | |
return payload; |