Skip to content

Instantly share code, notes, and snippets.

View AllanCapistrano's full-sized avatar
👾
Playing or watching anime

Allan Capistrano AllanCapistrano

👾
Playing or watching anime
View GitHub Profile
@AllanCapistrano
AllanCapistrano / ipList.md
Created February 27, 2022 22:18
Overwatch Servers IP in South America

Brazilian Servers

  1. To: 177.71.0.0 From: 177.71.255.255

  2. To: 52.67.0.0 From: 52.67.255.255

  3. To: 54.94.0.0 From: 54.94.255.255

@AllanCapistrano
AllanCapistrano / gitignore
Created October 21, 2021 19:08
Java gitignore
# Java
.mtj.tmp/
*.class
*.jar
*.war
*.ear
*.nar
hs_err_pid*
@AllanCapistrano
AllanCapistrano / dockerfile-java-ant
Last active August 13, 2022 17:33
Dockerfile to Java + Ant projects
FROM alpine
# Change to root directory
WORKDIR /root
# Install OpenJDK8
RUN apk add openjdk8
# Install Apache Ant
RUN apk add apache-ant