Nick Meinhold

Results 22 comments of Nick Meinhold

Just to throw in my 2c - I think the service locator pattern works really well here where we often want global state to cache expensive objects across function invocations,...

I wonder if the [CloudEvents SDK Requirements](https://github.com/cloudevents/spec/blob/v1.0.1/SDK.md) could be helpful? > The intent of this document to describe a minimum set of requirements for new Software Development Kits (SDKs) for...

Hey @jimmyff 🙂 [Here](https://github.com/Adventures-In/on_user_creation_microservice/blob/3f8b2f0ad01cd0c13d34ffa520bce93dfcfc0b79/lib/functions.dart#L21) is a Dart Functions Framework function that triggers when a PubSub message arrives from a Firebase auth trigger I setup at the other end ([here](https://github.com/Adventures-In/publish_new_user_data_firebase_extension) in...

Sorry to hear it's not working for you. I had another look at [the repo](https://github.com/Adventures-In/on_user_creation_microservice) I linked to and I was able to run the cloud function via the `server`...

Hey @jimmyff, happy to try and help! > I've searched in GCP Log Explorer and don't seem to be able to find the request body. Any tips how I could...

Hey @jimmyff, great to hear you're able to move forward - I was going to collect the notes I made while I was working on this stuff into something (hopefully)...

@atreeon I found I had to base64 decode then utf8 decode, ie: `var decodedMessage = utf8.decode(base64.decode(encodedMessageData));`

Hey Michael, thanks for this! I'm on the dev channel for flutter, [email protected] EDIT: I'm going to switch to stable and try - same issue for me when I switch...

Sweet thanks Michael! I followed your thought and added a check for `status` already being `STARTED` to `_waitForStart`, which stopped the exception and the package still works. My plan at...

Thanks Michael, I had a go at writing a test but I haven't really worked with sockets before and I got a bit lost (even with plenty of your examples...