58 Matching Annotations
  1. Feb 2025
  2. Sep 2024
  3. May 2024
  4. Feb 2023
  5. Dec 2022
  6. Nov 2022
  7. Mar 2022
  8. Jun 2021
  9. Feb 2021
  10. Nov 2020
  11. Oct 2020
  12. Sep 2020
  13. Aug 2020
  14. Jul 2020
  15. May 2020
  16. Apr 2020
  17. Mar 2020
  18. Feb 2020
  19. 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

  20. Nov 2019
  21. 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.