随笔分类 - Others
摘要:
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/file.h> #define PID_BUF_LEN (20) #defi
阅读全文
摘要:在 ~/.config/Code/User/settings.json 中加入以下配置 "cmake.debugConfig": { "setupCommands": [ {"text": "-gdb-set follow-fork-mode child"} ] } 这个暂时没有测试 set det
阅读全文
posted @ 2020-07-04 17:44
sfdevs
摘要:``` var TooL = {}; (function(t){ function common(){ console.log("common"); } var a = function(){}; a.prototype.get = function(){ console.log("a.get"); }, a.prototype.set = function(){ console.log("a.s
阅读全文
摘要:``` sudo apt-get install xserver-xorg-lts-utopic sudo dpkg-reconfigure xserver-xorg-lts-utopic reboot ```
阅读全文
摘要:前提 大部分情况都是因为当前系统的内核不满足驱动文件的编译条件,可以通过驱动文件中的文档来确定是否要升级内核还是降级内核, 对于升级内核只需要下载指定的内核版本安装即可,降级内核(暂时不清楚是否会引发其他问题) 找到适合自己的内核 github 搜索 RTL88x2BU,会出现很多大神维护的驱动文件
阅读全文
摘要:'动物'矩形框, 代表一个类(class) 类图的结构 第一层 类的 名称 ,如果是抽象类,用斜体显示 第二层 类的 特性 ,通常是字段和属性 第三层 类的 操作 ,通常是方法或行为 ‘+’ 表示public ‘ ’表示private ‘ ’表示protected 类与类之间的关系 继承 空心三角形
阅读全文
posted @ 2019-09-06 18:18
sfdevs
摘要:需要: vscode + Remote ssh(vscode插件中下载) openssh (https://www.mls software.com/files/setupssh 8.0p1 2.exe) win7 中 C:\Users\upup\.ssh\config (出现 Bad owner
阅读全文