rwb196884

Results 29 comments of rwb196884

Seems to be still fucked; I do ``` # influx delete --org mini31 --bucket solar --start 2020-01-01T00:00:00Z --stop 2023-02-19T00:00:00Z --predicate '_field="batt_level"' # influx version Influx CLI 2.6.1 (git: 61c5b4d) build_date:...

This is still completely fucked. * Went to storage resrouce in azure and creted a new container. Used its menu to 'Generate SAS. * Went to key vault service and...

Solution described here: https://github.com/stefanprodan/AspNetCoreRateLimit/issues/78

I need to multi-target `net40` and this makes 14 unusable, have to use 13.

And ![image](https://user-images.githubusercontent.com/12090617/227733395-0a960307-bb93-4d54-b6d3-34e3994e9586.png)

Where TF is that extra hour coming from? ![image](https://user-images.githubusercontent.com/12090617/227733490-e24c6453-b0a4-4627-932e-0dd22a35607b.png)

I have to remove all non-nuget package sources from my `C:\Users\%USERNAME%\AppData\Roaming\NuGet\NuGet.Config` to get `dotnet tool install` to work. The `--ignore-failed-sources` option doens't do anything.

Is this still broken? I'm trying to use my DuendeIdentityServer to log into a Blazor app and it redirects to Identity to do the login but then ends up in...

Here's a workaround. ``` public class XForwardedForCheckerMiddleware { private readonly RequestDelegate _next; public XForwardedForCheckerMiddleware(RequestDelegate next) { _next = next; } public async Task InvokeAsync(HttpContext context, ILogger logger) { if (context.Request.Headers.ContainsKey("X-Forwarded-For"))...

This is what I've come up with. ``` export function RequireAuth({ children, roles }: { children: JSX.Element, roles?: string[] }) { let auth: AuthContextProps = useAuth(); let navigate: NavigateFunction =...