I hereby claim:
- I am larsnieuwenhuizen on github.
- I am lnieuwenhuizen (https://keybase.io/lnieuwenhuizen) on keybase.
- I have a public key ASDygemV8LMtmr1V80VJEtuf8r-kDG1wReP2p-MqfZ7qxgo
To claim this, I am signing this object:
module "vpc-1" { | |
source = "terraform-aws-modules/vpc/aws" | |
version = "~> 3.0" | |
name = "VPC1" | |
cidr = "10.0.0.0/16" | |
azs = [ | |
"eu-west-1a", | |
"eu-west-1b", |
[cluster] | |
kubemaster ansible_host=192.168.2.40 ansible_user=pi | |
worker-1 ansible_host=192.168.2.41 ansible_user=pi | |
worker-2 ansible_host=192.168.2.42 ansible_user=pi | |
worker-3 ansible_host=192.168.2.43 ansible_user=pi | |
[cluster-masters] | |
kubemaster ansible_host=192.168.2.40 ansible_user=pi | |
[cluster-workers] |
SELECT CP1.* | |
FROM table CP1 | |
JOIN table CP2 | |
ON CP1.item1_id = CP2.item1_id AND CP1.item2_id = CP2.item2_id AND CP1.id > CP2.id |
version: '3.4' | |
services: | |
proxy: | |
image: traefik:1.4-alpine | |
command: --web --docker --docker.domain=docker.localhost | |
networks: | |
- traefik | |
ports: | |
- 80:80 |
I hereby claim:
To claim this, I am signing this object:
TYPO3: | |
TypoScript: | |
rendering: | |
exceptionHandler: 'Vendor\PackageKey\Error\ExceptionHandlers\ThrowingHandler' | |
Vendor: | |
PackageKey: | |
errors: | |
bugSnag: | |
apiKey: 'YourApiKeyHere' |
<?php | |
namespace Package\Key\Service; | |
use TYPO3\Flow\Annotations as Flow; | |
/** | |
* Class EncryptionService | |
* | |
* @Flow\Scope("singleton") | |
*/ |
<?php | |
use \TYPO3\Surf\Domain\Model\Workflow; | |
use \TYPO3\Surf\Domain\Model\Node; | |
use \TYPO3\Surf\Domain\Model\SimpleWorkflow; | |
$application = new \GrandSlam\Surf\Application\TYPO3\CMS('My Website'); | |
$application->setContext('Test'); | |
$application->setDeploymentPath('/deployment'); | |
$application->setOption('keepReleases', 4); |
<?php | |
/** | |
* Replacement viewhelper | |
* | |
* @package lars_development | |
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later | |
*/ | |
class Tx_ExtensionName_ViewHelpers_ReplaceStringViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractViewHelper { | |
/** | |
* Replace the $searchFor string with $replaceString in $string |