Skip to content

Instantly share code, notes, and snippets.

View alejojo's full-sized avatar

Alejandro alejojo

  • Tokyo, Japan
  • 02:00 (UTC +09:00)
View GitHub Profile
{
"meta": {
"theme": "elegant"
},
"basics": {
"name": "Alejandro Cortina",
"label": "DevOps Engineer at Rakuten",
"image": "https://s.gravatar.com/avatar/73c22fd5958b37cb71f13b9d8390732d?s=80",
"email": "[email protected]",
"phone": "",
@alejojo
alejojo / iptables_rules.sh
Created December 8, 2016 05:41 — forked from virtualstaticvoid/iptables_rules.sh
25 Most Frequently Used Linux IPTables Rules Examples
# Modify this file accordingly for your specific requirement.
# http://www.thegeekstuff.com
# 1. Delete all existing rules
iptables -F
# 2. Set default chain policies
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
@alejojo
alejojo / adb.sh
Created February 27, 2016 14:47 — forked from olivier-m/adb.sh
Remove all Google apps from an android phone. List of delete files from http://forum.xda-developers.com/showthread.php?t=1969755
# With your phone in debug mode, etc.
adb start-server
adb remount
adb shell < remove.sh