Mark Derricutt

Results 140 comments of Mark Derricutt

> This data gets stripped from uploaded media, so there would be need to be a process to extract it first and make it available to the frontend somehow 🤔...

On Sat, Aug 20, 2016 at 5:47 AM, Peter van der Does < [email protected]> wrote: > Master -> develop -> feature -> develop -> release -> master -> develop, >...

This sounds like a generic problem of using git describe for your version numbers, which to me feels quite dangerous as it only counts that N-commits-since-tag were made, not WHAT...

Auto-detect would be best - if the repo in question has `main`, sure - use it, but if it has `master` - use that instead.

@lazaroclapp all good - things get away with us at times. I'll recheck our code where I was hitting it, and will try with 0.5.0 and report back. If I...

Oh yes make this so! This would be great.

I have a similar issue on an Intel Mac running Monterey - after wakeup - eqMac is just beachballing.

@clinuxrulz The purest in me says "oh hai, you want curried constructors?" of some description. ``` java public static Function rectangle(double width) { return height -> Shapes.rectangle(width, height); } public...

@clinuxrulz AFAIK the first immediately returned lambda will be compiled as a static/singleton since it doesn't close over anything, but since the subsequent instances close over the earlier result, each...

@nglorioso The immediate one that comes to mind is.... well, tests via the likes of pax-test, which deploys junit and your tests as an OSGi bundle into a container, and...