摘要:
JS版 / e 表示长度,默认32位 / function randomString(e) { e = e || 32; var t = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678", a = t.length, n = ""; for (i 阅读全文
摘要:
```
/** * Fibonacci */
function fib($n) { if ($n == 0) return 0; if ($n == 1) return 1; return fib($n-1) + fib($n-2);
}
``` 阅读全文
摘要:
幂等性是系统的接口对外一种承诺(而不是实现), 承诺只要调用接口成功, 外部多次调用对系统的影响是一致的. 声明为幂等的接口会认为外部调用失败是常态, 并且失败之后必然会有重试. http://www.cnblogs.com/dingcee/p/5047752.html 阅读全文
摘要:
https://www.zhihu.com/question/23232384 阅读全文