[go-nuts] [security] Go 1.20.4 and Go 1.19.9 are released

2023-05-02 Thread announce
Hello gophers, We have just released Go versions 1.20.4 and 1.19.9, minor point releases. These minor releases include 3 security fixes following the security policy : - html/template: improper sanitization of CSS values Angle brackets (<>) were not consi

Re: [go-nuts] Help me study resources or guides

2023-05-02 Thread Rajesh Pandian
HI Nyilynn, I have watched Matt's Golang videos about concurrency and few others and I have to say it is Brilliant! I highly recommend it. (And Thank you Matt for the brilliant content!! ) If you are interested in books then "Learning Go" from O'reilly was also helpful to me. If you want sta

[go-nuts] Doc suggestion (& one const suggestion)

2023-05-02 Thread 'Mark' via golang-nuts
In the docs file modes are often shown in octal, e.g., `0600`. Doc suggestion: update octal to use the modern unambiguous format, e.g., `0o600`. Const suggestion: add at least one const to `os`, e.g., ```go const ModeUserRW = 0o600 // plus any one or two others that are really common? ``` If th