HamGuy

Results 13 comments of HamGuy

> Create an Empty Swift file using Xcode, such as named Void.swift, and every issue will be solved by Xcode automatically. Thanks for the answer, but I'd like to know...

same issue with subclass the PXSourceListTableCellView ```class TagTableCellView: PXSourceListTableCellView { func configCell(tag: Tag){ textField?.stringValue = tag.name imageView?.image = NSImage.fontAwesomeIconWithName(.Tag, textColor: .lightGray, size: CGSize(width: 40, height: 40), backgroundColor: .clear) badgeView.badgeValue =...

我也遇到了,不过我的跟你的不太一样,我目前是隔段时间(具体未知,至少头天晚上正常,但是第二天白天就不行)就会出现 DNS 解析失败的情况,但是其他网络服务都正常, 猜测是DNS服务挂了 版本:iStoreOS 22.03.6 2024041213 设备:CncTion N4505-4L nslookup 一直超时: ```shell C:\Users\admin>nslookup baidu.com DNS request timed out. timeout was 2 seconds. Server: UnKnown Address: 192.168.0.110 DNS request timed out....

Hi, thanks for the wonderful solution, here is a migrate version from Objective-C to Swift 3.0. and it works for me. https://gist.github.com/HamGuy/a099058e674b573ffe433132f7b5651e

What's the minimum GPU RAM for this project?

Wow... You must be the angel sent by the God.

我刚才又遇到了,确实是 dnsmasq 服务挂掉了: ```shell root@iStoreOS:~# ps w|grep dnsmasq -v PID USER VSZ STAT COMMAND 1 root 1424 S /sbin/procd 2 root 0 SW [kthreadd] 3 root 0 IW< [rcu_gp] 4...

> 不需要猜测,看日志,一般这种配置问题导致挂掉,日志都会很清楚告诉你为什么。 看了下系统日志,似乎不是很能懂,没发现是那里出的问题😓

> @HamGuy 你是不是搞错了,`ps w|grep dnsmasq -v`是排除掉了dnsmasq啊,不管有没有dnsmasq进程都不会显示,别误导人了。正确的命令是`ps w|grep dnsmasq|grep -v grep`。 Sorry,命令搞错了,等下次出问题我再试试