Fundamentals of Assembly Language

Fundamentals of Assembly Language

0x00 This article is dedicated to daily learning and note sharing to help everyone learn assembly language. Why learn assembly language? Because in red-blue confrontations, our tools are often detected and eliminated by AV/EDR systems. Therefore, we need to counter AV, which involves evasion techniques. To learn evasion techniques, we must start from the basics. … Read more

Solana Development Practice: Full Process of Rust Client Calling On-Chain Programs

Solana Development Practice: Full Process of Rust Client Calling On-Chain Programs

Solana Development Practice: Full Process of Rust Client Calling On-Chain Programs Following the exploration of the Solana SDK in practice: the dual paths and lightweight modularization of Web3 development, this article will delve into practical implementation, focusing on how to interact with Solana on-chain programs using a Rust client. Whether you want to quickly get … Read more

The Evolution of Rust Web Frameworks: From Niche to Mainstream

The Evolution of Rust Web Frameworks: From Niche to Mainstream

Introduction As of 2025, Rust has become an undeniable force in the field of web development. But did you know that just a few years ago, Rust was merely a “niche player” in this domain? A developer named Loïc Labeye, who has been using Rust since 2020, recently shared his observations and thoughts on the … Read more

Cross-Platform TTY Shell Implementation in C++ (Part 2) – Server Implementation and Advanced Features

Cross-Platform TTY Shell Implementation in C++ (Part 2) - Server Implementation and Advanced Features

Disclaimer:The user is responsible for any direct or indirect consequences and losses caused by the dissemination and use of the information provided by this public account. The public account and the author do not bear any responsibility for this, and any consequences must be borne by the user! 01 Core Architecture of the Server In … Read more

C++ Programming in the Olympiad: Naming, Defining, and Functions of Constants and Variables

C++ Programming in the Olympiad: Naming, Defining, and Functions of Constants and Variables

⬆⬆⬆ Follow 【Pai Zhi Tang】 for valuable content 📚 Math Engine, Core Programming, Algorithm Foundation 🔥 AI Application Hotspots, Reconstruction in Various Industries 💡 Introduction to the Informatics Olympiad Competition System In C++ programming, constants and variables are among the most fundamental and important concepts. They are used to store data needed in the program, … Read more

C++ Exception Throwing Mechanism

C++ Exception Throwing Mechanism

The C++ exception handling mechanism allows a program to transfer control from the point of error to specialized error handling code when a runtime error occurs. The core mechanism is based on three keywords: throw, try, and catch. Key components: 1. throw When an error is detected, an exception object is thrown using throw. Any … Read more

The Evolution of Structures from C to C++

The Evolution of Structures from C to C++

1. Initial Impressions of Structures in C and C++ A structure (struct) can encapsulate different types of data together, forming a new, more complex data type. For example, in C, if we want to describe a student’s information, such as name, age, and score, we can define a structure like this: struct Student { char … Read more

Classes and Objects in C++

Classes and Objects in C++

Classes and objects in C++ are core concepts of Object-Oriented Programming (OOP), providing features such as encapsulation, inheritance, and polymorphism. Below is a detailed introduction to constructors, destructors, and operator overloading: 1. Basics of Classes and Objects A class is a user-defined data type that encapsulates data (member variables) and operations (member functions). An object … Read more

Detailed Explanation of GESP C++ Level 2 Certification Standards

Detailed Explanation of GESP C++ Level 2 Certification Standards

Detailed Explanation of GESP C++ Level 2 Certification Standards 1. Computer Storage and Networking Knowledge Point Description ROM, RAM, Cache: Functions and differences of Read-Only Memory, Random Access Memory, and Cache Memory Classification of Computer Networks: Wide Area Network (WAN), Metropolitan Area Network (MAN), Local Area Network (LAN) TCP/IP Four-Layer Model and OSI Seven-Layer Model: … Read more