V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sherlockwhite  ›  全部回复第 7 页 / 共 71 页
回复总数  1414
1 ... 3  4  5  6  7  8  9  10  11  12 ... 71  
6967 谢谢
大佬 注册不了
@SunsetShimmer 啊?自己的聊天记录要啥驱动要啥 CA 证书?
去店里看过 s23 确实好看 而且手感不错
我用的 oppo enco x2
@eluotao #35 我也是广东到江苏,国庆回去嘛哈哈哈哈
从哪里到哪里,看看能不能把我带回去,机票太贵了哈哈哈
```
const decode = cipher => {
let result = ''
for(let i = 0; i < cipher.length; i+=4) {
const a = codeTable.indexOf(cipher[i])
const b = codeTable.indexOf(cipher[i+1])
const c = codeTable.indexOf(cipher[i+2])
const d = codeTable.indexOf(cipher[i+3])

const n1 = a << 2 | b >> 4
const n2 = (b & 15) << 4 | c >> 2
const n3 = (c & 3) << 6 | d
result += String.fromCharCode(n1)
if(c != 64) {
result += String.fromCharCode(n2)
}
if(d != 64) {
result += String.fromCharCode(n3)
}
}
return result
}
```
分母
228 天前
回复了 cheneydog 创建的主题 问与答 国庆开长途回老家,有啥合适的车险么?
@iMiata #15 你要赌概率嘛
1 ... 3  4  5  6  7  8  9  10  11  12 ... 71  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1007 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 19:00 · PVG 03:00 · LAX 12:00 · JFK 15:00
Developed with CodeLauncher
♥ Do have faith in what you're doing.