01 2025 档案
摘要:《Operating System Concepts》学习第 1 天,p1-p1 总结,总计 1 页。 一、技术总结 无。 二、英语总结(生词:1) 1.intermediary (1)intermediary: inter-("between, among") + medius("middle")
阅读全文
摘要:一、 为什么选择这本书? Python 是本人工作中最常用的开发语言,为了加深对 Python 的理解,更好的掌握 Python 这门语言,所以想对 Python 解释器有所了解,看看是怎么使用C语言来实现Python的,以期达到对 Python语言的掌握达到精通的程度,。 关于 Python 解释
阅读全文
摘要:《CPython Internals》学习第 20 天,p360-p377 总结,总计 18 页。 一、技术总结 1.seaborn 可视化工具。 2.dtrace (1)安装 sudo apt-get install systemtap-sdt-dev (2)编译 ./configure --wi
阅读全文
摘要:《CPython Internals》学习第 19天,p356-p359 总结,总计 4 页。 一、技术总结 1.benchmark suite The benchmark suite is the tool to use when comparing the complete performanc
阅读全文
摘要:《CPython Internals》学习第 18天,p353-p355 总结,总计 3 页。 一、技术总结 1.benchmark(基准测试) Python中常用的 benchmark 有 timeit, pyperformance。 (1)timeit $ ./python -m timeit
阅读全文
摘要:《CPython Internals》学习第 17天,p336-p352 总结,总计 17 页。 一、技术总结 1.GDB GDB 是 GNU Dbugger 的缩写。 (1)安装 sudo apt install gdb (2)创建 .gdbinit 文件 touch ~/.gdbinit vim
阅读全文
摘要:《CPython Internals》学习第 16天,p329-p335 总结,总计 7 页。 一、技术总结 1.debugging p331, There are two types of debugger, console and visual——作者将 debugger分为两类:(1)cons
阅读全文
摘要:《CPython Internals》学习第 15天,p285-p328 总结,总计 44 页。 一、技术总结 1.shallow comparison p285, In Objects object.c, the base implementation of the object type is
阅读全文
摘要:《CPython Internals》学习第 14天,250-p284 总结,总计 25 页。 一、技术总结 介于我觉得作者写得乱七八糟的,读完我已经不想说话了,所以今日无技术总结。 二、英语总结(生词:2) 1.spawn (1)spawn: 来自于词根 expandere。 (2)expande
阅读全文
摘要:《CPython Internals》学习第 13天,p232-p249 总结,总计 18 页。 一、技术总结 无。 二、英语总结(生词:1) 1.overhead (1)overhead: over-("above") + head(“top part, uppermost section”) o
阅读全文
摘要:《CPython Internals》学习第 12天,p221-p231 总结,总计 11 页。 一、技术总结 无。 二、英语总结(生词:2) 1.at a time idiom. separately(单独地) in the specified groups(一次)。示例: (1) I can o
阅读全文
摘要:《CPython Internals》学习第 11天,p177-p220 总结,总计 44 页。 一、技术总结 1.memory allocation in C (1)static memeory allocation Memory requirements are calculated at co
阅读全文
摘要:《CPython Internals》学习第 10天,p152-p176 总结,总计 25 页。 一、技术总结 1.adding an item to a list my_list = [] my_list.append(obj) 上面的代码涉及两个指令:LOAD_FAST, LIST_APPEND
阅读全文
摘要:《CPython Internals》学习第 9天,p151-p1510 总结,总计 1 页。 一、技术总结 无。 二、英语总结(生词:1) 1.marshal (1)marshaling Marshalling or marshaling(US spelling) is the process o
阅读全文
摘要:《CPython Internals》学习第 8 天,p118-p150 总结,总计 33 页。 一、技术总结 补充一些本人整理的关于 Context-Free Grammar(CFG) 的知识。 1.symbol(符号) A mathematical symbol is a figure or a
阅读全文
摘要:《CPython Internals》学习第 7 天,p97-p117 总结,总计 21 页。 一、技术总结 1.词法分析(lexical analysis) 根据《Compilers-Principles, Techniques, and Tools》(《编译原理》第2版)第 5 页:The fi
阅读全文
摘要:《CPython Internals》学习第 6 天,p96-p96 总结,总计 1 页。 一、技术总结 1.parser-tokenizer p92, Creating a concrete syntax tree using a parser-tokenizer, or lexer. p96,
阅读全文
摘要:《CPython Internals》学习第 5 天,p76-p95 总结,总计 20 页。 一、技术总结 无。 二、英语总结(生词:1) 1.check vi/vt. to exam sth to ensure it is correct, true, or in good condition.示
阅读全文
摘要:《CPython Internals》学习第 4 天,p61-p75 总结,总计 15 页。 一、技术总结 1.编译器类型 (1)self-hosted compiler Self-hosted compilers are compilers written in the language they
阅读全文
摘要:《CPython Internals》学习第 3 天,p43-p60 总结,总计 18 页。 一、技术总结 1.编译所需要的package sudo apt install -y build-essential libssl-dev zlib1g-dev libncurses5-dev \ libn
阅读全文
摘要:《CPython Internals》学习第 2 天,p20-p42 总结,总计 23 页。 一、技术总结 1.Python interpreter CPython,PyPython,Jypython,Cython。 2.阅读 cpython 代码工具 VSCode 或者 CLion。VSCode
阅读全文
摘要:《CPython Internals》学习第 1 天,p1-p19 总结,总计 19 页。 一、技术总结 无。 二、英语总结(生词:2) 1.humble vs humbled (1)humble: humus(“earth”) adj. 字面意思是“on the ground”, 后面引申为“lo
阅读全文
摘要:一、 为什么选择这本书? 这本书来自于:https://github.com/codefollower/My-Blog/issues/1。工作之后,个人一直追求的一个方面就是“系统化”,笼统的来说就是从以下两方面进行系统化:“基础”+“专业”。这本书属于基础方面的深化,通过 Java 虚拟机来讲计算
阅读全文
摘要:《计算机组成及汇编语言原理》学习第 15 天,p200-p240 总结,总计 40 页。 一、技术总结 1.derived type (1)定义 A representation for data built up by combining basic types. For example, a f
阅读全文
摘要:《计算机组成及汇编语言原理》学习第 14 天,p178-p199 总结,总计 22 页。 一、技术总结 1.关于 end 的一点疑问 p178, For example, one instruction (BSWAP) swaps the end bytes in a 32-bit register
阅读全文
摘要:《计算机组成及汇编语言原理》学习第 13 天,p177-p177 总结,总计 1 页。 一、技术总结 1.real mode A programming model where the program has access to the entire capability of the machin
阅读全文
摘要:2024年12月编程人总共更新了20篇文章: 1.2024年11月文章一览 2.《Django 5 By Example》阅读笔记:p493-p520 3.《Django 5 By Example》阅读笔记:p521-p542 4.《Django 5 By Example》阅读笔记:p543-p55
阅读全文
摘要:《计算机组成及汇编语言原理》学习第 12 天,p160-p176 总结,总计 17 页。 一、技术总结 1.PowerPC (1)programming model(mode) As in most modern computers, there are at least two separate
阅读全文