Skip to content

Instantly share code, notes, and snippets.

@isaac-tribal
isaac-tribal / MySQL_5-7_macOS.md
Created March 1, 2021 21:00 — forked from robhrt7/MySQL_5-7_macOS.md
Install MySQL 5.7 on macOS using Homebrew

This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).

Install MySQL 5.7 on macOS

This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Note: Homebrew will download and install Command Line Tools for Xcode 8.0 as part of the installation process.
@isaac-tribal
isaac-tribal / android-wifi-development.sh
Created December 7, 2020 22:27 — forked from isaax2/android-wifi-development.sh
Setup wifi for android development
#!/usr/bin/env bash
#Set Listener on the phone
adb tcpip 5555
DEVICE_IP=192.168.137.65
#Connect to the phone
#adb connect <IP address of your device>:5555
adb connect $DEVICE_IP:5555
@isaac-tribal
isaac-tribal / mac-config.sh
Last active May 6, 2021 21:51 — forked from isaax2/mac-config.sh
Semi auto-install development environment for a new Mac
#!/bin/bash
#Download manually Xcode https://developer.apple.com/download/more/
#Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
#Activate sintax highlighting plugin
#Clone this repository in oh-my-zsh's plugins directory: