jasonparallel

Results 8 comments of jasonparallel

The counter for the number of scanners is not thread safe. My PR fixes this https://github.com/gliwka/hyperscan-java/pull/141

This is not hard to implement by sorting the item array on itemChangeCallback based on the x and y values but would probably make sense for the library to just...

Would using padding around the grid items vs margin be an option?

I don't think this is a gridster question. You control the content in the item. Use css to make it behave how you want. overflow:hidden? https://www.w3schools.com/cssref/pr_pos_overflow.asp

Added pull request for defaultValue https://github.com/kongchen/api-doc-template/pull/3

GLIBC_2.18 ticket for chromium https://bugs.chromium.org/p/chromium/issues/detail?id=1253967&q=glibc&can=2

Really cool. Should sandboxing work in the container? @aslushnikov thanks for pointing this our over on https://github.com/microsoft/playwright/issues/9199

You can manage the connection yourself in Java ` page.route("**/*", route -> { FulfillOptions responseData = customJavaRequest(route.request()); route.fulfill(responseData); }); `