摘要: 1. https://www.penflip.com 2. https://www.gitbook.com 3. https://leanpub.com/ 4. https://www.softcover.io 5. http://markua.com/ 阅读全文
posted @ 2017-10-19 21:49 學海無涯 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 1. 一款比较优秀的截图工具 https://www.snipaste.com/ 2. 一款GIF动画录制工具 https://www.cockos.com/licecap/ 3. 一款打包安装工具,可创建安装包 http://www.advancedinstaller.com/ 4. 一款光盘制作 阅读全文
posted @ 2017-09-03 19:02 學海無涯 阅读(822) 评论(0) 推荐(0) 编辑
摘要: #include <QCoreApplication> #include <QImage> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); // [1] 准备图像二进制数据 QImage image = QImag 阅读全文
posted @ 2022-12-08 10:02 學海無涯 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 确保一切都正确插入。 卸载ICUE。 转到服务并停止 CorsairService(以及任何其他 Corsair 服务,如果有的话) 打开RegEdit并删除HKEY_LOCAL_MACHINE/System/CurrentControlSet/Services下的任何Corsair服务 重启。确保 阅读全文
posted @ 2022-12-03 10:09 學海無涯 阅读(3262) 评论(0) 推荐(0) 编辑
摘要: #include <QCoreApplication> #include <chrono> #include <thread> #include <memory> #include <openssl/ssl.h> struct SSL_CTX_Deleter { void operator()(SS 阅读全文
posted @ 2022-07-27 10:28 學海無涯 阅读(116) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/cpp/intrinsics/?view=msvc-170 https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html intrinsics #in 阅读全文
posted @ 2022-03-28 12:14 學海無涯 阅读(29) 评论(0) 推荐(0) 编辑
摘要: package main import ( "github.com/gin-gonic/gin" "net/http" ) func main() { r := gin.Default() r.GET("/", func(c *gin.Context) { c.JSON(http.StatusOK, 阅读全文
posted @ 2021-12-01 09:56 學海無涯 阅读(140) 评论(0) 推荐(0) 编辑
摘要: ATL 活动模板库 支持创建三种模式的 COM 组件。 dll,exe,service 微软公司的官方网站针对这个问题描述如下: 在64位的windows系统中,一个64位进程不能加载一个32位dll,同理一个32位进程也不能加载一个64位dll。但是,64位windows支持64位和32位进程(包 阅读全文
posted @ 2021-10-23 16:20 學海無涯 阅读(476) 评论(0) 推荐(0) 编辑
摘要: x264 编译 https://www.roxlu.com/2016/057/compiling-x264-on-windows-with-msvc x264 相关知识 http://www.avidemux.org/admWiki/doku.php?id=tutorial:h.264 https: 阅读全文
posted @ 2021-09-08 15:10 學海無涯 阅读(48) 评论(0) 推荐(0) 编辑
摘要: std::latch latch(10); std::vector<std::thread> pool; for (auto i = 0; i < 10; ++i) { pool.push_back(std::thread([&,i]() { // calc auto index = "calc " 阅读全文
posted @ 2021-06-02 11:02 學海無涯 阅读(131) 评论(0) 推荐(0) 编辑
摘要: https://github.com/danielscherzer/GLSL/blob/master/README.md 搜索 GLSL language integration 即可。 阅读全文
posted @ 2021-04-23 15:25 學海無涯 阅读(503) 评论(0) 推荐(0) 编辑
摘要: 平移->旋转->反向平移 QPointF data; QPointF origin; qreal degrees = 45.0; QMatrix transform; transform = transform.translate(origin.x(),origin.y()).rotate(degr 阅读全文
posted @ 2021-04-08 10:13 學海無涯 阅读(1526) 评论(0) 推荐(0) 编辑