Lewis Liu
Lewis Liu
This might not be necessary if we're willing to switch to doing OAuth in a popup window for browsers. We're already doing this for Cordova through InAppBrowser, and the Cordova...
Oh my bad. I was only thinking of history in terms of the back button on the current tab, but I just realized you guys are talking about the browser...
Thanks for the follow up. The main concern I have about implementing this on my own is how best to handle synchronization between clients of conflicting versions. I think it...
Seems like subscriptions might be possible now with the introduction of durable objects? https://blog.cloudflare.com/introducing-workers-durable-objects/ Would love to see this starter extended with subscriptions, or at least some guidelines on best...
I've been researching config formats lately, and so far hjson is the front-runner for supporting comment-preserving edits in its node implementation. Haven't found anything else yet that satisfies this requirement...
Hi @jayco apologies for the late follow up. `--security-opt seccomp=seccomp_profile.json` is an arg to docker itself, not to the program running in the container. See https://docs.docker.com/engine/security/seccomp/ It looks like the...
@trivikr As of time of writing, this issue has the highest number of 👍s by a fairly large margin: https://github.com/aws/aws-sdk-js-v3/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc Great work deno community! 🎉 I can't speak to how...
Great! To be honest I'm not a fan of the `css` prop name in `glamorous` either. If we don't mind diverging from the `glamorous` API I'd totally be in favor...
> Note: another way to accomplish what you're after would be: > > ```js > const BigText = glamorous.text({fontSize: 20}) > > Hi > ``` I'm fairly new to react-native...
Ah that makes a ton of sense. For some reason I had the impression that you could only use `style` in React Native with the stylesheet references from the props...