Two Random Variables
February 1, 2025 · 0 min read · Page View:
This article is about the two random variables and their properties.
Read the full text -> A total of 0.02k wordsThis article is about the two random variables and their properties.
Read the full text -> A total of 0.02k wordsThe /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.
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.
Some good commands to share.
Note: This post will be updated regularly.
Read the full text -> A total of 0.08k wordsThis article introduces the common distribution functions both continuous and discrete. Besides, the basic knowledge of conditional distribution such as total probability and Bayes’ Theorem is also introduced. The most important part are the Normal Approximation and Poisson Approximation of the Binomial Random Variable.
Read the full text -> A total of 0.47k wordsThis article is mainly about Bernoulli Trials and its properties.
Read the full text -> A total of 1.04k wordsThis article is about the probability and its axioms.
Read the full text -> A total of 1.26k words一次制造热点帖子引发的思考与总结。
Read the full text -> A total of 2.51k wordsIn 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 wordsThe test methods in Go mainly include three types: unit test, benchmark test, and example test.
Read the full text -> A total of 0.45k words