Brandon Wallace

Results 13 comments of Brandon Wallace

I'm loving react-router 4, so much easier to create route-specific rendering in different areas of the page. Though I'll admit it seems at odds with the way this repo implements...

@amangeot I don't use async module loading so I just removed all of that code as part of moving to router 4.

yes that is what I meant by not using async module loading - I load all of my components at the start of the app. Check out [async-react-components](https://www.npmjs.com/package/async-react-component) for a...

That doesn't work. It rejects the promise with the fetch function as the rejection value: ```es6 function myFetch(...args) { if (args.length === 0) { console.log(" :( "); } return fetch(...args);...

I'd also love to see this merged/published.

I've encountered this as well. My workaround is to add this typings file to my project ```typescript // src/@types/rxjs-using.d.ts import type { Observable, ObservableInput, ObservedValueOf, Unsubscribable } from "rxjs" declare...

I checked how Travis-CI badges work for private repos. The answer is they embed an auth token in the image url so that there isn't a dependency on a session:...

I suspect it is the first argument to `MakeCallback`. You call some function to get the global context _at the time you are calling back_ and so might be capturing...

ah yes it is the 2nd argument I meant to say. Maybe you need to capture that global variable value at the start of eval() in order to capture the"current...

I had to find the pull request to [see](https://github.com/hashicorp/terraform-provider-aws/pull/28940/files#diff-53b30435f4c74f84107176ec8bf52a6b4d6b05b1bb761569dcdbaac4a2d663a7R526) how to use this attribute. It's unusual way to specify multiple items (instead of just being an array). ```hcl remove_headers_config {...