One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| Sete Atitudes para Hackear a Ind煤stria de Software | |
| By Klaus Wuestefeld | |
| 1) Torne-se excelente. | |
| Seja realmente bom em alguma coisa. N茫o fique s贸 choramingando ou | |
| querendo progredir 脿s custas dos outros. N茫o pense q pq vc sentou 4 | |
| anos numa faculdade ouvindo um professor falar sobre software q vc | |
| sabe alguma coisa. Jogador de futebol n茫o aprende a jogar bola tendo |
| Contato: @tgmarinho no twitter, www.facebook.com/tgmarinho e email [email protected] | |
| Curr铆culo em PDF acesse: http://tgmarinho.wordpress.com/curriculo/ | |
| Curr铆culo na Plataforma Lattes: http://lattes.cnpq.br/3842572544651417 | |
| Curr铆culo no LinkedIn: http://www.linkedin.com/pub/thiago-marinho/1a/586/516 |
| { | |
| "estados": [ | |
| { | |
| "sigla": "AC", | |
| "nome": "Acre", | |
| "cidades": [ | |
| "Acrel芒ndia", | |
| "Assis Brasil", | |
| "Brasil茅ia", | |
| "Bujari", |
| package jfrode.jsontosql.main; | |
| import java.io.BufferedReader; | |
| import java.io.FileReader; | |
| import org.json.JSONArray; | |
| import org.json.JSONObject; | |
| /** | |
| * |
| #!/bin/bash | |
| ## RECOMENDO EXECUTAR ESSE SCRIPT NA PASTA DOCUMENTOS DENTRO DO USUARIO | |
| echo "PRECISA DE INTERNET PARA EXECUTAR ESSE SCRIPT" | |
| echo "FAZ DOWNLOAD DE ARQUIVOS NA NET" | |
| sudo su | |
| apt-get update -y |
| ## meus projetos | |
| #!/bin/bash | |
| ## RECOMENDO EXECUTAR ESSE SCRIPT NA PASTA DOCUMENTOS DENTRO DO USUARIO | |
| echo "baixando projetos que colaboro, aprendo ou desenvolvo" | |
| git clone https://github.com/tgmarinho/website.git | |
| git clone https://github.com/tgmarinho/curso-jpa-hibernate.git |
| #!/bin/bash | |
| ## RECOMENDO EXECUTAR ESSE SCRIPT NA PASTA DOCUMENTOS DENTRO DO USUARIO | |
| echo "PRECISA DE INTERNET PARA EXECUTAR ESSE SCRIPT" | |
| echo "FAZ DOWNLOAD DE ARQUIVOS NA NET" | |
| sudo su | |
| apt-get update -y |
| // Nome, Tipo de campo, placeholder, Validacao(Inteface) | |
| public enum TipoPessoa { | |
| FISICA("F铆sica", "CPF", "000.000.000-00", CpfGroup.class) { | |
| @Override | |
| public String formatar(String cpfOuCnpj) { | |
| return cpfOuCnpj.replaceAll("(\\d{3})(\\d{3})(\\d{3})", "$1.$2.$3-"); | |
| } | |
| }, |
| #!/bin/bash | |
| # Adicione um novo remote; pode cham谩-lo de "upstream": | |
| git remote add upstream https://github.com/usuario/projeto.git | |
| # Obtenha todos os branches deste novo remote, | |
| # como o upstream/master por exemplo: | |
| git fetch upstream |