V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sherlockwhite  ›  全部回复第 13 页 / 共 77 页
回复总数  1533
1 ... 9  10  11  12  13  14  15  16  17  18 ... 77  
大佬 注册不了
2023-10-11 18:56:54 +08:00
回复了 rivercherdeeeeee 创建的主题 程序员 DingDing 是否对企业开启了什么特殊通道
@SunsetShimmer 啊?自己的聊天记录要啥驱动要啥 CA 证书?
2023-09-14 14:26:30 +08:00
回复了 flypei 创建的主题 分享发现 个人觉得,三星 S23 的颜值比 iPhone 系列高的
去店里看过 s23 确实好看 而且手感不错
2023-09-14 14:24:28 +08:00
回复了 AscenZ 创建的主题 Android 准备从 iOS 换 Android,请问有什么降噪耳机推荐吗?
我用的 oppo enco x2
2023-09-13 14:48:49 +08:00
回复了 cat 创建的主题 旅行 国庆计划开车 2000 多公里,有什么建议或心得吗?
@eluotao #35 我也是广东到江苏,国庆回去嘛哈哈哈哈
2023-09-13 14:31:10 +08:00
回复了 cat 创建的主题 旅行 国庆计划开车 2000 多公里,有什么建议或心得吗?
从哪里到哪里,看看能不能把我带回去,机票太贵了哈哈哈
2023-09-06 09:58:08 +08:00
回复了 ENIAC 创建的主题 程序员 使用 AND 和 OR 运算符实现的加密程序该如何解密?
```
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
}
```
分母
2023-09-04 18:31:39 +08:00
回复了 cheneydog 创建的主题 问与答 国庆开长途回老家,有啥合适的车险么?
@iMiata #15 你要赌概率嘛
1 ... 9  10  11  12  13  14  15  16  17  18 ... 77  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1714 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 35ms · UTC 16:37 · PVG 00:37 · LAX 08:37 · JFK 11:37
Developed with CodeLauncher
♥ Do have faith in what you're doing.