摘要:
``` include include include //从 indexs 集合中选择 num 个元素进行组合并保证返回的组合中没有重复的元素 std::vector combination(const int num,std::vector &indexs) { std::vector set; 阅读全文
摘要:
debian 如何修改本地语言环境? 空格选中 Pu Pd 翻页 debian 如何安装 mysql 8.0? 0. 如何更改源 1. 如何打开 linux 终端? 2.如何让 root 账户可以用界面登录? 3.如何安装编译环境? 4. 如何安装 pinyin 输入法? 5.如何安装 Postgr 阅读全文
摘要:
``` QString modelPrototxt = "D:\\Qt\\qmake\\CaffeModelTest\\caffe\\lenet.prototxt"; QString modelBin = "D:\\Qt\\qmake\\CaffeModelTest\\caffe\\snapshot 阅读全文
摘要:
解决方法一: 使用透明主题 点击项目 在 构建设置 里面找到 Build Android APK 栏目,点击 create templates 创建一个 AndroidManifest.xml 解决方法二: 使用图片替换主题 解决方案三 阅读全文
摘要:
``` std::fstream fs("D:\\xp.wlt",std::ios::binary | std::ios::out); fs.write(cr30x.wltData,1024); fs.close(); //如果去掉 std::ios::binary 标志 ,则会出现 1029字节 大小的文件, //
``` 阅读全文
摘要:
`stdafx.h` include "stdafx.h" int main(int argc, char argv[]) { if 0 if (argc != 3) { return 0; } std::fstream fs(argv[1], std::ios::binary | std::ios 阅读全文
摘要:
1.首先获取 TKK 参数,这个参数可以在 网页获取, src: 正则表达式: a: b: c: 去掉多余的字符即可 2.其次使用 查询字符串 和 TKK 做 hash 运算 参考链接:https://stackoverflow.com/questions/32053442/google trans 阅读全文
摘要:
Git usage: git [--version] [--help] [-C <path>] [-c name=value] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p | --paginate | --n 阅读全文
摘要:
Gogs 下载和安装 https://github.com/gogits/gogs # 下载二进制压缩包 不检查服务器证书 root@cheungxiongwei:~# wget --no-check-certificate https://github.com/gogits/gogs/releas 阅读全文