- What's up in Emberland LIVE
- Speaker(s): EmberWeekend aka Chase McCarthy & Jonathan Jackson
- Slides
- Summary:
- Building Excellent Engineering Culture
- Speaker: Juan Pablo Buritica
- Slides
- Summary:
| +----------+ | |
| | | error(e) | |
| +------| Error |<-------------------+-------------------------+ | |
| | | | | | | |
| | +----------+ | | | |
| | ^ | | | |
| | | | | | |
| | | | | | |
| | |error(e) | | | |
| | | | | |
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| actions: { | |
| setText(text) { | |
| console.log('text=', text); | |
| this.attrs.updateMessageAtIndexPath(message, indexPath); | |
| } |
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| actions: { | |
| setText(text) { | |
| this.attrs.updateMessageAtIndexPath(message, indexPath); | |
| } | |
| } |
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| didRender() { | |
| console.log('didRender'); | |
| console.log('pojo1', this.get('pojo1')); | |
| console.log('pojo2', this.get('pojo2')); | |
| console.log('pojo3', this.get('pojo3')); | |
| } |
| require 'rubygems' | |
| require 'v8' | |
| def print_resources | |
| rss = /\w*[ ]*#{Process.pid}[ ]*([.,\d]*)[ ]*([.,\d]*)[ ]*([\d]*)[ ]*([\d]*)/.match(`ps aux`)[4] | |
| print "resources: #{rss.to_i/1024}MB\n" | |
| end | |
| print_resources |
| require 'jenkins/plugin/behavior' | |
| module Jenkins | |
| # | |
| # Defines the equivalent of `hudson.Extension` | |
| # | |
| module Extension | |
| extend Plugin::Behavior | |
| module ClassMethods |
| module Less | |
| module Rails | |
| class ImportProcessor < Tilt::Template | |
| IMPORT_SCANNER = /@import\s*['"]([^'"]+)['"]\s*;/.freeze | |
| def prepare | |
| end | |
| def evaluate(context, locals, &block) |