A second post on Go silliness (Miguel, aren’t you a C++ programmer?): in 1.23, Go finally added custom iterators. Now, back when I was at Google and involved in the Go compiler as “the annoying Rust guy who gets lunch with us”, there were proposals suggesting adding something like this, implemented as either an interface or a func:| mcyoung.xyz
A description of range over function types, a new feature in Go 1.23.| go.dev
Since September 2022, Aurora malware is advertised as an infostealer and several traffers teams announced they added it to their malware toolset.| Sekoia.io Blog
Caddy is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go| caddyserver.com
Analyse and detection of CVE-2021-43798| j0vsec
func Chdir ¶| pkg.go.dev
At least once in their career, every Go programmer had to write code that interacted with the filesystem. For example, if our application needed to handle some documents, we probably had to write code that handled the files and saved it under a directory. We may have ended up writing code that resemble this: p := filepath.Join(uploadsDirectory, userChosenFileName) f, err := os.OpenFile(p, os.O_RDWR|os.O_CREATE, 0755) if err != nil { return err } f.| tortel.li
Admission Controller # The policy-controller admission controller can be used to enforce policy on a Kubernetes cluster based on verifiable supply-chain metadata from cosign. policy-controller also resolves the image tags to ensure the image being ran is not different from when it was admitted. See the installation instructions for more information. This component is still actively under development! Today, policy-controller can automatically validate signatures and attestations on container ...| Sigstore
Overview ¶| pkg.go.dev