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 | |
echo "Raw dump of Apache Headers follows.<br/>"; | |
foreach (getallheaders() as $name => $value) { | |
echo "$name: $value<br/>"; | |
}; | |
echo '<hr/>$_SERVER dump: <pre>'; | |
print_r($_SERVER); | |
echo '</pre>'; | |
?> |
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
%title=h ((title=yield(:title)).blank?) ? "Contently" : "#{title} : Contently".html_safe | |
=yield | |
=yield :javascript |
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 -e | |
if [ -z "$KEY_DIR" ]; then | |
echo "FAILED: \$KEY_DIR is required. Please point it at the location of your identity keys." | |
exit 1 | |
fi | |
# if [ -z "$AWS_ACCESS_KEY_ID" ]; then | |
# echo "FAILED: \$AWS_ACCESS_KEY_ID is required. Please pass this variable inline or export to your session." | |
# exit 1 |
OlderNewer