Michael

Results 28 comments of Michael

Enum members are constants so should be uppercase anyway. [GraphQL docs use uppercase for them](https://graphql.org/learn/schema/). If you do that, there will be no name clash.

I wound up here because I was wondering why Spring Boot packages lombok into my fat jar. Excluding artifacts individually may be okay in some cases, but configuration to opt-out...

Me too. A workaround is to add `--legacy-peer-deps` ``` npm install --save react-text-selection-popover --legacy-peer-deps ```

Not a fork, but I've rewritten this from scratch using the latest AWS SDK https://github.com/michaelboyles/s3-maven-extension _"There are no gurantee that next "live" fork will be stale in some years"_ Well,...

My use-case is that I generate a Spring Boot fat JAR with `spring-boot-maven-plugin:repackage`, then I ZIP that together with a bunch of scripts etc. with `maven-assembly-plugin:single` to create a final...

According to [this AWS support article](https://repost.aws/questions/QU_Mw5I44TQ_ucMNb73Lakbw/fail2ban-mia-for-amazon-linux-2023) the reason this is missing is that "_Amazon Linux 2023 uses Python3.9 by default_", but Fail2ban supports Python3.5+ now. So I think there shouldn't...

I agree that the behaviour is not intuitive. I solved it by setting this property directly for postgres ``` spring.datasource.hikari.data-source-properties.connectTimeout=120 ```

Nice feature, but I think you have the wrong approach with sorting the data. As part of the walk step, you already have the absolute line number in `makeLocationToken`, which...

Seems like a hack really. 'Scenario' is not semantically a function and 'Rule' is not semantically a class. You could make the argument that Feature is a namespace of sorts,...

@borntorun Correct. I didn't mention in the above, but submitting sets the touched flag. This is consistent with Formik. @crutchcorn From my testing, none of the three are consistent with...