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
[{"comando"=>"intel", | |
"descricao"=>"Resumo sobre o INTEL.", | |
"retorno"=> | |
"Mapa de Inteligência do jogo. É o coração do Ingress, utilizado para localizar portais, simular Links, Fields e Mega Fields, planejar operações, localizar agentes,\r\nacomoanhar a evolução dos agentes, comunicar com outros agentes...etc\r\nwww.ingress.com/intel", | |
"ordem"=>3, | |
"classificacao"=>"1 - Apresentação do Ingress"}, | |
{"comando"=>"cartilha", "descricao"=>"Informa onde consultar a cartilha dos novatos.", "retorno"=>"A cartilha está disponível em: http://bit.ly/cartilhailuminados <<<", "ordem"=>5, "classificacao"=>"1 - Apresentação do Ingress"}, | |
{"comando"=>"ciclo", | |
"descricao"=>"Resumo sobre o CICLO.", | |
"retorno"=> |
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
estados = JSON.parse open('https://gist.githubusercontent.com/letanure/3012978/raw/36fc21d9e2fc45c078e0e0e07cce3c81965db8f9/estados-cidades.json').read | |
estados['estados'].select{|x| x['sigla'] != 'CE' }.each do |aux| | |
estado = Estado.find_or_create_by(sigla: aux['sigla'], descricao: aux['nome'].mb_chars.upcase.to_s | |
) | |
aux['cidades'].each do |cidade| | |
Municipio.find_or_create_by(estado:estado, descricao:cidade.mb_chars.upcase.to_s | |
) | |
end |
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
if [ -f .ruby-version ]; then | |
rvm use $(cat .ruby-version)@$(cat .ruby-gemset) | |
fi |
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
antes = [] | |
loa = Loa.find_by(ano:'2016') | |
tipo_emenda = TipoEmenda.find_by(descricao: "EP/LOM") | |
FuncionalProgramaticoLoaEmenda.joins(:emenda).where(emendas: {loa_id:loa.id, tipo_emenda_id:tipo_emenda.id },reducao_acrescimo: 'ACRESCIMO').each do |fpl| | |
if tipo_emenda.descricao.downcase == fpl.subacao.reverse.split('-',2).first.reverse.strip.downcase | |
subacao_nova = "#{fpl.subacao.reverse.split('-',2).last.reverse.strip} - #{tipo_emenda.descricao}" | |
else | |
subacao_nova = "#{fpl.subacao.reverse.split('-',2).join('-').reverse.strip} - #{tipo_emenda.descricao}" | |
end |
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
ifs_add - TÍTULO - Iniciar um IFS | |
ifs_del - Remover um IFS em andamento | |
ifs_localizacao_add - Adicionar localização | |
ifs_participar - Participar do IFS | |
ifs_nao_participar - Não participar do IFS | |
ifs_pontos_add - username ap trekker | |
ifs_participantes - Lista de Participantes | |
ifs_situacao - [iniciando|ifs|finalizando|concluido] | |
ifs_estatistica - Informações dos IFS | |
ifs_help - Lista de comandos |
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
#Quantidade de conexões do dia no postfix | |
cat /var/log/mail.log | grep disconnect | grep "Nov 10" | wc -l | |
# Lista de IPs conectados na máquina | |
netstat -tn 2>/dev/null | grep : | awk '{print $5}' | sort | uniq -c | sort -nr | head | |
# conexões abertas em tcp:80 | |
lsof -i TCP:80 | |
#RESTORE PG |
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
op_criar - TÍTULO - Criar operação ingress. | |
op_cancelar - Remover operação atual. | |
op_participar - Adicionar-me na operação atual. | |
op_nao_participar - Remover-me da operação atual. | |
op_usuarios - Lista de usuários da operação atual. | |
op_tarefa_add - PRIORIDADE DESCRIÇÃO - Adicionar uma tarefa na operação atual. | |
op_tarefa_remover - PRIORIDADE - Remover uma tarefa da operação atual. | |
op_tarefas - Lista de tarefas da operação atual. | |
op_status - Detalhes da operação. | |
op_capturar_imagens - Ativar a captura de imagens do usuários. |
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
farm_add - NOME DIA HORA - Criar um grupo de farm. | |
farm_del - Remover grupo de farm. | |
farm_add_localizacao - Fico em modo: aguardando envio da localização. | |
farm_localizacao - Informo a localização do farm. | |
farm_euvou - Adicionar-me no grupo de farm. | |
farm_naovou - Remover-me do grupo de farm. | |
farm_presenca - Lista de usuários presentes no grupo de farm. | |
farm_ausentes - Lista de usuários ausentes no grupo de farm. | |
farm_status - Informações do farm atual. | |
help - Lista de comandos |
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
#!/bin/bash | |
# [connect_proxy.sh] | |
### VAR ### | |
HOST_USER="[email protected]" | |
HOST_SOURCE="172.19.5.10" | |
PORT="9876" | |
PORT_SSH="22" | |
### VAR ### |
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
alias rs="rails s -b 127.0.0.1" | |
alias rc="rails c" | |
alias gs="git status" | |
alias ga="git add \$@" | |
alias gps="git push origin $1" | |
alias gpl="git pull origin $1" | |
alias gk="gitk --all" | |
alias gc="git commit \$@" | |
alias gsh="git stash $1" | |
alias routes="rake routes | grep $1" |
NewerOlder