Nikhil Reddy
Nikhil Reddy
Not an issue (at least in the traditional sense). When I was watching your AccuConf 2021 talk, I was blown away by your slides and more specifically the animations (among...
howdns.works is a webcomic by DNSimple which explains how DNS works in pretty simple terms. Git For Ages 4 And Up is a youtube video shot at the linux conf...
Is there anyway to cancel the request in Middleware? My use-case is printing the `curl` command for the request and exiting if a `--dry-run` flag is set. PS. Amazing utility!...
App crashes with the following error: ``` APP CRASH!!! System.Xml.XmlException: Data at the root level is invalid. Line 1753, position 25. at System.Xml.XmlTextReaderImpl.Throw (System.Exception e) [0x00027] in :0 at System.Xml.XmlTextReaderImpl.Throw...
With the ut header file from master and the following example: ```c++ #include "ut.hpp" int main(int argc, char* argv[]) { boost::ut::expect(true); return 0; } ``` I get the following error...
Solves #671. Global value overriding a specific value is confusing. Relevant docs: - [coalesce](https://helm.sh/docs/chart_template_guide/function_list/#coalesce) - [default](https://helm.sh/docs/chart_template_guide/function_list/#default) As a sidenote, I find `coalesce` more natural than `default` unless `default` is used...
Given the following values: ```yaml global: storageClass: global-value clickhouse: enabled: true persistence: storageClass: other-value ``` The Clickhouse Installation will use `global-value` as the storage class instead of `other-value`. This is...