var capabilities = ["saveState", "replay", "ghostMode", "socialData","playerData","share",
"logEvents","rewardedAds","coins"];
var silentMode = true; // Default value when is parameter not pass is false TODO: missing description
// signature: controller, controllerOptions, gameCapabilities, callback
gamee.gameInit("FullScreen", {}, capabilities, function(error, data) {
if(error !== null)
throw error;
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 | |
| SOURCE=/root/gitlab/ | |
| DESTINATION=/root/backup/ | |
| # not modify below | |
| DATE_DAILY=`date '+%d-%m-%Y_%H-%M-%S'` | |
| tar -cvzf $DESTINATION/$DATE_DAILY.tar $SOURCE | |
| # daily - keep for 14 days |
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
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
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
| 'colorChoose': 'Choose skin of your tank', | |
| 'region': 'Region', | |
| 'controlChoose': 'Choose control layout', | |
| 'wipeProgress': 'Tunnel wipe progress', | |
| 'languageChoose': 'Language select', | |
| 'freePoints': 'Free points', | |
| 'players': 'Players', | |
| 'skillReload' : 'Reload', | |
| 'skillDamage' : 'Damage', | |
| 'skillSpeed' : 'Speed', |
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
| 'cz' : { | |
| 'colorChoose': 'Vyberte si skin Vašeho tanku', | |
| 'region': 'Region', | |
| 'controlChoose': 'Zvolte ovládání', | |
| 'wipeProgress': 'Vyčištění tunelu', | |
| 'languageChoose': 'Zvolte jazyk', | |
| 'freePoints': 'Volné body', | |
| 'players': 'Hráči', | |
| 'skillReload' : 'Přebijení', | |
| 'skillDamage' : 'Poškození', |
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
| <b>10:17</b> Testovací realtime novinka <br> |
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 | |
| namespace App\Presenters; | |
| use Nette; | |
| use App\Model; | |
| use Nette\Application\UI\Form; | |
| class fbPresenter extends BasePresenter |
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
| Stažení nette: | |
| https://nette.org/cs/download | |
| https://github.com/nette/nette/releases/download/v2.3.10/Nette-2.3.10.zip | |
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 | |
| echo 'test'; |