Hulkstance

Results 10 issues of Hulkstance

I'm curious what the difference between `ClassifiedAds.Monolith` and `ClassifiedAds.ModularMonolith` is? My favorite architecture is Domain-Driven Design and I like Mediatr and AutoMapper. I'm also thinking about GraphSQL because it's the...

question

What is the correct way to use `WaitAndRetryForeverAsync` with fire and forget tasks? Current behavior: running `StartAsync` initially without Internet connection, it tries to reconnect on each *x* seconds, as...

question

Since I'm doing calculations based on indicators, the first, let's say 50 records are not so accurate due to the fact that there wasn't enough data. I want to truncate...

I tested it on Windows 10 2004 release and it BSODd with: ``` EXIT_REASON_INVALID_GUEST_STATE Arguments: Arg1: 0000000000000001 Arg2: 0000000000000021 Arg3: 0000000000000000 Arg4: 0000000000000000 ``` ![image](https://user-images.githubusercontent.com/33224919/85236409-61c0be80-b426-11ea-8722-5a72dbc3c6ae.png) ```cpp VOID VmExitStartFailed( IN PGUEST_STATE...

If a message takes 5 seconds to be processed as it involves some database operations, it shouldn't slow the server processing pipeline overall as that's going to cause backpressure. In...

Why not create something like the following? Your current `Result.Match` / `IfSucc` syntax looks a bit weird and so is the name `IfSucc`. ```cs if (result.IsSuccess) { var data =...

I'm encountering a `NullReferenceException` when trying to schedule a background job using Hangfire with Redis storage and Hangfire.Tags. The exception occurs when I attempt to schedule a job with `IBackgroundJobClient.Schedule`...

Have you planned OnConnectionLost, OnConnectionRestored events and auto reconnection, timeout? [![Back this issue](https://raw.githubusercontent.com/devlooped/SponsorLink/main/docs/assets/img/separator.png "Back this issue")](https://www.devlooped.com/SponsorLink/github/issues/?s=devlooped) [![Back this issue](https://img.shields.io/badge/backed-%240-EA4AAA?logo=githubsponsors "Back this issue")](https://www.devlooped.com/SponsorLink/github/issues/?s=devlooped)

enhancement
help wanted

Any plans on adding App Service and App Configuration support? In addition, `azuread_group`?

module: new

We use a Azure AD B2C tenant per application tenant according to the isolation models described here: https://learn.microsoft.com/en-us/azure/architecture/guide/multitenant/service/azure-ad-b2c#isolation-models. I definitely need to use `WithPerTenantAuthentication`. Has anyone implemented this? Is there...

question