Lewis Diamond

Results 18 comments of Lewis Diamond

It's really worth making it easy to provide an implementation of custom tests. Right now using `t.true(_.isMatch(... ...))` outputs almost pure gibberish. It should only print the difference so it's...

I also have a lot of issues with Dota 2 crashing randomly. I have several coredumps.

CPU ryzen 1700 GPU: rx 570 OS: Arch Linux Same behavior. The game completely freezes and I have to kill the dota2 process to recover. I have tons of dump...

It happens on OpenGL as well, not specific to Vulkan. With `mesa-utils` as well as `vulkan-radeon` and `vulkan-tools`, I tested running using vulkan and saw no crashes (limited sample).

Tested with all the packages listed by @regulator-g and got a few games without crashes but then a game where it crashed literally 10 times. I have a bunch of...

Any updates? Can we just check if the first item is an array? ``` const _middlewares = Array.isArray(middlewares[0]) ? middlewares[0] : middlewares ```

@Runrioter I'm not sure if that's really useful, but you can always add a check that composes them ``` if (Array.isArray(my_middleware_taken_from_input_list)) { middleware = compose(middleware) } ```

With this you get better performance (see below) and support both `compose([m1,m2])` and `compose(m1,m2)`. It passes all the tests but many of them need to be rewritten if you keep...