Skip to content

Instantly share code, notes, and snippets.

View waitingkuo's full-sized avatar

Wei-Ting Kuo waitingkuo

View GitHub Profile
HostName=customvision.azure-devices.net;DeviceId=tommy;SharedAccessKey=uNmP791u11tQ3jsIhpHyUhbXUDLEKWNq2EGvq1hD0VU=
@waitingkuo
waitingkuo / meteorid.go
Last active August 29, 2015 14:17
generate MeteorId by golang
package main
import (
"fmt"
"math/rand"
"time"
)
var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
@waitingkuo
waitingkuo / xor.go
Created January 20, 2015 14:46
x-or in Golang
func xor(x1, x2 byte) byte {
return (x1 | x2) & ^(x1 & x2)
}