- Filesystem watchers like libinotify do not work (workaround by switching to fast insider)
- Stack size limit is hard and low (can't get around this right now)
- LXSS cannot run Postgres servers due to lack of System V (workaround is to run server on Windows natively)
This file contains 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
/** | |
* Style: eddb.io - Elite Dangerous Darker Orange Edition | |
* Style Author: AWMoore (aka Commander Victor Skali) | |
* Style URL: https://userstyles.org/styles/113093/eddb-io-elite-dangerous-darker-orange-edition | |
* Version: 1.0.4 | |
* --------------------------------------- | |
* Primary Orange: rgb(255,115,0) | |
* Primary Yellow: rgb(246,175,61) | |
* Primary Red: rgb(91,5,0) | |
*/ |
This file contains 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 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', | |
aggregation: null, | |
passedValueA: null, | |
passedValueB: undefined, | |
actions: { | |
select(tabValue, tabIndex) { |
This file contains 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', | |
something: 10, | |
watchingSomething: Ember.computed('something', function() { | |
let something = this.get('something'); | |
console.log(typeof something); | |
}) | |
}); |