Marc-André Lafortune
Marc-André Lafortune
See http://stackoverflow.com/questions/28070155/featherlight-loading-msg-before-getting-ajax-data
If the image is small, the gallery arrows are too big for the highlight areas. Easy way to test is change an image url in `src/gallery.html` for `../test/fixtures/photo.jpeg`.
Should we consider supporting IE8- only when used with `modernizr` or similar? For example, we could use `` for featherlights, which would make it better semantically and help alleviate #25
This cop was created due to [a mistake in the microbenchmark](https://github.com/rubocop-hq/rubocop-performance/pull/175#issuecomment-731892717). I would like to repeat: if there is no fundamental reason why something is slower, then... it might not...
The following code has 3 anti-patterns: ```ruby def self.tokens(pattern) pattern.scan(TOKEN).reject { |token| token =~ /\A#{SEPARATORS}\Z/ } end ``` This issue is to identify that `token =~ regexp`. I thought we...
```ruby # Bad: CONST = %i[a b c].freeze # or CONST = [1, 2, 3].freeze # with uses like: case foo when *CONST # or CONST.include?(...) # => CONST should...
The test suite of https://github.com/rubocop/rubocop-ast runs in ~4 seconds in Ruby TruffleRuby takes over 2 minutes. TruffleRuby-head in 3 successive runs took [3m26s](https://github.com/rubocop/rubocop-ast/runs/2062457261?check_suite_focus=true), failed (sorry no link) after 10 minutes...
In particular, selecting arguments by ID/class is [explicitly recommended](https://docs.cypress.io/guides/references/best-practices#Selecting-Elements) to be used only "sparingly", yet [many](https://docs.cypress.io/guides/overview/why-cypress#End-to-end) [examples](https://docs.cypress.io/guides/getting-started/writing-your-first-test#Step-4-Make-an-assertion), including the [best practices](https://docs.cypress.io/guides/references/best-practices#1-Combine-into-one-test) use those. Docs should follow best practices and *always*...
Sider tests look nice, but the current codebase should pass its tests... For example I modified a line containing `arg0` and got an error because of that... It seems to...
`avx2` is not supported by all processors (for example on my [Xeon W3670](https://ark.intel.com/content/www/us/en/ark/products/47918/intel-xeon-processor-w3670-12m-cache-3-20-ghz-4-80-gt-s-intel-qpi.html)) and `jaxon` will systematically crash on these systems. Would it be possible to have `jaxon` be compatible...