sudo /Applications/Install\ macOS\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/USBDrive --applicationpath /Applications/Install\ macOS\ Sierra.app --nointeraction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install Xcode Command-Line Tools first (required) | |
xcode-select --install | |
# Check PHP version | |
PHP_VER=$(php -v | head -1 | awk '{ print $2 }') | |
# Extensions directory (default: empty string) | |
EXT_DIR="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# taken from http://coalgirls.wakku.to/faq/playback/compiling-mpv-on-mac-os-x | |
# install homebrew | |
# setup | |
sudo easy_install docutils | |
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
# install python3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- php.ini.default 2016-09-07 01:39:57.000000000 +0200 | |
+++ php.ini 2016-10-27 09:37:27.000000000 +0200 | |
@@ -446,7 +446,7 @@ | |
; Development Value: E_ALL | |
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT | |
; http://php.net/error-reporting | |
-error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT | |
+error_reporting = E_ALL | |
; This directive controls whether or not and where PHP will output errors, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# =============================================== | |
# FreeBSD-10.2 server setup | |
# =============================================== | |
# Update | |
freebsd-update fetch | |
freebsd-update install |
pyenv global
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[beets] | |
directory: /Volumes/Music/ | |
library: ~/Music/MusicLibrary.blb | |
path_format: $artist/$year $album/$track $title | |
import_copy: yes | |
import_write: yes | |
import_delete: no | |
import_resume: ask | |
import_art: yes | |
import_quiet_fallback: skip |