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
Program received signal SIGSEGV, Segmentation fault. | |
[Switching to Thread 2004.0xc70] | |
0x75e079c8 in msvcrt!memcmp () from C:\Windows\syswow64\msvcrt.dll | |
(gdb) bt | |
#0 0x75e079c8 in msvcrt!memcmp () from C:\Windows\syswow64\msvcrt.dll | |
#1 0x6cb5965c in x264_cqm_init (h=h@entry=0x4854010) at common/set.c:95 | |
#2 0x6cad3d66 in x264_encoder_open_128 (param=param@entry=0x49be624) | |
at encoder/encoder.c:1154 | |
#3 0x6cac2cfc in Open (p_this=0x49f6cb4) | |
at ../../extras/package/win32/../../../modules/codec/x264.c:1401 |
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 fs = require('fs'); | |
fs.watch('watch-me', function (event, filename) { | |
console.log('event is: ' + event); | |
if (filename) { | |
console.log('filename provided: ' + filename); | |
} else { | |
console.log('filename not provided'); | |
} | |
}); |
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
{{#collection Ember.ListView contentBinding="controller" height="700" rowHeight="35"}} | |
{{schedule-item run=this}} | |
{{/collection}} |
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 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({ | |
appName:'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 Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle', | |
valueUndefined: undefined, | |
valueNull: null, | |
valueFalse: false, | |
value1: Ember.computed('valueUndefined', { | |
get: function() { |
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'; | |
Ember.onerror = function() { alert('trolololololol'); }; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle', | |
actions: { | |
troll: function() { | |
this.haha(); | |
} |
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({ | |
appName: 'Ember Twiddle', | |
todos: Ember.computed(function() { | |
return []; | |
}), | |
actions: { | |
add: function() { |
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({ | |
appName: '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
export default { | |
add(array, item) { | |
return array.concat([item]); | |
}, | |
remove(array, item) { | |
return array.filter((i) => { | |
return i !== item; | |
}); | |
} |