These installation procedures will set up your mac with PHP 7.2 and Apache 2.4.
xcode-select --install
| -- IMStatus | |
| -- version 2.0, Lantrix (http://techdebug.com) | |
| -- idea conceived from script by Jason Kenison "theWebGuy" Blog at: | |
| -- http://www.jasonkenison.com/blog.html?id=22 | |
| (* | |
| Copyright (c) 2008, TechDebug.com | |
| Permission to use, copy, modify, and/or distribute this software for any | |
| purpose with or without fee is hereby granted, provided that the above |
| <?php | |
| require_once('attachment.class.php'); | |
| /** | |
| * Fast Mime Mail parser Class using PHP's MailParse Extension | |
| * @author [email protected] | |
| * @url http://www.fijiwebdesign.com/ | |
| * @license http://creativecommons.org/licenses/by-sa/3.0/us/ | |
| * @version $Id$ |
| #!/bin/bash | |
| # Chrome Refresh | |
| # | |
| # nik cubrilovic - nikcub.appspot.com | |
| # | |
| # Simple applescript browser reloader for Google Chrome. It will either open a | |
| # new tab with the url passed in as an argument or refresh an existing tab. | |
| # | |
| # Link this up with watchr to auto-refresh browser windows when you save files |
| /** | |
| * Shorten a string by a specified number of characters and end the string | |
| * using either a user specified suffix or a default suffix. | |
| * Ensures string is not abbreviated prematurely (e.g. half way through a word) | |
| * | |
| * @param {string} user specified string | |
| * @param {number} the maximum allowed characters before abbreviating | |
| * @param {string} the characters used to end the string | |
| * @return {string} the abbreviated string | |
| */ |
| defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80 | |
| defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 48 | |
| defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 40 | |
| defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool" 48 | |
| defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Max" 53 | |
| defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 48 | |
| defaults write com.apple.BluetoothAudioAgent "Stream - Flush Ring on Packet Drop (editable)" 30 | |
| defaults write com.apple.BluetoothAudioAgent "Stream - Max Outstanding Packets (editable)" 15 | |
| defaults write com.apple.BluetoothAudioAgent "Stream Resume Delay" "0.75" |
| <?php | |
| /** | |
| * Translates a number to a short alhanumeric version | |
| * | |
| * Translated any number up to 9007199254740992 | |
| * to a shorter version in letters e.g.: | |
| * 9007199254740989 --> PpQXn7COf | |
| * | |
| * specifiying the second argument true, it will | |
| * translate back e.g.: |
| #!/bin/bash | |
| # Install parallel on CentOS 6. | |
| # Assumes you are root. Prefix w/ sudo if not. | |
| cd /etc/yum.repos.d/ | |
| #wget http://download.opensuse.org/repositories/home:tange/CentOS_CentOS-5/home:tange.repo | |
| wget http://download.opensuse.org/repositories/home:/tange/CentOS_CentOS-6/home:tange.repo | |
| yum install parallel |
| RN < 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
| RN >= 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
| RN >= 0.63 - watchman watch-del-all && rm -rf node_modules && npm install && rm -rf /tmp/metro-* && npm run start --reset-cache | |
| npm >= 5 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache | |
| Windows - del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache |