Elias Van Ootegem
Elias Van Ootegem
Commit messages say it all really: - Rename snake_cased variables to the preferred camelCase style - Remove redundant variables, use in-place reassignments - replace first loop with range + initialise...
* GetRefresh: Get item from cache, update TTL. This allows users to store resources in cache and have them automatically removed if they haven't been used for X amount of...
I've been looking for a plugin like this for a while, and was quite happy to have finally found one. Sadly, because of my preferred keyboard layout (US international (with...
I'm in the process of implementing webhooks, and in doing so noticed that all events are essentially unmarshalled into a `map[string]interface{}` type. This makes code messy, error-prone, and due to...
When switching to manual control, it would be nice to periodically update the CPU temp. Added a simple callback to do just that here. Also added some clean-up stuff when...
* Added support for line-breaks to be included in the ToC * Added the option to generate the ToC in a formatted table-like structure. * These options can be toggled...
Closes #10400 And Closes #10438 10435
We currently run the unit test suite both as-is and with race detection on every PR, which is fine. We also run the integration test suite as-is, and where possible...