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
FROM amazonlinux:latest | |
ARG AURL="https://www.site.com.br/" | |
ENV URL=$URL | |
CMD echo $URL |
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
db: | |
image: mariadb:latest | |
environment: | |
- MYSQL_ROOT_PASSWORD=Eak829ij23 | |
- MYSQL_USER=dba | |
- MYSQL_PASSWORD=zoilo367 | |
- TERM=xterm-256color | |
ports: | |
- "3306:3306" | |
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
private String leArquivo(String nome) { | |
String linha = ""; | |
StringBuilder conteudoArquivo = new StringBuilder(); | |
try { | |
FileReader arq = new FileReader(nome); | |
BufferedReader lerArq = new BufferedReader(arq); |
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
"use strict"; | |
/* | |
* Class myStorage | |
* Gerencia registros salvando-os no navegador | |
* Suporte a cookie e localStorage | |
*/ | |
var myStorage = new Object(); | |
myStorage.defaultExpirationDays = 30; |
NewerOlder