-
To: 177.71.0.0 From: 177.71.255.255
-
To: 52.67.0.0 From: 52.67.255.255
-
To: 54.94.0.0 From: 54.94.255.255
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
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Random; | |
public class Main { | |
public static void main(String[] args) { | |
double[] data = {0.98264424, 0.25215435, 0.74409057, 0.75786744, 0.07386903, | |
0.117157 , 0.97317236, 0.95556455, 0.5144924 , 0.42371915, | |
0.92337679, 0.8653283 , 0.36893858, 0.34717299, 0.30595674, |
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
# Java | |
.mtj.tmp/ | |
*.class | |
*.jar | |
*.war | |
*.ear | |
*.nar | |
hs_err_pid* |
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
FROM alpine | |
# Change to root directory | |
WORKDIR /root | |
# Install OpenJDK8 | |
RUN apk add openjdk8 | |
# Install Apache Ant | |
RUN apk add apache-ant |