test function to undo the bloat
Ted Unangst tedu@tedunangst.com
Thu, 15 Aug 2019 23:03:21 -0400
M
bloat.go
→
bloat.go
@@ -102,3 +102,7 @@ func bloat_iscounter(honk *Honk) bool {
return strings.Contains(honk.Noise, "<bloat_counter>") } +func bloat_undocounter() { + db := opendatabase() + db.Exec("update honks set noise = 'This post has expired' where noise like '%<bloat_counter>%' and whofore = 2 and what = 'honk'") +}
M
honk.go
→
honk.go
@@ -1634,6 +1634,7 @@ stmtRecentHonkers = preparetodie(db, "select distinct(honker) from honks where userid = ? and honker not in (select xid from honkers where userid = ? and flavor = 'sub') order by honkid desc limit 100")
} func ElaborateUnitTests() { + bloat_undocounter() } func main() {