Caio Almeida

Results 28 comments of Caio Almeida

Thanks, I want to experiment with that a bit tomorrow 😄

I added a GraphQL layer to the application. Now `npm run start` will start a GraphQL server at http://localhost:4000/graphql and a UI at http://localhost:4000/playground. In order to test, I implemented...

I'll work on a lib that auto-generates basic resolvers (list, get by id, create, update and delete) for `typeorm` entities.

Hello! If I just send the binary to you, it won't work, because it's platform-specific. Try to compile the code yourself. Just run the command `make` and the binary will...

Try to install the package `g++-multilib` or `libc6-dev`

Looks like `multilib` was installed and the problem is not with OpenCV. Try `apt-get install libopencv-contrib-dev`.

Thanks for using it and glad that it was useful. How are you doing the recognition? Binarizing two images and comparing them in a pixel-by-pixel basis?

For the iOS stuff, it's better if @Gustash can advise, please

Depends on the app that is sharing the URL, if it includes extra data besides the URL or not. You can check if `Intent.EXTRA_SUBJECT` is set.

You need to modify the module anyway. You should check if the title is in `Intent.EXTRA_SUBJECT`, around here: https://github.com/meedan/react-native-share-menu/blob/master/android/src/main/java/com/meedan/ShareMenuModule.java#L54, by adding a line like `String title = intent.getStringExtra(Intent.EXTRA_SUBJECT);`. Then you...