Tapani Saarinen
Tapani Saarinen
Removing `use_frameworks!` from the `podfile` helps, but one of the pods cannot be found anymore. I have basically removed `use_frameworks!` in every other RN version and added it again in...
Looks to me that `hermes_enabled => true` and `use_frameworks! `cannot be used at the same time.
I have this issue too in my Intel Mac. I have never been able to build for iOS with Hermes enabled. 0.70.0 did not change this. ``` Undefined symbols for...
I managed to build for iOS with Hermes enabled with `use_frameworks! :linkage => :static`, but the app crashes at startup: ``` Error: Font failed to load at apply(node_modules/react-native/Libraries/BatchedBridge/NativeModules.js:105:55) at ?...
@avenable8 I have no idea, which ones to set static and which dynamic. I'll just disable Hermes and wait until it and all dependencies are mature enough.
@bcoe Only strings. Giving a Buffer instead of a stream causes a zero length file too.
As a workaround, I implemented my own multipart upload with `binary` transfer encoding using Axios. Just use the google lib to do the authentication and put `res.config.headers.Authorization` to Authorization header....
@Rafahur03 ``` const axios = require('axios'); const { v4: uuidv4 } = require('uuid'); const { google } = require('googleapis'); const drive = google.drive({ version: 'v3', auth }); const res =...
Is the postgresql server executing the queries in parallel or one at a time when using a pipeline? When not using a connection pool, but a single connection, pipelining would...
Would be nice to run multiple queries in parallel with just one connection. Forking in the backend probably would be faster than client opening multiple connections.