V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sherlockwhite  ›  全部回复第 8 页 / 共 72 页
回复总数  1440
1 ... 4  5  6  7  8  9  10  11  12  13 ... 72  
234 天前
回复了 mainjzb 创建的主题 生活 哈哈哈哈哈哈 锅贴店倒闭了
前贴有印象 但是太长了没仔细看
234 天前
回复了 changanMao 创建的主题 iPhone 哪里港版 iphone15pro 正规渠道
可能想要非阉割版的吧,也不一定是便宜,便宜可能还便宜不过 pdd
234 天前
回复了 changanMao 创建的主题 iPhone 哪里港版 iphone15pro 正规渠道
@changanMao #7 还有假么这
234 天前
回复了 changanMao 创建的主题 iPhone 哪里港版 iphone15pro 正规渠道
我帮你人肉跑一趟?正好我想去玩
@um1ng 我看到了 pdd ,我都拆封用了,我再买个 9098 的,把 9098 的退旧的单不知道得不得行
@um1ng 我去 我买的 9398 你哪里买的啥颜色
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
}
```
1 ... 4  5  6  7  8  9  10  11  12  13 ... 72  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1358 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 57ms · UTC 17:39 · PVG 01:39 · LAX 10:39 · JFK 13:39
Developed with CodeLauncher
♥ Do have faith in what you're doing.