This file contains hidden or 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
I am a real kind of full-stack PHP dev. Currently I working with Symfony fw at a company that builds an e-commerce solution and recently I was working hard with Laravel, that using the most Symfony components. | |
My skills covers still SOLID principles, Design patterns and some others best practices about OOP | |
So, I would be glad if you give me a chance to talk about business. | |
Thank you so much, | |
Luciano Gonçalves Júnior | |
www.lucianojr.com.br |
This file contains hidden or 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
I know that I am better candidate for this job because I am a real kind of full-stack PHP dev. Currently I working with Symfony fw at a company that builds an e-commerce solution and recently I was working hard with Laravel, that using the most Symfony components. I am a very confortable GIT user too, recently I did a talk about Gitflow model in some software events in my city, it is avaliable on https://drive.google.com/file/d/0B6KYt68SqzEda2NwWFo3MmY2d3c/view?usp=sharing | |
My skills covers still SOLID principles, Design patterns and some others best practices about OOP | |
So, I would be glad if you give me a chance to talk about that opportunity. | |
Thank you so much, | |
Luciano Gonçalves Júnior | |
www.lucianojr.com.br |
This file contains hidden or 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
Cliente: | |
- Abrir e encerrar conta; | |
- Sacar e depositar valores; | |
- Emitir saldo e estrato; | |
- Abrir e encerrar conta necessita falar com um funcionario do banco (Não pode ser por caixa eletronico); | |
- Quando existe interação com o funcionário é possivel realizar manutenção de cadastro no cliente. |
This file contains hidden or 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
Trabalho a mais de 5 anos com tecnologia, hoje atuando como freelancer em diversos projetos back-end com PHP, em especial com framework Laravel, além de simultaneamente ministrar cursos de desenvolvimento na escola de treinamentos Clarify. Graduando em Análise e Desenvolvimento de Sistemas no Instituto Federal Catarinense, onde também recentemente participei de um projeto de pesquisa tecnológica envolvendo o desenvolvimento de aplicativo móvel com Android. | |
Evangelista e apaixonado por boas práticas de desenvolvimento e processos de engenharia de software procuro sempre aprimorar o conhecimento e acima de tudo me divertir fazendo o que amo. |
This file contains hidden or 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
package br.edu.ifc.blu; | |
import robocode.*; | |
import robocode.Robot; | |
import java.awt.*; | |
public class Sentinel extends Robot { | |
public void run() { | |
// Initialization of the robot should be put here |
This file contains hidden or 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
docker rmi -f $(docker images | grep "^<none>" | awk "{print $3}") |
This file contains hidden or 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
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
sudo apt-get update ; sudo apt-get install google-chrome-stable -y | |
sudo apt-get install filezilla -y | |
sudo apt-get purge openjdk* |
This file contains hidden or 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
Never do again: | |
- Project withou version control, never. | |
- Local documents, google drive it. | |
- |
This file contains hidden or 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
SOLID: | |
- Single responsability principle | |
- Open/Closed principle | |
- Liskov substituition principle | |
- Interface segregation principle | |
- Dependence inversion principle | |
Object Calisthenics: | |
- Only One Level Of Indentation Per Method | |
- Don't Use The ELSE Keyword |
This file contains hidden or 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
"Programa": { | |
"Processos": { | |
"definição": "Programa em execução", | |
"concorrencias": "Dois processos tentando gravar no mesmo arquivo" | |
"Escalonador": "Gerencia os processos na fila de processamento", | |
}, | |
"Fork": { | |
"Definição": "Clona o processo" | |
} | |
"Memoria", |