Michael Plaisted
Michael Plaisted
What about something similar to: context.WriteLinks("Here is a {0} and another {1}", new HtmlLink { Text = "link", Url = "http://url" }, new HtmlLink { Text = "link here.", Url...
I was able to get this working with Storage Grid settings the creds in a $HOME/.aws/credentials profiles and passing the --profile {name} flag. I'm not sure why goofys isn't picking...
We use TF CDK so looks like ```typescript new snow.AccountGrant(scope, `grant_${dbName}-owner-exec`, { roles: [db_owner.name], privilege: "EXECUTE TASK" }); ``` but on plan: ``` # snowflake_account_grant.grant_TEST_DB-owner-exec will be updated in-place ~...
I played around with using the existing publish and then directly referencing the DLLs that end up there but transitive dependencies become a mess. I'm looking into using a local...
Okay, the nuget install method works reasonably well with some extra scripts to cleanup the install to just be nupkg files. edit: Scratch that, something else must have been done...
This would be a nice addition for nat.net due to the TLS quirks discussed in https://github.com/nats-io/nats-server/issues/291
Tooling may not be a difficulty. Protobufs have a defined JSON mapping ([spec](https://developers.google.com/protocol-buffers/docs/proto3#json)) and the official c# protobuf library includes support for JSON marshalling using the above specification ([docs](https://developers.google.com/protocol-buffers/docs/reference/csharp/class/google/protobuf/json-formatter)). A...
Scraping through the operator source led me to this solution if your setup is failing due to no external IP address set on the node: ```kubectl label node my-node-wsl nats.io/node-external-ip=192.168.100.100```...
I agree, the method of scanning deps.json for vulnerabilities is not valid, or at least needs some tweaking. We're using the latest versions of `System.Private.Uri` included with .net 6 but...
@DmitriyLewen My example clearly shows that the container is using version `6.0.922.41905` of `System.Private.Uri` not `4.3.0`. **Just because a version is in the .deps.json does not mean it the version...