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
---------------------------------------------- | |
3.25 PoBs [Always re-pull PoBs right before league start to have the most updated version] | |
---------------------------------------------- | |
Aurabot: | |
https://pobb.in/JDvQLXM_0-TW | |
Spark Inquitor carry: | |
https://pobb.in/rc2V3e82Beji | |
Storm Brand Inquisitor carry: |
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
#!/usr/bin/env php | |
<?php | |
declare(strict_types=1); | |
use Imagecow\Image; | |
use Symfony\Component\Console\Application; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputInterface; |
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
# Capistrano Task that hooks into `deploy:finished` to send a message to Slack | |
# | |
# 1. Setup a Slack Incoming Webhook Integration (https://api.slack.com/incoming-webhooks) | |
# 2. Put the Webhook URL in an Environment variable (SLACK_WEBHOOK_URL) | |
# 3. Place this file in `lib/capistrano/tasks` | |
# | |
# This will then create a new message in the channel on deployment, including who, what and where information | |
require "net/http" | |
require "json" |
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 | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\ConsoleOutputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
/** | |
* Testcase: app/console foo > std 2> err | |
*/ |