Skip to content

Instantly share code, notes, and snippets.

View mauricios's full-sized avatar
🎯
Focusing

Mauricio Sánchez mauricios

🎯
Focusing
View GitHub Profile
@mauricios
mauricios / varnish_useful_commands.sh
Last active October 14, 2017 01:09
Varnish useful commands
#!/bin/sh
# Check configuration file
sudo varnishd -C -f /path/to/default.vcl -p vcl_dir=/path/to/vcl_dir
# Ban/Purge a URL
sudo varnishadm "ban req.http.host ~ ^<hostname>$ && req.url ~ ^<url>$"
# Change configuration
## Show list of configurations
@mauricios
mauricios / migrate_git_repo.sh
Last active December 28, 2017 15:48
Migrate Git repo from one remote to another
#!/bin/bash
# Clone the old repo using the mirror option
git clone --mirror git@git.my-old-server.com:my-old-repo.git
# Enter the new clonned repo directory
cd my-old-repo.git
# Add the new remote repo
git remote add new_origin git@git.my-new-server.com:my-new-repo.git
@mauricios
mauricios / git_useful_tasks.sh
Last active February 2, 2018 20:36
Git usefull tasks
#!/bin/sh
# Delete last commit already pushed to a remote repository
git reset HEAD^ --hard;
git push origin -f;
# Change remote URL
git remote set-url origin <repo_url>
# Revert local changes to move back to the origin is
@mauricios
mauricios / vim_powers
Created February 16, 2018 02:01
Vim powers
- Search and replace: :%s/foo/bar/g
- Delete text block: ma + d'a
- Macro: qd, <commands>, then q, apply with @d and @@
- Write as sudo: :w !sudo tee %
- Increase/Decrease number: Ctl+A Ctl+X
@mauricios
mauricios / gpg_useful_commands.md
Created August 31, 2018 16:41
GPG useful commands

Generate the GPG key pair

gpg --full-generate-key;

Export public GPG key

Look for your Key ID in using the following command:

@mauricios
mauricios / hyper.js
Last active December 25, 2018 22:44
Hyper terminal preferences
module.exports = {
config: {
fontSize: 14,
fontFamily: '"Fira Mono", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
cursorColor: 'cyan',
cursorShape: 'BEAM',
cursorBlink: false,
foregroundColor: '#ffffff',
backgroundColor: '#000000',
borderColor: '#000000',
@mauricios
mauricios / s3fs-iam-bucket-policy.json
Last active February 25, 2019 18:24
AWS IAM Policy to access an S3 bucket from s3fs
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets"
],
"Resource": [
"arn:aws:s3:::my-bucket"
@mauricios
mauricios / install_openshift.sh
Last active March 3, 2019 18:01
Install OpenShift in Amazon Linux 2
# Configure variables
OPENSHIFT_PACKAGE=https://github.com/openshift/origin/releases/download/v3.11.0/openshift-origin-client-tools-v3.11.0-0cbc58b-linux-64bit.tar.gz
OPENSHIFT_HOSTNAME=openshift.xip.io
# Install Docker
sudo yum install docker -y
sudo usermod -aG docker ec2-user
# Add insecure registry to Docker
@mauricios
mauricios / resize_ebs_volume.md
Last active November 8, 2019 18:35
Resize EBS volume

Resize AWS EBS Disk partition

The following commands are rquiered to expoand a partition and resize the file system of an EBS volume. Those steps work in EBS volumes including root volumes and can be done while they are attached to a running instance (zero downtime)

Check the size of the partition

df -H
@mauricios
mauricios / generate_ssh_key_pair.md
Last active November 17, 2020 15:47
Generate SSH key pair

Generate SSH key pair

Use RSA encryption with 4096 bits

ssh-keygen -t rsa -b 4096 -C "my_email@mydomain.com" -f ~/.ssh/myserver.key -P ""

The command above will generate two files, the private key ~/.ssh/myserver.key and the public key ~/.ssh/myserver.key.pub.