This file contains 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
SELECT | |
CONCAT(u.firstname, ' ', u.lastname) AS nome, | |
CONCAT((CASE t.tmonth | |
WHEN 1 THEN 'Janeiro' | |
WHEN 2 THEN 'Fevereiro' | |
WHEN 3 THEN 'Março' | |
WHEN 4 THEN 'Abril' | |
WHEN 5 THEN 'Maio' | |
WHEN 6 THEN 'Junho' | |
WHEN 7 THEN 'Julho' |
This file contains 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
SELECT | |
projects.name, | |
CONCAT((CASE t.tmonth | |
WHEN 1 THEN 'Janeiro' | |
WHEN 2 THEN 'Fevereiro' | |
WHEN 3 THEN 'Março' | |
WHEN 4 THEN 'Abril' | |
WHEN 5 THEN 'Maio' | |
WHEN 6 THEN 'Junho' | |
WHEN 7 THEN 'Julho' |
This file contains 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
// Exibe os commits da branch com as devidas tags | |
git show --summary --oneline --decorate --tags | |
// Remover uma tag de uma branch | |
git tag -d <tagname> | |
git push origin :refs/tags/<tagname> | |
//Incluir ou atualizar uma tag de um commit | |
git tag <tagname> <commit> -f | |
git push origin <tagname> |
This file contains 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
[ | |
{ | |
"name": "Botão Denúncia e Sugestão", | |
"rootPath": "$home/devel/botao-denuncia", | |
"paths": [], | |
"group": "" | |
}, | |
{ | |
"name": "Branch Master", | |
"rootPath": "$home/devel/master", |
This file contains 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
# Verifica qual debian/ubuntu do sistema operacional | |
cat /etc/issue | |
# Verifica a versão do debian/ubuntu | |
cat /etc/debian_version | |
# Verifica a versionamento do sistema operacional | |
hostnamectl | |
######### Montar um Pen-Drive ########### |
This file contains 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
# Para instalar o gerenciador de fontes de pacotes apt-add-repository | |
# apt-get install software-properties-common python-software-properties python3-software-properties | |
# Adicionar repositórios para instalação de drivers de vídeo | |
# apt-add-repository ppa:graphics-drivers/ppa [ARRISCADO] | |
# apt-add-repository ppa:xorg-edgers/ppa [ARRISCADO] | |
# sudo add-apt-repository ppa:ubuntu-x-swat/x-updates | |
# sudo apt-get update | |
# sudo apt-get install <package name> | |
# Instalação do driver da placa de rede wireless Dell Wireless 1820 802.11ac |
This file contains 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
# Arquivo localizado em /etc/network/interfaces | |
# Subir a eth0 automaticamente | |
auto eth0 | |
# Setamos que sera uma configuração estática | |
iface eth0 inet static | |
address 192.168.0.1 | |
netmask 255.255.255.0 | |
gateway 192.168.0.254 | |
network 192.168.0.0 |
This file contains 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
# Arquivo localizado em /etc/resolv.conf | |
nameserver 127.0.0.1 | |
nameserver 8.8.8.8 |
This file contains 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
// Under construction |
This file contains 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
/* Excessão de conteúdo verticalmente, trabalha em conjunto com a altura do elemento */ | |
overflow-y: visible; | |
height: 300px; | |
/* Excessão de conteúdo horizontalmente, trabalha em conjunto com a largura do elemento */ | |
overflow-x: hidden; | |
overflow-x:auto |
OlderNewer