killerirving 最近的时间轴更新
killerirving

killerirving

V2EX 第 172324 号会员,加入于 2016-05-09 17:44:02 +08:00
2 G 86 S 78 B
根据 killerirving 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
killerirving 最近回复了
5 天前
回复了 yuankui 创建的主题 问与答 有没有这样一款产品?(地图相关)
google map 的 list 功能似乎可以满足
33 天前
回复了 julyclyde 创建的主题 Python functools.partial 和 partialmethod 的困惑
c.getMe.func()其实是个错误使用,func 是 partialmethod class 的成员变量,也就是 self.callAPI 这个参数
```
class partial:
"""New function with partial application of the given arguments
and keywords.
"""

__slots__ = "func", "args", "keywords", "__dict__", "__weakref__"

def __new__(cls, func, /, *args, **keywords):
if not callable(func):
raise TypeError("the first argument must be callable")

if hasattr(func, "func"):
args = func.args + args
keywords = {**func.keywords, **keywords}
func = func.func

self = super(partial, cls).__new__(cls)

self.func = func
self.args = args
self.keywords = keywords
return self
````
34 天前
回复了 julyclyde 创建的主题 Python functools.partial 和 partialmethod 的困惑
1. “是不是因为前者在 class 内,而后者在 method 内的,scope 不同的缘故” 是的
2. 这种情况应该使用 partial 。partialmethod 是声明为 class descriptor 使用的,被读取时会调用__get__();而在函数中直接调用的 method 是__call__(),partialmethod class 中并没有定义该方法所以会有 not callable 的报错
338 天前
回复了 HugeNature 创建的主题 Kubernetes 从外部 ssh 到 k8s 的 pod 里面
看看这个? 用 kubectl 插件实现了一个 ssh ProxyCommand 的功能
https://github.com/ciiiii/kube-ProxyCommand
```
Host develop-container
HostName develop-container
User root
Port 22
IdentityFile /path/to/private/key
ProxyCommand kube-proxyCommand --name=podName --namespace=podNamespace --port=%p
```
2023-02-16 14:52:09 +08:00
回复了 james 创建的主题 分享创造 仅用 20 行 TypeScript(Deno)就能代替 Kustomize
有点像 Pulumi ,楼主可以体验下
Clipboard
iTerm->Finder/Finder->iTerm
Dictionary
My Schedule
Window Management
[Clash Dashboard]( https://www.raycast.com/Go2SheeP/clash)
Caffeinate
2022-09-08 10:16:47 +08:00
回复了 SeaTac 创建的主题 iPhone See ya, mini-size iPhone
哎,难受
2022-03-29 20:14:06 +08:00
回复了 CantFindProperty 创建的主题 程序员 代码游戏,会 JS 就能玩!
注释貌似有误,dx 反了
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1961 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 12ms · UTC 16:16 · PVG 00:16 · LAX 08:16 · JFK 11:16
Developed with CodeLauncher
♥ Do have faith in what you're doing.