Skip to content

Instantly share code, notes, and snippets.

View apontes77's full-sized avatar
🎯
Focusing

Alexandre Pontes apontes77

🎯
Focusing
View GitHub Profile
@boaglio
boaglio / spring-core5.md
Last active June 20, 2025 08:53
Anotações do Spring Core 5
@rodrigovilar
rodrigovilar / FilaTest.java
Last active July 15, 2022 20:06
Implementação de Pilha baseada em Lista encadeada
import static org.junit.Assert.*;
import org.junit.Test;
public class FilaTest {
@Test
public void fifo() {
Fila fila = new Fila();
@leocomelli
leocomelli / git.md
Last active December 11, 2025 08:00
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda