The Monastery of the Rising Sun
Sàben created the monastery for several reasons. To honor his Guiding Angel Sariel. To start training Monks. As a safe haven for those seeking peace through redemption . And to be a source of revenue for a Faction.
// 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 |
var Calendar = Calendar || { | |
version: '0.0.1', | |
lunarPhaseSize: 15, | |
lunarPhasesImage: 'https://s3.amazonaws.com/files.d20.io/images/4277527/CJJWBbiHx3jHglPdccPx3A/max.png?1401939451', | |
clearImage: 'https://s3.amazonaws.com/files.d20.io/images/4277467/iQYjFOsYC5JsuOPUCI9RGA/max.png?1401938659', | |
_Ordinal: function(num) { | |
var ones=(num%10); | |
var tens=((num%100)-ones); | |
switch(ones) |
I hereby claim:
To claim this, I am signing this object:
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
I grabbed this article by Jeff Wierer for prostrarity's sake.
################################################################# | |
# = This script transfers bash history to zsh history | |
# = Change bash and zsh history files, if you don't use defaults | |
# | |
# = Usage: ruby bash_to_zsh_history.rb | |
# | |
# = OrgAuthor: Ankit Goyal | |
# = Author: Ian Sheridan | |
################################################################# |
container_commands: | |
copy: | |
command: "cp .ebextensions/01update_nginx_config.py /opt/elasticbeanstalk/hooks/appdeploy/enact/" | |
make_exe: | |
command: "chmod +x /opt/elasticbeanstalk/hooks/appdeploy/enact/01update_nginx_config.py" |
server { | |
listen 80; | |
server_name localhost; | |
location /status { | |
access_log off; | |
default_type text/plain; | |
return 200 "alive"; | |
} | |
} |
# Source: https://forums.aws.amazon.com/thread.jspa?messageID=482679&tstart=0#482679 | |
packages: | |
yum: | |
varnish: [] | |
files: | |
"/etc/varnish/default.vcl" : | |
owner: root | |
group: root | |
content: | |