This file contains hidden or 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
| jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024 | |
| jdk.tls.disabledAlgorithms=SSLv3, RC4, DH keySize < 768 | |
| https://stackoverflow.com/questions/14149545/java-security-cert-certificateexception-certificates-does-not-conform-to-algori# |
This file contains hidden or 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
| var PLAY = 1; | |
| var END = 0; | |
| var gameState = PLAY; | |
| var trex, trex_running, trex_collided; | |
| var ground, invisibleGround, groundImage; | |
| var cloud, cloudsGroup, cloudImage; | |
| var obstaclesGroup, obstacle1, obstacle2, obstacle3, obstacle4, obstacle5, obstacle6; |
This file contains hidden or 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
| <!-- Replace `http` requests with `https` --> | |
| <meta | |
| http-equiv="Content-Security-Policy" | |
| content="upgrade-insecure-requests" | |
| /> | |
| <!-- Set CSP, if not provided, the browser also uses the standard same-origin policy --> | |
| <meta | |
| http-equiv="Content-Security-Policy" | |
| content="default-src 'self'; img-src https://*; child-src 'none';" | |
| /> |
This file contains hidden or 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
| package org.jboss.arquillian.extension.suite; | |
| import java.util.concurrent.Callable; | |
| import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; | |
| import org.jboss.arquillian.container.spi.Container; | |
| import org.jboss.arquillian.container.spi.ContainerRegistry; | |
| import org.jboss.arquillian.container.spi.client.container.DeployableContainer; | |
| import org.jboss.arquillian.container.spi.client.deployment.Deployment; | |
| import org.jboss.arquillian.container.spi.client.deployment.DeploymentScenario; |