sun and cloud

什么是Generator 函数

Generator函数是ES6提供的一种异步编程解决方案,形式上也是一个普通函数,但却可以分步执行。

在Mac下MySQL服务的启动命令

How to start MySQL server from command line on Mac OS Lion?

redux源码分析:enhancer

createStore 第3个参数本质是上对 createStore 方法的增强

函数式编程:偏函数 (Partial application)

一个与 Currying 很类似的东西,其实Currying是一种特殊的偏函数

Javascript 基础: 箭头函数与arguments

es6中箭头函数有无作用域,this指向,能否使用arguments,为什么?

函数式编程:柯里化(Currying)

在一个函数中首先填充几个参数(然后再返回一个新函数)的技术称为柯里化(Currying)

ssh_exchange_identification: Connection closed by remote host

无法调用ssh相关命令,原因出在了VPN代理上面

[].slice.call(arguments)原理解析

slice将 arguments 转化为数组的原理

redux源码分析:applyMiddleware

redux 添加中间件会调用 applyMiddleware

redux源码分析:subscribe/unsubscribe

redux 源码之 subscribe方法