Fading Coder

One Final Commit for the Last Sprint

Linux Hardware Enumeration and Disk Subsystem Administration

System Device Identification In Linux, hardware components are abstracted as files within the system hierarchy. Primary methods for inventorying devices include scanning PCI buses and inspecting virtual filesystems. Hardware Detection Commands Use lspci to enumerate Peripheral Component Interconnect...

Configuring Alternative YUM Repositories on CentOS

In many productoin environments, the default CentOS repositories may be slow or inaccessible due to geographical locations. Switching to local mirrors such as Alibaba Cloud or NetEase (163) can significantly improve package download speeds and update reliability. This guide outlines the process of b...

Practical Technical Cheat Sheet for Python, Linux, SQL and Software Testing

Python Programming Examples Sorting Selection Sort def selection_sort(input_list): for idx in range(len(input_list)): min_pos = idx for sub_idx in range(idx + 1, len(input_list)): if input_list[sub_idx] < input_list[min_pos]: min_pos = sub_idx input_list[idx], input_list[min_pos] = input_list[min...