2025年7月6日
摘要: "application/zip-compressed" "application/x-zip-compressed" "application/zip" "application/x-tar" "application/x-rar-compressed" "application/vnd.rar" 阅读全文
posted @ 2025-07-06 00:15 北京开发 阅读(3) 评论(0) 推荐(0)
  2025年7月5日
摘要: " " 基础设置" " 关闭兼容模式,使用 Vim 高级功能set nocompatible " 启用语法高亮syntax on " 显示行号set number " 显示相对行号(可选)" set relativenumber " 高亮当前行set cursorline " 显示状态栏(底部信息) 阅读全文
posted @ 2025-07-05 22:05 北京开发 阅读(4) 评论(0) 推荐(0)
摘要: 下面是代码: #include "docwire/docwire.h" #include <cassert> #include <sstream> int main(int argc, char* argv[]) { using namespace docwire; std::stringstrea 阅读全文
posted @ 2025-07-05 15:59 北京开发 阅读(2) 评论(1) 推荐(0)
摘要: #include "docwire.h" int main(int argc, char* argv[]) { using namespace docwire std::filesystem::path("1.pst") | content_type::detector{} | mail_parse 阅读全文
posted @ 2025-07-05 10:09 北京开发 阅读(3) 评论(0) 推荐(0)
摘要: #include "docwire.h" int main(int argc, char* argv[]) { using namespace docwire std::filesystem::path("1.pst") | content_type::detector{} | mail_parse 阅读全文
posted @ 2025-07-05 10:08 北京开发 阅读(1) 评论(0) 推荐(0)
摘要: #include "docwire.h" #include <fstream> int main(int argc, char* argv[]) { using namespace docwire try { auto chain = content_type::detector{} | offic 阅读全文
posted @ 2025-07-05 10:07 北京开发 阅读(1) 评论(0) 推荐(0)
摘要: #include "docwire.h" #include <sstream> int main(int argc, char* argv[]) { using namespace docwire std::stringstream out_stream try { std::filesystem: 阅读全文
posted @ 2025-07-05 10:06 北京开发 阅读(2) 评论(0) 推荐(0)
摘要: #include "docwire.h" #include <cassert> #include <sstream> int main(int argc, char* argv[]) { using namespace docwire std::stringstream out_stream try 阅读全文
posted @ 2025-07-05 10:05 北京开发 阅读(2) 评论(0) 推荐(0)
摘要: (e.g. mp3 file with meeting recording) in two steps: convert voice to text and summarize text using OpenAI services#include "docwire.h" #include <cass 阅读全文
posted @ 2025-07-05 10:05 北京开发 阅读(3) 评论(0) 推荐(0)
摘要: in any format (Office, PDF, mail, etc) in two steps: summarize using GPT model and convert the summary to speech using text to speech model. Result is 阅读全文
posted @ 2025-07-05 10:04 北京开发 阅读(3) 评论(0) 推荐(0)