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
Server Software: nginx | |
Server Hostname: blog.vaduz.tk | |
Server Port: 80 | |
Document Path: / | |
Document Length: 19762 bytes | |
Concurrency Level: 10 | |
Time taken for tests: 52.838 seconds | |
Complete requests: 1000 |
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
Server Software: nginx | |
Server Hostname: blog.vaduz.tk | |
Server Port: 80 | |
Document Path: / | |
Document Length: 19762 bytes | |
Concurrency Level: 10 | |
Time taken for tests: 73.908 seconds | |
Complete requests: 1000 |
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
Server Software: nginx | |
Server Hostname: blog.vaduz.tk | |
Server Port: 80 | |
Document Path: / | |
Document Length: 19762 bytes | |
Concurrency Level: 10 | |
Time taken for tests: 182.833 seconds |
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
Server Hostname: blog.vaduz.tk | |
Server Port: 80 | |
Document Path: / | |
Document Length: 19762 bytes | |
Concurrency Level: 10 | |
Time taken for tests: 51.984 seconds | |
Complete requests: 1000 | |
Failed requests: 0 |
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
Server Software: nginx | |
Server Hostname: blog.vaduz.tk | |
Server Port: 80 | |
Document Path: / | |
Document Length: 19762 bytes | |
Concurrency Level: 10 | |
Time taken for tests: 52.567 seconds | |
Complete requests: 1000 |
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
[remi-php55] | |
name=Les RPM de remi de PHP 5.5 pour Enterprise Linux 6 - $basearch | |
#baseurl=http://rpms.famillecollet.com/enterprise/6/php55/$basearch/ | |
mirrorlist=http://rpms.famillecollet.com/enterprise/6/php55/mirror | |
# WARNING: If you enable this repository, you must also enable "remi" | |
enabled=1 | |
gpgcheck=1 | |
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi |
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
brew unlink ruby-build | |
brew link autoconf | |
brew install ruby-build | |
rbenv install 2.0.0-p353 |
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
sed -r "s/\x1B\[([0-9]{1,3}((;[0-9]{1,3})*)?)?[m|K]//g" |
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
# set up host | |
# execute following commands by root | |
adduser deploy -g wheel | |
echo 'deploy ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/deploy | |
# Connect with deploy | |
# prerequisite | |
yum install ld-linux.so.2 glibc.i686 libstdc++.i686 wget unzip | |
# CentOS 7 oriented | |
yum install net-tools |
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
#!/usr/bin/env ruby | |
while line = STDIN.gets | |
#puts line | |
fields = line.split(' ') | |
if fields[4].to_f < 0 | |
fields[4] = fields[4].to_f + 180.0 | |
elsif fields[4].to_f > 0 | |
fields[4] = fields[4].to_f - 180.0 | |
end |