随笔分类 -  读书笔记

摘要:《Operating System Concepts》学习第 12 天,p87-p94 总结,总计 8 页。 一、技术总结 1.Android The Android operating system was designed by the Open Handset Alliance (led pr 阅读全文
posted @ 2025-02-23 13:03 codists 阅读(4) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 11 天,p76-p86 总结,总计 11 页。 一、技术总结 1.mechanism & policy (1)mechanisim 定义 An operation that defi nes how something will be 阅读全文
posted @ 2025-02-22 15:49 codists 阅读(5) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 10 天,p62-p75 总结,总计 14 页。 一、技术总结 1. system call (1) 定义 The primary interface between processes and the operating system, 阅读全文
posted @ 2025-02-21 21:30 codists 阅读(1) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 9 天,p50-p61 总结,总计 12 页。 一、技术总结 1.system call (1) 定义 The primary interface between processes and the operating system, p 阅读全文
posted @ 2025-02-20 22:25 codists 阅读(5) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 8 天,p41-p49 总结,总计 9 页。 一、技术总结 1.peer-to-peer (P2P) (1)定义 P2P is A mode of distributed computing in which all nodes act 阅读全文
posted @ 2025-02-19 11:24 codists 阅读(5) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 7 天,p34-p40 总结,总计 7 页。 一、技术总结 1.virtualization(虚拟化) (1)定义 A technology for abstracting the hardware of a single compute 阅读全文
posted @ 2025-02-18 15:28 codists 阅读(3) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 6 天,p26-p33 总结,总计 8 页。 一、技术总结 timer (1)为什么设置 timer We must ensure that the operating system maintains control over the 阅读全文
posted @ 2025-02-17 10:55 codists 阅读(5) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 5 天,p17-p25 总结,总计 9 页。 一、技术总结 1.计算机系统的组成结构 (1)CPU—The hardware that executes instructions. (2)Processor—A physical chip 阅读全文
posted @ 2025-02-16 22:28 codists 阅读(11) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 4 天,p13-p16 总结,总计 4 页。 一、技术总结 1.storage 指令只能在 memory 上执行,所以要执行程序,那么就要加载到内存上。 2.primary storage primary storage 包含下面这些分类 阅读全文
posted @ 2025-02-15 10:43 codists 阅读(6) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 3 天,p9-p12 总结,总计 4 页。 一、技术总结 1.interrupt interrupt具有优先级(priority)。 2.storage 指令只能在 memory 上执行,所以要执行程序,那么就要加载到内存上。 (1)RA 阅读全文
posted @ 2025-02-11 23:55 codists 阅读(8) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 2 天,p2-p8 总结,总计 7 页。 一、技术总结 1.operating system An operating system is software that manages a computer’s hardware。 2.sy 阅读全文
posted @ 2025-02-09 00:10 codists 阅读(4) 评论(0) 推荐(0) 编辑
摘要:《Operating System Concepts》学习第 1 天,p1-p1 总结,总计 1 页。 一、技术总结 无。 二、英语总结(生词:1) 1.intermediary (1)intermediary: inter-("between, among") + medius("middle") 阅读全文
posted @ 2025-01-29 00:05 codists 阅读(3) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 20 天,p360-p377 总结,总计 18 页。 一、技术总结 1.seaborn 可视化工具。 2.dtrace (1)安装 sudo apt-get install systemtap-sdt-dev (2)编译 ./configure --wi 阅读全文
posted @ 2025-01-26 14:55 codists 阅读(3) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 19天,p356-p359 总结,总计 4 页。 一、技术总结 1.benchmark suite The benchmark suite is the tool to use when comparing the complete performanc 阅读全文
posted @ 2025-01-25 23:42 codists 阅读(3) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 18天,p353-p355 总结,总计 3 页。 一、技术总结 1.benchmark(基准测试) Python中常用的 benchmark 有 timeit, pyperformance。 (1)timeit $ ./python -m timeit 阅读全文
posted @ 2025-01-24 23:18 codists 阅读(2) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 17天,p336-p352 总结,总计 17 页。 一、技术总结 1.GDB GDB 是 GNU Dbugger 的缩写。 (1)安装 sudo apt install gdb (2)创建 .gdbinit 文件 touch ~/.gdbinit vim 阅读全文
posted @ 2025-01-23 23:51 codists 阅读(7) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 16天,p329-p335 总结,总计 7 页。 一、技术总结 1.debugging p331, There are two types of debugger, console and visual——作者将 debugger分为两类:(1)cons 阅读全文
posted @ 2025-01-22 23:59 codists 阅读(2) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 15天,p285-p328 总结,总计 44 页。 一、技术总结 1.shallow comparison p285, In Objects object.c, the base implementation of the object type is 阅读全文
posted @ 2025-01-21 13:58 codists 阅读(1) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 14天,250-p284 总结,总计 25 页。 一、技术总结 介于我觉得作者写得乱七八糟的,读完我已经不想说话了,所以今日无技术总结。 二、英语总结(生词:2) 1.spawn (1)spawn: 来自于词根 expandere。 (2)expande 阅读全文
posted @ 2025-01-20 14:21 codists 阅读(9) 评论(0) 推荐(0) 编辑
摘要:《CPython Internals》学习第 13天,p232-p249 总结,总计 18 页。 一、技术总结 无。 二、英语总结(生词:1) 1.overhead (1)overhead: over-("above") + head(“top part, uppermost section”) o 阅读全文
posted @ 2025-01-19 23:53 codists 阅读(3) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示