ADadeh
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
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
"Total Ticket","Probability","Wallet Address" | |
"43","9.62%","0x3D3...74d46" | |
"40","8.95%","0x03c...9269e" | |
"27","6.04%","0xd78...f7697" | |
"16","3.58%","0x777...a1e57" | |
"15","3.36%","0xaC6...13cdd" | |
"13","2.91%","0x5b6...270EC" | |
"11","2.46%","0x781...68a67" | |
"9","2.01%","0x402...A2621" | |
"8","1.79%","0xdD6...9CEf6" |
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
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
"Total Ticket","Probability","Wallet Address" | |
"43","9.62%","0x3D3...74d46" | |
"40","8.95%","0x03c...9269e" | |
"27","6.04%","0xd78...f7697" | |
"16","3.58%","0x777...a1e57" | |
"15","3.36%","0xaC6...13cdd" | |
"13","2.91%","0x5b6...270EC" | |
"11","2.46%","0x781...68a67" | |
"9","2.01%","0x402...A2621" | |
"8","1.79%","0xdD6...9CEf6" |
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
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
"Total Ticket","Probability","Wallet Address" | |
"43","9.62%","0x3D3...74d46" | |
"40","8.95%","0x03c...9269e" | |
"27","6.04%","0xd78...f7697" | |
"16","3.58%","0x777...a1e57" | |
"15","3.36%","0xaC6...13cdd" | |
"13","2.91%","0x5b6...270EC" | |
"11","2.46%","0x781...68a67" | |
"9","2.01%","0x402...A2621" | |
"8","1.79%","0xdD6...9CEf6" |
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 | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run as root" | |
exit | |
fi | |
apt-get install pkg-config libmagickwand-dev -y | |
cd /tmp | |
wget https://pecl.php.net/get/imagick-3.4.4.tgz | |
tar xvzf imagick-3.4.4.tgz |
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
{"lastUpload":"2020-08-31T19:50:52.147Z","extensionVersion":"v3.4.3"} |
Moved to git repository: https://github.com/denji/nginx-tuning
For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.
Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon
with HyperThreading enabled, but it can work without problem on slower machines.
You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.
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
{"lastUpload":"2020-01-29T09:00:59.907Z","extensionVersion":"v3.4.3"} |
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
########## Install NGINX ############## | |
# Install software-properties-common package to give us add-apt-repository package | |
sudo apt-get install -y software-properties-common | |
# Install latest nginx version from community maintained ppa | |
sudo add-apt-repository ppa:nginx/stable | |
# Update packages after adding ppa |