Mar 7, 2024 nuggets javascript Use Destructuring to Remove Attributes In JavaScript, you can destructure unwanted/sensitive attributes from an object.
Mar 1, 2024 nuggets go Base64 Decoding a String in Go To base64-decode a string in Go, you can use the decoding.DecodeString function from the encoding/base64 package. This function takes a base64-encoded string as input and returns the decoded data as a byte slice.
Mar 1, 2024 nuggets go Getting the Body of an HTTP Request With Go You can use the io to get the request body from an HTTP request in io.ReadAll() function to read the r.Body object