I hereby claim:
- I am aykutcevik on github.
- I am aykutcevik (https://keybase.io/aykutcevik) on keybase.
- I have a public key whose fingerprint is ECF4 7E39 A853 294E B384 CC73 61F3 44FA 3B6C 1404
To claim this, I am signing this object:
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
require "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-php/Abstract/abstract-php-extension.rb" | |
class Php71ApcuBc < AbstractPhp71Extension | |
init | |
desc "APC User Cache - BC" | |
homepage "https://pecl.php.net/package/apcu_bc" | |
url "https://pecl.php.net/get/apcu_bc-1.0.1.tgz" | |
sha256 "512674d891104d6da91811dbb89d28ab3faa356ee0ab4cbeae9bba9cf3e971cb" | |
head "https://github.com/krakjoe/apcu-bc.git" |
require "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-php/Abstract/abstract-php-extension.rb" | |
class Php71Memcached < AbstractPhp71Extension | |
init | |
desc "Memcached via libmemcached library" | |
homepage "https://pecl.php.net/package/memcached" | |
head "https://github.com/php-memcached-dev/php-memcached.git", :branch => "php7" | |
option "with-sasl", "Build with sasl support" |
#!/bin/bash | |
find . -type d -depth 1 -exec git --git-dir={}/.git --work-tree=$PWD/{} gc --aggressive \; |
SELECT table_schema "database", | |
floor( sum( data_length + index_length ) / 1024 / 1024) "Data Base Size in MB", | |
floor(sum( data_free )/ 1024 / 1024 ) "Free Space in MB" | |
FROM information_schema.TABLES | |
GROUP BY table_schema ; |
I hereby claim:
To claim this, I am signing this object:
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.
#!/bin/bash | |
for i in *.264; do ffmpeg -i "$i" "${i%.*}.mp4"; done |