上一页 1 2 3 4 5 6 7 8 ··· 41 下一页
摘要: 1.长按esc键,进入grub>命令行 2.输入normal,按回车键。此时会进入操作系统,需要手动重启。 3.重启,长按esc键,有2种情况: (1) 直接进入grub选项界面 (2) 再次进入grub>命令行,此时再次输入normal,按回车键,即可进入grub选项界面 附:Ubuntu忘记密码 阅读全文
posted @ 2023-03-16 12:23 Clotho_Lee 阅读(6527) 评论(0) 推荐(0)
摘要: 原理:修改grub的recovery模式的编辑权限,原来为只读(read-only),修改为读写(read-write)。 1.长按shift键开机 2.列表选择"Advanced options for Ubuntu",按回车键 3.列表选择任意一个(recovery mode),按e键进入编辑界 阅读全文
posted @ 2023-03-16 12:14 Clotho_Lee 阅读(2387) 评论(0) 推荐(0)
摘要: 方法 ~="符号" 例子 搜索逗号 ~="," 搜索左括号 ~="(" 搜索下划线 ~="_" 阅读全文
posted @ 2023-03-14 22:31 Clotho_Lee 阅读(491) 评论(0) 推荐(0)
摘要: 1.下载并安装软媒魔方 2.运行魔方 -> 清理大师 -> 系统瘦身 -> 开始分析 -> 勾选"Windows.old" -> 开始瘦身 阅读全文
posted @ 2022-12-27 19:25 Clotho_Lee 阅读(30) 评论(0) 推荐(0)
摘要: 原因 glad.h中定义了如下宏判断: #ifdef __gl_h_ #error OpenGL header already included, remove this include, glad already provides it #endif #define __gl_h_ 如果在#inc 阅读全文
posted @ 2022-12-26 15:09 Clotho_Lee 阅读(630) 评论(0) 推荐(0)
摘要: glad https://glad.dav1d.de/ glad2 https://gen.glad.sh/ 阅读全文
posted @ 2022-12-23 16:48 Clotho_Lee 阅读(108) 评论(0) 推荐(0)
摘要: 推荐一些我知道的高人和厉害的前辈。 高人还有很多,本文列的只是其中我有幸了解到并能学习到他们皮毛的前辈。 通过学习他们的书、资料和音视频,获得了感悟和启发。 他们的书、资料和音视频请自行搜索查阅。 张至顺、南怀瑾、倪海厦、 曾仕强、 李敖、 王东岳(国学+哲学)、 徐文兵(黄帝内经+中医)、 岑逸飞 阅读全文
posted @ 2022-12-07 19:59 Clotho_Lee 阅读(312) 评论(0) 推荐(0)
摘要: 之前用C#,有比较方便的#region功能: #region 代码块名 //...代码块 #endregion 原来C++也有类似功能,示例如下: #pragma region 代码块名 //... #pragma endregion * 在Visual Studio中是有效的,其它IDE未测试不确 阅读全文
posted @ 2022-12-06 17:21 Clotho_Lee 阅读(1813) 评论(0) 推荐(1)
摘要: Windows 10和Windows 11的设置是不能禁止系统自动更新的(只能暂停7天)。 方法1 右键计算机 -> 管理 -> 服务和应用程序 -> 服务 -> Windows Update -> 禁用 方法2 开始 -> 运行 -> gpedit.msc -> 计算机配置 -> 管理模板 -> 阅读全文
posted @ 2022-12-02 18:46 Clotho_Lee 阅读(442) 评论(0) 推荐(0)
摘要: 如果需要在类中使用静态成员变量,需要在头文件和.cpp文件各定义一次 例如,有StaticTest.h和StaticTest.cpp两个文件 StaticTest.h: class StaticTest { private: static int value; public: static void 阅读全文
posted @ 2022-11-11 13:56 Clotho_Lee 阅读(88) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 41 下一页