Zaki Blog

Meet 2025

【随谈】PGI.S赛事前两周综述

规则的挑战,赛区与赛区之间的碰撞

这是我自己对于PGI.S赛事情况的一点随谈,带有一些个人主队色彩。 随谈 PGI.S已经如火如荼的来到了第三周,不同以往的赛事规则使得PUBG赛事的热度在全球范围内有了一定的回暖。就我的观感来说,我觉得周中生存赛真的是刺激,吃鸡者晋级周决,很好的还原了绝地求生这款游戏的初衷,不论是刚是苟,吃鸡才是王道。规则很刺激,给予选手的压力也是倍增。 有时候,即使你一局杀了20个人吃不了鸡也...

《蜂鸟计划》随谈,Race against Time

Hummingbird Project-Everything is on the line

Everything is on the line. 随谈 距离放假还有三天,但其实自己并没有感到巨大的开心。毕竟因为疫情的原因,这个年是不能回家过了。但其实还好,今天看完了《蜂鸟计划》,在图书馆就随便谈下这部电影。 其实说实话,我不懂股票,也不懂股票交易有关的一些专业知识,我看这部电影就是冲着卷西去的,但是总体看下来,这部影片并没有让我失望。 相反的,它给予我了我一种思考。...

Computer Networks-Data linked layer Part 2

Framing and Ethernet Switching

接Computer Networks Layer 2 PART 1。 Framing Framing is the layer 2 encapsulation process. A frame is the layer 2 protocol data unit. Only encoded bit streams (data) on physical media are not ...

Computer Networks-layer 2 Technology

PART 1 Data link layer and Ethernet Switching lecture

链路层同样非常重要,它有着承上启下的作用。 Function The data link layer provides reliable transmission of data across a physical link, thus it concerns with media access, physical addressing, network topology, er...

关于github.io无法访问的解决方法

通过修改/etc/hosts文件解决访问失败问题

关于无法访问github.io 今天突然遇到了一个棘手的问题,我在check布蕾可的博客网站时,发现GitHub.io后缀结尾的网站完全登不上去。网上寻找了一番原因,在终端里使用了命令。 ping isblake.github.io 发现这个是解析到127.0.0.1本机地址的这个ip。 网上捣鼓一番,原因可能是电信运营商对DNS进行了某些操作,导致使用ISP的正常...

《心灵奇旅》,灵魂的solo,生与死的交织

“i am just afraid if i died today, that my life would've amounted to nothing"

随谈 之前就听说这部片子口碑超级不错,今天也终于是有时间来电影院看看这部影片。看完我只想说,真的好看!这是一部看完可以让人静下心来思考的电影,也是一部可以治愈自己的电影。如果我来打一次分,《心灵奇旅》的特效画面我给10分,因为真的太优秀了!剧情我打八分,综合我打九分。 生死这个话题,从古至今一直是人类所津津乐道的话题。其实《心灵奇旅》开头代入生与死交织的那种节奏我觉得非常舒服,从另一...

计算机硬件实验-VHDL语言入门

CO002 Computer Hardware Experiments - Introduction to VHDL Language

VHDL语言是一种用来电路设计的硬件描述语言。 VHDL VHDL设计实体的组成:库和程序包(Library,Package),实体(Entity),结构体(Architecture),配置(Configuration). “- -” 是注释,vhdl不区分大小写。 library ieee; use ieee.std_logic_1164.all; – 库名 .包名 ...

Computer Networks-Physical layer lecture 2

CN101 Computer Networks lecture note series

Network Media The media provides the channel over which the message travels from source to destination. Different types of network media have different features and benefits. There are three basi...

Computer Networks-Physical layer lecture 1

CN101 Computer Networks lecture note series

Physical layer Overview 本质上,物理层就是怎样把数字信号通过指定传输媒介传递出去。 The physical layer involves signals and bit streams that travel on media, thus the layer 1 standards define the technologies including the fo...

Getpid()函数和fork()函数的解释

CO003 Operating System Basic Process Management leture note

getpid()函数 Each process is given an unique ID number, and is called the process ID, or the PID. The system call, getpid(), prints the PID of the calling process. 创建任何进程时,它都有一个唯一的ID,称为其进程ID。 该函数返...