Lukas Siemon

Results 50 issues of Lukas Siemon

- dev / master branch (consider using [gally](https://github.com/loopmediagroup/gally)) - consider using [js-gardener](https://github.com/blackflux/js-gardener) (or consider all the things it does and the improvements it brings) Example of a repo that enforces...

Discussion can be found here: https://github.com/shevek/parallelgzip/issues/8

I'm currently working on parallelizing this in my own fork. Do you have any advice or resources to share? Didn't get very far unfortunately. How do you detect how many...

https://github.com/shevek/parallelgzip/blob/de135ec772d763be7d31f13af132bc8cb944140f/src/main/java/org/anarres/parallelgzip/ParallelGZIPOutputStream.java#L234-L239 How about ```java block = freeBlock == null ? new Block() : freeBlock; freeBlock = null; ``` Shorter and more understandable. Also the first throw exception is unnecessary. Created...

We're currently thinking about how to use this plugin and ensure that the compiled handlers still pass our tests. We could use the `sls package` command, however we have the...

I've tried to configure this to run with [flow](https://babeljs.io/docs/plugins/preset-flow/) and somehow it doesn't work. Anyone had success with this? I'm basically following the instructions for `Running ES2015+ tests with ES2015+...

I went ahead and did a very raw version here (using jimp). Thanks for the port, it was a good starting point! ```js /* Extended from https://github.com/w8r/bresenham-zingl/blob/master/src/line.js */ module.exports.circle =...