Forwarded from 綺凛的随波逐流
Telegram
某從零開始的博麗神社
http://www.bilibili.com/video/av48547248
Forwarded from 荔枝木
The Verge 报道:微软员工向公司施压,要求公司不能因为相关方面的压力删除 GitHub 上的 996.icu 项目。
链接: https://www.theverge.com/2019/4/22/18511088/microsoft-github-tech-censorship-996-repository-china
链接: https://www.theverge.com/2019/4/22/18511088/microsoft-github-tech-censorship-996-repository-china
The Verge
Microsoft workers pressure company to stand by embattled Chinese GitHub repo
Microsoft and GitHub workers have joined the protest in solidarity.
Forwarded from 烧饼的 Android 杂谈 (Siubeng9 Fung)
“DocUIProxy” 现已更名为 “SAF 增强器 Lite” 并上架至 Google Play 商店:https://play.google.com/store/apps/details?id=app.gwo.safenhancer.lite
另外才发现微软开源了 wil。逆向 Windows 中 C++ 编写的程序经常能看到一些封装传统 Win32 API 的 wil class。有了这个可以用 modern C++ 的方式来写 Win32 应用,避开很多 C 语言的坑。
https://github.com/Microsoft/wil/wiki/RAII-resource-wrappers
RAII 好耶!
https://github.com/Microsoft/wil/wiki/RAII-resource-wrappers
RAII 好耶!
GitHub
GitHub - microsoft/wil: Windows Implementation Library
Windows Implementation Library. Contribute to microsoft/wil development by creating an account on GitHub.
https://github.com/Microsoft/Terminal/issues/427
Win32 API 有的返回 NULL 有的返回 INVALID_HANDLE_VALUE。你看微软自己也掉坑里了。
Win32 API 有的返回 NULL 有的返回 INVALID_HANDLE_VALUE。你看微软自己也掉坑里了。
GitHub
A suspected bug of CreateThread API usage · Issue #427 · Microsoft/Terminal
First of all, I am very happy to read the source code of this project. When I see the implementation of VtInputThread::Start() in /src/host/VtInputThread.cpp ( Terminal/src/host/VtInputThread.cpp L...
YSC 的频道
微软刚刚把 Microsoft/console 改名为 Microsoft/Terminal 并发布了 Windows Terminal 源代码。
另外 conhost 应该实现了“嵌入输入法”相关的功能,也是比较有参考价值的。印象中微软并没有在其他地方提供相关的代码。
YSC 的频道
另外才发现微软开源了 wil。逆向 Windows 中 C++ 编写的程序经常能看到一些封装传统 Win32 API 的 wil class。有了这个可以用 modern C++ 的方式来写 Win32 应用,避开很多 C 语言的坑。 https://github.com/Microsoft/wil/wiki/RAII-resource-wrappers RAII 好耶!
wil 还有 com_ptr。之前想把 C++/WinRT 的 com_ptr 移植到 Win7 的,也许可以直接用 wil?