Jordan Marr

Results 192 comments of Jordan Marr

I've never used Tailwind. I usually just style things myself via CSS or inline styles.

Having the `testRootCommand` available to the user is a good idea. I agree that users should never have to unwrap the `HandlerInput` type manually, so I'm all for having the...

I was just checking out your Perla wizard code and I glanced at the way you are organizing your commands and HandlerInputs into modules. Looks interesting. At some point I...

I like the way your wizard prefixes the output with a prefix (`Perla:`, `Esbuild`, etc). I was just noticing in the SqlHydra wizard that my `>` prefix for my prompts...

Show me how you would expect your example above might look if this was implemented.

Or maybe: #### Generated: ```F# module Person let serializeWith (serializeFn: Serde.ISerialize -> string) (person: Person) = { new Serde.ISerialize with member this.Serialize(serializer: ISerializer) = let type = serializer.SerializeType("Person", 2) type.SerializeField("Name",...

This issue was kind of DoA, but now I'm curious. 1) Wouldn't that still involve generating the Chiron `FromJson` and `ToJson` static methods? If so, why not just generate using...

FYI, the two queries you will need to implement materialized views were recently implemented in latest version of SqlHydra here: https://github.com/JordanMarr/SqlHydra/blob/main/src/SqlHydra.Cli/Npgsql/NpgsqlSchemaProvider.fs Feel free to reuse the queries for SQLProvider.

I removed the call to "window.Show()" completely in the `WPFHost SetRootView` and called ShowDialog from my app. I was able to open and close the dialog multiple times from my...

The View.Border is generating, and I can assign properties. The problem is that I'm trying to add the "Child" property, which is of type `UIElement`, but it won't let me...