Skip to content

Instantly share code, notes, and snippets.

@Pumpith
Pumpith / my.cnf
Created February 26, 2021 15:47 — forked from Lathanao/my.cnf
Percona Server 8.0 configuration file
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
@Pumpith
Pumpith / setup.sh
Created April 15, 2020 02:33 — forked from TomLous/setup.sh
Clean Install
defaults write com.apple.finder AppleShowAllFiles YES
# Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Mac Software
brew tap homebrew/cask-versions
brew cask install google-chrome
#brew cask install java8
brew cask install adoptopenjdk/openjdk/adoptopenjdk8
brew cask install sizeup # Follow link in irradiated software order to dowload license
@Pumpith
Pumpith / brew-install-script.sh
Created April 15, 2020 02:31 — forked from CliffordAnderson/brew-install-script.sh
Brew script for installing packages and applications on OSX
#!/bin/sh
# Homebrew Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "Installing brew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing brew cask..."
brew tap caskroom/cask
@Pumpith
Pumpith / osx_bootstrap.sh
Created March 18, 2020 17:55 — forked from codeinthehole/osx_bootstrap.sh
Script to install stuff I want on a new OSX machine
#!/usr/bin/env bash
#
# Bootstrap script for setting up a new OSX machine
#
# This should be idempotent so it can be run multiple times.
#
# Some apps don't have a cask and so still need to be installed by hand. These
# include:
#
# - Twitter (app store)