648 Matching Annotations
  1. Nov 2021
  2. Oct 2021
  3. Sep 2021
  4. Aug 2021
  5. Jul 2021
  6. Jun 2021
  7. May 2021
  8. Apr 2021
  9. Mar 2021
  10. Feb 2021
  11. Jan 2021
    1. I've reproduced, in a very simple way, what I would like it to do: https://svelte.dev/repl/2b0b7837e3ba44b5aba8d7e774094bb4?version=3.19.1

      This is the same URL as the original example given in issue description.

      I'm guessing what happened is they started with that one, made some changes, and then I think they must have forgot to save their modified REPL (which would have generated a new, unique URL).

  12. Dec 2020
  13. Nov 2020
  14. Oct 2020
    1. “"

      Which character is this referring to exactly?

      It looks like the empty string, which wouldn't make sense.

      https://www.postgresql.org/docs/13/functions-matching.html only lists these 2:

      If pattern does not contain percent signs or underscores, then the pattern only represents the string itself; in that case LIKE acts like the equals operator. An underscore (_) in pattern stands for (matches) any single character; a percent sign (%) matches any sequence of zero or more characters.

  15. Sep 2020
    1. Example 13.1 Estimate the grit channel length necessary if the maximum depth of flow in the channel is likely to be 1.7 m. Assume grit settling velocity = 10 cm/s, and horizontal flow velocity = 30 cm/s. Use scale-up factor = 5.0.

      I think the answer should be 25.5 m. Typo.

  16. Aug 2020
  17. Jul 2020
  18. Jun 2020
  19. May 2020
    1. foo?.bar!.baz;

      I think they meant:

      (foo?.bar)!.baz;

      because I think this is supposed to illustrate:

      Users who want to revert to the old behavior can add explicit parentheses around the left side of the ! operator.

  20. Apr 2020
    1. let page = document.getElementById('buttonDiv');

      duplication: As a result of duplication, they somehow ended with this line being present here but not in the downloadable file which is supposed to have the same contents as the snippet shown here.

      They should have updated their static page generation script/process so that their main document referenced options.js and their generator literally included the contents of the referenced file inline. Then there is no chance of the contents of the inline snippet and downloaded snippet diverging and not matching.

      Evidently, however, the contents of each are managed independently (in other words, there is duplication), easily leading to the contents diverging, as they did.

  21. Feb 2020
  22. Jan 2020
  23. Dec 2019
  24. Nov 2019
    1. ref={props.innerRef}

      Shouldn't this be ref={ref}? So that ref is actually used and the ref setter function in RefForm that sets refs actually gets passed the ref from the input?

  25. Sep 2019
  26. Aug 2019
  27. Jul 2019
  28. Jun 2019
  29. May 2019
  30. Apr 2019
  31. Mar 2019
  32. Feb 2019
  33. Jan 2019
  34. Dec 2018
  35. Nov 2018
    1. At left, an image with surface depth cues at 100% and interior depth cues at 50%. The image on the right has surface depth cues at 100% and interior depth cues at 50%.

      According to the description both images have surface depth cues at 100% and interior depth cues at 50%. It's clearly a typo.

  36. Oct 2018