https://conteudo.movidesk.com/o-que-e-comunicacao-assertiva/
https://smartalk.com.br/blog/comunicacao-assertiva/
https://www.amazon.com.br/Persuasão-retórica-comunicação-persuasiva-profissional/dp/6586077508/
@GetMapping("/heroes") | |
public List<Hero> getAllHeroer() { | |
return heroRepository.findAll(); | |
} |
const axios = require("axios"); | |
const fs = require("fs"); | |
const sha1 = require("js-sha1"); | |
const request = require("request"); | |
const MYTOKEN = "seu token"; | |
const API_URL = "https://api.codenation.dev/v1/challenge/dev-ps"; | |
const searchChallenge = async () => { | |
const { data } = await axios.get(`${API_URL}/generate-data?token=${MYTOKEN}`); |
https://www.casadocodigo.com.br/products/livro-refatoracao-ruby | |
https://brizeno.wordpress.com/category/refatoracao/ | |
https://www.amazon.com.br/Refatora%C3%A7%C3%A3o-Aperfei%C3%A7oando-Projeto-C%C3%B3digo-Existente-ebook/dp/B019IZK89A | |
https://refactoring.com/ | |
https://www.devmedia.com.br/refatoracoes-em-ruby-move-method-e-move-field/37446 | |
https://refactoring.com/catalog/ | |
http://www.desenvolvimentoagil.com.br/xp/praticas/refatoracao | |
https://medium.com/@sawomirkowalski/design-patterns-template-method-45888a2b84bc | |
https://refactoring.guru/ | |
http://blog.sciensa.com/tdd-test-driven-development-guia-rapido/ |
https://rapidapi.com/ | |
https://pokeapi.co/ | |
https://developer.marvel.com/ | |
https://swapi.co/ | |
https://api.nasa.gov/ | |
https://hgbrasil.com/status/weather | |
https://api.windy.com/ | |
https://reelgood.com/roulette/netflix |
public class MainObjectLifeCycle { | |
public static void main(String[] args) { | |
LifeCycle lifeCycle = new LifeCycle(); | |
LifeCycle lc1 = new LifeCycle (); | |
lc1.name="Kamila"; | |
lifeCycle.lc4=lc1; |
public class LifeCycle { | |
static int counter; | |
String name; | |
LifeCycle lc4; | |
LifeCycle lc5; | |
public LifeCycle(){ | |
counter++; |
public class MainObjectLifeCycle { | |
public static void main(String[] args) { | |
LifeCycle lc1 = new LifeCycle (); | |
lc1.name="Kamila"; | |
lc1= new LifeCycle(); |
public class MainObjectLifeCycle { | |
public static void main(String[] args) { | |
LifeCycle lc1 = new LifeCycle (); | |
lc1.name="Kamila"; | |
lc1= new LifeCycle(); |