Skip to content

Instantly share code, notes, and snippets.

View FindHao's full-sized avatar
💭
Don't worry, be happy

Yueming Hao FindHao

💭
Don't worry, be happy
View GitHub Profile
@FindHao
FindHao / gist:eddd5bf354e44d0eb7df0c838535ba4a
Created May 27, 2016 05:12 — forked from AbeEstrada/gist:11e4511f9915b00f9714
Cloudflare Email Protection Decoder in Go
package main
import (
"bytes"
"strconv"
)
func cf(a string) (s string) {
var e bytes.Buffer
r, _ := strconv.ParseInt(a[0:2], 16, 0)