Axel Montini
Axel Montini
I'm using these settings (version 0.11.0) ```javascript app.use( sassMiddleware({ src: path.resolve(path.join(__dirname, '..', 'assets', 'sass')), dest: path.resolve(path.join(__dirname, '..', 'public', 'css')), debug: false, indentedSyntax: true, force: false, response: false, }) ); ```...
As an electronics beginner, I wanted to drive some ws2812b's with an SPI pin, not realizing that the only supported format right now is the Motorola one. I was able...
The following code results in an exception. The correct behaviour would be to show the error `missing argument in conversion to A`, as Go does. ```go // crash.gobra package crash...
The type-checker seems to hangs whenever the scientific notation syntax is used (e.g. `1e6`). The following example's verification never terminates. ```go package main const a = 1e1 ``` Logs when...