获得徽章 18
- Using the correct thing or using the thing correctly.
The Human Side of Haskell • Josh Godsiff • YOW! 2018评论点赞 - useDeferredValue 有点像手动降低某些 UI 优先级的一种操作,就是这些使用 deferredValue 的 UI 组件,我不着急看到效果,当没有其他更高优先级的渲染执行的时候,react 再去执行这些 UI 的渲染,同时这些 UI 的渲染会保持不变,直到新的数据出现。6点赞
- Typescript caches the results of the evaluated relationship between interfaces, like whether one interface extends another or if two interfaces are compatible. This approach improves the overall performance when the same relationship is referenced in the future.
In contrast, when working with intersections, TypeScript does not cache these relationships. Every time a type intersection is used, TypeScript has to re-evaluate the entire intersection which can lead to efficiency concerns.
For these reasons, it is advisable to use interface extends instead of relying on type intersections.blog.logrocket.com
展开评论点赞 - A tree is another way of a line, actually it is expanded from a line. While a line is another way of a tree, and it is a tree being folded to be a line.评论点赞
- Computer scienceis about the application of imagination, or the other way around, the imagination of application. Say it engineering.
Physics and chemistry are about application.
Mathematics is about imagination.展开评论点赞