Author: Cryswerton Silva
How to Find a File on Linux (Linux Mint)
You just have to use the command “find” with the option “-name”, followed by the actual name of the file/program you are […]
Como instalar o JDK 19 no Ubuntu 22.04
Se dentro da pasta jvm, que esta no caminho /usr/lib/jvm/, houver outras pastas, apague-as para evitar possíveis erros. nome-instalador-jdk = o nome […]
How to Add MySQL to PATH on Mac Using the Z Shell (zsh)
Open the .zshrc with vi (it also can be a text editor of you choice): The MySQL is probably in the following […]
How to Copy a File Output to Clipboard on Mac via Terminal (Z Shell)
This tutorial was made thinking in you that’s using the Z Shell on Mac. To check the shell that your using you […]
Como Instalar o Git no Windows (instalação + configuração)
Link para a página do Git: https://gitforwindows.org/ Comandos usados no vídeo git config –global user.name “seu nome de usuário” git config –global […]
Qual a diferença entre Classe Abstrata e Interface em Java?
Uma classe abstrata é basicamente um conjunto de métodos e/ou variáveis que podem ser usados para criar outras classes. Quando falamos de […]
Quando Usar Classes Abstratas da Linguagem Java
Vamos ver alguns cenários em que se deve usar a classe abstrata: Quando você quiser usar o conceito de herança no código […]