BOBOBK

Python Class Inheritance and Polymorphism

MISCELLANEOUS
Python Class Inheritance and Polymorphism

Process Pools, Thread Pools, and Coroutines in Python

MISCELLANEOUS
Process Pools, Thread Pools, and Coroutines in Python

Neither threads nor processes can be opened indefinitely; they will always consume and occupy resources. Hardware has limited capacity. While ensuring high-efficiency work, hardware resource utilization should also be guaranteed. Therefore, an upper limit needs to be set for hardware to alleviate its pressure, which led to the concept of pools.

Python zipfile Module Instantiation and Parsing

MISCELLANEOUS
Python zipfile Module Instantiation and Parsing

The zipfile module in Python is used for compressing and decompressing files in the common ZIP format. Since ZIP is a very common format, this module is used quite frequently.

Summary of Python3 print function usage

MISCELLANEOUS
Summary of Python3 print function usage

Google Advertisement

Python Data Visualization - The Post-2000 Gaokao Generation

TECHNOLOGY
Python Data Visualization - The Post-2000 Gaokao Generation

Parallelism in One Line of Python Code

TECHNOLOGY
Parallelism in One Line of Python Code

Python has a somewhat notorious reputation when it comes to program parallelization. Technical issues aside, such as thread implementation and the GIL, I believe incorrect teaching guidance is the main problem. Common classic Python multithreading and multiprocessing tutorials often seem "heavy" and tend to scratch the surface without deeply exploring the most useful content for daily work.

Closing a Screen Session from Outside the Session

MISCELLANEOUS
Closing a Screen Session from Outside the Session

Yum Update Error 'rpmdb', Insufficient Space

MISCELLANEOUS
Yum Update Error 'rpmdb', Insufficient Space

Logged into Linux and encountered an 'Error: rpmdb open failed' when using 'yum update -y'.

Google Advertisement

Decoding Real Addresses from Xunlei Thunder Download Links

MISCELLANEOUS
Decoding Real Addresses from Xunlei Thunder Download Links

Students who frequently download videos and games often encounter Xunlei download links starting with 'thunder://', but are often unable to download due to copyright issues. Here, we will explain the conversion between regular download URLs and Xunlei download links.

Running Conda Command-Line Scripts on Windows

MISCELLANEOUS
Running Conda Command-Line Scripts on Windows

Accelerating Python Code with Numba to C++-like Speeds

MISCELLANEOUS
Accelerating Python Code with Numba to C++-like Speeds

Longest Palindromic Substring Algorithm - Manacher

TECHNOLOGY
Longest Palindromic Substring Algorithm - Manacher

While solving LeetCode problems, I encountered a question about finding the longest palindromic substring.