Skip to content

Instantly share code, notes, and snippets.

View bizmatesph-val-babon's full-sized avatar
👋

First Val Babon bizmatesph-val-babon

👋
  • Philippines
View GitHub Profile
@bizmatesph-val-babon
bizmatesph-val-babon / security-group-cleanup.py
Created September 3, 2018 07:04 — forked from miketheman/security-group-cleanup.py
AWS EC2 Unused Security Group cleanup
#!/usr/bin/env python
import sys
import boto
import pprint
del_flag = ''
if len(sys.argv) > 1:
del_flag = sys.argv[1]
@bizmatesph-val-babon
bizmatesph-val-babon / function.py
Created August 23, 2018 02:46 — forked from brandond/function.py
Python script to auto-tag AWS EBS Snapshots and Volumes using AMI and Instance tags
import copy
import logging
import os
import boto3
logging.basicConfig(level=os.environ.get('LOG_LEVEL', 'INFO'))
ec2 = boto3.client('ec2')
logger = logging.getLogger(__name__)
@bizmatesph-val-babon
bizmatesph-val-babon / ec2_info_retriever.py
Created July 17, 2018 06:59 — forked from dastergon/ec2_info_retriever.py
A basic boto3 based tool for retrieving information from running EC2 instances.
from collections import defaultdict
import boto3
"""
A tool for retrieving basic information from the running EC2 instances.
"""
# Connect to EC2
ec2 = boto3.resource('ec2')
@bizmatesph-val-babon
bizmatesph-val-babon / email_utils.py
Created July 16, 2018 12:38 — forked from turicas/email_utils.py
Send emails easily in Python (with attachments and multipart)
#!/usr/bin/env python
# coding: utf-8
# This little project is hosted at: <https://gist.github.com/1455741>
# Copyright 2011-2012 Álvaro Justen [alvarojusten at gmail dot com]
# License: GPL <http://www.gnu.org/copyleft/gpl.html>
import os
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
@bizmatesph-val-babon
bizmatesph-val-babon / 00.howto_install_phantomjs.md
Created July 12, 2018 08:22 — forked from julionc/00.howto_install_phantomjs.md
How to install PhantomJS on Debian/Ubuntu

How to install PhantomJS on Ubuntu

Version: 1.9.8

Platform: x86_64

First, install or update to the latest system software.

sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
http://nbviewer.jupyter.org/github/phelps-sg/python-bigdata/blob/master/src/main/ipynb/intro-python.ipynb
AWSTemplateFormatVersion: '2010-09-09'
Metadata: {}
Parameters:
###########
KeyName:
Description: The EC2 Key Pair to allow SSH access to the instance
Type: 'AWS::EC2::KeyPair::KeyName'
AvailabilityZone:
Description: Availability zone to deploy
AWSTemplateFormatVersion: '2010-09-09'
Metadata: {}
Parameters:
###########
KeyName:
Description: The EC2 Key Pair to allow SSH access to the instance
Type: 'AWS::EC2::KeyPair::KeyName'
AvailabilityZone:
Description: Availability zone to deploy
@bizmatesph-val-babon
bizmatesph-val-babon / set_up_zimbra_public
Last active July 9, 2021 08:40
HOW TO SETUP ZIMBRA WITH LET'S ENCRYPT
yum -y update && yum -y upgrade
yum -y install unzip net-tools sysstat openssh-clients perl-core libaio nmap-ncat libstdc++.so.6 wget
getenforce
setenforce 0
getenforce
vim /etc/selinux/config
>> Make sure "SELINUX=disabled"
hostnamectl set-hostname mail
echo "<server_ip> <TLD_domain> mail " >> /etc/hosts
cat /etc/hosts
@bizmatesph-val-babon
bizmatesph-val-babon / xampp_php7_xdebug.md
Created November 2, 2017 07:36 — forked from odan/xampp_php7_xdebug.md
Installing Xdebug for XAMPP