- Wowza: MPEG-DASH Player - Live Video Streaming
- Dash industry forum: Dash JavaScript Player
- Dash industry forum: Dash debug player 1.5
- Dash industry forum: Reference players
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
| # ------------------------------------------ | |
| # APP MIME FIXES | |
| # ------------------------------------------ | |
| <IfModule mod_mime.c> | |
| # Data exchange formats | |
| AddType application/atom+xml atom | |
| AddType application/json json map topojson | |
| AddType application/ld+json jsonld | |
| AddType application/rss+xml rss | |
| AddType application/vnd.geo+json geojson |
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
| <?php | |
| function MW_setmenuwebmap($parent){ | |
| global $uniweb; | |
| $html = ""; | |
| $d1="SELECT * FROM "._SQLPREFIX_."_links WHERE xt=0 AND lng LIKE '"._LNG_."' AND id_public = 1 AND id_map = 1 AND secure IN(0,2) "; | |
| $d1.=_SUBDOMAINMODE_ ? " AND id_subdomain = '"._CONTENTPATH_."' " : null; | |
| $d1.=" ORDER BY id_position,public_ord,title,id"; | |
| $__PRECACHE = WEEBO_cached_result($d1); |
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
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "#0c9191", | |
| "@brand-success": "#36CC36", |
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 Browser = function(_hub) | |
| { | |
| var self = this; | |
| self.element = '.browser table tbody'; | |
| self.get = function(_options) | |
| { | |
| var _settings = { | |
| fulltext : "", |
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 Tasker = function() | |
| { | |
| var self = this; | |
| var _tasks = {}; | |
| var waitTime = 10; | |
| /* ********************** | |
| // Public methods | |
| ********************** */ | |
| self.add = function(task) |
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 | |
| # wget -O -https://gist.githubusercontent.com/prochor666/... | bash | |
| clear | |
| echo -e "\e[38;5;14m|------------------------------------------- \e[0m" | |
| echo -e "\e[38;5;14m| Sanatorium web server installer \e[0m" | |
| echo -e "\e[38;5;14m|------------------------------------------- \e[0m" | |
| echo -e "\e[38;5;14m| \e[0m" |
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
| <?php | |
| ignore_user_abort(); | |
| set_time_limit(0); | |
| // Warp deploy script | |
| function downloadFile($pathFrom, $pathTo) { | |
| $chunksize = 4*(1024*1024); // 4M default | |
| try { | |
| // parse_url() parse host, path, etc. | |
| $parts = parse_url($pathFrom); |
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 | |
| # wget https://gist.githubusercontent.com/... | |
| # Sanatorium webserver installer complete | |
| # prochor, 2018 | |
| # prochor666@gmail.com | |
| clear | |
| echo -e "\e[38;5;14m|------------------------------------------- \e[0m" | |
| echo -e "\e[38;5;14m| Sanatorium web server installer \e[0m" |
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
| <?php | |
| class Holiday { | |
| public $dates = []; | |
| public function __construct(){ | |
| $this->dates = [ | |
| '1.1.', | |
| '8.5.', | |
| '5.7.', |