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
| #!/bin/bash | |
| if [ "$#" -eq 0 ]; then | |
| echo "Нужно указать имя файла +_+" | |
| exit | |
| fi | |
| echo -n "Битрэйт (2000k): " | |
| read bitrate | |
| if [ "$bitrate" == "" ]; then | |
| bitrate='2000' |
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
| try { | |
| document.createElement('canvas').getContext('webgl', { powerPreference: "high-performance" }) | |
| } catch(e) {} |
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 class DataServiceError<T> { | |
| constructor(public error: any, public requestData: T) {} | |
| } | |
| // Function of additional success actions | |
| // that returns a function that returns | |
| // an observable of ngrx action(s) from DataService method observable |
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
| /** IE9, IE10 and IE11 requires all of the following polyfills. **/ | |
| import 'core-js/es6/array'; | |
| import 'core-js/es6/date'; | |
| import 'core-js/es6/function'; | |
| import 'core-js/es6/map'; | |
| import 'core-js/es6/math'; | |
| import 'core-js/es6/number'; | |
| import 'core-js/es6/object'; |