Skip to content

Instantly share code, notes, and snippets.

View viperey's full-sized avatar

Victor Perez Rey viperey

  • DevNonDos
  • Amsterdam
View GitHub Profile
@wandersoncferreira
wandersoncferreira / install_scala.sh
Created September 23, 2017 12:11
Installing SBT and Scala in Ubuntu 16.04
## Java
sudo apt-get update
sudo apt-get install default-jdk
## Scala
sudo apt-get remove scala-library scala
sudo wget http://scala-lang.org/files/archive/scala-2.12.1.deb
sudo dpkg -i scala-2.12.1.deb
sudo apt-get update
sudo apt-get install scala
@johnpolacek
johnpolacek / .gitconfig
Last active May 8, 2024 04:05
My current .gitconfig aliases
[alias]
co = checkout
cob = checkout -b
coo = !git fetch && git checkout
br = branch
brd = branch -d
brD = branch -D
merged = branch --merged
st = status
aa = add -A .