fe icon indicating copy to clipboard operation
fe copied to clipboard

前端热门文章阅读

Results 9 fe issues
Sort by recently updated
recently updated
newest added

**文章**:[使用 CSS overscroll-behavior 控制滚动行为:自定义下拉刷新和溢出效果](https://github.com/dev-reading/fe/tree/master/articles/2017-11-15-overscroll-behavior.md) **音频**:无 **视频**:无 ------ **原文**:[Take control of your scroll: customizing pull-to-refresh and overflow effects](https://developers.google.com/web/updates/2017/11/overscroll-behavior)

**文章**:[await、return 和 return await 的陷阱](https://github.com/dev-reading/fe/tree/master/articles/2017-12-07-await-vs-return-vs-return-await.md) **音频**:无 **视频**:无 ------ **原文**:[await vs return vs return await](https://jakearchibald.com/2017/await-vs-return-vs-return-await/)

**文章**:[我希望在深入 React 之前知道这些](https://github.com/dev-reading/fe/tree/master/articles/2017-11-01-i-wish-i-knew-these-before-diving-into-react.md) **音频**:无 **视频**:无 ------ **原文**:[I wish I knew these before diving into React](https://engineering.opsgenie.com/i-wish-i-knew-these-before-diving-into-react-301e0ee2e488)

完成
文字

**文章**:[现代编程语言最有趣的 10 大特性](https://github.com/dev-reading/fe/tree/master/articles/2017-11-14-10-features-from-various-modern-languages-that-i-would-like-to-see-in-any-programming-language.md) **音频**:无 **视频**:无 ------ **原文**:[Ten interesting features from various modern languages](https://medium.com/@kasperpeulen/10-features-from-various-modern-languages-that-i-would-like-to-see-in-any-programming-language-f2a4a8ee6727)

文字

**文章**:[4 张动图解释为什么(什么时候)使用 Redux](https://github.com/dev-reading/fe/tree/master/articles/2017-11-24-when-do-i-know-im-ready-for-redux.md) **音频**:无 **视频**:无 ------ **原文**:[When do I know I’m ready for Redux?](https://medium.com/dailyjs/when-do-i-know-im-ready-for-redux-f34da253c85f)

**文章**:[动态 import()](https://github.com/dev-reading/fe/tree/master/articles/2017-11-22-dynamic-import.md) **音频**:无 **视频**:无 ------ **原文**:[Dynamic import()](https://developers.google.com/web/updates/2017/11/dynamic-import)

今日阅读:[45% Faster React Functional Components, Now](https://medium.com/missive-app/45-faster-react-functional-components-now-3509a668e69f) 预计阅读时间为 1 分钟。 ------------------------ 很多时候对于非常简单的组件,我们通常使用函数组件 ```jsx // 一个简单的函数组件 const Avatar = (props) => { return ; } ``` 但是函数组件也是一个 React 组件,当使用时,也会在内部调用 `componentWillMount`、`componentDidMount`、`componentWillUnmount` 等声明周期函数。 为了提示性能,我们可以把它作为...

文字

今日阅读:[Software 2.0](https://medium.com/@karpathy/software-2-0-a64152b37c35) > 作者 Andrej Karpathy,特斯拉人工智能部门主管,斯坦福博士 ![](https://user-images.githubusercontent.com/359395/32708225-b5cbe6b4-c863-11e7-8b6f-c4ddf1aedd27.png) --------------------- ## 以前 我们将**神经网络**作为“机器学习工具箱中的另一种工具”。但是,这种解释只见树木,不见树林。神经网络不是软件开发的另一种分类,它们代表了我们编写软件的根本性转变的开始。它们是软件 2.0(Software 2.0)。 ## 软件 1.0 软件 1.0 是用 Python、C++ 等语言编写的,是由一条一条的计算机指令组成。通过编写每行代码,程序员可以确定程序使用的资源:内存、CPU、外设、……等等。 ## 软件 2.0 软件 2.0 是用神经网络权重编写的。 不过,没有人参与这段代码的编写过程,因为权重有很多,并且直接用权重进行编码是很困难的。 那么如何编写呢?我们对一个理想程序的行为指定一些约束,并使用可用的计算资源来搜索程序空间中满足约束条件的程序。 我们不是直接编写程序,而是编写一些约束条件,通过采集足够多的数据来进化出(探索出)我们的程序。...

文字

**文章**:[1 分钟读完“10 分钟学会 JavaScript 的 Async/Await”](https://github.com/dev-reading/fe/tree/master/articles/2017-11-01-javascript-async-await-explained.md) **音频**:无 **视频**:无 ------ **原文**:[JavaScript Async/Await Explained in 10 Minutes](https://tutorialzine.com/2017/07/javascript-async-await-explained)

完成
文字