imcotton

imcotton

V2EX 第 21296 号会员,加入于 2012-05-23 01:53:06 +08:00
imcotton 最近回复了
2017-02-23 11:32:48 +08:00
回复了 Yourdaye 创建的主题 互联网 互联网最糟糕的体验就是到处都需要注册==》登录!
Mozilla Replaces Persona with Auth0 for Identity and Access Management (IAM)
https://auth0.com/blog/auth0-mozilla-partnership/

Auth0 Passwordless
https://auth0.com/passwordless
2016-12-09 11:30:57 +08:00
回复了 shihty5 创建的主题 问与答 A + B 问题
// 371. Sum of Two Integers
// https://leetcode.com/problems/sum-of-two-integers/


/**
* @param {number} a
* @param {number} b
* @return {number}
*/
var getSum = function (a = 0, b = 0) {
while (a !== 0) {
[a, b] = [(a & b) << 1, a ^ b];
}
return b;
};
2016-05-03 01:53:48 +08:00
回复了 PiedPiper 创建的主题 酷工作 hiring! just got invested!
"I don't know about you people, but I don't want to live in a world where someone else makes the world a better place better than we do."
2016-02-27 01:20:05 +08:00
回复了 northisland 创建的主题 问与答 出道题给大家耍下,有闲的各位请接招
'tt2012dg2'.match(/\d+/g).reduce((a, b) => a.length > b.length ? a : b)

-ES2015
2014-09-04 15:04:51 +08:00
回复了 muziyue 创建的主题 问与答 img 标签可以达到 background-size:cover 的效果么?
2014-09-04 02:25:43 +08:00
回复了 webjin 创建的主题 Linux uptime 时间可以作假修改吗?
@juo 第二张照片里左起第二位手里捏着香烟?
2014-08-14 14:43:53 +08:00
回复了 georgetso 创建的主题 问与答 请问有没有 RESTful API 请求测试的网站?
2014-08-01 13:00:07 +08:00
回复了 taoche 创建的主题 程序员 请教一些 CoffeeScript 的问题
自己脑补上面最后两行的缩进吧
2014-08-01 12:56:04 +08:00
回复了 taoche 创建的主题 程序员 请教一些 CoffeeScript 的问题
a = 1
b = 2

do ({a, b} = {}) ->
a = 3
b = 4
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2998 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms · UTC 14:44 · PVG 22:44 · LAX 07:44 · JFK 10:44
Developed with CodeLauncher
♥ Do have faith in what you're doing.