Hao Wang

Results 17 comments of Hao Wang

Thanks for you reply! It's not a good idea to make `rage-edit` depend on `ffi`, yes, I agee. And I only integrate `ffi` in my own application. Directly converting stdout...

Вот, automating this process is a really great idea! [Get Windows console codepage](https://github.com/nodejs/help/issues/1067) reveals how to use Windows API [GetConsoleOutputCP ](https://docs.microsoft.com/en-us/windows/console/getconsoleoutputcp) and [SetConsoleOutputCP](https://docs.microsoft.com/en-us/windows/console/setconsoleoutputcp). And in document of SetConsoleOutputCP, Microsoft tells...

I am cross-compiling from Mac to Windows by using mingw-w64. And I encountered and solved such problem when cross-compiling `386` *.exe with libui.a of `dwarf` format. ##### Here is my...

COM provides self-inspect mechanism. According to Qt QAxBase https://github.com/qt/qtactiveqt/blob/92b453c705c3259e03913002e5ab34d599647852/src/activeqt/container/qaxbase.cpp#L2792, I have built a demo project (https://github.com/asinbow/CppActiveXEventDemo) for listening ActiveX/COM event. ```c++ // Presudo code of https://github.com/asinbow/CppActiveXEventDemo/blob/master/CppActiveXEventDemo/CppActiveXEventDemo.cpp application = CoCreateInstance(...); typeLib...

https://github.com/durs/node-activex/pull/44

Event listener is implemented in https://github.com/durs/node-activex/pull/46 And I am waiting for @durs 's suggestion. And next step, we can do something more: 1. implement `Unadvise` 2. ensure no memory leak...

We have built a workaround for it: https://github.com/junit-team/junit5-samples/pull/133 Please take a look. A blog post: https://flexport.engineering/connecting-bazel-and-junit5-by-transforming-arguments-46440c6ea068