59 Matching Annotations
  1. Apr 2026
    1. The Prompt API uses the Gemini Nano model in Chrome. While the API is built into Chrome, the model is downloaded separately the first time an origin uses the API.

      大多数人认为内置API应该包含所有必要组件,无需额外下载,但作者明确指出模型需要单独下载。这与人们对'内置'API应该即开即用的普遍认知相悖,暗示用户首次使用时可能会面临显著的下载时间和存储压力。

  2. Feb 2025
  3. Sep 2024
  4. May 2024
  5. Feb 2023
  6. Dec 2022
  7. Nov 2022
  8. Mar 2022
  9. Jun 2021
  10. Feb 2021
  11. Nov 2020
  12. Oct 2020
  13. Sep 2020
  14. Aug 2020
  15. Jul 2020
  16. May 2020
  17. Apr 2020
  18. Mar 2020
  19. Feb 2020
  20. Dec 2019
    1. Superseded by (replacement project): https://github.com/QTodoTxt/QTodoTxt2/


      Before I realized there was a replacement project:

      Blah. Looks good but unmaintained. Too many competing forks.

      Other interesting fork: https://github.com/kmicc/QTodoTxt/tree/dev

      This branch is 17 commits ahead, 201 commits behind QTodoTxt:dev. https://github.com/QTodoTxt/QTodoTxt/compare/master...kmicc:dev https://github.com/kmicc/QTodoTxt/network

  21. Nov 2019
  22. Oct 2019
    1. Try to avoid mucking with native prototypes, including Array.prototype, if you don't know who will be consuming your code (3rd parties, coworkers, yourself at a later date, etc.). There are ways to safely extend prototypes (but not in all browsers) and there are ways to safely consume objects created from extended prototypes, but a better rule of thumb is to follow the Principle of Least Surprise and avoid these practices altogether.