James Turner
James Turner
Hey @Tony20221 , thanks for raising this issue! Is this error happening when you're trying to build Infinity Crawler? For a little bit of background, BuildVersioning is the library of...
> My question why is the error message referencing Github? Is your build tool talking to Github? The reason it says `If this keeps happening, please report it on GitHub`...
I should mention, the `If this keeps happening` part is because I figured if this is hit, that it would be transient and may automatically fix itself on another run...
Unfortunately not. From looking at the DEV repo itself, it seems like it might be easiest to run a container on the CI as that might require the least dependencies....
Another reason for moving to a local instance is that we are now starting to hit API limits against the live site. This was always bound to happen but will...
Probably worth also including how to install the CLI tool as it is a tool on NuGet.
Hey @SpaceTimee - thanks for raising the issue! Currently the only documentation is the getting started guide on the readme: https://github.com/TurnerSoftware/DinoDNS#-getting-started I do have plans to write further documentation though...
Interesting case and somewhat of an oversight on my part. Technically you can do what you want if you use your own instance of `TurnerSoftware.DinoDNS.Connection.TlsResolver`. The constructor of it allows...
I noticed something like this randomly happening in my benchmarks too for a little while, thought it was something weird with my code. Transitioned some allocate-y code to use ArrayPool...
Just got around to running my benchmark on .NET 5, it does seem to be allocating still for me.  Code base: https://github.com/Turnerj/LevenshteinBenchmarks/tree/2475940db8c4c6f7727c20d5a3ba20a200e77e5c The specific implementation that shouldn't allocate: https://github.com/Turnerj/LevenshteinBenchmarks/blob/2475940db8c4c6f7727c20d5a3ba20a200e77e5c/Implementations/03_ArrayPool.cs...