peterhirn
peterhirn
``` [Test] public static void LineSegment3DIntersection() { var tolerance = Angle.FromRadians(0.00001); var l1 = new LineSegment3D(new Point3D(0, 0, 0), new Point3D(10, 0, 0)); var l2 = new LineSegment3D(new Point3D(5, -5,...
paket push works on windows clients but fails inside a alpine container. container: ``` FROM mcr.microsoft.com/dotnet/core/sdk:2.2-alpine3.9 as dotnet ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 ENV PATH="/root/.dotnet/tools:${PATH}" RUN dotnet tool install paket -g ``` dotnet...
https://www.nuget.org/api/v2/package/Chessie/0.6.0 File version is only applied to net40 assembly, see file properties.
I think `reader.dateTime` should always return dates with `DateTimeKind.Utc`. Otherwise this leads to problems downstream as eg. Json serialization will not append 'Z' to the string which will then be...
### Thanks for opening an issue! Please select the type of issue you're reporting. For questions. - [x] Bug - [ ] Feature Request - [ ] Question ### Problem...
Hello, I'm hashing passwords with custom salts. Comparing the results with https://github.com/antelle/argon2-browser it turns out, this library is using `crypto_pwhash_ALG_ARGON2I13` instead of `crypto_pwhash_ALG_ARGON2ID13`. I think `ARGON_ALGORITHM_DEFAULT` should be 2, not...
Check: https://ipv6leak.com/ Fix: https://www.reddit.com/r/WireGuard/comments/nl2uxl/comment/gzgaxo8 ```diff - AllowedIPs = 0.0.0.0/0 + AllowedIPs = 0.0.0.0/0, ::/0 ```
### Description After adding `redis` to my project the vite production build output got very noisy, see below. Any tips on how I can suppress this output? Or can the...
[Bug]: Destroying server gracefully with attached volume not possible because of incorrect ordering
### What happened? Using `shutdown_before_deletion` on a server with attached volume will detach the volume first, then shutdown the server. This is obviously not expected on the server and will...
## Summary After setting a password for Rspamd the `/metrics` endpoint is protected. Unfortunately this uses a custom `Password` http header and currently [Prometheus seems unwilling to add support for...