vsarunas

Results 30 comments of vsarunas

The code generator method worked; but it might have been more problematic to maintain on top of soto-s3-file-transfer and also brought in extra SPM dependencies to the project. Was able...

I ran into this log as well; try to double on the host which runs testcontainer: ``` sudo sysctl -w fs.aio-max-nr=1048576 ```

Also running into this; adding authentication to a macOS desktop and later CLI where need to redirect to http://127.0.0.1 to receive authentication back for https://github.com/kanidm/kanidm/issues/2390. If using password flow: 1....

While evaluating IDM systems for deployment, I've tested both Authentik and Authelia. Neither sets a form-action CSP directive, allowing clients to receive callbacks successfully. Looking at the code for [Authelia](https://github.com/authelia/authelia/blob/v4.39.9/cmd/authelia-gen/const.go#L158-L163)...

Hi @Firstyear , thanks for adding localhost, but unfortunately this is not sufficient for a native app redirect such as `myapp://authentication-callback`. Would you be open to an idea of making...

The difference between Nomad and Consul Makefile that cause the `LC_UUID` to be set is setting of `CGO_ENABLED=1` ``` CGO_ENABLED=1 go build -ldflags "-X github.com/hashicorp/consul/version.GitCommit=ac9e694b98+CHANGES -X github.com/hashicorp/consul/version.BuildDate=2024-09-18T19:36:27Z " -tags ""...

There are 3 ways to solve this problem: 1. With Go [1.23.3+](https://github.com/golang/go/commit/5472853843bd9ae72ddc107a556558d13e39b035), set `-B gobuildid` in the build scripts 2. Remove `CGO_ENABLED=0`, default behaviour is enabled 3. Upgrade to Go...

@0xTim; correct, but the `--disable-confirmation` is only there for the initial shell script bootstrap process. ``` /usr/local/bin/swiftly install 6.0.0 --disable-confirmation Error: Unknown option '--disable-confirmation' ``` The `--assume-yes` is present for...

Working around with adding to swiftSettings unsafeFlags: ``` "-Xllvm", "-sil-disable-pass=NonTransparentFunctionOwnershipModelEliminator", "-Xllvm", "-sil-disable-pass-only-function=$s14Essentials12encodeString_2in6lengthxxQp_tSS_xxQp_tSitRvzs17FixedWidthIntegerRzlFs6UInt32V_QP_Tg5" ```

Works on 6.0 release: ``` swift-driver version: 1.115 Apple Swift version 6.0 (swiftlang-6.0.0.9.10 clang-1600.0.26.2) Target: arm64-apple-macosx15.0 ``` But does not work on nightly `swift-6.0-DEVELOPMENT-SNAPSHOT-2024-09-17`: ``` Apple Swift version 6.0.2-dev (LLVM...