tmoschou
tmoschou
Looks like CircleCI is using Xcode 12.0.0 which is no longer supported https://circleci.com/docs/xcode-policy#xcode-image-retention-and-deprecation https://circleci.com/docs/using-macos#supported-xcode-versions
This was annoying me too. It looks like org.springframework.build:aws-maven:5.0.0.RELEASE depends on com.amazonaws:aws-java-sdk:1.7.1 which depends on joda-time:joda-time of version `[2.2,)` Since its a wild card version, it needs to de extra...
Hi guys, I've created a PR for a conda module upstream https://github.com/ansible/ansible/pull/40455
Did a little bit of digging; I had [React Strict Mode](https://reactjs.org/docs/strict-mode.html#detecting-unexpected-side-effects) enabled in `next.config.js`, which intentionally double invokes render, `useMemo`, etc to detect errors. It looks to me like the...
Upstream issue is here https://github.com/adobe/react-spectrum/issues/2231
Hi, Located in Australia This is consistently taking over 5 minutes to download https://dl.min.io/client/mc/release/linux-amd64/mc 
Thanks @JanHolger For others interested, if you are building a Docker image with `mc`, Docker has an easy way to do this with [multistage build](https://docs.docker.com/develop/develop-images/multistage-build/#use-an-external-image-as-a-stage) ```Dockerfile COPY --from=minio/mc /usr/bin/mc /usr/local/bin/mc...
Adding my two-cents. In response to https://github.com/yannickcr/eslint-plugin-react/issues/2860#issuecomment-752319046: > There's still the case of ErrorBoundaries, which must be implemented as a class component, and there's still some lifecycle hook patterns that...
The documentation says that scalor will remove the options in zincOptionsScala when it thinks it is the default, hence why explicitly targeting 1.8 is not working.
I'ld be interested to know how this might work for collections of complex types (which might have sub-collections). E.g. ```yaml my-collection: - name: foo prop: x sub-collection: - item1 -...