Skip to content

Instantly share code, notes, and snippets.

View ErasmoLeon's full-sized avatar

Erasmo León ErasmoLeon

View GitHub Profile
@ErasmoLeon
ErasmoLeon / 00-android-bypass-certificate-pinning-and-mitm-attack-setup.md
Created January 26, 2023 16:12 — forked from approovm/00-android-bypass-certificate-pinning-and-mitm-attack-setup.md
Certificate Pinning Bypassing: Setup with Frida, mitmproxy and Android Emulator with a writable file system
@ErasmoLeon
ErasmoLeon / install-rabbitmq.sh
Created April 17, 2019 16:26 — forked from yetanotherchris/install-rabbitmq.sh
RabbitMQ on Docker with admin UI
# AWS specific install of Docker
sudo yum update -y
sudo yum install -y docker
sudo service docker start
sudo usermod -a -G docker ec2-user
# exit the SSH session, login again
# Docker
docker run -d --hostname my-rabbit --name some-rabbit -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 rabbitmq
@ErasmoLeon
ErasmoLeon / .babelrc
Created April 18, 2017 18:00
Enzyme implementation
{
"presets": [
"react", "env"
]
}
@ErasmoLeon
ErasmoLeon / .babelrc
Last active April 18, 2017 18:01
Pug implementation on express server
{
"presets": [
"env"
]
}
@ErasmoLeon
ErasmoLeon / mysql-utils
Created June 4, 2015 21:08
mysql utilities
Get the database size, free space and last update
To get the current database size just by querying into your query browser or CLI from the INFORMATION_SCHEMA database in table TABLES.
SELECT table_schema "Data Base Name",
sum( data_length + index_length ) / 1024 / 1024 "Data Base Size in MB"
FROM information_schema.TABLES
GROUP BY table_schema ;
Get the database free space