NIXN

Results 11 comments of NIXN

I went with [this lib](https://github.com/tolu360/react-native-google-places) and have done all manually as explained in the readme. #hint: For iOS you have to create an extra Google Maps API key besides the...

@stergosjk we have the same problem on our end, really confusing and chaotic. @swaathee How should I implement the fix #170 when my implementation is not providing verisions? https://docs.microsoft.com/en-us/clarity/clarity-setup ```...

If you can live with "seeing default placeholder images always first" then go for this.. ```java Utility.getProfileImageFromUser(userID).getMetadata().addOnSuccessListener(new OnSuccessListener() { @Override public void onSuccess(StorageMetadata storageMetadata) { GlideApp.with(parentActivity) .load(Utility.getProfileImageFromUser(userID)) .signature(new MediaStoreSignature("", storageMetadata.getCreationTimeMillis(),...

Would be really nice if this feature would come out of the box as it is kind of expected.

Actually `url` is not combinable with `proxy` and will result in not setting the proxy accordingly. I had to evade by creating the browser only with `url` option and applying...

same here using compose ``` tooljet: image: tooljet/tooljet-ce:latest container_name: ${COMPOSE_PROJECT_NAME}_tooljet restart: unless-stopped environment: - DATABASE_URL=postgres://${POSTGRES_USERNAME}:${POSTGRES_PASSWORD}@postgres:5432/tooljet?sslmode=disable - SECRET_KEY_BASE=57a7664ae2ef892d7d0632201f64c149fa5f040b5234a2d7670969ff06d185f9 #32 byte hex - LOCKBOX_MASTER_KEY=932777d78044641b5208a58429e52f363174c2991571776e778b795413005611 #64 byte hex ports: - '6000:80' networks: -...

@adamsoffer I got it working like this **withApolloClient.tsx** ``` import withApollo from "next-with-apollo"; import ApolloClient, { InMemoryCache } from "apollo-boost"; const GRAPHQL_ENDPOINT_DEVELOPMENT = "http://localhost:4000"; const GRAPHQL_ENDPOINT_PRODUCTION = "http://ALIAS.USER.now.sh/API_ENDPOINT"; const GRAPHQL_ENDPOINT...

@adamsoffer here is the updated interface for **_app.tsx** ``` import { ApolloClient } from "apollo-boost"; interface Props { apollo: ApolloClient; } ```

**docker-compose.yml** ``` ... browserless: image: browserless/chrome:latest container_name: ${COMPOSE_PROJECT_NAME}_browserless restart: always environment: - PORT=4000 ports: - '4000:4000' ``` **.env** ``` BROWSERLESS_URL=http://localhost:4000/ ``` **test/helpers/cuprite_helper.rb** ``` # frozen_string_literal: true require 'capybara/cuprite' Capybara.register_driver(:browserless) do...