I hereby claim:
- I am jreijn on github.
- I am jreijn (https://keybase.io/jreijn) on keybase.
- I have a public key ASBy-BI83D6Zy900U1-X-CS1t11m2ezInErmhuEVUotViAo
To claim this, I am signing this object:
+------------+--------------------------------+ | |
| Language | Number of constructs libraries | | |
+------------+--------------------------------+ | |
| Typescript | 1164 | | |
| Python | 781 | | |
| .Net | 511 | | |
| Java | 455 | | |
| Go | 132 | | |
+------------+--------------------------------+ |
public static final String TYPE_QUERY_PARAM = "type"; | |
public static final String JSON_FILE_EXTENSION = ".json"; | |
public static final String PAGE_PREFIX = "_p"; | |
private S3Client s3Client = S3Client.builder() | |
.region(Region.EU_WEST_1) | |
.httpClient(UrlConnectionHttpClient.builder().build()) | |
.credentialsProvider(EnvironmentVariableCredentialsProvider.create()) | |
.build(); |
public ECRBasedAppRunnerService(Construct scope, String id, Role role) { | |
super(scope, id); | |
CfnService.HealthCheckConfigurationProperty healthCheckConfigurationProperty = | |
new CfnService.HealthCheckConfigurationProperty.Builder() | |
.path("/actuator/health") | |
.protocol("HTTP") | |
.interval(10) | |
.timeout(5) | |
.healthyThreshold(5) |
package ${PACKAGE_NAME}; | |
import org.springframework.hateoas.Link; | |
import org.springframework.hateoas.Resource; | |
public class ${NAME} extends Resource<${ENTITY}> { | |
public ${NAME}(${ENTITY} content, Link... links) { | |
super(content, links); | |
} |
I hereby claim:
To claim this, I am signing this object:
#java | |
alias java6='export JAVA_HOME=`/usr/libexec/java_home --version 1.6`' | |
alias java7='export JAVA_HOME=`/usr/libexec/java_home --version 1.7`' | |
alias java8='export JAVA_HOME=`/usr/libexec/java_home --version 1.8`' |
{ | |
"title": "Hippo Campus Experience Optimizer with Relevance for Targeting", | |
"services": { | |
"query": { | |
"idQueue": [ | |
1, | |
2, | |
3, | |
4 | |
], |
input { | |
tcp { | |
type => "haproxy" | |
port => 3333 | |
} | |
} | |
filter { | |
grok { | |
type => "haproxy" |
import java.rmi.RemoteException; | |
import java.util.Map; | |
import java.util.TreeMap; | |
import javax.jcr.Node; | |
import javax.jcr.RepositoryException; | |
import javax.jcr.Session; | |
import org.hippoecm.repository.api.MappingException; | |
import org.hippoecm.repository.api.WorkflowContext; |