Vladimir Sitnikov
Vladimir Sitnikov
Just in case: beware that `mdx-deck` has lots of pitfalls for delivering slides on stage. It looks good when you start, however, there are small bits that appear out of...
I think it would be great to decouple coloring from `git gui` into a separate colorer like https://github.com/dandavison/delta, https://github.com/Wilfred/difftastic, and so on. It looks like currently "added vs removed" is...
I guess Docker nowadays might be mature enough so we could deprecate this Vagrant-based VM. For instance, Docker did not work ok in macOS when calcite-test-dataset was created. Now it...
>Out of curiosity does the current build work for you? I don't remember the last time I launched this `pom.xml` :) Now I don't have enough free space, so I...
Could you clarify/provide steps to reproduce?
Well, it might indeed run out of memory if the **keys** have infinite cardinality. Are the shapes of your maps consistent? Are you using auto-generated keys (e.g. timestamps or something...
I guess the workaround is to add expert as a co-speaker
See JUnit5: https://junit.org/junit5/docs/current/user-guide/#running-tests-build-gradle-engines-configure ``` dependencies { testImplementation("org.junit.jupiter:junit-jupiter-api:5.5.2") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.5.2") } ``` In other words, the API classes are confined in `org.junit.jupiter:junit-jupiter-api` artifact, so I can't accidentally import engine classes. It just...
@rohanpadhye , see https://github.com/pholser/junit-quickcheck/pull/255
>The only issue right now would be that the JQF test runner class currently depends on FuzzStatement, which pulls the entire engine: What do you think if `junit-quickcheck`-related code was...