Gong Zhang

Results 40 comments of Gong Zhang

谢谢回复!很想弄成这个 在外层用 `Mirror` 倒是也能拿到成员名字,但在 `propertyWrapper` 里面好像没有比较优雅的方式能获取这个信息。能想到最简单的就是要求 `@Kiss` 只能用在一种特定类型的外层对象里面(外层构造时一次性通过 `Mirror` 把 `@Kiss` 所需的名字信息灌进去...)。就像 `@Published` 只能在 `ObservableObject` 里起作用。不能自由使用还是不够理想。 如果继续想 demangle 的方法,在变量上标注 `dynamic` 关键字是不是可以在运行时留住符号?这个好像可以诶 另外还想到了 `#function` 字面值..

Comfirmed the output zip file cannot be unzipped using BetterZip or builtin Archive Utility on latest macOS. ```swift // run on physical iOS device // package version: 2.1.0 try Zip.zipData(archiveFiles:...

@astatio 😄 Sure! Welcome PR, you can always improve the README and the doc in the code.

Hi, @astatio, thanks for the detailed description. I took a quick look and it appears that something blocked and timed out at the 5 second mark. But I don't have...

Hi, @doodooaw, this repo can be used to quickly implement cross-process communication, i.e., bidirectional data transfer between programs or modules. May I ask if this is what you need?

@wtflol123 The client must be the initiator in the protocol. But you can implement server-side push by the following method. 1. the client initiates a "waiting for new messages" request...

> Hi , Is Support c /c++ in future? C/C++ is not in the plan. If you want to implement it yourself, you can refer to the [python implementation](https://github.com/gongzhang/procbridge-python/blob/master/procbridge/protocol.py).

Hi, Felix, Thank you for your support! I've linked to your repository in README.md . 😄 Best, Gong > 2021年4月12日 下午10:34,Felix Winter ***@***.***> 写道: > > > Hi, > >...

@rjborba Just updated [procbridge-python](https://github.com/gongzhang/procbridge-python) (==1.2.0) and [procbridge-nodejs](https://github.com/gongzhang/procbridge-nodejs) (==1.1.0). They support unix domain socket. Documentation will be added later. For python: ```python import procbridge as pb # inet socket: server =...

🤔 I don‘t think SPM itself supports building XCFramework at present, but it should be achieved by creating and configuring new targets in the wrapper Xcode Project. Like what Realm...