摘要:
C++ 中的内存序 cpp memory order Created: 2024-06-29T11:08+08:00 Published: 2024-11-15T17:41+08:00 Categories: C-CPP 目录单核访存模型多核访存模型 与 sequentially consisten 阅读全文
摘要:
CAS 在 ARM 架构与 x86_64 架构上的实现 cas on ARM and x86_64 Created: 2024-11-13T16:25+08:00 Published: 2024-11-13T16:36+08:00 Categories: OperatingSystem Tags: 阅读全文
摘要:
ELF 文件的链接与加载 Created: 2024-07-02T11:03+08:00 Published: 2024-07-02T16:44+08:00 Modified: 2024-11-19T23:14+08:00 Categories: OperatingSystem 要看得懂 x86 汇 阅读全文
摘要:
C++ 中的线程、锁和条件变量 Created: 2024-06-19T17:17+08:00 Published: 2024-11-18T10:39+08:00 Categories: C-CPP 目录线程创建与执行锁lock guard examplemutex 底层实现解释 by GPT条件变 阅读全文
摘要:
C++ lambda 表达式与「函数对象」(functor) Created: 2024-06-27T16:29+08:00 Published: 2024-11-17T17:01+08:00 Categories: C-CPP functor(Function Object) 首先要介绍的是 fu 阅读全文
摘要:
C++ 模板 Created: 2024-03-24T20:24+08:00 Published: 2024-11-17T16:37+08:00 Categories: CPP 目录偏特化类模板函数模板形参包Question我记不住模板的语法,尤其是偏特化的语法,怎么办?面试问题利用类模板和函数模板 阅读全文
摘要:
CPP 智能指针 Created: 2024-06-30T20:43+08:00 Published: 2024-11-16T23:17+08:00 Categories: C-CPP 智能指针的作用 智能指针最初使的作用就是离开作用域调用析构函数。 因为 malloc 出来的东西只能通过指针持有, 阅读全文
摘要:
在 Python 中使用 Type Hints Created: 2024-10-21T16:48+08:00 Published: 2024-10-22T13:08+08:00 Categories: Python 工厂方法使用 TypeVar 作为函数参数的类型注释,可以做到传入什么类型,返回什 阅读全文
摘要:
使用 GitHub Actions & Pages 托管 Honkit 发布的网站 Created: 2024-09-22T13:48+08:00 Published: 2024-09-22T14:28+08:00 Category: DevOps 作为张雨生的骨灰级粉丝,我一直想把雨生的资料尽可能 阅读全文
摘要:
Python module 的相对导入 python module relative import 目录Python module 的相对导入项目结构main.pypet.pycat.pydog.pypet/__init__.pyModuleNotFoundError: No module name 阅读全文
摘要:
CS144 2024 winter 作业笔记 cs144 homework notes Created: 2024-05-14T10:24+08:00 Published: 2024-07-15T20:16+08:00 Categories: ComputerNetwork 目录checkpoint 阅读全文
摘要:
allocator、polymorphic allocator 与 memory_resource Created: 2024-07-04T10:59+08:00 Published: 2024-07-05T11:27+08:00 Categories: C-CPP custom allocator 阅读全文
摘要:
左值、右值、移动语义、完美转发 cpp-lvalue-rvalue-move-forward Created: 2024-06-25T15:20+08:00 Published: 2024-06-26T10:40+08:00 Categories: C-CPP C++ Rvalue Referenc 阅读全文
摘要:
Windows 下 os.system 执行结果和命令行不一致 os.system-not-same-as-cmd-in-windows Created: 2024-06-19T15:52+08:00 Published: 2024-06-19T16:01+08:00 Categories: Pyt 阅读全文
摘要:
git clone GitHub 仓库报错未授权 grant Github authentication to git Created: 2024-06-03T20:40+08:00 Published: 2024-06-03T20:44+08:00 Categories: Git GitHub 开 阅读全文
摘要:
无法在 Linux 下运行脚本 cant run script in linux Created: 2024-05-14T10:59+08:00 Published: 2024-05-15T11:19+08:00 Categories: Linux Tags: Bug 打算在 wsl 中运行 Win 阅读全文
摘要:
MIT6S081 课程笔记 mit6s081 lecture notes Created: 2023-06-05T20:26+08:00 Published: 2024-05-12T12:13+08:00 Categories: OperatingSystem 关于这门课程使用到的资料: sched 阅读全文
摘要:
MIT6S081 作业笔记 mit6s081 homework notes Created: 2023-06-22T16:33+08:00 Published: 2024-05-09T11:17+08:00 Categories: OperatingSystem 6.S081 / Fall 2020 阅读全文
摘要:
gdb 使用 gdb usage Created: 2024-04-29T20:17+08:00 Published: 2024-04-30T16:02+08:00 Categories: CPP 编译需要加上参数 -g 简单的如 step、continue 就不介绍了,参考 Linux 系统编程( 阅读全文
摘要:
xv6 代码执行流分析 xv6 execution flow Created: 2024-01-08T19:56+08:00 Publish: 2024-04-16T10:10+08:00 Categories: OperatingSystem 基于 git://g.csail.mit.edu/xv 阅读全文
摘要:
函数调用约定中寄存器的保存问题 calling convention Created: 2024-03-25T17:03+08:00 Published: 2024-03-29T09:50+08:00 Categories: Compiler 目录例子caller-save 和 callee-sav 阅读全文
摘要:
anki 的一点使用笔记 阅读全文
摘要:
想起一些非常久的事情 Subtitle: 2024-01-16 recall Created: 2024-01-16T18:52+08:00 Published: 2024-01-16T20:08+08:00 Categories: Essay Tags: Diary 可能是看书的影响,也可能是前天 阅读全文
摘要:
reproduce-ray-tracing-in-one-weekend Created: 2023-12-24T22:08+08:00 Published: 2023-12-26T09:38+08:00 Categories: ComputerGraphics 成像模型: vec3, ray im 阅读全文
摘要:
CPP Houjie Subtitle: 侯捷 C++ 课程笔记 Created: 2023-11-25T10:40+08:00 Categories: CPP 目录面向对象编程(上)C++ 程序设计(Ⅱ)兼谈对象模型C++ 标准库体系结构与内核分析附Component 和 Inheritance 阅读全文
摘要:
FPS Blueprint notes Subtitle: Youtube 上的 FPS UE 项目笔记 Created: 2023-11-14T21:55+08:00 Published: 2023-11-24T16:54+08:00 Categories: UnrealEngine Creati 阅读全文
摘要:
jieba cant extract single character Subtitle: jieba 无法提取单个字符 Created: 2023-11-13T15:28+08:00 Published: 2023-11-13T15:45+08:00 以句子"我喜欢赵"为例,用「赵」代指某个人名, 阅读全文
摘要:
winter comes Created: 2023-10-10T17:49+08:00 Published: 2023-11-09T21:53+08:00 目录志愿活动自然辩证法课堂摘录九月初三欧利昂(Orion)复习重阳节和朋友巴黎圣母院毕导毕业一棵开花的树脸红 志愿活动 参加了一个志愿活动,是 阅读全文
摘要:
learn ue ui Created: 2023-10-24T15:29+08:00 Published: 2023-10-25T12:47+08:00 目录IntroWidgetsText Box(Multi-Line) Intro User Interface Development - Un 阅读全文
摘要:
秋分小记 Created: 2023-09-26T09:17+08:00 Published: 2023-10-08T19:41+08:00 Modified: 2023-10-08T20:10+08:00 Categories: Fragment Tags: Diary 目录秋天的树如果你冷Say 阅读全文
摘要:
starry clouds Created: 2023-08-19T19:04+08:00 Published: 2023-09-24T20:59+08:00 Categories: Fragment 目录承诺久远关于考差爱是瘟疫游泳的鱼学习态度爱没有别的愿望月亮积雨云美如星空好久不见 承诺久远 占 阅读全文
摘要:
关于抛物线版本的《口是心非》 Created: 2023-08-19T19:10+08:00 Published: 2023-09-19T14:19+08:00 Modified: 2023-09-22T22:02+08:00 Categories: Music 目录信我会疯狂(It drive m 阅读全文
摘要:
Games101 作业笔记 Created: 2023-06-19T12:00+08:00 Published: 2023-08-17T16:23+08:00 Categories: ComputerGraphics [ToC] # pa0 使用宏节约 `angle / 180.0 * acos(- 阅读全文
摘要:
Games101 课程笔记 Created: 2023-06-07T20:54+08:00 Published: 2023-08-16T21:05+08:00 Categories: ComputerGraphics [ToC] # Lecture01: Overview of Computer G 阅读全文
摘要:
The C Programming Reading Notes Created: 2023-06-06T15:59+08:00 Published: 2023-08-16T12:14+08:00 Categories: C | ReadingNotes 我看的是第二版,解决了初学 C 语言和 OS 阅读全文
摘要:
贺卡,燕子和电子云 Created: 2023-07-16T17:52+08:00 Published: 2023-08-15T17:36+08:00 Categories: Fragment [toc] # 贺卡 翻日记,看到高三时候班级举行过随机互赠贺卡的活动,对于这件事我只有一点点模糊的印象, 阅读全文
摘要:
科目一笔记 Created: 2023-07-10T16:04+08:00 Published: 2023-08-09T16:00+08:00 Modified: 2023-08-11T21:17+08:00 Categories: Driving 本文最大的作用可能是提出了一种通过区间记忆超速、超 阅读全文
摘要:
相思,黄昏和星星 Created: 2023-06-27T09:26+08:00 Published: 2023-07-15T19:29+08:00 Categories: Fragment Tags: Diary [toc] # 成长中忽然意识到的事 昨天拜访亲戚,想起自己在某一天忽然意识到,所有 阅读全文
摘要:
高三日记感想 Created: 2023-07-06T07:46+08:00 Published: 2023-07-14T21:52+08:00 Modified: 2023-07-15T19:00+08:00 Categories: Essay Tags: Diary [toc] > 我不能相信 阅读全文