MrHubble
MrHubble
Unfortunately I can't replicate it off of Heroku. If it helps I changed the job name from `CalculateAllVehicleServiceMetricValuesJob` to `CalculateAllServiceMetricsJob`. I'm fine if we just close this issue. I thought...
I'm currently using js-xlsx to convert excel files to json but am running into memory issues with larger files (row count wise). Before converting I use js-xlsx to ensure there...
@mehmetmucahitnet is this still an issue for you?
@SaimonL is your approach still working for you? As your approach involves manually downloading every new version, it seems using a package manager may be the easier path where possible....
@note89 @agrass did you figure out how to upload an image in base64 format? If yes, could you please share your solution? Thanks.
@benjreinhart answers on Stack Overflow suggest using `Buffer` and then uploading the file with the S3 plugin, ie: ```` buf = new Buffer(req.body.imageBinary.replace(/^data:image\/\w+;base64,/, ""),'base64') var data = { Key: req.body.userId,...
As an update, I believe S3 `POST` requires a `file` object, whereas S3 `PUT` does not. I have unsuccessfully tried converting the base64 format to a file object to use...
I ended up with a working solution by using `aws-sdk` instead: ````js const Buffer = global.Buffer || require('buffer').Buffer; var AWS = require('aws-sdk/dist/aws-sdk-react-native'); AWS.config.update({ accessKeyId: myKeyId, secretAccessKey: mySecretKey, region: myRegion })...
@bdesouza I was using a [signature capture component](https://github.com/RepairShopr/react-native-signature-capture) which returned a Base64 Encoded String. That component doesn't sound like it would be any help for you with audio.
@benjreinhart Thanks for creating `react-native-aws3` in the first place. It has helped me immensely with my first React Native app. I'm happy to help with closing stale issues and other...