Collin Alpert
Collin Alpert
Is it somehow possible to add custom buttons to the navigation bar, like one would normally do with the .navigationBarItems() method? I really love this library but this seems like...
**Describe the bug** When clicking a link (i.e. https://google.com) nothing happens. **To Reproduce** Steps to reproduce the behavior: 1. Open a chat 2. Click on a highlighted weblink 3. Nothing...
- Updated the deprecated credential builder for service accounts. - Removed the need for supplying the service account email. - Added necessary timeout for service account.
I just spent a lot of time trying to figure out why Keycloak was throwing exceptions when trying to reset the password. Turns out, it was tripping over the "From"...
I am working on a generator which is supposed to generate a static property or method called `Values` which would return an enum's members. This would alleviate the need of...
### Prerequisites - [x] I have written a descriptive pull-request title - [x] I have verified that there are no overlapping [pull-requests](https://github.com/SixLabors/ImageSharp/pulls) open - [x] I have verified that I...
This PR adds an analyzer for detecting usages of the async/await pattern where the `Task` could be returned directly instead of awaiting it. I'm opening as draft, since I had...
Hi, I made an analyzer which detects instances of a `Task` which can be returned directly: https://github.com/CollinAlpert/ReturnTaskDirectlyAnalyzer I'd love more people to use it and was wondering if you'd be...
This PR prevents a possible StackOverflow exception by limiting the amount of memory allocated on the stack and falling back onto an array creation in the case of a string...
This PR improves speed and reduces allocations of the `Randomizer.GetString` method. Here is a benchmark: Benchmark code: ```csharp [MemoryDiagnoser] public class Benchmark { private const string DefaultStringChars = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789_"; [Params(5,...