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
[xdebug] | |
zend_extension = xdebug.so | |
xdebug.max_nesting_level = 2000 ; for PHPUnit tests | |
xdebug.mode=debug | |
xdebug.start_with_request=yes | |
xdebug.client_port=9003 | |
xdebug.remote_handler=dbgp | |
xdebug.client_host=10.0.2.2 ; IDE-Environments IP |
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
#cloud-config | |
output: { all: "| tee -a /var/log/cloud-init-output.log" } | |
package_update: true | |
package_upgrade: true | |
package_reboot_if_required: true | |
manage-resolv-conf: true | |
resolv_conf: | |
nameservers: |
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 | |
echo ===================================== | |
echo `date` Backing up Documents | |
# The URL to your remote AFP server. You can test your URL using command-K in the Finder. | |
AFP_URL=afp://user:[email protected]/Share | |
# The place where the AFP server is mounted. By default this will be in /Volumes someplace. | |
AFP_DIRECTORY=/Volumes/Share |
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 | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' | |
green='\033[0;32m' |