Skip to content

Instantly share code, notes, and snippets.

View lloiacono's full-sized avatar

Leandro Loiacono lloiacono

  • Warehousing1
  • Berlin
View GitHub Profile
# using such a setup requires `apt-get install lua-nginx-redis` under Ubuntu Trusty
# more info @ http://wiki.nginx.org/HttpLuaModule#access_by_lua
http {
lua_package_path "/etc/nginx/include.d/?.lua;;";
lua_socket_pool_size 100;
lua_socket_connect_timeout 10ms;
lua_socket_read_timeout 10ms;
server {
@lloiacono
lloiacono / leandro.test
Created May 11, 2015 11:12
Nginx Lua Redis rewrites
lua_package_path "/home/vagrant/ngx_openresty-1.7.10.1/bundle/lua-resty-redis-0.20/lib/?.lua;;";
server {
listen 80;
root /vagrant/test;
index index.html index.htm;
server_name leandro.test;
location / {
include /vagrant/rewrites.lua;
@lloiacono
lloiacono / ap.sh
Last active November 12, 2017 11:29
Get Process Avg memory usage
ps -ylC apache2 | awk '{x += $8;y += 1} END {print "Apache Memory Usage (MB): "x/1024; print "Average Proccess Size (MB): "x/((y-1)*1024)}'
# https://www.linuxatemyram.com/
#get vps ip address
ifconfig eth0 | grep inet | awk '{ print $2 }'
@lloiacono
lloiacono / compression_check.sh
Created August 9, 2015 09:45
Gzip compression check
curl http://example.com/ --silent --write-out "%{size_download}\n" --output /dev/null
curl http://example.com/ --silent -H "Accept-Encoding: gzip,deflate" --write-out "%{size_download}\n" --output /dev/null
@lloiacono
lloiacono / magento-nginx.conf
Created November 19, 2015 09:26 — forked from gwillem/magento-nginx.conf
Battle-tested Nginx configuration for Magento (source: www.hypernode.com)
# This is an annotated subset of the Nginx configuration from our Magento production platform @ www.hypernode.com
# See https://www.byte.nl/blog/magento-cacheleak-issue
user app;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 768;
}
git_prev() {
git checkout HEAD~
}
# checkout next (newer) commit
git_next() {
BRANCH=`git show-ref | grep $(git show-ref -s -- HEAD) | sed 's|.*/\(.*\)|\1|' | grep -v HEAD | sort | uniq`
HASH=`git rev-parse $BRANCH`
PREV=`git rev-list --topo-order HEAD..$HASH | tail -1`
git checkout $PREV
(function() {
var CSSCriticalPath = function(w, d, opts) {
var opt = opts || {};
var css = {};
var pushCSS = function(r) {
if(!!css[r.selectorText] === false) css[r.selectorText] = {};
var styles = r.style.cssText.split(/;(?![A-Za-z0-9])/);
for(var i = 0; i < styles.length; i++) {
if(!!styles[i] === false) continue;
var pair = styles[i].split(": ");
@lloiacono
lloiacono / .zshrc
Created April 15, 2016 07:36
Additions to yadr for .. tab completion and last parameter
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
zstyle ':completion:*' special-dirs true
bindkey '\e.' insert-last-word
for config_file ($HOME/.yadr/zsh/*.zsh) source $config_file
@lloiacono
lloiacono / README.md
Created May 13, 2016 14:43 — forked from chadrien/README.md
Debug PHP in Docker with PHPStorm and Xdebug

Debug your PHP in Docker with Intellij/PHPStorm and Xdebug

  1. For your local dev, create a Dockerfile that is based on your production image and simply install xdebug into it. Exemple:
FROM php:5

RUN yes | pecl install xdebug \
&amp;&amp; echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" &gt; /usr/local/etc/php/conf.d/xdebug.ini \