I hereby claim:
- I am max on github.
- I am mschoening (https://keybase.io/mschoening) on keybase.
- I have a public key ASBHo725bx5piFhJAZwu5oS_gmD99AmEjFCeivyulKg08go
To claim this, I am signing this object:
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |
I hereby claim:
To claim this, I am signing this object:
.element { | |
position: relative; | |
} | |
/** | |
* Screen: Create a wrapper around all of the content of a web page. | |
*/ | |
.screen { | |
composes: element; |
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
}); |
Light-weight UI components with the attention to detail you've come to expect from Ember.
Instead of worrying about project setup, configuration and glue code we want you to focus on writing components that just work. The fastest way to get started is to install the Ember CLI and leverage [a basic
sudo /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ El\ Capitan.app |
The error handling for async/await with try/catch always bugs me. Go to the rescue?
function to(promise) {
return promise
.then(res => [null, data])
.catch(err => [err])
}
async function doIt() {
#!/usr/bin/env sh | |
set -e | |
echo "Fetching fonts from Apple..." | |
curl -o /tmp/SF-Font.dmg https://developer.apple.com/design/downloads/SF-Font.dmg | |
hdiutil attach -nobrowse -quiet -noverify -noautoopen -mountpoint /Volumes/SF-Font /tmp/SF-Font.dmg | |
echo "Installing fonts..." | |
cp -R /Volumes/SF-Font/. /Library/Fonts/ |