I hereby claim:
- I am aortbals on github.
- I am aortbals (https://keybase.io/aortbals) on keybase.
- I have a public key whose fingerprint is 6DEA C6F4 A4AC 9F4D 8FA0 3BC3 FB6E C0A1 138F 3D6A
To claim this, I am signing this object:
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle', | |
items: [ | |
{ name: 'Fuu' }, | |
{ name: 'Bar' }, | |
{ name: 'Baz' }, | |
{ name: 'Qix' } |
import { animate, stop, Promise } from "liquid-fire"; | |
import didAnimateIn from './helpers/did-animate-in'; | |
/** | |
* Liquid Fire's cross fade animation with the `didAnimateIn` hook added. | |
*/ | |
export default function crossFade(opts={}) { | |
stop(this.oldElement); | |
let promise = Promise.all([ | |
animate(this.oldElement, {opacity: 0}, opts), |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle', | |
isAdministrator: false, | |
notAdministrator: Ember.computed.not('isAdministrator') | |
}); |
/* global require, module */ | |
var EmberApp = require('ember-cli/lib/broccoli/ember-app'); | |
var mergeTrees = require('broccoli-merge-trees'); | |
var app = new EmberApp({ | |
trees: { | |
styles: mergeTrees([ | |
'bower_components/bourbon/dist', |
I hereby claim:
To claim this, I am signing this object:
// Media Queries in Stylus | |
// | |
// Inspired by Anthony Short's _media-queries.scss to Stylus. | |
// https://gist.github.com/anthonyshort/2028061 | |
// | |
// Usage: | |
// | |
// @media tablet-portrait-and-below | |
// margin: 0 | |
// ... |
# Sometimes it's necessary to perform a test of new SMTP settings. | |
# Should be run from within the rails environment. | |
# Tested with Rails 4.0.2 | |
ActionMailer::Base.smtp_settings = { | |
address: ENV['MAILER_ADDRESS'], | |
domain: ENV['WEB_HOST'], | |
port: ENV['MAILER_PORT'], | |
user_name: ENV['MAILER_USER'], | |
password: ENV['MAILER_PASSWORD'], |
# You should export your editor | |
# `export EDITOR=vim` | |
createMigrationAndOpen() { | |
rails g migration $1 | |
ls db/migrate/* | tail -n1 | xargs $EDITOR | |
} | |
alias migration=createMigrationAndOpen |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="ArrayController Live Filtered Content" /> | |
<meta charset=utf-8 /> | |
<title>ArrayController Live Filtered Content</title> | |
<script src="http://code.jquery.com/jquery-2.0.2.js"></script> | |
<script src="http://builds.emberjs.com/handlebars-1.0.0.js"></script> | |
<script src="http://builds.emberjs.com/release/ember.js"></script> | |
</head> |