- Far too generic and should be narrower
- Retain talented people might be a better narrative(difference between a piece of wood and a violin is preparation)
- More differentiated
- L&D needs to be expanded on
- AI needs to be expanded on
🔴 Critical: users can't use the application, should be solved inmmediatly and prioritised by all team members. Resolution time is ASAP
💛 Severe: A portion of the app that's non crucial for it's functioning is not working. Needs to be triaged. Resolution time is 1 business day.
🔵 Minor: CSS issues, missing translations, etc. Fall into this category. Resolution time is 3-5 business days
If you come across something weird/unusual feel free to ping us at [email protected] 😄
import Ember from 'ember'; | |
const { Route, inject } = Ember; | |
export default Route.extend({ | |
myWebchatService: inject.service(), | |
activate() { | |
this._super(...arguments); | |
this.get('myWebchatService').on('poll', (data) => this.store.pushPayload(data)); |
import Ember from 'ember'; | |
const { inject, computed } = Ember; | |
Ember.Component.extend({ | |
store: inject.service(), | |
model: computed('store', function() { | |
return this.get('store').createRecord('group-payment'); | |
}) | |
}) |
java/ | |
├── CMakeLists.txt | |
├── README | |
├── build | |
│ ├── CMakeCache.txt | |
│ ├── CMakeFiles | |
│ │ ├── 3.6.2 | |
│ │ │ ├── CMakeCCompiler.cmake | |
│ │ │ ├── CMakeCXXCompiler.cmake | |
│ │ │ ├── CMakeDetermineCompilerABI_C.bin |
import Ember from 'ember'; | |
const { computed, isPresent } = Ember; | |
export default Ember.Component.extend({ | |
errors: null, | |
label: null, | |
value: computed('errors', { | |
get() { return null; }, | |
set(_,v) { |
learning-actions
{{link-to}}
If you're finished with all of this:
Implement a `` that can create an object to be displayed on the template. This form needs to have:
curl https://gist.githubusercontent.com/isaacs/579814/raw/24f5f02b5cd1812ebb1c41a33a13a0417cccbd69/node-and-npm-in-30-seconds.sh | sh |