Skip to content

Instantly share code, notes, and snippets.

View marylly's full-sized avatar
💛

Marylly marylly

💛
View GitHub Profile
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'
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'
// 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>
@marylly
marylly / projects.json
Last active March 15, 2017 16:56
VS Code Projects Configuration
[
{
"name": "Botão Denúncia e Sugestão",
"rootPath": "$home/devel/botao-denuncia",
"paths": [],
"group": ""
},
{
"name": "Branch Master",
"rootPath": "$home/devel/master",
# 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 ###########
@marylly
marylly / sources.list
Last active August 23, 2023 02:19
Ubuntu Yakkety Apt-get Repositories
# 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
@marylly
marylly / interfaces
Created February 10, 2017 13:38
Linux Network Intefaces Conf
# 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
@marylly
marylly / resolv.conf
Last active February 16, 2017 11:55
Linux DNS Server Conf
# Arquivo localizado em /etc/resolv.conf
nameserver 127.0.0.1
nameserver 8.8.8.8
// Under construction
@marylly
marylly / stylesheet.css
Created February 17, 2017 19:30
CSS Style Sheet Components
/* 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