apt-get update
apt-get dist-upgrade
reboot
This file contains hidden or 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
| // screep astar | |
| // based off of javascript-astar 0.4.1 | |
| // http://github.com/bgrins/javascript-astar | |
| // Freely distributable under the MIT License. | |
| // Implements the astar search algorithm in javascript using a Binary Heap. | |
| // Includes Binary Heap (with modifications) from Marijn Haverbeke. | |
| // http://eloquentjavascript.net/appendix2.html | |
| // Modified for Screeps by Robert Hafner |
This file contains hidden or 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
| # Configuring basic RADIUS on OS X 10.8 Server | |
| # Jedda Wignall | |
| # http://jedda.me | |
| # | |
| # Updated to 10.10 by Robert Hafner | |
| # http://blog.tedivm.com | |
| # Full writeup at: http://jedda.me/2012/11/configuring-basic-radius-os-108-server/ | |
| # create the SACL for access to RADIUS |
This file contains hidden or 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' |
This file contains hidden or 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
| report_safe 0 | |
| lock_method flock | |
| use_bayes 1 | |
| bayes_auto_learn 1 | |
| bayes_auto_expire 0 | |
| score ALL_TRUSTED -10.000 | |
| #skip_rbl_checks 1 |
This document outlines the difference between the two Caching PSRs-
tedivm's proposal - https://github.com/tedivm/fig-standards/blob/Cache/proposed/PSR-Cache.md
tedivm's original PR - php-fig/fig-standards#17
tedivm's PR - php-fig/fig-standards#140
NewerOlder