1 DireTide 2 First Floor 3 Kill All Humans! 4 GUARDIAN ANGELS 5 The Lost Cartel 6 Acts of Vengeance 7 Black Lotus 8 Best Of The Best Of The Best
This file contains 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=${SOURCE:-cartoon-dev} | |
TARGET=${TARGET:-cb-live} | |
FILES=(cards.xml cards_finalform.xml cards_mythic.xml levels.xml combos.xml missions.xml) | |
ENDPOINT="http://%s.synapse-games.com/assets/%s" | |
get_diff() { | |
declare file=$1 |
This file contains 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 | |
export_diff() { | |
declare project=$1 period=$2 hash=$3 | |
local person="$(git -C "$project" show --format="%an" -s "$hash")" | |
local target="output/$period/$person/${project#projects/}/$hash.html" | |
mkdir -p "$(dirname "$target")" |
This file contains 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 Nassau\CartoonBattle\Services\Farming\Chores; | |
use Nassau\CartoonBattle\Entity\Game\Farming\UserFarming; | |
use Nassau\CartoonBattle\Services\Farming\FarmingChore; | |
use Nassau\CartoonBattle\Services\Game\Game; | |
class WatchAdsChore implements FarmingChore | |
{ |
This file contains 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
Training times and costs: | |
Level 1 | |
30 minutes | |
Gun Show:100 | |
Gems:27 | |
Level 2 | |
1 hour | |
Gun Show:250 |
This file contains 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 AclModeratorsUpdater | |
{ | |
/** | |
* @var MutableAclProviderInterface | |
*/ | |
private $provider; | |
public function __construct(MutableAclProviderInterface $provider) |
This file contains 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 Acme\Services; | |
use Doctrine\Common\Cache\ArrayCache; | |
use Doctrine\Common\Cache\Cache; | |
use Doctrine\ORM\EntityRepository; | |
use Kunstmaan\AdminBundle\Entity\User; | |
use Acme\Entity\Profile; |
This file contains 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 array_to_entries(array $array) { | |
return array_map(function ($key, $value) { | |
return [ | |
"key" => $key, | |
"value" => $value, | |
]; | |
}, array_keys($array), array_values($array)); | |
} |
This file contains 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 | |
Trait OnceTrait { | |
private $once = []; | |
protected function once($callback, ...$arguments) | |
{ | |
$hash = $this->hashOnceMethod(func_get_args()); |
This file contains 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
deploy-to-hub: | |
steps: | |
- script: | |
name: import application slug | |
code: |- | |
herokuish slug import < $WERCKER_SOURCE_DIR/slug.tgz | |
- script: | |
name: re-create application user | |
code: |- | |
useradd -u $(stat -c %u /app) zabka |