Skip to content

Instantly share code, notes, and snippets.

View sandbardev's full-sized avatar

Sanderson de Paula sandbardev

  • Rio de Janeiro
View GitHub Profile
{
"100": "Continue",
"101": "Switching Protocols",
"102": "Processing",
"200": "OK",
"201": "Created",
"202": "Accepted",
"203": "Non-authoritative Information",
"204": "No Content",
@sandbardev
sandbardev / install.sh
Created December 2, 2020 17:03
install basic system development tools
#!/bin/sh
# rbenv
cd -
sudo apt update
sudo apt install autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm5 libgdbm-dev
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bashrc
# ruby