Gleb Mazovetskiy
Gleb Mazovetskiy
render.com looks interesting. I don't have access to the thredded.org domain though, I think only @jayroh does
Yeah this is meant as an example if somebody else wants to get on the case
The commit (https://github.com/whitequark/parser/commit/547d731adef312dd781472c600d38c5823635ac0) says it was introduced in v3.0.3.0:  A quadratic loop to detect duplicate keys is the likely root cause. Rails translation files can have thousands of keys...
@mgreter Can you merge outstanding PRs? I think we may need a new libsass release before the new parser backport is in-place (due to bugs such as https://github.com/sass/sassc-ruby/issues/149 and https://github.com/sass/libsass/issues/2988)
A repro test case for `test/assignment_combinations.cpp`: ```c++ TEST_CASE_MAP("assignment_combinations_11", int, std::string) { map_t m; m[1] = "abc"; m[2] = m[1]; REQUIRE(m[1] == "abc"); REQUIRE(m[2] == "abc"); } ```
Let me rewrite the failing example above to an equivalent order of operations: ```c++ std::string &a = m[1]; // evaluate right-hand side std::string &b = m[2]; // evaluate left-hand side...
If you guys do that, `angularjs-idea` would be a more descriptive name
The handler is called twice because Turbolinks 5, unlike the Classic one, calls `turbolinks:load` on the initial page load as well. Additionally, `turbolinks:load` is also called on restores from cache....
Oh, we should probably escape these "interpolations". They're meant to be there verbatim. We'll also need to adjust the regex here to not match escaped interpolations: https://github.com/glebm/i18n-tasks/blob/56f378ac102b18c7de2cbcb69cdf2483b0d9f48a/lib/i18n/tasks/interpolations.rb#L8 Interpolations can be...
Thanks for testing @mjankowski and @tagliala! Released v1.0.14 Thanks everyone!