Skip to content

Instantly share code, notes, and snippets.

View vcuca's full-sized avatar
🏠
Working from home

Vedran Cuca vcuca

🏠
Working from home
  • Novi Sad, Serbia
View GitHub Profile
@vcuca
vcuca / MySQL.md
Created January 16, 2017 15:51 — forked from beritou/MySQL.md
Install MySQL on El Capitan using Homebrew

Install MySQL on OS X El Capitan

Normally the installation of MySQL can be achieved with a single command, which executes a script provided by MacMiniVault : bash <(curl -Ls http://git.io/eUx7rg)

However, at the time of writing the script is not compatible with OS X El Capitan (10.11)

Install MySQL using Homebrew

An alternative to the aforementioned installation script is installing MySQL using Homebrew. This gist assumes you already have Homebrew installed, if not first read the article "Homebrew and El Capitan"

Make sure Homebrew has the latest formulae, so run brew update first

@vcuca
vcuca / passo-01
Created January 16, 2017 15:52 — forked from renatocarvalho/passo-01
Install Node with Homebrew on OS X, also NPM and Bower
brew doctor
#################
# Only if MacOS #
#################
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/darwin/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
@vcuca
vcuca / 1_kubernetes_on_macOS.md
Created June 3, 2020 14:03 — forked from kevin-smets/1_kubernetes_on_macOS.md
Local Kubernetes setup on macOS with minikube on VirtualBox and local Docker registry

Requirements

Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:

sysctl -a | grep machdep.cpu.features | grep VMX

If there's output, you're good!

Prerequisites