Raymond's Blog 睿蒙博客

4. Threats

Threats · Threat is anything that can exploit a vulnerability in a way that leads to a negative impact. · Threat actor could be a person, a group or e

RaymondHuang 发布于 2025-08-06

3. Intro to Computers and Networks

CPU · The CPU processes instructions and data that are stored in memory. · Memory is either random access memory (RAM) or read only memory (ROM). · In

RaymondHuang 发布于 2025-08-03

Intro

What's the right thing to do? The core problem of ethics. Utilitarianism(功利主义) Main Idea: Doing whatever will result in the greatest happiness of the

RaymondHuang 发布于 2025-07-21

算法刷题笔记

把一个int的每位数字拆分成数组 #include <vector> #include <algorithm> int num = 1234; vector<int> arr; while (num) { arr.emplace_back(num % 10); num /= 10; }

RaymondHuang 发布于 2025-04-11

找实习&工作攻略

引言 前两天被邀请分享一些找实习&工作的攻略,倍感惊喜,自认为在这方面没有太多经验,但还是希望把在找实习/工作过程中踩过的坑什么的分享给大家,希望对大家有帮助~ 去哪里找? 找实习和工作主打的就是一个信息差,很多比较好的岗位会优先由内部人员进行内推。因此,如果有认识的同学、朋友、学长学姐在你心仪的企

RaymondHuang 发布于 2024-12-14

博客迁移通知

博客系统迁移通知~

RaymondHuang 发布于 2024-09-29

Chapter 7 —— 运输层(3)

本节介绍了TCP的拥塞控制机制和运输连接管理,都是TCP中非常重要的内容

RaymondHuang 发布于 2024-06-20

Chapter 7 —— 运输层(2)

本节主要介绍了TCP首部字段,TCP可靠传输的实现以及TCP流量控制

RaymondHuang 发布于 2024-06-20

Chapter 7 —— 运输层(1)

本节介绍了传输层的作用,简单介绍了UDP和TCP协议,重点介绍了可靠传输的实现原理

RaymondHuang 发布于 2024-06-19

Chapter 6 —— 网络层(4)

本节介绍了网络层最后一节内容IPv6

RaymondHuang 发布于 2024-06-18