VSCode on MacOS shortcuts

📁 Navigation & Files Cmd+JToggle terminal Cmd+Shift+EFocus Explorer panel Cmd+WClose current tab Ctrl+TabSwitch between recent files ✏️ Editing Cmd+Shift+LSelect all occurrences Option+ClickMultiple cursors Cmd+Option+Up/DownAdd cursor above/below Cmd+Shift+KDelete entire line Option+Up/DownMove line up/down Shift+Option+Up/…

Go Json decoding cheat sheet

Two options from encoding/json: 1. json.Unmarshal 2. json.Decoder Unmarshal * Reads from a slice of bytes into a type * Process the whole json object at once data := []byte(`{ "timestamp":"2024-01-15T08:00:15Z", "event_type":"auth","user":"app_…