Clément P
Clément P
I can run it, thanks! some remarks: - I think a minimum of information should be added in the readme with a link to the installation files. - The txt...
Sorry, i did close some of my oldest issues. 😕 Is prefix-free dev still active?
I made a Immutable vector library https://github.com/yukulele/Vector.js
Thank, I now use the official release. running `./configure` I get this error: ``` checking for SNDFILE... no configure: error: Package requirements (sndfile) were not met: No package 'sndfile' found...
According to this article https://en.wikipedia.org/wiki/Modulo_operation#Remainder_calculation_for_the_modulo_operation you can use _floored division_ function: ``` javascript modulo(x,y){ return x - y * Math.floor(x / y) } tinycolor(h: modulo(hue, 360), s: 100, l: 50)...
The forms could look like this: container form: * flex-flow * flex-direction row ⯆ * flex-wrap no-wrap ⯆ * place-content * justify-content flex-start ⯆ * align-content flex-start ⯆ * place-items...
> it will require new features getting added to be thought through twice, once with async and another with sync. Not really, because what works in async also works in...