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 | |
# Colors | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
BLUE='\033[0;34m' | |
YELLOW='\033[0;33m' | |
NC='\033[0m' | |
# Verify the script is running as root |
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 | |
function randLane() | |
{ | |
$lane = rand(0, 1); | |
if ($lane == 0) { | |
return 'left'; | |
} else { | |
return 'right'; |
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
# Turn it on | |
ExpiresActive On | |
# Set a default expiry time. One hour is fine, but a day or longer may be appropriate. | |
ExpiresDefault A3600 | |
# Turn expiry off for dynamic content (or potentially dynamic content). | |
ExpiresByType application/x-httpd-php A0 | |
ExpiresByType application/x-python-code A0 | |
ExpiresByType text/html A0 |
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 | |
class Avatar | |
{ | |
public $avatar_dir; | |
public function headers() | |
{ | |
header('Content-type: image/jpeg'); | |
} |
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 | |
class GoogleMaps { | |
private function find($location = null) { | |
if ($location == null) { | |
return false; | |
} | |
$uri_parts = array( | |
'q' => urlencode($location), | |
'output' => 'json', |
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 | |
/** | |
* HEX to RGB and RGB to HEX converter | |
* Thanks to [email protected] on php.net for the base | |
* http://www.php.net/manual/en/function.hexdec.php#99478 | |
*/ | |
/** | |
* Convert an RGB array to HEX | |
* |