12 2024 档案

摘要:《计算机组成及汇编语言原理》学习第 11 天,p133-p159 总结,总计 27 页。 一、技术总结 1.segment (1)定义 Broadly speaking, a contiguous section of memory. More specifically, a section of 阅读全文
posted @ 2024-12-30 20:32 codists 阅读(15) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 10 天,p128-p132 总结,总计 5 页。 一、技术总结 1.8088 organization and architecture 8088处理器是16位电脑,寄存器是16位,数据总线(data bus)是8位,地址总线是20位。 (1)general-p 阅读全文
posted @ 2024-12-29 21:50 codists 阅读(5) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 9 天,p123-p127 总结,总计 5 页。 一、技术总结 1.memory优化 (1)cache memory remove blank from "Most computers support two different kinds (levels) of 阅读全文
posted @ 2024-12-28 23:57 codists 阅读(5) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 8 天,p121-p122 总结,总计 2 页。 一、技术总结 1.memory优化 (1)cache memory remove blank from "Most computers support two different kinds (levels) of 阅读全文
posted @ 2024-12-27 23:46 codists 阅读(7) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 7 天,p116-p120 总结,总计 5 页。 一、技术总结 1.CPU优化 (1)increase overall performance number 例如:16位电脑提升到32位电脑。 (2)multiprocessing One way to make 阅读全文
posted @ 2024-12-26 23:34 codists 阅读(16) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 6 天,p86-p115 总结,总计 20 页。 一、技术总结 1.if statement 2.loop 在许多编程语言中,有类种循环:一种是在程序开头检测条件(test the condition),另一种是在程序末尾检测条件。 3.Collatz conje 阅读全文
posted @ 2024-12-25 15:33 codists 阅读(17) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 5 天,p82-p85 总结,总计 4 页。 一、技术总结 1.汇编语言(jasmin) (1)branch instruction Any statement that might cause the PC to change its value is usua 阅读全文
posted @ 2024-12-24 23:58 codists 阅读(13) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 4 天,p48-p81 总结,总计 34 页。 一、技术总结 1.CISC vs RISC p49, complex instruction set computing For example, a complex instruction set computin 阅读全文
posted @ 2024-12-23 22:52 codists 阅读(20) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 3 天,p28-p47 总结,总计 20 页。 一、技术总结 1.Virtual Machine 2.stack 3.The fetch-execute Cycle 在控制单元(Control Unit, CU)里面有一个指令寄存器(Instruction Reg 阅读全文
posted @ 2024-12-22 17:17 codists 阅读(11) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 2 天,p9-p27 总结,总计 19 页。 一、技术总结 1.quantum physics(量子物理学) (1)quantum(量子) quantum的本意是:c. the smallest amount of sth(量子)。 In physics, a q 阅读全文
posted @ 2024-12-21 23:33 codists 阅读(16) 评论(0) 推荐(0) 编辑
摘要:《计算机组成及汇编语言原理》学习第 1 天,p1-p8 总结,总计 8 页。 一、技术总结 1.Intel 8088 microprocessor(微处理器), 1979-1988。 2.MS-DOS Microsoft Disk Operating System的缩写,是一个操作系统(operat 阅读全文
posted @ 2024-12-20 23:50 codists 阅读(7) 评论(0) 推荐(0) 编辑
摘要:一、 为什么选择这本书? 本人的工作方向为Python Web方向,想了解下今年该方向有哪些新书出版,遂上packt出版社网站上看了看,发现这本书出版时间比较新(2024年9月),那就它了。 从2024年11月11日至2024年12月18日期间,花了 22 天阅读完《Django 5 By Exam 阅读全文
posted @ 2024-12-19 17:28 codists 阅读(30) 评论(0) 推荐(0) 编辑
摘要:《Django 5 By Example》学习第 22 天,p614-p644 总结,总计 31 页。 一、技术总结 1.功能: students 应用 2.缓存 Django自带的缓存有: (1)backends.memcached.PyMemcacheCache (2) backends.red 阅读全文
posted @ 2024-12-18 11:06 codists 阅读(13) 评论(0) 推荐(0) 编辑
摘要:《Django 5 By Example》学习第 21 天,p561-p613 总结,总计 53 页。 一、技术总结 1.mixins (1)定义(什么是 mixins?) p570,Mixins are a special kind of multiple inheritance for a cl 阅读全文
posted @ 2024-12-16 16:08 codists 阅读(9) 评论(0) 推荐(0) 编辑
摘要:《Django 5 By Example》学习第 20 天,p551-p560 总结,总计 10 页。 一、技术总结 1.custom model field (1)示例 courses/fields.py from django.core.exceptions import ObjectDoesN 阅读全文
posted @ 2024-12-15 23:16 codists 阅读(2) 评论(0) 推荐(0) 编辑
摘要:《Django 5 By Example》学习第 19 天,p543-p550 总结,总计 8 页。 一、技术总结 1.fixtures (1)定义 A fixture is a collection of files that contain the serialized contents of 阅读全文
posted @ 2024-12-14 23:06 codists 阅读(7) 评论(0) 推荐(0) 编辑
摘要:《Django 5 By Example》学习第 18 天,p521-p542 总结,总计 22 页。 一、技术总结 1.django-parler django-parler 用于 model 的 translate。这里要注意下,使用 django-parler 之后会生成新的表,对原来的表数据 阅读全文
posted @ 2024-12-13 22:34 codists 阅读(20) 评论(0) 推荐(0) 编辑
摘要:《Django 5 By Example》学习第 17 天,p493-p520 总结,总计 28 页。 一、技术总结 1.internationalization(国际化) vs localization(本地化) (1)18n,L10n,g11n 以前总觉得这两个缩写好难记,今天仔细看了下维基百科 阅读全文
posted @ 2024-12-12 13:35 codists 阅读(15) 评论(0) 推荐(0) 编辑
摘要:2024年11月编程人总共更新了21篇文章: 1.2024年10月文章一览 2.《使用Gin框架构建分布式应用》阅读笔记:p307-p392 3.《使用Gin框架构建分布式应用》阅读笔记:p393-p437 4.《使用Gin框架构建分布式应用》读后感 5.《Django 5 By Example》阅 阅读全文
posted @ 2024-12-01 22:29 codists 阅读(17) 评论(0) 推荐(0) 编辑

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