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
Country,CountryCode,Currency,Code | |
New Zealand,NZ,New Zealand Dollars,NZD | |
Cook Islands,CK,New Zealand Dollars,NZD | |
Niue,NU,New Zealand Dollars,NZD | |
Pitcairn,PN,New Zealand Dollars,NZD | |
Tokelau,TK,New Zealand Dollars,NZD | |
Australian,AU,Australian Dollars,AUD | |
Christmas Island,CX,Australian Dollars,AUD | |
Cocos (Keeling) Islands,CC,Australian Dollars,AUD | |
Heard and Mc Donald Islands,HM,Australian Dollars,AUD |
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
if grep -q 32768 /etc/security/limits.conf; then | |
sudo sed -i -e "/^.*nofile 32768$/d" /etc/security/limits.conf | |
sudo sed -i -e "/^.*nofile 65536$/d" /etc/security/limits.conf | |
else | |
echo skip /etc/security/limits.conf; | |
fi | |
if grep -q net.core.somaxconn /etc/sysctl.conf; then | |
sudo sed -i -e "/^net.core.somaxconn.*$/d" /etc/sysctl.conf |
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
if grep -q 32768 /etc/security/limits.conf; then | |
echo skip /etc/security/limits.conf; | |
else | |
echo "* hard nofile 32768" | sudo tee -a /etc/security/limits.conf | |
echo "* soft nofile 32768" | sudo tee -a /etc/security/limits.conf | |
echo "root hard nofile 65536" | sudo tee -a /etc/security/limits.conf | |
echo "root soft nofile 65536" | sudo tee -a /etc/security/limits.conf | |
fi | |
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
{ | |
"USD": { | |
"symbol": "$", | |
"name": "US Dollar", | |
"symbol_native": "$", | |
"decimal_digits": 2, | |
"rounding": 0, | |
"code": "USD", | |
"name_plural": "US dollars" | |
}, |
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
240=>'240x320', | |
480=>'480x800', | |
540=>'540x960', | |
720=>'720x1280', | |
1080=>'1080x1920', | |
1440=>'1440x2560', | |
1536=>'1536x2048', | |
800=>'800x1280', | |
'wvga'=>'480x640', | |
'wxga'=>'800x1280', |
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
<?php | |
$mysql_checker = function(){ | |
$cfg = explode("\t", DB_CFG); | |
error_reporting(E_ERROR); | |
$try_num = 20; | |
$try_interval = 500000; // 0.5 sec | |
foreach(range(0, $try_num) as $times) | |
{ |
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
<?php | |
if(is_file('/home/wwwroot/dbchecker')) | |
require LIB_PATH . '/database/checker.php'; |
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
<!DOCTYPE html> | |
<html> | |
<meta charset="utf-8" /> | |
<style type="text/css"> | |
#main { font-family: arial; font-size:18px; } | |
#time { position:fixed; bottom:5px; right:5px; color:lightgray;} | |
</style> | |
<body> | |
<span id="time"></span> | |
<span id="main">Loading<span id="dot">.</span></span> |
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
root /home/wwwroot; | |
+ error_page 500 502 503 504 /static/500.html; |
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/bash | |
# | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2014 Mathias Leppich <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |