I hereby claim:
- I am xcambar on github.
- I am xcambar (https://keybase.io/xcambar) on keybase.
- I have a public key ASBzE-UDKYiIs5y1i-k-VVup6VcmZ-S_OqHnKS-q2RjeAQo
To claim this, I am signing this object:
import Component from '@glimmer/component'; | |
export default class ThrowTestComponent extends Component { | |
constructor() { | |
super(...arguments) | |
if (!this.args.test) { | |
throw new Error('hello') | |
} | |
} | |
} |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
testString: 'Ember Twiddle' | |
}); |
import Component from '@ember/component' | |
export default Component.extend({ | |
tagName: '', | |
aIsChecked: false, | |
bIsChecked: false, | |
someOtherMethod() { | |
console.log('someOtherMethod() this = ', this) | |
}, | |
someMethod() { |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
countClose: 0, | |
incCloseCount() { | |
this.incrementProperty('countClose'); | |
} | |
}); |
[ -e .vagrant ] && (VBoxManage showvminfo $(cat .vagrant/machines/default/virtualbox/id) --machinereadable | grep 'VMState=' | sed 's/.*"\(.*\)"[^"]*$/\1/) |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
myValue: '?', | |
actions: { | |
setToSomethingElse() { | |
this.set('myValue', 'something else'); | |
} | |
} | |
}); |
I hereby claim:
To claim this, I am signing this object:
Starting BrowserStack Local { key: 'XXX...', force: true } | |
BrowserStack Local started | |
Started child process for: chrome 52 environment | |
Started child process for: chrome 51 environment | |
Started child process for: ie 11 environment | |
Started child process for: ie 10 environment | |
Started child process for: ie 9 environment | |
Started child process for: safari 9.1 environment | |
Started child process for: safari 8 environment | |
Started child process for: safari 7.1 environment |
function docker_indicator() { | |
if [[ -n "$DOCKER_MACHINE_NAME" ]]; then | |
echo "%F{blue}(🐳 $DOCKER_MACHINE_NAME)%f" | |
fi | |
} |