上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页
摘要: OS-Ubuntu-安装搜狗拼音输入法 搜狗输入法Linux版本:sogoupinyin_4.2.1.145_amd64.deb 下载地址:https://shurufa.sogou.com/linux 安装指南:https://shurufa.sogou.com/linux/guide sogou 阅读全文
posted @ 2023-04-09 23:27 Theseus‘Ship 阅读(1162) 评论(0) 推荐(0) 编辑
摘要: C++-Ubuntu core dumped(核心已转储)-GDB调试 Linux的可执行程序异常退出时,提示“核心已转储”。 此时需要系统生成core文件,并通过GDB调试以确定问题。 https://blog.csdn.net/scjdas/article/details/128585787 设 阅读全文
posted @ 2023-04-09 23:07 Theseus‘Ship 阅读(259) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-环境变量-LD_LIBRARY_PATH Linux中PATH、 LIBRARY_PATH、 LD_LIBRARY_PATH的区别 运行时动态库的搜索路径的先后顺序是: 编译目标代码时指定的动态库搜索路径; 环境变量LD_LIBRARY_PATH指定的动态库搜索路径; 配置文件/e 阅读全文
posted @ 2023-04-09 21:55 Theseus‘Ship 阅读(394) 评论(0) 推荐(0) 编辑
摘要: #Python-venv-创建和管理虚拟环境 https://docs.python.org/3/tutorial/venv.html 概述 Python应用程序通常会使用不在标准库内的软件包和模块。应用程序有时需要特定版本的库,因为应用程序可能需要修复特定的错误,或者可以使用库的过时版本的接口编写 阅读全文
posted @ 2023-04-09 13:38 Theseus‘Ship 阅读(78) 评论(0) 推荐(0) 编辑
摘要: Code-C++ Invoke Python https://www.cnblogs.com/yongchao/p/17299892.html 使用 C 或 C++ 扩展 Python 扩展和嵌入 Python 解释器 Python 3.10.11 Python/C API 参考手册 Python 阅读全文
posted @ 2023-04-09 10:46 Theseus‘Ship 阅读(26) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-Ubuntu22.04x64-Python-C++调用Python缺少Python.h 使用 C 或 C++ 扩展 Python 扩展和嵌入 Python 解释器 Python 3.10.11 Python/C API 参考手册 Python 3.11.3 Python/C API 阅读全文
posted @ 2023-04-09 10:07 Theseus‘Ship 阅读(644) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-Ubuntu-apt-get https://help.ubuntu.com/community/AptGet/Howto Package management via apt-get runs hand-in-hand with the /etc/apt/sources.list 阅读全文
posted @ 2023-04-08 21:16 Theseus‘Ship 阅读(10) 评论(0) 推荐(0) 编辑
摘要: VMware Workstation-Ubuntu虚拟机-异常关闭后网卡无法工作 参考https://blog.csdn.net/lhx526080338/article/details/129360808 虚拟机镜像ubuntu-22.04.2-desktop-amd64.iso 虚拟机启动之后, 阅读全文
posted @ 2023-04-08 16:42 Theseus‘Ship 阅读(70) 评论(0) 推荐(0) 编辑
摘要: #IDE-Visual Studio Code Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, m 阅读全文
posted @ 2023-04-08 12:40 Theseus‘Ship 阅读(67) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-Ubuntu-Tool-Visual Studio Code 在Ubuntu上,可以使用Visual Studio Code进行代码调试。 Visual Studio Code官网如下:https://code.visualstudio.com/ 对于Ubuntu,提供deb包。 阅读全文
posted @ 2023-04-08 02:02 Theseus‘Ship 阅读(20) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-Tool-可视化比较与合并工具Meld 在Linux系统上有时会需要进行文件比较与合并,Meld能提供相关功能。 http://meldmerge.org/ http://meldmerge.org/help/ Meld Visual diff and merge tool Mel 阅读全文
posted @ 2023-04-06 21:37 Theseus‘Ship 阅读(60) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-Ubuntu 开源 Ubuntu一直是免费下载,使用和分享 安全 Ubuntu是最为安全的操作系统之一,其内建了防火墙和病毒保护软件。并且,长期支持的版本将提供5年的安全补丁和更新。 可访问 计算用于所有人,不论国籍,性别或障碍。Ubuntu被完整地翻译成50多种语言,且包含了必要 阅读全文
posted @ 2023-04-05 12:38 Theseus‘Ship 阅读(26) 评论(0) 推荐(0) 编辑
摘要: #OS-Windows-计算机内存型号配置查看 近来想给计算机配置内存,在网上百度到了如何查看型号和配置的方法,整理如下。 1.直接在计算机底部查看标识。 2.win+R --> cmd -->systeminfo >结果输出在当前窗口中。 3.win+R --> cmd -->dxdiag >弹出 阅读全文
posted @ 2023-04-05 08:07 Theseus‘Ship 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 国家图书馆-阅览记录 2023.03.29 《孤独星人自救指南:在孤独中前行 吴晓磊》 (未完) 阅读全文
posted @ 2023-03-29 22:19 Theseus‘Ship 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Book-深入设计模式-访问者模式 https://refactoringguru.cn/design-patterns/visitor 访问者模式 亦称: Visitor 访问者模式是一种行为设计模式, 它能将算法与其所作用的对象隔离开来。 访问者模式建议将新行为放入一个名为访问者的独立类中, 而 阅读全文
posted @ 2023-03-06 22:51 Theseus‘Ship 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页
Live2D