Sacha Arbonel

Results 50 comments of Sacha Arbonel

Hmm, I honestly don't know but if the plan is to later do it with Flutter or other frameworks you might need the "interfaces" (I don't know TS yet but...

I have the same issue with go-code-check : ``` Finished running tool: /snap/go/3129/bin/go build -i -o /tmp/vscode-govKdVwR/go-code-check github.com/Sach97/gqlgenauth/examples/gqlgen-todos-auth go build net: open /snap/go/3129/pkg/linux_amd64/net.a: read-only file system ``` Edit : @mschneider82...

Some of my research notes for iOS: - [FlacDecoder.m](https://github.com/ap4y/OrigamiEngine/blob/0bbdc3c5344b631e039a67a0aff481746e1aded3/OrigamiEngine/Plugins/FlacDecoder.m) requires [libFLAC](url) - [OpusFileDecoder.m](https://github.com/ap4y/OrigamiEngine/blob/0bbdc3c5344b631e039a67a0aff481746e1aded3/OrigamiEngine/Plugins/OpusFileDecoder.m)

Some of my research notes on the subject. We could make FFI bindings to: "[ASIO](https://www.steinberg.net/en/company/developers.html) is an audio driver protocol by Steinberg. While it is available on multiple operating systems,...

- Someone made a plugin (only Android) [FlutterVisualizers](https://github.com/iamSahdeep/FlutterVisualizers) -And there is this iOS implementation : [DisPlayers-Audio-Visualizers]( https://github.com/agilie/DisPlayers-Audio-Visualizers) written in objective c

I was reading the rxdart doc when I came across this [feature](https://pub.dev/documentation/rxdart/latest/rx/SwitchIfEmptyStreamTransformer-class.html) that could become handy for this feature request

I believe you need a dummy swift method that invokes your rust library because somehow xcode considers them as unused and strip them. For example: https://github.com/brickpop/flutter-rust-ffi/blob/f7b5d399bab542641b67466c31294b106d57bb9e/ios/Classes/SwiftMylibPlugin.swift#L15-L16

Well a possible solution could be : - [Composite types](https://www.postgresql.org/docs/current/static/rowtypes.html) implemented like this in [C](https://www.postgresql.org/docs/10/static/xfunc-c.html#id-1.8.3.12.11) in combination with [Composite arguments](https://www.postgresql.org/docs/10/static/xfunc-c.html#id-1.8.3.12.10) to make a query like that `SELECT (E(inputed_floats)).outCA, (E(inputed_floats)).outB, (E(inputed_floats)).outC...

Ok thank's a lot I thought it could improve on performances to use aggregations

I don't have the necessity for SETOF for the moment in my project but I was searching informations about the subject I found [this](https://blog.2ndquadrant.com/pg-phriday-uptown-func/) and [this]( https://stackoverflow.com/questions/22423958/sql-function-return-type-table-vs-setof-records)