Christian Funder Sommerlund
Christian Funder Sommerlund
http://com4j.kohsuke.org/tutorial.html says: "I still don't know how to locate type libraries for a given COM library other than guessing the file by using OleView." You can find a list of...
Wi-Fi Sense is no longer available as of Windows 10 version 1803, according to top note of https://docs.microsoft.com/en-us/windows/configuration/manage-wifi-sense-in-enterprise. I noticed this on a Windows 10 box today. The setting does...
The Simple DNSCrypt GUI was opened during the installation. I went through the settings, enabled the proxy, and enabled the query log. But nothing appeared in the query log at...
I noticed an interesting performance issue while trying to take advantage of `IncludeOptimized`. Contrary to my expectation, `IncludeOptimized` slows down my queries instead of speeding them up. My use case...
@pootzko it has been over a year since your last commit to master, and there are a number of open issues here on GitHub that have not been attended to....
Calling `WriteAsync` returns a `IInfluxDataApiResponse` which has the `Success`, `StatusCode` and `Body` properties. This implies that both successes and failures in calling InfluxDB will be communicated through the returned object....
When creating an `InfluxDbClient`, specifying `null` as username and password leads to an exception saying that a password is required. I use HTTP basic auth for authentication and thus do...
Would it be possible to add functionality for waiting for an `IBatchWriter` to finish writing? There are many ways this could be made possible, for example: 1) A blocking `.stop()`...
As far as I can see, the `BatchWriter` feature of this library has no functionality for limiting the queue size. So if the remote database becomes unavailable, there is nothing...
From the source: ```` private RaygunRequestMessage BuildRequestMessage() { var message = _currentWebRequest.Value != null ? RaygunWebApiRequestMessageBuilder.Build(_currentWebRequest.Value, _requestMessageOptions) : null; _currentWebRequest.Value = null; return message; } ```` This means that every...