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
Highcharts.setOptions({ | |
lang: { | |
months: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'], | |
shortMonths: ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'], | |
weekdays: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado'], | |
loading: ['Atualizando o gráfico...aguarde'], | |
contextButtonTitle: 'Exportar gráfico', | |
decimalPoint: ',', | |
thousandsSep: '.', | |
downloadJPEG: 'Baixar imagem JPEG', |
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
**Branch Master -> Ambiente em produção** | |
**Branch Develop -> Ambiente de Desenvolvimento** | |
//Iniciando um repositório: | |
git flow init | |
//Verificando branchs | |
git branch | |
//Alterando branch |
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
//Instala programa | |
apt-get install "nomeprograma" | |
//Desistala programa | |
apt-get remove "nomeprograma" | |
//Atualiza sistema | |
apt-get update |
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
//CRIANDO UM DATABASE | |
CREATE DATABASE nome_tabela; | |
//SELECIONANDO TODOS REGISTRO DE UMA TABELA | |
SELECT * FROM nome_tabela; | |
//SELECIONANDO REGISTRO POR DETERMIANDO VALOR | |
SELECT * FROM nome_tabela WHERE nome_Campo = '1'; | |
//SELECIOANDO REGISTRO PELO INTERVALO ENTRE DUAS DATAS |