6 Matching Annotations
- May 2024
-
www.youtube.com www.youtube.com
-
Smith Corona 5 Series Typewriter Keyboard Adjustment for Lighter Touch Silent Super by [[Phoenix Typewriter]]
-
-
www.youtube.com www.youtube.com
- Sep 2022
-
www.historyofinformation.com www.historyofinformation.com
-
Artykuł przedstawia historię idei Memeksu, autorstwa Vannevara Busha. Autor przedstawia także informacje na temat różnych wydań jego tekstu na ten temat.
W tekście znajdują się także informacje na temat maszyny Rapid Selector, autorstwa Ralpha R. Shawa, powstałej na tym, co pisał Emmanuel Goldberg, który z kolei inspirował się pracą Busha.
-
- Dec 2018
-
localhost:8008 localhost:8008
-
关系选择器
- 后代选择器 - adjacent -
a b
- 子代选择器 - children -
a > b
- 兄弟选择器 - sibling -
a ~ b
- 相邻兄弟选择器 - adjacent sibling -
a + b
重要:关系选择器从右向左解析,因此要注意选择的边界
- 后代选择器 - adjacent -
-
- Jul 2018
-
github.com github.com
-
const shopItemsSelector = state => state.shop.items const taxPercentSelector = state => state.shop.taxPercent
This is a selector
-
const subtotalSelector = createSelector( shopItemsSelector, items => items.reduce((acc, item) => acc + item.value, 0) )
This is a memoized selector. items.reduce will be evaluated during the first call. Any subsequent call with the same parameters will return the result without computing items.reduce.
Tags
Annotators
URL
-