I hereby claim:
- I am hylke1982 on github.
- I am hylke1982 (https://keybase.io/hylke1982) on keybase.
- I have a public key whose fingerprint is FF3C 1124 3D01 79A5 9F7D C599 9EE5 22F8 F84E 6CC7
To claim this, I am signing this object:
| for i in **/*.tar.bz2; do # Whitespace-safe and recursive | |
| last=${i##*/} | |
| directory="${i%/*}" | |
| file=${last%%.*} | |
| echo "$directory|$file|$last" | |
| targetDir="$directory/$file" | |
| mkdir -p $targetDir | |
| tar xvjf $i -C $targetDir | |
| done |
| provider "aws" { | |
| region = "eu-west-1" | |
| profile = "---name-of-profile---" | |
| } | |
| data "aws_ami" "resourcename" { | |
| most_recent = true | |
| filter { | |
| name = "name" |
| <!-- JaCoCo --> | |
| <!-- Within maven pom.xml build -> plugins -> plugin --> | |
| <build> | |
| <plugins> | |
| <!-- JaCoCo --> | |
| <plugin> | |
| <groupId>org.jacoco</groupId> | |
| <artifactId>jacoco-maven-plugin</artifactId> | |
| <executions> | |
| <execution> |
| { | |
| "id": "redis", | |
| "container": { | |
| "docker": { | |
| "image": "redis", | |
| "network": "BRIDGE", | |
| "portMappings": [ | |
| { | |
| "containerPort": 6379, | |
| "hostPort": 0, |
| { | |
| "phases": [ | |
| { | |
| "name": "redis", | |
| "actions": [ | |
| { | |
| "type": "container", | |
| "descriptor": "https://gist.githubusercontent.com/Hylke1982/8a553db15d83be879ecbfe84e2f45645/raw/55879f39a3cd5db11dcc8cd042d0031b82eff39a/redis.json", | |
| "version" : 1 | |
| } |
I hereby claim:
To claim this, I am signing this object:
| import org.craftsmenlabs.gareth.api.ExperimentEngine; | |
| import org.craftsmenlabs.gareth.api.ExperimentEngineConfig; | |
| import org.craftsmenlabs.gareth.core.ExperimentEngineConfigImpl; | |
| import org.craftsmenlabs.gareth.core.ExperimentEngineImpl; | |
| import org.craftsmenlabs.gareth.examples.definition.SampleDefinition; | |
| public class ExampleApplication { | |
| public static void main(final String[] args) { |
| import org.craftsmenlabs.gareth.api.annotation.Assume; | |
| import org.craftsmenlabs.gareth.api.annotation.Baseline; | |
| import org.craftsmenlabs.gareth.api.annotation.Time; | |
| import java.time.Duration; | |
| import java.time.temporal.ChronoUnit; | |
| public class ExperimentDefinition { | |
| @Baseline("Get the current number of discounted rooms booked.") |
| Experiment: I want to validate that by showing the discounted rooms first, there will be an increase in booked rooms. | |
| Baseline: Get the current number of discounted rooms booked. | |
| Assume: There will be an increase in bookings for discounted rooms of 25 per week. | |
| Time: 1 week | |
| Success: Send email to the whole team with congratulations | |
| Failure: Send an email to the Product Owner. |
| As the owner of the hotel booking site, | |
| I want the users to see the discounted rooms first, | |
| So that they will be booked first. |