Benson Trent

Results 14 comments of Benson Trent

I did a lot of reading on the SameSite warnings and somehow the basics had eluded me. The clarity you've given will help me authoritatively explain the warnings to my...

The butterflow readme for windows setup doesn't include instructions to set up the 32 bit key at [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Khronos\OpenCL\Vendors] "C:\Windows\System32\nvopencl32.dll"=dword:00000000 I added the 64-bit key, but Butterflow would not work without...

**A caveat: This solution is less secure, bad practice, don't do this.** I had a duplicate error message--I'm behind a corporate VPN/firewall. I was able to resolve this issue by...

#615 Added information on .typingsrc files to faq and added upgrade instruction for .tsdrc to .typings.rc

in your `.typingsrc` file set your registry url to use http rather than https. Setting a proxy sets both httpProxy and httpProxy. .typingsrc ``` ini proxy=http://proxy:9999 rejectUnauthorized=false registryURL=http://api.typings.org/ ``` The...

While you're now able to connect to api.typings.org (via http), it appears you're unable to connect to raw.githubusercontent (via http**s**). I had the same issue before I [adding a github...

I think I have a solution. 1. Take the url from your error code. `https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/f9117cf5dd3420b4fcb4342bf287945695a953a4/react/react.d.ts` 2. Remove the `s` from https. `http://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/f9117cf5dd3420b4fcb4342bf287945695a953a4/react/react.d.ts` 3. Prefix the name of the package to...

@blakeembrey @magwalls's issue could be best addressed with a modification to the way `rejectUnauthorized` works. The goal being that any call to a `https` url uses `http` instead? Or a...

You can fix this issue by changing line 215 in app.js from ` .httpsCallable('ext-firestore-stripe-subscriptions-createPortalLink');` to ` .httpsCallable('ext-firestore-stripe-payments-createPortalLink');` See [https://github.com/stripe-samples/firebase-subscription-payments/pull/47#issuecomment-1312672555](https://github.com/stripe-samples/firebase-subscription-payments/pull/47#issuecomment-1312672555)