- 博客(22)
- 资源 (8)
- 收藏
- 关注
原创 gmssl config 报错 linux-x86_64
错误1Operating system: x86_64-whatever-linux2 “glob” is not exported by the File::Glob module Can’t continue after import errors at ./Configure line 18. BEGIN failed–compilation aborted at ./Configure line 18. “glob” is not exported by the File::Glob modul
2021-01-11 14:47:11 1208
原创 c分割字符串 存数组 不另占空间
c分割字符串 存数组 不另占空间#include <stdio.h>#include<string.h>#define ARR_MAX 16int main() { char* arr[ARR_MAX] = {0}; char str[] = "123;456;789"; char *p; char *buff; buff=str; p = strsep(&buff, ";"); int n = 0; while(p!=NULL)...
2020-11-14 17:29:10 166
原创 c++ 获取线程执行结果
#include <future>#include <iostream>//线程内一个特别大的数减到1bool is_prime(int x){ while (x > 1) { x--; } return true;}int test5(){ std::future<bool> f...
2020-02-25 15:50:53 1035
原创 文件改名
环境mfc使用 Unicode 字符集代码仅供参考代码:#include <sstream>using namespace std;CStringA CStrW2CStrA(const CStringW &cstrSrcW){ int len = WideCharToMultiByte(CP_ACP, 0, LPCWSTR(cstrSrcW)...
2019-05-06 10:17:32 201
原创 树莓派vlc配置
本文目的是用树莓派播放一个MP4视频。硬件版本 树莓派3b+系统版本 2018-04-18-raspbian-stretch vlc版本 3.0.3换源:/etc/apt/sources.listdeb http://mirrors.aliyun.com/raspbian/raspbian/ stretch main non-free contribdeb-src http:/...
2018-12-19 17:35:49 3731
转载 树莓派扩内存
使用树莓派编译程序的时候,我遇到了程序比较大,编译到某个文件的时候树莓派会死机,关机之后重启可以继续使用,但是编译到同一个地方树莓派又死机的问题。这个问题出现的主要原因是我给树莓派安装的Ubuntu mate 16.04 系统默认设置的swap交换空间不够,而编译某些文件的时候需要较大的交换空间,树莓派的交换空间被用满所以树莓派看起来好像是死机了的样子。解决方法,扩展Ubuntu的交换空间...
2018-12-19 16:58:44 11198
原创 树莓派java安装
1 下载附件(来源http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)2 执行tar zxvf jdk-8u144-linux-arm32-vfp-hflt.tar.gz3 执行 sudo gedit /etc/profile4 文件末尾 加上如下export J...
2018-10-30 16:21:15 1849
原创 shell脚本 打印函数调用时间
set sendmoney=1.0set j=1while truedo let "j=j+1" echo "----------j is $j--------------" time_micro1=$[$(date +%s%N)/1000000] #balance= $(echo "./ipchain-cli -testnet getbal...
2018-10-29 18:02:46 846
原创 树莓派环境部署
部分环境部署 sudo nano /etc/apt/sources.list #编辑sources.list 文件 进入编辑界面,删除原有的内容或者用#注释掉原来的源,添加下方的源内容 deb http://mirrors.aliyun.com/raspbian/raspbian/ stretch main non-free contrib deb-src http://mirror...
2018-10-29 15:07:57 334
原创 树莓派监控
网页版本 部分命令参考unzip mjpg-streamer-master.zipsudo apt-get install cmakesudo apt-get install libjpeg8-devsudo raspi-config5 1vim plugins/input_uvc/input_uvc.c input_init() format = V4L2_PIX...
2018-10-29 15:04:53 271
原创 linux动态库
g++ -fPIC -o sanli_ai.o -c sanli_ai.c g++ -shared -fPIC -o sanli_ai.so sanli_ai.o g++ main.cpp -o main -ldl ./main
2018-10-22 17:35:13 109
原创 linux rar安装
linux rar wget http://www.rarlab.com/rar/rarlinux-3.8.0.tar.gztar zxvf rarlinux-3.8.0.tar.gz将/etc 目录压缩为etc.rar 命令为:rar a etc.rar /etc1将etc.rar 解压 命令为:rar x etc.rar unrar -e etc.tar...
2018-09-17 09:34:14 154
原创 QT时间控件
CDateRdit.h#ifndef CDATEEDIT_H#define CDATEEDIT_H#include #include #include #include QT_BEGIN_NAMESPACEclass QCalendarWidget;QT_END_NAMESPACEclass CCalendarWidget : public QDialo
2018-01-10 11:22:27 3126
原创 文件加密
经历各种坑后形成如下代码md5thread.h#ifndef MD5THREAD_H#define MD5THREAD_H#include #include #include #include #include #include #include #include using namespace std;using namespace boo
2018-01-10 11:14:40 415
原创 打印日志
log.h#ifndef _LOG_H__#define _LOG_H__#include #include #include using namespace std;#include #include #include typedef enum { LOG_ERROR = 0, LOG_WARNING, LOG_INF
2018-01-10 11:08:26 236
原创 QT 动态加载dll
声明函数//typedef QWidget*(*Dllfun_GetMainDlg)();//typedef void (*Dllfun_SetChannelNames)(QString,QStringList);调用/* mylib.setFileName("D:/QT/test7/build-CDBurner-5_5minw-Debug/debug/CDB
2017-03-11 15:13:29 766
原创 c++string纯数字字符串求和
#include "stdafx.h"#include using namespace std;int _tmain(int argc, _TCHAR* argv[]){string str = "1234567890"; int sum = 0;for (int i=0;i{sum += (str[i]-48);;}printf("%d",sum)
2016-12-21 10:14:05 3838
原创 QT sleep
void CProgressDialog::sleep(int ms) { QElapsedTimer t; t.start(); while(t.elapsed() QCoreApplication::processEvents(); }
2016-01-22 15:57:14 430
原创 QPushButton设置成带下划线的效果
setStyleSheet("background: transparent;color:#10bacb;font-size:12px;font-family:Microsoft YaHei;" "border-width:1px;border-style:none none solid none;border-color:#10bacb;");这样可以将QP
2016-01-22 15:56:41 6468 1
原创 开始
过年了,2016年的大年即将来临,浑浑噩噩的工作了4年,突然说自己会点什么,感觉说不出来似得。我终于开始意识到博客的重要性,so,让它开始吧,让它记载我的学习之旅。
2016-01-22 15:43:22 241
原创 MFC自定义消息
在.h中做的工作:第一步要声明消息:#define WM_MYMSG WM_USER+8第二步要在类声明中声明消息映射:DECLARE_MESSAGE_MAP()第三步要在类声明中定义消息处理函数:afx_msg LRESULT MyMsgHandler(WPARAM,LPARAM);在.cpp中做的工作:第四步要实现消息映射:
2014-03-30 22:37:07 324
pyconcrete-0.12.1.tar.gz
2020-06-18
opencv_python-4.1.1.26-cp35-cp35m-linux_armv7l.whl
2020-06-18
opencv_python-4.1.1.26-cp37-cp37m-linux_armv7l.rar
2020-06-18
简单状态机
2018-01-18
Google-C++编码规范中文版.pdf
2016-11-22
Django Web开发指南.pdf
2016-11-22
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人