Huan Li
Huan Li
`id` -> `contact_id`, `id` -> `message_id` Never use `id` because it will cause in-consistent in OpenAPI generated docs. And also, the explicit names will have more specific meanings in the...
Because this gRPC is Wechaty related, so the `wechaty-grpc` NPM name is better than before. Kindly notify Polyglot Wechaty committers: @wechaty/python @wechaty/go @wechaty/java @wechaty/php @wechaty/dotnet @wechaty/scala
See: https://github.com/Chatie/grpc/runs/605534728?check_suite_focus=true#step:6:661 ``` npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@~2.1.2 (node_modules/chokidar/node_modules/fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) ```
See: https://stackoverflow.com/a/60507409/1123955 Temporary disable CI under Windows.
```sh $ ./tests/library-sidecar.spec.ts libFile:libfactorial-x64.so spawnTarget:/bin/sleep,10 00:12:10 ERR Sidecar guardRetType() NativeType(uint64) does match the design type "undefined" file:///home/huan/git/huan/sidecar/src/decorators/ret-type/guard-ret-type.ts:43 throw new Error([ ^ Error: The FactorialSidecar.factorial() decorated by "@RetType(uint64, ...)" does match...
I ran into [frida/frida#1578](https://github.com/frida/frida/issues/1578) this week with M1 and frida 14.2.18, and the 14.2.2 ``` $ uname -a Darwin Huans-Air 20.3.0 Darwin Kernel Version 20.3.0: Thu Jan 21 00:06:51 PST...
## The Problem We need to put `--no-warnings --loader ts-node/esm --experimental-vm-modules` to node args, so we use `env -S`: https://github.com/huan/sidecar/blob/28461a00a1553f6a0008f39b279899971781a767/bin/sidecar-dump.ts#L1 However, this will generate the following `node_modules/.bin` files: ```cmd IF...
- Easy solution: use a server outside of China to get an unblocked network connection. - Hard solution: download `frida_binding.node` from manually (the packaged file name is `frida-v{version}-node-*.tar.gz`, for example,...
I have the following dynamic library files under Linux: ```sh huan@dev:~/wechaty/sidecar-demos$ ls -l src/libfactorial.so -rw-rw-r-- 1 huan huan 15648 Jul 17 15:06 src/libfactorial.so huan@dev:~/wechaty/sidecar-demos$ LD_PRELOAD=./src/libfactorial.so frida /bin/cat ____ / _...
This week I ran into an issue that the `onEnter` has not been triggered with the `Interceptor.attach()`. The following is the source code. It's quite straightforward: 1. create a `NativeCallback`(`mtNativeCallback`)...