A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| # WARNING : This gist in the current form is a collection of command examples. Please exercise caution where mentioned. | |
| # Docker | |
| sudo apt-get update | |
| sudo apt-get remove docker docker-engine docker.io | |
| sudo apt install docker.io | |
| sudo systemctl start docker | |
| sudo systemctl enable docker | |
| docker --version |
| App.HighChartsComponent = Ember.Component.extend(App.HighchartsThemeMixin, { | |
| classNames: [ 'highcharts-wrapper' ], | |
| content: undefined, | |
| chartOptions: undefined, | |
| chart: null, | |
| buildOptions: Em.computed('chartOptions', '[email protected]', function() { | |
| var chartContent, chartOptions, defaults; | |
| chartOptions = this.getWithDefault('chartOptions', {}); | |
| chartContent = this.get('content.length') ? this.get('content') : [ |