Thom Nichols

Results 83 comments of Thom Nichols

I think I mostly have CI running correctly. I have the workflows running on another branch in a private repo and I believe it's working or very close to. For...

Ok I have the build and test running on all platforms, without hardcoding an exceptionally long timeout - only during the workflow. Given that it all passes now, it would...

I'm seeing this issue, I originally commended on rackt/react-router#1977 thinking it was in react-router but it actually seems it's specific to redux-router. Here's a screenshot of what I see in...

I moved away from use of `onEnter` to `componentWillMount` & `componentWillUpdate` in my page components which circumvented this issue. I don't know if `onEnter` still has an issue or not.

In the nicest way possible, I hate that any project that uses bunyan, pulls this in and always causes headaches. bunyan seems to insist that it's not an issue: https://github.com/trentm/node-bunyan/issues?utf8=%E2%9C%93&q=is%3Aissue+dtrace...

I'm seeing a similar issue. I have a mustache template that looks like this: ``` script( type='text/template', id='heartbeat-row-template') tr td {{ instance_id }} td {{ date }} ``` ...which BTW,...

I've been able to semi-work around this by redefining the token delimiters that mustache.js uses. Doing this: `Mustache.tags = ['{','}']` lets me do this: ``` script( type='text/template', id='row-template') tr td...

Let me know if there's anything else that you need "transferred" - although I think most everything you can get granted permission from Codehaus. Do you want the password to...

@justin-lau @duereg is there an open PR to have those changes to istanbul merged upstream?

try this: ``` rbenv_extra_depends: - "{{ 'libjemalloc1' if ansible_distribution_release == 'bionic' else 'libjemalloc2' }}" - libjemalloc-dev ```