Skip to content

Instantly share code, notes, and snippets.

View lloiacono's full-sized avatar

Leandro Loiacono lloiacono

  • Warehousing1
  • Berlin
View GitHub Profile
@lloiacono
lloiacono / es_array.sh
Created October 7, 2018 18:38
ES painless script example: remove element from array
curl -X POST \
http://some:port/indexname/_doc/docId/_update \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-d '{
"script": {
"lang": "painless",
"inline": "ctx._source.first_name.remove(ctx._source.first_name.length - 1)"
}
}'
@lloiacono
lloiacono / zshrc
Created July 2, 2018 07:19
history datetime
#Temp
HISTTIMEFORMAT="%d/%m/%y %T "
#Persistent
echo 'export HISTTIMEFORMAT="%d/%m/%y %T "' >> ~/.zshrc
source ~/.zshrc
@lloiacono
lloiacono / ssh tunnel
Created June 8, 2018 23:26
ssh tunnel
#
ssh user@jump_host -L local_port:target_host:remote_port -N
@lloiacono
lloiacono / goinside.sh
Last active June 6, 2018 12:13
Docker terminal columns fix
docker run -it -e COLUMNS="`tput cols`" -e LINES="`tput lines`" some_container /bin/bash
or add to .zshrc
goinside(){
docker exec -it $1 bash -c "stty cols $COLUMNS rows $LINES && bash";
}
export -f goinside
#https://stackoverflow.com/questions/38786615/docker-number-of-lines-in-terminal-changing-inside-docker/49281526#49281526
@lloiacono
lloiacono / varnish.vcl
Created April 20, 2018 11:46
Varnish vcl for caching OPTIONS requests
vcl 4.0;
import std;
import bodyaccess;
backend default {
.host = "nginx";
.port = "80";
# Health check
# .probe = {
@lloiacono
lloiacono / senderscore.sh
Created March 13, 2018 15:42 — forked from agarzon/senderscore.sh
Check Sender Score from IP using command line. bash script
#!/usr/bin/env bash │ject-with tcp-reset
# usage: ./senderscore.sh 74.91.28.11
if [ -z "$1" ]
then
echo "IP is missing as arguemnt."
exit
fi
IP=$1
@lloiacono
lloiacono / gist:ad01fd6a9cdf4ab2526ba188218ba05a
Created January 22, 2018 09:30
OSX php 5.6 and php 7.1
# brew install php56
# brew install php71
# unlink the php version you wont use that often: brew unlink php71
# manually link the php version you want to use when calling php
ln -s /usr/local/Cellar/php56/5.6.33_9/bin/php /usr/local/bin/php
export PS1='$PWD>'
## docker exec -it api-php-fpm /bin/bash -c "exec bash; export PS1='$PWD>'"
@lloiacono
lloiacono / Dockerfile
Created January 9, 2018 14:27 — forked from ju2wheels/Dockerfile
Docker Dockerfile reference template
# Last updated: 08/24/2916
#
# Total instructions available: 18
#
# https://docs.docker.com/engine/reference/builder/
#
# You can use a .dockerignore file in the same context directory as
# your Dockerfile to ignore files in the context before sending them
# to the Docker daemon for building to speed up building.
@lloiacono
lloiacono / .bashrc
Created January 2, 2018 17:23 — forked from avesus/.bashrc
Vim with NERDTree Adequate Defaults
# I love super fast keyboard. Most of my friends and colleagues can't follow
# I use `atkbd.softrepeat=1` on the kernel command line.
# Even Visual Assist plugin in Visual Studio doubles keyboard repeat rate with _a reason_.
# I'm working on my laptop without X installed to avoid procrastination.
# I've spend a working day googling how to make `kbdrate` using slower delay than 250.
# Add this to your /etc/profile.d/kbdrate.sh: sudo kbdrate -r 82 -d 150 if you want it in console.
# Note that it will force you type password twice. I didn't find any workarounds.
xset r rate 150 82
# When exiting from Vim, just type