V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  yangbin9317  ›  全部回复第 1 页 / 共 12 页
回复总数  226
1  2  3  4  5  6  7  8  9  10 ... 12  
Just for fun
@sofukwird 你太强了
已经有了 Wg in browser

https://tailscale.com/blog/ssh-console/
semaphore
2022-10-19 19:17:07 +08:00
回复了 LxnChan 创建的主题 Linux 现在有较为轻量且稳定的 Linux 桌面推荐吗
dwm dwm dwm
2022-08-29 14:00:54 +08:00
回复了 LEXUGE 创建的主题 分享创造 Oceanix, 基于 Nix 的 OpenCore 配置管理工具
强,已 star
2022-07-24 18:14:44 +08:00
回复了 xiaojay 创建的主题 分享创造 Hi,来试试 web3 的文件永存吧
0x981Fb62FEcBBd7569a2556C327fBA34E6d741c84
2022-06-24 22:17:14 +08:00
回复了 monkeyWie 创建的主题 程序员 最近负责 Java 面试,吐槽下
分析:列表中的所有数值都比最大值小

class Solution:
def findMax(self, l: List[int]) -> int:
import random
while True:
candidate = random.choice(l)
if not all(map(lambda x: x <= candidate, l)):
continue
return candidate
2022-06-14 09:35:26 +08:00
回复了 Legman 创建的主题 生活 对虫子的恐惧可以通过锻炼克服吗
玩完血源诅咒之后就不怕了
@yangbin9317 额 为什么刷到了去年的
```
def public_key(private_key: int, compressed=True) -> bytes:
private_key = private_key.to_bytes(32, byteorder='big')
public_key = ecdsa.SigningKey.from_string(
private_key, curve=ecdsa.SECP256k1).get_verifying_key()
public_key = public_key.to_string()

if compressed:
mid = len(public_key) // 2
x = public_key[:mid]
y = public_key[mid:]
prefix = b'\x02' if y[-1] & 1 == 0 else b'\x03'
return prefix + x
else:
return b'\x04' + public_key
```

我这个行吗
2022-05-05 16:34:09 +08:00
回复了 MonikaCeng 创建的主题 Bitcoin 买了 Ledger 后才知道原来有 20% off 的代金券。。
使用了,谢谢楼主
2022-04-23 16:00:06 +08:00
回复了 magewu1223ll 创建的主题 互联网 关于 web3.0 的去中心化
@zmxnv123 过滤域名是指过滤 DNS 吗?如果过滤 dns 可以使用 DNS over TLS 。或者像 V2EX 已经被拦截了但还是有很多人使用代理来连接。
1  2  3  4  5  6  7  8  9  10 ... 12  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5343 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 59ms · UTC 09:02 · PVG 17:02 · LAX 02:02 · JFK 05:02
Developed with CodeLauncher
♥ Do have faith in what you're doing.