Charles Ritchea

Results 44 comments of Charles Ritchea

Using version 2.33 and latest released versions of gradle and IntelliJ

@liudongcxw in a task: ```groovy doFirst() { def props = new Properties() file(".env").withInputStream { props.load(it) } props.each { String key, String val -> System.setProperty(key, val) environment key, val } }...

Katharsis has essentially moved to crnk.io, so switch to it and ask question there. I'm a beginner myself. One thing you'll discover soon enough is that json.api is extremely opinionated...

I'm not sure if the file is huge the second iteration, or if it doubles in size each iteration until reaching some limit

I just realized I was running an older version (6.8.0) checking if this is still an issue

Yes, still an issue in the latest.

@DanielThomas fixGradleLint completely ravaged my project, I don't have time to figure out why. I just want to know which dependencies are unused

@JamesHenry the Nx backend completely fails to determine topological sort in my project and just runs in lexical order for some reason, quite frustrating

I don't use docker-in-docker to build, just to run other CLI containers. Like running different containerized image transformers on a shared folder. All the alternatives mentioned are for build servers...