Show HN: Gok – Webapps in Go the PHP way
github.com
Show HN: Gok – Webapps in Go the PHP way
1–4 of 4 posts
Re: Show HN: Gok – Webapps in Go the PHP way
#2``` func (self Gok) SetCookie_4(name string, value string, duration int64, urlPath string){ ... } func (self Gok) SetCookie_5(name string, value string, duration int64, urlPath string, domain string) { ... } func (self *Gok) SetCookie_7(name string, value string, duration int64, urlPath string, domain string, secure bool, httpOnly bool) { ... } ```
is simply baffling to me.
Re: Show HN: Gok – Webapps in Go the PHP way
#3The fact that a modern language encourages developers to do something like ``` func (self Gok) SetCookie_4(name string, value string, duration int64, urlPath string){ ... } func (self Gok) SetCookie_5(name string, value string, duration int64, urlPath string, domain string) { ... } func (self *Gok) SetCookie_7(name string, value string, duration int64, urlPath string, domain string, secure bool, httpOnly bool) { ...…