Skip to content

Instantly share code, notes, and snippets.

View aslijiasheng's full-sized avatar

jason aslijiasheng

  • 微盟-weimob
  • Shanghai
View GitHub Profile
kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod
@aslijiasheng
aslijiasheng / sendMail.go
Created February 1, 2016 01:57 — forked from andelf/sendMail.go
golang send mail net/smtp SMTP
package main
import (
"log"
"net/mail"
"encoding/base64"
"net/smtp"
"fmt"
"strings"