home to your local SPACEGIRL 💫 arimelody.space
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

day 1 patch

+5
+5
main.go
··· 33 33 const DB_VERSION = 1 34 34 35 35 const DEFAULT_PORT int64 = 8080 36 + const HRT_DATE int64 = 1756478697 36 37 37 38 func main() { 38 39 fmt.Printf("made with <3 by ari melody\n\n") ··· 604 605 w.Header().Add( 605 606 "X-Powered-By", 606 607 PoweredByStrings[rand.Intn(len(PoweredByStrings))], 608 + ) 609 + w.Header().Add( 610 + "X-Days-Since-HRT", 611 + fmt.Sprint(math.Round(time.Since(time.Unix(HRT_DATE, 0)).Hours() / 24)), 607 612 ) 608 613 next.ServeHTTP(w, r) 609 614 })