会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
學海無涯
博客园
首页
新随笔
联系
订阅
管理
[置顶]
如何找到适合自己的文档工具?
摘要: 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 學海無涯
阅读(250)
评论(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 學海無涯
阅读(866)
评论(0)
推荐(0)
2022年12月8日
如何使用 qt network 库模拟表单文件上传?
摘要: #include <QCoreApplication> #include <QImage> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); // [1] 准备图像二进制数据 QImage image = QImag
阅读全文
posted @ 2022-12-08 10:01 學海無涯
阅读(97)
评论(0)
推荐(0)
2022年12月3日
海盗船 iCUE 软件安装无法识别到设备怎么办?
摘要: 确保一切都正确插入。 卸载ICUE。 转到服务并停止 CorsairService(以及任何其他 Corsair 服务,如果有的话) 打开RegEdit并删除HKEY_LOCAL_MACHINE/System/CurrentControlSet/Services下的任何Corsair服务 重启。确保
阅读全文
posted @ 2022-12-03 10:08 學海無涯
阅读(4846)
评论(0)
推荐(0)
2022年7月27日
ssl 使用流程是如何的(仅供参考)?
摘要: #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 學海無涯
阅读(174)
评论(0)
推荐(0)
2022年3月28日
Compiler intrinsics and assembly language
摘要: 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 學海無涯
阅读(44)
评论(0)
推荐(0)
2021年12月1日
WEB 基础认证(BasicAuth)
摘要: 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 學海無涯
阅读(150)
评论(0)
推荐(0)
2021年10月23日
Window COM 组件可以实现哪些功能?
摘要: ATL 活动模板库 支持创建三种模式的 COM 组件。 dll,exe,service 微软公司的官方网站针对这个问题描述如下: 在64位的windows系统中,一个64位进程不能加载一个32位dll,同理一个32位进程也不能加载一个64位dll。但是,64位windows支持64位和32位进程(包
阅读全文
posted @ 2021-10-23 16:20 學海無涯
阅读(579)
评论(0)
推荐(0)
2021年9月8日
H.264 编解码
摘要: 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 學海無涯
阅读(61)
评论(0)
推荐(0)
2021年6月2日
C++ 20 线程同步
摘要: 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 學海無涯
阅读(154)
评论(0)
推荐(0)
2021年4月23日
VS opengl 着色器语言高亮智能提示扩展插件 GLSL language integration
摘要: https://github.com/danielscherzer/GLSL/blob/master/README.md 搜索 GLSL language integration 即可。
阅读全文
posted @ 2021-04-23 15:25 學海無涯
阅读(606)
评论(0)
推荐(0)
2021年4月8日
如何使用 QTransform 绕指定点旋转指定角度?
摘要: 平移->旋转->反向平移 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 學海無涯
阅读(1988)
评论(0)
推荐(0)
下一页
公告