Francesco Cameli

Results 80 issues of Francesco Cameli

Hello! Is it in the plans to add support for `tar.xz` files? Thanks a lot and keep up the good work :)

Hello, Following the instructions for building the externals from source, I succeeded in building a 64 bit py object for Max. The only issue I am encountering is with the...

Hello there! What is the state of the signatureHelp feature? Are there any forks/branches around that are dealing with it that I can help out with? Thanks :)

Simply add `-msse3` to `amd64` builds

``` struct Something: a = PI b = a * 3 ``` `b = a * 3` is currently not supported. Perhaps `b float = a * 3` should be.

``` params: a { [0, 1, 2, 3], 0, 4 } ``` The size of these arrays would be of course fixed.

No need to have `nim` as a dependency anymore: building the `nim` compiler inside of `omni`.

This will allow to pre-bundle the zig compiler together with the omni executable, without the need from the user to rely on external compilers. Moreover, `zig cc` is more convenient...

major

1) Remove unnecessary casting in the typed code (check #114) 2) Optimize `Data` and `Buffer` access (check #120) 3) `sample` loop unrolling 4) Optimize `math` functions (`safemod`, `safediv`, etc...) 5)...

static compilation of tables ```nim #sine table table sineTable 1024: return sin((i / 1023.0) * twopi) ```