Marco Bambini
Marco Bambini
Current import statement is a static operation performed at compile time, there is no runtime import statement in current version. When you write: `import "file1.gravity"` what happens under the hood...
The launchFindCertificateIDsTaskCompletion is very slow because it executes a command line shell. This method can be replaced by a much faster native implementation: ```objc + (void)launchFindCertificateIDsTaskCompletion:(NYCmdToolCompletion)completion { NSMutableDictionary *query =...
Thanks for this very well written library! In the `char* bintob64( char* dest, void const* src, size_t size );` API, can you please specify how big `dest` should be (starting...
I noticed no replies in the Issues and no merges in the Pull requests. I wondering if this project is still supported and maintained. If not I'd like to maintain...
@danielebriggi has already implemented the pub/sub in node.js with https://github.com/sqlitecloud/sqlitecloud-js/commit/cf44c29a13decc47cc7e33c653fa9d8b677da9d2 We also need to implement it with the browser version using websocket (it will talk directly to the gateway and...
I wrote a very simple C example: ```c struct bark_context_params ctx_params = bark_context_default_params(); struct bark_context *bctx = bark_load_model(model_path, ctx_params, 0); if (!bctx) { fprintf(stderr, "%s: Could not load model\n", __func__);...