Fernando Mumbach
Fernando Mumbach
I've had the same problem (dynamic SSID) and this is my temporary solution: ```cpp String dynamicThingName = "foobar"; auto iotThingName = iotWebConf.getThingName(); strncpy(iotThingName, dynamicThingName.c_str(), IOTWEBCONF_WORD_LEN); iotWebConf.init(); ```
I'd like to thank you for building such an awesome project. I've been using it since today, so my comment might not be as useful. 1. Large lists of items....
@wmertens the heights in my list are variable. I have it like this: ``` javascript {({height, width}) => ( { const marker = markers[index]; if (selectedMarker === marker._id) { return...
Oh, I am not sure how to do that. You need to calculate how much rows are visible? Maybe an option to pass how many items are currently rendered would...
any update? did you find a workaround?
We could use [meteor-apollo-accounts](https://github.com/orionsoft/meteor-apollo-accounts) It binds meteor's account system methods to mutations/resolvers, so we can auth/logout/ask for email confirmation/confirm the email/... from graphql itself. I've been mixing vulcan with apollo-accounts...
@justinr1234 the idea is simple, IMO: the only reason we have minimongo and DDP right now on the client is for the accounts system. By dropping DDP and using only...
I forgot to add: Removing DDP, minimongo and blaze makes sense because on vulcan we don't use meteor's internals. The [meteor's way](https://www.meteor.com/tutorials/react/adding-user-accounts) to add accounts is to wrap blaze around...
@SachaG I'm also in favor of 3, because I don't see `graphql-loader` mixing very well with how Vulcan works. ------ > 1. use graphql-loader everywhere in Vulcan and then use...
I solved this issue by invoking Ground.Collection(Collection) **after** the template has loaded and everything is rendered. iron router's waitOn was causing my app to get stuck and be unusable while...