摘要: ![](https://img2024.cnblogs.com/blog/1834051/202411/1834051-20241105095229541-1442105706.png) 阅读全文
posted @ 2024-11-05 09:53 simp00 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 简介 有时候也不是很敢参考网络上的描述信息 也想要找到比较正规的描述 下面是《深入理解计算机系统》部分关于大小端的原文描述图片 假设一个整型变量int i=0x12345678; 占用四个字节 下面是mac m1 写了一段程序关于int的值的打印 后续Windows我稍后再补上 内存排序 a. 12 阅读全文
posted @ 2024-11-01 22:46 simp00 阅读(12) 评论(0) 推荐(0) 编辑
摘要: import os import subprocess def extract_audio_from_mp4(directory): # 检索目录下所有MP4文件 for filename in os.listdir(directory): if filename.endswith(".mp4"): 阅读全文
posted @ 2024-10-29 10:16 simp00 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 优点 降低耦合度:使用PIMPL可以减少头文件的依赖,降低编译时的耦合度。 隐藏实现细节:实现细节对使用者是不可见的,有利于封装。 编译依赖减少:当实现改变时,不需要重新编译依赖于接口的代码,只需重新编译实现代码即可。 注意事项: 运行时性能:每次通过指针访问实现类可能会有轻微的性能开销。 资源管理 阅读全文
posted @ 2024-03-01 18:04 simp00 阅读(39) 评论(0) 推荐(0) 编辑
摘要: https://github.com/JPNaude/dev_notes/wiki/Using-Google-Breakpad-with-Qt https://chromium.googlesource.com/breakpad/breakpad/ 下载及编译 git clone https://c 阅读全文
posted @ 2024-02-06 11:13 simp00 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 创建ubuntu 指定名称创建容器 docker run -t -i -d -v /opt:/opt --name ubuntu2004 ubuntu:20.04 /bin/bash 修改ustc镜像源 sed -i 's@//.*archive.ubuntu.com@//mirrors.ustc. 阅读全文
posted @ 2024-01-17 20:10 simp00 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 水星 SG108 PRO/1.0 网络端口镜像 使用流程 购买链接 https://item.jd.com/100001913315.html 水星智能网管交换机客户端应用程序 1.0.3 https://service.mercurycom.com.cn/download-1830.html 如上 阅读全文
posted @ 2023-12-25 18:15 simp00 阅读(297) 评论(0) 推荐(0) 编辑
摘要: ```c++ #include class SpinLock{ public: SpinLock():flag_(false){} void lock(){ bool except = false; while(!flag_.compare_exchange_weak(expect,true)) { 阅读全文
posted @ 2023-06-20 23:40 simp00 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ``` import os import time import datetime import subprocess import mysql.connector # Docker容器名称 container_name = "containerName" # MySQL数据库连接配置 db_hos 阅读全文
posted @ 2023-06-09 10:22 simp00 阅读(83) 评论(0) 推荐(0) 编辑
摘要: ```c++ #include QByteArray hash2 = QCryptographicHash::hash(password.toLocal8Bit(), QCryptographicHash::Md5); auto pwd = hash2.toHex().toStdString(); 阅读全文
posted @ 2023-05-22 20:04 simp00 阅读(453) 评论(0) 推荐(0) 编辑