James Foster
James Foster
```TypeComparer``` Returns failure when types don't match. Inconclusive otherwise.
Allow multiple command line arguments with the same name to bind to an array parameter. This would avoid separating on comma. `public void Command(string[] name)` `my-cli command —name Foo —name...
According to the docs (https://www.keycloak.org/docs-api/17.0/rest-api/index.html#_getuserscount) you can a) specify no query parameters to return the count of all users, b) specify the `search` query parameter to filter by name email...
Version 8.0.1 When I click the button that sets `config.drawerOpen` to true, the below error occurs JS Console  Ref: https://github.com/aforemny/material-components-web/blob/edcc5c48e7b549224a81709cca2896fe01c76618/packages/mdc-drawer/component.ts#L171 Usage  Seems there's a Non-Null Assertion where we...
Would it be possible to add an overload for the Console.Read methods to allow specifying a colour? ``` var input = Console.ReadLine(UserInputColour); ``` instead of ``` Console.ForegroundColor = UserInputColour; var...
For example "Remove containing statement" is NOT a refactoring. ```csharp if (PresidentHasAuthorizedUseOfNuclearWeapons()) | | { | | LaunchNukes(); | becomes | LaunchNukes(); } | | ``` A refactoring should be...
https://bundlephobia.com/package/[email protected] this would suggest that when i `npm install phin` I also get axios and centra... This seems counter intuitive. Why are these competitors in your list of dependencies?
`public static Parse(string input) => new(input);` It probably isn't necessary to include Parse for string Ids
I was interested in using this for my own htmx project and noticed you had an issue outstanding for adding a sample (#47) This implementation renders the entire Todo table...