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
Anotações Docker | |
++ Executar um contêiner Docker; | |
$ docker run <container> | |
++ Mostrar todos os contêineres que estão em execução; | |
$ docker ps | |
++ Exibit mais informações sobre os contêineres que estão em execução; | |
$ docker ps -a |
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
1. Construa um "palácio da memória" -- Também conhecido como "método de loci". | |
+ A técnica consiste em usar a memória espacial para gravar nomes, fatos ou listas. O objetivo é criar um lugar imaginário, como uma casa ou um palácio, visualizar os móveis de cada cômodo e associar uma memória a cada um deles. | |
+ O primeiro passo é escolher uma jornada que lhe seja familiar. Pode ser o caminho que você faz para ir para o trabalho ou escola, como pode ser também um caminho dentro da sua própria casa (ou do seu palácio, caso possua um ). Você precisa imaginar sua jornada tendo um início e fim determinados e os pontos de interesse ao longo do caminho devem ser percorridos sempre na mesma ordem. Caso queira usar uma jornada na sua própria casa, por exemplo, os cômodos devem ser percorridos mentalmente numa mesma sequência. | |
O segundo passo é adicionar à sua jornada os itens que você deseja lembrar. Você faz isso transformando esses itens em imagens vívidas (quanto mais inusitadas melhor) e as colocando nos pontos de |
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
<html> | |
<head> | |
<title>Test</title> | |
<style type=text/css> | |
.leftdivision | |
{ | |
float: left; | |
} | |
.rightdivision | |
{ |
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
https://dzone.com/articles/how-to-convert-maven-to-gradle-and-vice-versa | |
https://stackoverflow.com/questions/12888490/gradle-build-gradle-to-maven-pom-xml |
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
package vigilancia.service; | |
import java.util.concurrent.TimeUnit; | |
import java.util.concurrent.atomic.AtomicInteger; | |
import java.time.LocalDateTime; | |
import java.time.temporal.ChronoUnit; | |
/* | |
* Classe para operações de concorrência; | |
* Evitar que o usuário realize muitiplas requisições subsequentemente; |
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
https://github.com/codecrafters-io/build-your-own-x |
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
/* | |
* ; | |
*/ | |
package deepsea.utilities; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.InputStream; | |
import java.security.MessageDigest; | |
import java.io.IOException; |
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
https://www.geeksforgeeks.org/cryptography-and-its-types/ | |
https://medium.com/@amit28amical/data-encryption-standard-des-code-in-java-4a45ad692bae | |
https://www.geeksforgeeks.org/feistel-cipher/ | |
https://pt.wikipedia.org/wiki/Cifra_Feistel | |
https://pt.wikipedia.org/wiki/Twofish | |
https://pt.wikipedia.org/wiki/Cifra_de_bloco | |
https://www.tutorialspoint.com/cryptography/feistel_block_cipher.htm |
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
1) Escreva um programa utilizando a sintaxe Java para verificar se uma lista de inteiros contém apenas números ímpares. | |
2) Escreva um programa utilizando a sintaxe Java para remover espaços em branco de uma string. | |
3) Escreva um programa utilizando a sintaxe Java para verificar se dois arrays contém os mesmos elementos. | |
4) Escreva um programa utilizando a sintaxe Java para somar todos os elementos de um array de inteiros. | |
5) Escreva um programa utilizando a sintaxe Java para inverter uma String. |
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
https://medium.com/@AlexanderObregon/implementing-server-sent-events-sse-with-spring-cbf283171aef | |
https://stackoverflow.com/questions/70418738/how-to-build-a-push-notifications-service-with-spring-and-websocket | |
https://www.baeldung.com/websockets-spring | |
https://www.section.io/engineering-education/getting-started-with-spring-websockets/ |
NewerOlder