Clinical Practice and Research Progress of Artificial Liver Treatment

Clinical Practice and Research Progress of Artificial Liver Treatment

Hepatic failure is a common critical condition caused by severe liver dysfunction, particularly acute (subacute) liver failure and subacute liver failure, which progress rapidly and have a high mortality rate. The basic principle of the artificial liver support system is to temporarily replace part of the liver’s function through extracorporeal mechanical, physicochemical, and biological devices, … Read more

A Comprehensive Guide to Common ArcMap File Extensions

A Comprehensive Guide to Common ArcMap File Extensions

Are you often confused by the variety of file extensions in ArcMap, constantly screaming “Who am I? Where am I? What am I doing?” Good news for everyone, Renowned Instructor Yan Lei from Zhongke Dixin brings you the most detailed analysis of ArcMap suffixes, be sure to bookmark it! 01 .SHP Shapefile file extension, currently … Read more

House of Cat: New GLIBC IO Exploitation Techniques

House of Cat: New GLIBC IO Exploitation Techniques

This article is a highlight from the Kanxue Forum Author ID on Kanxue Forum: CatF1y House of Cat A new method of exploiting IO in GLIBC discovered in May, applicable to any version (including glibc2.35), named House of Cat and presented in the 2022 Strong Network Cup. Introduction House of Emma is one of the … Read more

Dobby Source Code Reading: Instruction-Level Tool

Dobby Source Code Reading: Instruction-Level Tool

This article is an excellent piece from the KX forum. KX Forum Author ID: KerryS Dobby has two main functions: one is inline hooking, and the other is instruction instrumentation. The principles of both are similar, but this article mainly introduces instruction instrumentation. Instruction instrumentation refers to inserting instrumentation into any instruction (either at the … Read more

A Rare Case of Erythropoietic Protoporphyria with Liver Cirrhosis

A Rare Case of Erythropoietic Protoporphyria with Liver Cirrhosis

1Case Information The patient is a 38-year-old married male. He was admitted on October 30, 2022, due to “burning sensation on the skin after sun exposure for over 30 years, jaundice, and abdominal pain for one week.” The patient reported that since childhood, he experienced a burning sensation on the skin of his hands and … Read more

The Process of Collecting MySQL Core Dump Stack Information

The Process of Collecting MySQL Core Dump Stack Information

Whether for databases or applications, when issues arise, knowing the exception stack information can greatly assist in identifying the root cause and fundamentally resolving the problem. The stack information from MySQL can similarly aid in problem-solving. This article from the technical community, 《MySQL Fault Reporting Core Dump Collection Process》 introduces the process of collecting core … Read more

CLion Tutorial – Hex View & Mute Variables

CLion Tutorial - Hex View & Mute Variables

Hex View For integer type numeric variables, you can view the hexadecimal representation instead of or alongside the original format. The hexadecimal view for integer types is supported by GDB and LLDB debuggers on all platforms, including remote debugging and WSL scenarios. To enable the hexadecimal view, go to Settings | Build, Execution, Deployment | … Read more

CLion Tutorial – Peripheral View

CLion Tutorial - Peripheral View

During a debugging session, you can monitor the registers and peripherals defined in the .svd file. The Peripheral View is applicable to two configuration types: Embedded GDB Server and OpenOCD Download & Run. Configure the Peripheral View by setting up the Embedded GDB Server or OpenOCD Download & Run configuration, and start the debugging session. … Read more

CLion Tutorial – Remote Debugging Configuration

CLion Tutorial - Remote Debugging Configuration

Local Operating System: macOS / Linux / Windows for GDB, macOS / Linux for LLDB Remote Operating System: Any operating system supporting gdbserver for GDB, macOS / Linux or other operating systems supporting lldb-server for LLDB Required Tools: gdbserver or lldb-server on the target machine Binary and Symbol File Synchronization: Manual Client Debugger: Bundled GDB … Read more

Summary of Remote Development Options in CLion

Summary of Remote Development Options in CLion

CLion has several remote development options, each tailored to specific setups: Remote development using JetBrains Gateway Remote development with local sources WSL2 Docker (running locally) Two variants of gdbserver/lldb-server debugging: remote debugging (GDB/LLDB) and remote GDB server (GDB only). The following is a summary of the remote development options, which can be decided based on … Read more