Tim M

Results 70 comments of Tim M

- Finished bike shedding over the bytes magnitude and settled on KiBytes to be consistent with Argon2. - Added more summaries. - Added a dedicated method overload for decoding password...

> That sounds great, I've been postponing the Hardware Intrinsics topic for a while but it is still on my radar for NaCl.Core, there was a PR over there but...

> I merged your other PR and as a consequence, this PR would need to be updated, can you kindly update the PR so I can merge your changes? Once...

Hey, I think this might work: ``` string username = "elonmusk" var currentUserMedia = await api.UserProcessor .GetUserMediaAsync(username, PaginationParameters.MaxPagesToLoad(5)); ``` It returns type `IResult` So iiuc this will iterate through the...

[Microsoft.Extensions.DependencyInjection.Abstractions](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/) has a `Replace` [method](https://docs.microsoft.com/en-us/dotnet/api/microsoft.extensions.dependencyinjection.extensions.servicecollectiondescriptorextensions.replace?view=dotnet-plat-ext-6.0). ```C# public static IServiceCollection Replace(this IServiceCollection collection, ServiceDescriptor descriptor) ``` Replace only has one [implementation](https://github.com/dotnet/runtime/blob/5c559f14ff23a34eb5585bc8112a73a579648b87/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/Extensions/ServiceCollectionDescriptorExtensions.cs#L522) accepting a ServiceDescriptor with no overloads. Would it be a...

This is a similar problem to #983. Disabling `Code maid-> Options-> Cleaning-> Insert-> Insert explicit access modifier fields on methods`, will fix this. Note if `Update->Update single line methods by...

I keep getting a `MSBuildLocator` error. In the past I've fixed similar issues by installing `NuGet.Frameworks`.

> I'd really like to have the Mediator registered as singleton, while the handlers, etc. be transient / scoped Not sure what the expected behaviour should be, but for the...

I have a working POC for this feature, I've opted to change `IMapping` and add `MethodParameter[] Parameters { get; }` (probably shouldn't be using `MethodParameter`) I have some questions/concerns about...

@Herdo you're right most of my problems are self inflicted 😄 I almost mentioned an explicit attribute but decided to try implementing implicit parameters first. It feels much more idiomatic.