摘要:
https://zhuanlan.zhihu.com/p/338649583 阅读全文
摘要:
中文资料:https://blog.csdn.net/kunhe0512/category_11813620.html 阅读全文
摘要:
int a; //转换的目标变量。 char c = '7'; //要转换的字符。 a = c - '0'; out a = 7 阅读全文
摘要:
安装: sudo apt-get install valgrind valgrind-dbg 使用教程: https://blog.csdn.net/tissar/article/details/87194737 阅读全文
摘要:
ffmpeg -re -y -i rtsp://admin:zyjj12345@51.205.26.92/Streaming/Channels/1 -vcodec libx264 -f flv 09262.flv 阅读全文
摘要:
sudo apt-get install lm-sensors hddtemp sudo apt-get install psensor psensor 阅读全文
摘要:
([1-9]\d*\.?\d*)|(0\.\d*[1-9]) | 符号 | 意义 | | | | | ^ | 匹配行的开头 | | $ | 匹配行的结尾 | | . | 匹配任意单个字符 | | […] | 匹配[]中的任意一个字符 | | (…) | 设定分组 | | \ | 转义字符 | | \ 阅读全文
摘要:
1、C/C++:long int与long long的区别 在实际的使用中,long与int几乎没有区别:原因是早期的C编译器定义了long int占用4个字节,int占用2个字节,long int是名副其实的长整型。在ANSI C的标准中,对长整型的定义也是long int应该至少和int一样长, 阅读全文
摘要:
在容器中有些东西无法正常下载,需要配置代理 https://blog.csdn.net/peng2hui1314/article/details/124267333#:~:text=Docker%20%E7%9A%84%20Client%20%E5%92%8C%20Daemon%20%E7%AB%A 阅读全文
摘要:
#!/bin/bash sudo apt install curl curl https://get.docker.com | sh \ && sudo systemctl start docker \ && sudo systemctl enable docker # Requires nvidi 阅读全文