all repos — honk @ 10fb81e0cd1a02d41b651b1033428c29080302f5

my fork of honk

put common init code in honk.go
Ted Unangst tedu@tedunangst.com
Tue, 29 Oct 2019 15:53:20 -0400
commit

10fb81e0cd1a02d41b651b1033428c29080302f5

parent

030229150ee3b2c3c8e356ddc98713d53dcd28c2

2 files changed, 5 insertions(+), 4 deletions(-)

jump to
M deliverator.godeliverator.go

@@ -23,10 +23,6 @@

"humungus.tedunangst.com/r/webs/gate" ) -func init() { - notrand.Seed(time.Now().Unix()) -} - type Doover struct { ID int64 When time.Time
M honk.gohonk.go

@@ -20,11 +20,16 @@ "crypto/rsa"

"fmt" "html/template" "log" + notrand "math/rand" "os" "strconv" "strings" "time" ) + +func init() { + notrand.Seed(time.Now().Unix()) +} type WhatAbout struct { ID int64