上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: # 注意 是 C语言代码,不是C++ void func(void) { const int buf_len = 64; char buffer[buf_len] = { 0 }; } $$cat -n fun.c 1 void func(void) 2 { 3 const int buf_len 阅读全文
posted @ 2023-03-04 20:54 wangshaodong 阅读(31) 评论(0) 推荐(0)
摘要: $ git remote -v origin git@github.com:AAAAAA/BBBBB.git (fetch) origin git@github.com:AAAAAA/BBBBB.git (push) $ git push origin HEAD:refs/heads/dev-xxx 阅读全文
posted @ 2023-03-04 19:57 wangshaodong 阅读(17) 评论(0) 推荐(0)
摘要: Linux # 持久加速 mkdir -p ~/.pip # 清华 source cat << EOF > ~/.pip/pip.conf [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted- 阅读全文
posted @ 2023-02-23 10:43 wangshaodong 阅读(72) 评论(0) 推荐(0)
摘要: Q: windows 7 使用 net use 命令配置samba服务器 , 命令行报错发生系统错误 2239 此账户已过期 A: 重启Linux服务器 :) 阅读全文
posted @ 2023-02-20 17:32 wangshaodong 阅读(92) 评论(0) 推荐(0)
摘要: 操作系统 实时操作系统(RTOS) rt-Thread https://github.com/RT-Thread/rt-thread LiteOS https://github.com/LiteOS/LiteOS FreeRtos https://www.freertos.org/ ecos htt 阅读全文
posted @ 2023-02-05 21:48 wangshaodong 阅读(70) 评论(0) 推荐(0)
摘要: 查找 ~/.cache/vmware/drag_and_drop 目录下是否又之前拖拽的缓存文件,可能会很大 阅读全文
posted @ 2023-01-26 17:24 wangshaodong 阅读(52) 评论(0) 推荐(0)
摘要: LLDP(Link Layer Discovery Protocol):链路发现层协议 阅读全文
posted @ 2023-01-12 14:21 wangshaodong 阅读(26) 评论(0) 推荐(0)
摘要: 查看文件所属包 # dpkg -S 文件名称 dpkg -S /usr/bin/svnversion 查看包内容 # dpkg -L 包名 dpkg -L subversion 阅读全文
posted @ 2023-01-12 10:28 wangshaodong 阅读(32) 评论(0) 推荐(0)
摘要: // std::array is a container that encapsulates fixed size arrays. #include <array> using namespace std; array<int, 100> ref = { 0 }; 阅读全文
posted @ 2022-05-08 22:53 wangshaodong 阅读(130) 评论(0) 推荐(0)
摘要: struct task_struct sched.h struct mm_struct mm_types.h current *struct cred cred.h 阅读全文
posted @ 2022-03-21 01:04 wangshaodong 阅读(54) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 10 下一页