Skip to content

Instantly share code, notes, and snippets.

View boaglio's full-sized avatar
👨‍💻
Designing & Thinking & Coding & Testing

Fernando Boaglio boaglio

👨‍💻
Designing & Thinking & Coding & Testing
View GitHub Profile
@boaglio
boaglio / Jenkins Hackathon setup-2013.txt
Last active December 29, 2015 05:39
Jenkins Hackathon setup
- Why Jenkins Hackathon setup ?
Don't waste your time installing stuff, start hacking right away!
- What should you need:
github account
Git
Java
Maven
public class Java13 {
public static void main(String[] args) {
System.out.println("Java 13 test!");
Java13.howMany(13);
}
static void howMany(int k) {
@boaglio
boaglio / spring-core5.md
Last active February 27, 2023 12:42
Anotações do Spring Core 5
@boaglio
boaglio / Comparativo de empregos.md
Last active November 15, 2023 15:53
Comparativo de empregos
Empresa 1 Empresa 2
Gostava mais de café da manhã galera
Gostava mais de massagem horário controlado
Gostava mais de happy hour coding dojo
Não vou sentir falta de reuniões de sexta até 22h discursos do chefe
Não vou sentir falta de trabalhar 12h e receber 8h cobrança de manter o foco e não conversar
Não vou sentir falta de te ligarem a qualquer hora, inclusive fds cobrança de chegar cedo mas sair tarde não
Valor fixo ? sim
@boaglio
boaglio / JavaClassFileVersion.md
Last active January 7, 2024 12:09
Java class file version

Aquele erro

Class has been compiled by a more recent version of the Java Environment (class file version 61.0), 
this version of the Java Runtime only recognizes class file versions up to 55.0.

É quando compilamos com Java 17 (class file version 61.0) e tentamos executar com Java 11 (class file version 55.0).

@boaglio
boaglio / .gitignore
Last active January 7, 2024 16:41
GitIgnore for ANY Java project - IntelliJ , Eclipse , VSCode , NetBeans, JDeveloper, Maven, Gradle
#
# .gitignore for any Java app =)
#
# https://gist.github.com/boaglio/8c76e6cf795afa0ee04f2faf3ea97a56
#
# Gradle
.gradle/
**/build/
build/
@boaglio
boaglio / scripts-rinha.md
Last active March 13, 2024 01:27
scripts para Rinha de Back End

Lista contas do Twitter 🐦

#!/usr/bin/env bash
arquivos=$(find . -type f -name "README.md" ! -path "./participantes/README.md") 
for arquivo in $arquivos; do   
  urls=$(grep -o -E 'https://twitter.com[^/)]+' "$arquivo")  
  if [ -n "$urls" ]; then  
    echo "$urls" 
  fi 
@boaglio
boaglio / atalhos-ij.md
Last active April 16, 2024 09:23
Atalhos do IntelliJ - para quem veio do Eclipse

Atalhos do IntelliJ

Principais

Caiu no IntelliJ agora?

Aprenda só esses:

Tipo de Atalho IntelliJ IDEA