Skip to content

Instantly share code, notes, and snippets.

View thiagolinoz's full-sized avatar
🚀
coucou

Thiago Lino thiagolinoz

🚀
coucou
  • self-improvement
  • Sao Paulo
View GitHub Profile

FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

What's an Effective Engineer?

@thiagolinoz
thiagolinoz / gistheros
Last active July 20, 2020 12:08
example ArrayList e TreeSet
import java.util.List;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
public class HeroisCollection {
public static void main(String[] args) {
List<String> nomeHerois = new ArrayList<String>();
nomeHerois.add("Peter Parker");
List myList = new ArrayList();
@thiagolinoz
thiagolinoz / python-variable
Created June 26, 2020 21:54
python-variable
numero = 10 // uma variavel do tipo inteiro em python
@thiagolinoz
thiagolinoz / java-variable
Last active June 26, 2020 21:52
java-basic
int numero = 10; // uma variavel do tipo inteiro em java