Dillon Kearns

Results 223 comments of Dillon Kearns

> EDIT: On reflection, we would probably want all fields which return a list of enum values to be safe in our project, always. So having the generator hit all...

Thanks for the report @lydell! I found the problem. My cli options parser library is splitting based on `/`, but Windows uses `\`. https://github.com/dillonkearns/elm-cli-options-parser/blob/51b6ec77e6a17372c0bb95137790fa6041bb7086/src/Cli/Program.elm#L269 It's probably good enough to do...

This is relatively straightforward to fix once we decide on a way to normalize it. Here are some ideas: 1. `N__1month` 1. `Scalar__1month` 1. `Number__1month` 1. `NUMBER__1month` I'm open to...

@Munksgaard thanks for the feedback! `N_1month` seems okay to me, too. Yes, if you give me a schema that can reproduce the problem you encountered that would be super helpful!

Thanks for opening the issue @prange! There is indeed an internal module for encoding data with GraphQL syntax: https://package.elm-lang.org/packages/dillonkearns/elm-graphql/latest/Graphql-Internal-Encode. That said, there are a couple of reasons that I'm leaning...

Hey @Hazelfire, thanks for the discussion. I see what you're saying there, that's an interesting point. I think you're right that the `selectFromCourse` type signature would be one way to...

Thank you for reporting the issue @rrva! I recently discovered this problem, I've seen that you can get multiple timer windows when you launch it from the launch bar when...

Hi Chris, thanks for opening a discussion on this! [The icon](https://github.com/dillonkearns/mobster/blob/master/assets/tray-icon-full.png) is a png with transparency. I also have it in SVG form, which you can see in the top-left...

[Here](https://github.com/electron/electron/issues/3302) is the relevant electron issue for the OS X fullscreen support for reference.

That sounds like a good solution, I'll give that a try. Thanks for the feedback! On Fri, Dec 1, 2017 at 9:58 AM Chris Stead wrote: > Hey Dillon, >...