David Runger

Results 6 issues of David Runger

Someone not familiar with time complexity might see that this spec is passing and assume that their algorithm is less than O(n^2), when in fact the algorithm might be O(n^2)...

This change aims to fix 5 specs that are currently failing consistently on `main` and 2 specs that are currently flaking fairly frequently. The 5 consistent spec failures can be...

Currently on `main`, [focus-related events](https://github.com/rubycdp/cuprite/blob/503179f8f210c9d431f7f62bc20a68812cffd0e3/lib/capybara/cuprite/javascripts/index.js#L6) (blur, focus, focusin, and focusout) create a JavaScript `Event` object. However, as can be seen by clicking into and out of the input in [this...

Fixes deivid-rodriguez/byebug#851 The following warning is printed to stderr when using byebug on Ruby 3.3.5: > /home/david/.rbenv/versions/3.3.5/lib/ruby/3.3.0/reline.rb:9: warning: fiddle was loaded from the standard library, but will no longer be...

## Problem description A warning is printed to stderr when using byebug on Ruby 3.3.5: > /home/david/.rbenv/versions/3.3.5/lib/ruby/3.3.0/reline.rb:9: warning: fiddle was loaded from the standard library, but will no longer be...

Per comment [here][1], calling `ActiveRecord::Base.connection` is soft-deprecated, so this change uses `with_connection`, instead. [1]: https://github.com/rails/rails/blob/v7.2.1/activerecord/lib/active_record/connection_handling.rb#L259