上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: `df`命令查看挂在的U盘和硬盘,ssd 右边可以看到路径 阅读全文
posted @ 2018-10-07 14:39 scott_h 阅读(2086) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-09-08 02:05 scott_h 阅读(4) 评论(0) 推荐(0)
摘要: "Linux(C/C++)下的文件操作open、fopen与freopen" open是linux下的底层系统调用函数,fopen与freopen c/c++下的标准I/O库函数,带输入/输出缓冲。 linxu下的fopen是open的封装函数,fopen最终还是要调用底层的系统调用open。 所以 阅读全文
posted @ 2018-09-04 19:32 scott_h 阅读(1971) 评论(0) 推荐(0)
摘要: "Linux时钟精度:毫秒?微妙?纳秒?" 阅读全文
posted @ 2018-09-04 18:07 scott_h 阅读(1256) 评论(0) 推荐(0)
摘要: linux 遍历目录+文件(优化版本) windows原生API 遍历版本(当年受了不少折磨) c++17 FS 还是挺好用的, VS2017支持,但是linux g++7.3 还是不支持 filesystem #include<filesystem> #include<regex> //正则表达式 阅读全文
posted @ 2018-09-03 23:01 scott_h 阅读(3501) 评论(2) 推荐(0)
摘要: preview /MD, /MT, /LD (Use Run-Time Library) #windows创建和调用静态库 Walkthrough: Create and use a static library // MathFuncsLib.h namespace MathFuncs { cla 阅读全文
posted @ 2018-09-02 05:30 scott_h 阅读(486) 评论(0) 推荐(0)
摘要: "CRT Library Features" The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com. The latest version of t 阅读全文
posted @ 2018-08-29 22:36 scott_h 阅读(652) 评论(0) 推荐(1)
摘要: 无法解析的外部符号 _WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用 出现原因: 连接程序在负责连接可执行程序时,选择相应的c/c++运行时启动函数。如果设定了/subsystem:windows连接程序开关,那么连接程序会试图寻找WinMain或wWinMain 阅读全文
posted @ 2018-08-29 17:31 scott_h 阅读(3613) 评论(0) 推荐(0)
摘要: 这个哥们也遇到一样的问题 "CUDA 9.1/9.2 与 Visual Studio 2017 (VS2017 15.6.4) 的不兼容问题" 错误有显示 我看到默认VS工程中是 1.需要【win SDK 版本】10.0.15063.0 但是这个版本我并没有,所以在VS2017 Install 中 阅读全文
posted @ 2018-08-28 03:47 scott_h 阅读(1361) 评论(0) 推荐(0)
摘要: "ARM交叉编译工具链" 为什么要用交叉编译器? arm交叉编译器 分类和说明: 从授权上,分为免费授权版和付费授权版。 免费版目前有三大主流工具商提供, 1. GNU(提供源码,自行编译制作) 2. Codesourcery 3. Linora (提供源码,和已经编译好的release binra 阅读全文
posted @ 2018-08-25 13:34 scott_h 阅读(13381) 评论(0) 推荐(0)
摘要: 无论windows,linux 所有的库 ,dlib,opencv 通过cmake gui 设置好静态库, 动态库,和其他各个选项 Tips: cmake 优先级用cmake gui,因为命令太多,容易敲错!!!!! cmake 默认是制作动态库.so, 若需要制作静态库 1.BUILD_SHARE 阅读全文
posted @ 2018-08-24 20:30 scott_h 阅读(4678) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/lidp/archive/2010/03/02/1696447.html 一般下载一个网站目录 wget -c -nd -np -r [WebAddress] 如果想 断点续传(-c), 递归下载(-r) 只下载更新的内容(-N), wget -c -r 阅读全文
posted @ 2018-08-22 09:47 scott_h 阅读(2254) 评论(0) 推荐(0)
摘要: RSA加密算法 C++实现 https://www.cnblogs.com/Silenceneo xw/p/6718334.html 非对称加密技术 RSA算法数学原理分析 https://www.cnblogs.com/tinyxiong/p/7842839.html dlib bigint的实现 阅读全文
posted @ 2018-08-16 13:05 scott_h 阅读(163) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/en us/library/f6xx1b1z.aspx https://www.cnblogs.com/runningRain/p/5674833.html 阅读全文
posted @ 2018-08-14 20:05 scott_h 阅读(944) 评论(0) 推荐(0)
摘要: ```cpp std::string data = "This is a sample string."; // convert string to upper case std::for_each(data.begin(), data.end(), "" { c = ::toupper(c); } 阅读全文
posted @ 2018-08-13 22:05 scott_h 阅读(310) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/wudishine/article/details/42466831 MD5.h MD5.cpp =========== Poco库 获取文件MD5 调用 std::string strMD5; std::ifstream f1(filename, std 阅读全文
posted @ 2018-08-13 21:05 scott_h 阅读(286) 评论(0) 推荐(0)
摘要: 我遇到的情况是c++ stl include include 在stdafx.h 和 .cpp 重复了,所以出现此问题, 所以把依赖全放到一起了。 www.cnblogs.com/A Song/archive/2012/03/23/2413782.html 阅读全文
posted @ 2018-08-09 01:24 scott_h 阅读(506) 评论(0) 推荐(0)
摘要: http://www.cplusplus.com/reference/sstream/ostringstream/ https://en.cppreference.com/w/cpp/io/basic_stringstream https://www.cnblogs.com/hdk1993/p/58 阅读全文
posted @ 2018-08-08 22:58 scott_h 阅读(1184) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-08-07 01:10 scott_h 阅读(7) 评论(0) 推荐(0)
摘要: Windows WMIC命令使用详解(附实例) https://blog.csdn.net/aflyeaglenku/article/details/77878525 ============== 第一次执行WMIC命令时,Windows首先要安装WMIC,然后显示出WMIC的命令行提示符。在WMI 阅读全文
posted @ 2018-08-07 00:52 scott_h 阅读(1479) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页