timerring

Further Understanding of Proc

February 1, 2025 · 3 min read · Page View:
Tutorial
Linux

The /proc in Linux is a kind of Pseudo file system (also known as Virtual File System), what it saves is a series of special files that store the current running state of the kernel, and the user can check the hardware info and the runnning processes via the files, even adjust some files to change the state of running kernel. The files in /proc will be refresh in RAM, so the files’ size is 0 bytes.

Read the full text -> A total of 0.76k words


The Iftop

January 30, 2025 · 1 min read · Page View:
Tutorial
Linux | Network

I frequently use ifconfig and cat /proc/net/dev to examine network information. However, today, my cloud server crashed unexpectedly. I reached out to the cloud support for assistance. The engineer utilized iftop to analyze the situation. After the issue was resolved, I started to consider using this tool. Now, let’s take a closer look at this powerful utility.

Read the full text -> A total of 0.38k words


CPU can only see the threads

January 23, 2025 · 12 min read · Page View:
Tutorial
Multiple Threads | Multiple Processes | Coroutine | Python

In python, due to the GIL (Global Interpreter Lock), which is a mutex and ensures only one thread can execute at a time, so the multiple threads parallel execution is not supported under the CPython interpreter. But what about the multiple processes? What is the difference between them? How to choose the right method? Do you know the coroutine? Let’s explore it together.

Read the full text -> A total of 2.47k words


Video Technology 101

January 20, 2025 · 21 min read · Page View:
Tutorial
Video | Resolution | Frame Rate | Bit Rate | Codec | Color Depth | HDR | Video Format

Do you really understand the video technology? What is the frame rate, resolution, bit rate and their relationships? Do you know the parameters p and K in the terminology 1080p and 4K? Do you know how to describe the video quality? What is the Blu-ray Disc on earth? What the difference between the codec such as H.264/AVC, H.265/HEVC, AV1? You may notice the Apple ProRes in apple, so do you really understand what it for? Do you know the HDR and Dolby Vision? So why there are so many tailers such as .mp4, .mkv, .flv, etc?

Now this Video Technology 101 will introduce them to you.

Read the full text -> A total of 4.34k words