Ruby2.3 Net::Telnet was gemified

Ruby2.3 Net::Telnet was gemified

According to ruby2.3 changelog, the class "Net::Telnet" was removed from the ruby-core and was "gemified" Thu May 21 15:41:45 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org> * lib/net/telnet.rb: gemify net-telnet. [Feature #11083] * gems/bundled_gems: added net-telnet to bundled gems. To use it, just add the gem "net-telnet" to Gemfile!...

Helpful tips about debian packages

Helpful tips about debian packages

I have worked with debian packages for a few years, for the company I work at uses this method to deploy the software we do. The official documentation is very detailed but it is difficult to find the things we want. I will give here a few tips that I have learnt in the past years that often helps...

Chapada Diamantina - Volta ao Parque

Chapada Diamantina - Volta ao Parque

Recentemente fizemos o roteiro "Volta ao Parque" na Chapada Diamantina oferecido pela agência Venturas, vou deixar aqui o resumo do que fizemos, o lugar é espetacular! Primeiro, escolhemos como meio de tranporte ir de avião até Salvador e depois de ônibus até Lençois, que é uma das principais cidades na região da chapada com boa infraestrutura para receber turistas....

How to investigate errors too many open files

How to investigate errors too many open files

Last week, at my job, we were trying to find the root problem that was killing one of our applications. It is a rails app running on Debian, and we had some clues about the problem: - looking at New Relic errors, we saw many errors like "getaddrinfo: Name or service not known" - looking at Unicorn logs, there...

Como editar configurações de rede Ubuntu 12.04 na mão

Como editar configurações de rede Ubuntu 12.04 na mão

Vou postar isso aqui pois sempre esqueço qual o arquivo que deve ser alterado: sudo vim /etc/NetworkManager/system-connections/Wired\ connection\ 1 [802-3-ethernet] duplex=full mac-address=78:2B:CB:C4:69:52 [connection] id=Wired connection 1 uuid=eba66e39-b7d1-4ce8-a79d-60208a94f966 type=802-3-ethernet timestamp=1394655259 [ipv6] method=auto [802-1x] eap=peap; identity=[USERNAME] phase2-auth=mschapv2 password=[PASSWORD] [ipv4] method=auto...

Testes mais rápidos com Rspec e PostgreSql

Testes mais rápidos com Rspec e PostgreSql

Uma dica simples e fácil para aumentar a velocidade dos testes no Rspec com PostgreSql é seguir as instruções nesse link: http://www.postgresql.org/docs/current/static/non-durability.html obs: não fiz o 1o item da lista (RAM disk) No meu caso os testes que rodavam em 4min e 10s cairam para 56s !! Só não use essas configurações em produção pois o risco perder dados...

Adicionando o nome do branch em todos os commits do git

Adicionando o nome do branch em todos os commits do git

*obs: testei isso rodando no Ubuntu 12.4, não tenho certeza se funciona no Mac e no Windows Com este hook o nome do branch será colocado no começo de todos os commits do git Por exemplo se fizer isso no branch [historia_1] git commit -am "lala popo" A mensagem gravada será "[historia_1] lala popo" Segue o passo a passo...