Ross Kaffenberger

Results 18 comments of Ross Kaffenberger

Building on imanel's approach with the fast_xor gem with some fixes and test cases: https://gist.github.com/1004242 Results below for n = 1000. ``` ruby 1.8.7 (2011-02-18 patchlevel 334) [i686-darwin10.6.0], MBARI 0x6770,...

I've had luck reaching out to @zaru via twitter in the past https://twitter.com/zaru

@mmmries Thanks! Yes please feel free to put up a PR.

@artinboghosian Thank you for your pull request and your comments. What are you using to measure performance? It might be helpful to demonstrate the improvements using something like ruby/benchmark.

My understanding is that Ruby 3.1 support was added to Rails 7.0.1 which montrose 0.13.0 supports officially https://rubyonrails.org/2022/1/6/Rails-7-0-1-has-been-released

@joaofnds It's not actively being worked on but remains a feature I would like to have so I would welcome a PR to add support.

Thank you for the PR! I like the idea of implementing `#==` for Schedule and Recurrence. I don't think we will equate with Array and Hash. Callers can still cast...

Yes, I misspoke about the import. It is the dynamic import that webpack can't process at compile time even though the module isn't requested until runtime. I know react-component-rails is...

Version detection could be another option. Something like: ```diff private loadReactDOMClient() { return new Promise((resolve) => { + const [reactMajorVersion] = React.version && React.version.split('.') || '0'; + if (parseInt(reactMajorVersion, 10)...

@illinixc The compiled serviceworker asset does not appear to be on your server. If you expect the file to be there, then make sure you've added the serviceworker asset tot...