Skip to content

Instantly share code, notes, and snippets.

View yumminhuang's full-sized avatar

Huang Yaming yumminhuang

View GitHub Profile
@yumminhuang
yumminhuang / config.yml
Last active April 23, 2019 21:29
Ruby script to send emails using Pony
# Email account configuration
via: smtp
fromname: Alex
authenticate: true
account:
hostname: smtp.example.com
port: 587
username: alex@example.com
password: password
tls: true
@yumminhuang
yumminhuang / package_updates_check.py
Created March 18, 2015 20:39
Python script to check apt-get updates
#!/usr/bin/env python
#coding=utf-8
import apt
import apt_pkg
from time import strftime
import os
import subprocess
import sys