90 Matching Annotations
  1. Jul 2025
  2. Jun 2025
  3. Apr 2025
  4. Mar 2025
  5. Aug 2024
  6. Oct 2023
  7. Aug 2023
    1. Other elements used in this document include code, dfn, em, and p for denoting inline text comprising a snippet of code, a defined term that is not an abbreviation, inline text that should be emphasized, and a paragraph, respectively.

      I failed to cover the use of ul and li tags.`

    2. between style tags and not in a script element

      Note that I bungled rule in the code block that precedes it, so it looks like it's in hybrid style/script block. Spot the error:

        body script[type="text/plain+css"]::before {
          content: '\3Cstyle type="text/plain+css"\3E';
        }
      
  8. Jul 2023
  9. Jan 2023
  10. Nov 2022
    1. ∫x01(a−x)(b−x)dx=1b−a(ln1a−x−ln1b−x)

      This line seems incorrect: $$\int_0^x{\frac{1}{(a-x)(b-x)}\,dx}$$ $$=\left[\frac{1}{b-a}\left(\ln{\frac{1}{a-x}}-\ln{\frac{1}{b-x}}\right)\right]_0^x$$ $$=\frac{1}{b-a}\left(\ln{\frac{a}{a-x}}-\ln{\frac{b}{b-x}}\right)$$

  11. Oct 2022
  12. Sep 2022
  13. Aug 2022
  14. Jun 2022
  15. buckyworld.files.wordpress.com buckyworld.files.wordpress.com
    1. enormous an ounce of energy;

      I can't parse this. Ravasio says any typo is probably her fault. The best I can come up with is "an enormous amount of energy", which doesn't make sense as a typo, but does sort of sound the same.

  16. May 2022
  17. Apr 2022
  18. Mar 2022
  19. Feb 2022
  20. Jan 2022
  21. Dec 2021
  22. Nov 2021
    1. Y. Bar-Hillel, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorR. Carnap, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorE. C. Cherry, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorE. Garfield, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorD. W. King, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorF. W. Lancaster, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorJ. C. R. Licklider, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorD. M. Mackay, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorJ. W. Perry, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorD. J. De S. Price, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorG. Salton, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorC. Shannon, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorM. Taube, Director of Research Institute for Scientific Information 132 High Street Uxbridge, Middlesex England UB8 1DDSearch for more papers by this authorB. C. Vickery,

      These are all wrong. Cawkwell is the only author for this. The other names come from a list of others appearing in Cawkwell's letter (a list of the most cited authors, excluding self citations).

  23. Oct 2021
  24. Sep 2021
  25. Aug 2021
    1. Github Pages' Jekyll

      Jekyll is an independent project from GitHub. GitHub by default supports Jekyll static sites because Jekyll was a popular static site generator in the Ruby community, and the GitHub people were Rubyists.

    Tags

    Annotators

    Tags

    Annotators

  26. Jul 2021
  27. Mar 2021
  28. Nov 2017
    1. Table 1. List of resources currently available as Community Resources and abbreviations used in text.

      The authors apologize for incorrectly identifying the National Mouse Metabolic Phenotyping Centers in Table 1, row 9. We have submitted a correction to PLoS but they have elected not to correct it or formally note it as it does not change the results of the article. But to our. colleagues at MMPC, we are very sorry!

  29. Jul 2017
  30. Apr 2015
    1. Gunnar A. Olsen of the Belmont Electric Corp.

      Gunnar A. Olsen was my uncle. He had his own corporation, the Gunnar A. Olsen corporation. He may have been subcontracted by Belmont Electronic, but he was not part of that company.

  31. Mar 2015
  32. Jan 2015
    1. print d[t] # Prints "5" print d[(1, 2)] # Prints "1" prints "2"

      Those two lines are not what I expect - and my Python interpreter agrees. So perhaps that is a typo? I don't know Python well enough to guess the Levenshtein distance to what was intended here.

      Aha - it's further down - we just need to stick in this initializer first:

      d = {(x, x + 1): x for x in range(10)} # Create a dictionary with tuple keys