#!/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
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 |
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
# | |
# .gitignore for any Java app =) | |
# | |
# https://gist.github.com/boaglio/8c76e6cf795afa0ee04f2faf3ea97a56 | |
# | |
# Gradle | |
.gradle/ | |
**/build/ | |
build/ |
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).
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
public class Java13 { | |
public static void main(String[] args) { | |
System.out.println("Java 13 test!"); | |
Java13.howMany(13); | |
} | |
static void howMany(int k) { |
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
- Why Jenkins Hackathon setup ? | |
Don't waste your time installing stuff, start hacking right away! | |
- What should you need: | |
github account | |
Git | |
Java | |
Maven |