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 | |
/** | |
* @author Vítězslav Dvořák <[email protected]> | |
* | |
* Thanks to https://github.com/mledoze/countries | |
*/ | |
require_once '../vendor/autoload.php'; | |
$coder = new \FlexiPeeHP\FlexiBeeRW(null, ['evidence' => 'stat','offline'=>'true']); |
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 | |
require_once '../vendor/autoload.php'; | |
/** | |
* http://docker-php.readthedocs.io/en/latest/cookbook/container-run/ | |
*/ | |
use Amp\Loop; | |
use Docker\Docker; | |
use Docker\DockerClientFactory; | |
use Docker\API\Model\ContainersCreatePostBody; |
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 | |
define('EASE_LOGGER', 'console|syslog|email'); | |
define('EASE_APPNAME', 'FioCaptions'); | |
$inc = 'includes/Init.php'; | |
if (!file_exists($inc)) { | |
chdir('..'); | |
} | |
require_once $inc; |
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 | |
TERM="xterm" | |
export TERM | |
BACKPORTS=" composer freight " | |
strstr() { | |
[ "${1#*$2*}" = "$1" ] && return 1 | |
return 0 |
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 | |
TERM="xterm" | |
export TERM | |
BACKPORTS=" composer freight " | |
strstr() { | |
[ "${1#*$2*}" = "$1" ] && return 1 | |
return 0 |
OlderNewer