SeppPenner

Results 263 comments of SeppPenner
trafficstars

> Here's the credentials handler I use today. Seems to work fine: https://github.com/tgstation/tgstation-server/blob/ac290fc6ffce19c41233bb3a8321e984d9c1e722/src/Tgstation.Server.Host/Components/Repository/LibGit2RepositoryFactory.cs#L83-L108 > > User/pass is user/token Mhm, strange. I did it the same way. Maybe the token is...

Just for anyone who searches for OpenSync. Here it is: https://deependhulla.com/android-apps/opensync-app.

EMQX supports it, but not sure if the public broker does: https://www.emqx.com/en/blog/mqtt-over-quic

https://www.virustotal.com/gui/file/4386c11ffb62510dc9d9577096d2a17a17c465f351e9c09ad4e5d18b3c66d2b9/detection

We should maybe check these dependencies within the project itself. With the following settings in the projects ```csproj NU1803;NU1901;NU1902 true all true ``` this can be checked automatically within Visual...

After adding `Environment=DOTNET_ROOT=/usr/share/dotnet` to the service file and doing a `systemctl daemon-reload`, this issue is fixed. However, I wanted to know, why this issue can occur since dotnet is obviously...

> is the dotnet --info you've provided from the host that's failing? Yes. > How have you installed .NET on this host? Which packages and feeds specifically? Following https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-2204. So...

I guess, I found the issue: I didn't follow https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-2204, but https://learn.microsoft.com/en-us/dotnet/core/install/linux-debian...

In my case, the issue was the same: A link in a form was not fully qualified and I adjusted it with something like: ```csharp loginForm.Action = (baseUrl.EndsWith("/") || loginForm.Action.StartsWith("/"))...

For me, this is a dotnet bug on Linux / Mac... Might still be useful to state this as "Known issues" in the docs somewhere.