- No Desktop/Browser notifications
- Read E-mails
- early in the morning
- late in the afternoon
- quick check after lunch, action allowed based on volume
- Slack
- active notifications only for #blocking channels
- Catch up discussions on early morning and late afternoon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # A CORS (Cross-Origin Resouce Sharing) config for nginx | |
| # | |
| # == Purpose | |
| # | |
| # This nginx configuration enables CORS requests in the following way: | |
| # - enables CORS just for origins on a whitelist specified by a regular expression | |
| # - CORS preflight request (OPTIONS) are responded immediately | |
| # - Access-Control-Allow-Credentials=true for GET and POST requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Component from '@glimmer/component'; | |
| export default class ThrowTestComponent extends Component { | |
| constructor() { | |
| super(...arguments) | |
| if (!this.args.test) { | |
| throw new Error('hello') | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| testString: 'Ember Twiddle' | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Component from '@ember/component' | |
| export default Component.extend({ | |
| tagName: '', | |
| aIsChecked: false, | |
| bIsChecked: false, | |
| someOtherMethod() { | |
| console.log('someOtherMethod() this = ', this) | |
| }, | |
| someMethod() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var restify = require('restify'); | |
| var client = restify.createJsonClient({ | |
| url: 'https://YOUR_ORG_NAMESPACE.hullapp.io', | |
| headers: { | |
| 'Hull-App-Id': 'YOUR_APP_ID', | |
| 'Hull-Access-Token': 'YOUR_APP_SECRET' | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // This script shows how to add custom traits to a user | |
| // | |
| var hull = require('hull'); | |
| hull.conf({ | |
| appId: 'abcd', | |
| orgUrl: 'https://demo.hullapp.io', | |
| appSecret: '1234' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| countClose: 0, | |
| incCloseCount() { | |
| this.incrementProperty('countClose'); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ -e .vagrant ] && (VBoxManage showvminfo $(cat .vagrant/machines/default/virtualbox/id) --machinereadable | grep 'VMState=' | sed 's/.*"\(.*\)"[^"]*$/\1/) |
NewerOlder