Skip to content

Instantly share code, notes, and snippets.

View lsdr's full-sized avatar

Luiz Rocha lsdr

  • São Paulo, Brazil
  • 04:15 (UTC -03:00)
View GitHub Profile

FWIW: I didn't produce the content present here. I've just copy-pasted it from somewhere over the Internet, but I cannot remember exactly the original source. I was also not able to find the author's name, so I cannot give him/her the proper credit.


Effective Engineer - Notes

What's an Effective Engineer?

@lsdr
lsdr / neovim-setup.md
Created February 2, 2016 11:58 — forked from adamzaninovich/neovim-setup.md
How to get an awesome neovim setup that runs tests asynchronously in a neoterm split

How to get an awesome neovim setup that runs tests asynchronously in a neoterm split

Example

Installing neovim

brew install neovim/neovim/neovim
@lsdr
lsdr / Vagrantfile
Last active February 8, 2016 19:24
# My helpers
#
def fwd_ports(config, ports=[])
Array[*ports].each do |port|
config.vm.network :forwarded_port, guest: port, host: port
end
end
def share_folder(config, source, destiny)
if File.directory? File.expand_path(source)
@lsdr
lsdr / es.sh
Last active December 14, 2015 16:48 — forked from rajraj/es.sh
cd ~
sudo yum update
sudo yum install java-1.7.0-openjdk -y
curl -XGET -L https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.20.5.tar.gz -o elasticsearch-0.20.5.tar.gz
tar -xf elasticsearch-0.20.5.tar.gz
mv elasticsearch-0.20.5 elasticsearch
sudo mv elasticsearch /usr/local/share