V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  killerirving  ›  全部回复第 1 页 / 共 3 页
回复总数  54
1  2  3  
15 天前
回复了 yuankui 创建的主题 问与答 有没有这样一款产品?(地图相关)
google map 的 list 功能似乎可以满足
44 天前
回复了 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
````
44 天前
回复了 julyclyde 创建的主题 Python functools.partial 和 partialmethod 的困惑
1. “是不是因为前者在 class 内,而后者在 method 内的,scope 不同的缘故” 是的
2. 这种情况应该使用 partial 。partialmethod 是声明为 class descriptor 使用的,被读取时会调用__get__();而在函数中直接调用的 method 是__call__(),partialmethod class 中并没有定义该方法所以会有 not callable 的报错
348 天前
回复了 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-04-11 11:09:27 +08:00
回复了 frank1256 创建的主题 Go 编程语言 go 的继承和重写疑问
DocumentObserver 没有实现 addEvent(),所以调用的是 BaseObserver 的 addEvent(), 这时 event.attach 接收到的 Observer 是 BaseObserver 这个实现。
2022-04-01 09:28:39 +08:00
回复了 raw0xff 创建的主题 Go 编程语言 gopls.exe 到底在干什么? cpu 占用那么高
一般是高内存占用,CPU 的话要看具体情况了
2022-03-29 20:14:06 +08:00
回复了 CantFindProperty 创建的主题 程序员 代码游戏,会 JS 就能玩!
注释貌似有误,dx 反了
即刻 -- 产品经理社区
K8S 有相关岗位吗?
@JerryAi nice!
有了国内子公司后,还能 transfer 到北美吗
用 qemu 跑 x86 虚拟机
2021-11-26 10:42:16 +08:00
回复了 MasterCai 创建的主题 git 如何给每个单独的 repo 配置不同的 GitHub 账号?
git config 可以配置指定目录使用指定的 config ,详见 includeIf 配置项
https://git-scm.com/docs/git-config#_example
2021-11-15 09:58:46 +08:00
回复了 nanmu42 创建的主题 Kubernetes k8s CPU limit 和 throttling 的迷思
赞 写的不错
awesome!
@HertzHz 确实是 👍测了一下果然是 DC5
1  2  3  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1033 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 34ms · UTC 22:17 · PVG 06:17 · LAX 14:17 · JFK 17:17
Developed with CodeLauncher
♥ Do have faith in what you're doing.