Daily Linux Command: Tar

Daily Linux Command: Tar

<span>tar</span> is a very commonly used command in Linux for packaging and compressing files. It is an abbreviation for tape archive, originally used for tape backups, and is now widely used for file archiving and compression. 📌 Basic Syntax tar [options] [archive file] [files or directories to package] ✅ Common Examples and Explanations 1. Package … Read more

Linux | 22. Decompression and MD5 Checksum Verification

Linux | 22. Decompression and MD5 Checksum Verification

Introduction In the previous lesson, we introduced the use of soft links and hard links in Linux | 21 to help save some coding time and reduce disk storage space. However, using links only saves redundant space; to truly save disk storage, we need to rely on file compression. This section will mainly discuss the … Read more

Debugging the Mysterious HTTP Streaming Issue

Debugging the Mysterious HTTP Streaming Issue

Introduction This article discusses the issues encountered when using fetch for HTTP streaming—everything works fine with cURL and Postman, but both the browser and node-fetch fail to stream the response. The problem was ultimately found to be related to response compression: the browser sends Accept-Encoding by default, and the server returns compressed content, which causes … Read more

Exploring the Increased Risk of Early Non-Surgical Bleeding Related to DAPT and LAAO Postoperative Procedures

Device-related thrombosis (DRT) is one of the major postoperative complications following the implantation of a left atrial appendage occluder. Selecting the most effective antithrombotic strategy to prevent DRT in patients after LAAO has been a hot topic of interest. Recently, a study by Professor Jules Mesnier and others published in JACC indicated that early non-surgical … Read more

A Must-Read for Linux Users: Easily Create an Efficient ZFS File System with File Compression

A Must-Read for Linux Users: Easily Create an Efficient ZFS File System with File Compression

Abstract: The ZFS file system has gained wider recognition on Linux. In ZFS, you can enable compression at the file system level. This will store data in a compressed format, saving a significant amount of disk space. In this article, we will explain how to create a file system from a ZFS storage pool and … Read more

HTTP Response Compression in Go: Implementing Gzip Middleware with Adaptive Compression Strategy

HTTP Response Compression in Go: Implementing Gzip Middleware with Adaptive Compression Strategy

Click the “blue text” above to follow us Yesterday, a novice asked me: “Brother Feng, why does our Go service always run out of network bandwidth during peak times?” I smiled and said, isn’t this the classic “naked running” problem? Your HTTP response isn’t wearing a “compression coat”, and the data is like a fat … Read more