Skip to content

Instantly share code, notes, and snippets.

View jocafi's full-sized avatar

Jocca jocafi

  • IT Freelancer
  • Brazil / Germany
View GitHub Profile
@jocafi
jocafi / angular-nativescript-course-setup-ubuntu1.sh
Created May 11, 2018 19:39 — forked from berardo/angular-nativescript-course-setup-ubuntu1.sh
1st script to install all good tools on a fresh new Linux machine. The main reason for this file is to be used on my online course: https://udemy.com/angular-native. After that you might want to continue installing this: https://gist.github.com/berardo/165d6047948125dba7cbcd2eaefcfe6e
#!/bin/sh
# sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 libstdc++6:i386
sudo apt-get install lib32z1 lib32ncurses5 libbz2-1.0:i386 libstdc++6:i386
# G++
sudo apt-get install g++
# zsh
sudo apt-get install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
@jocafi
jocafi / angular-nativescript-course-setup.sh
Created May 11, 2018 19:38 — forked from berardo/angular-nativescript-course-setup.sh
Script to install all good tools on a fresh new macOS machine. Some command are commented out because the main reason for this file is to be used on my online course: https://udemy.com/angular-native
#!/bin/sh
# Allow locate commands
# sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
# xcode command line - Select: "Get xcode" and go get a coffee (preferably far from your desk :)
xcode-select --install
# home-brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"