Assembly
Aug 4, 2026
#13 Mastering GAS: A Complete Guide to the GNU Assembler
Series for explaining and teaching GNU GAS Assembler using AT&T syntax – all codes are reviewed and tested daily on Fedora Linux 42 GNU Assembler version 2.44-6 ---------------------------------- Memory Sections in...
0 reads
0 today
Read article
Assembly
Aug 4, 2026
#12 Mastering GAS: A Complete Guide to the GNU Assembler
Series for explaining and teaching GNU GAS Assembler using AT&T syntax – all codes are reviewed and tested daily on Fedora Linux 42 GNU Assembler version 2.44-6 ---------------------------------- Memory Sections in...
2 reads
2 today
Read article
Rust
Aug 4, 2026
#13 Modern C++ and Rust Programming – A Comparative Educational Guide from Concepts to Applications
Type Inference: auto vs. let Type inference is a powerful feature in modern programming languages that allows the compiler to deduce the type of a variable from its initializer, reducing verbosity and improving code...
1 reads
1 today
Read article
Rust
Aug 4, 2026
#12 Modern C++ and Rust Programming – A Comparative Educational Guide from Concepts to Applications
Constants, Mutability, and Shadowing Understanding how constants, mutability, and shadowing operate in C++ and Rust is fundamental for writing clear, efficient, and safe programs. Both languages provide mechanisms to...
1 reads
0 today
Read article
Rust
Aug 4, 2026
#11 Modern C++ and Rust Programming – A Comparative Educational Guide from Concepts to Applications
Data Types and Variables Primitive Types: int, float, bool Introduction to Primitive Types Primitive types are the fundamental data types provided by a programming language to represent basic values. They form the...
1 reads
1 today
Read article
Rust
Aug 4, 2026
#10 Modern C++ and Rust Programming – A Comparative Educational Guide from Concepts to Applications
Basic Tools: g++, clang++, rustc, cargo Overview of Compiler and Build Tools Compiling and building programs in C++ and Rust involves a set of essential tools. Understanding these tools is crucial for writing,...
2 reads
2 today
Read article
Rust
Aug 4, 2026
The Difference Between Synchronous, Asynchronous, Concurrency, Parallelism, and Multithreaded Programming in C++ and Rust
C++ When developing high-performance applications in C++, you’ll encounter several related concepts: Synchronous, Asynchronous, Concurrency, Parallelism, and Multithreaded Programming. Although they might sound...
1 reads
1 today
Read article
Assembly
Aug 4, 2026
#11 Mastering GAS: A Complete Guide to the GNU Assembler
Series for explaining and teaching GNU GAS Assembler using AT&T syntax – all codes are reviewed and tested daily on Fedora Linux 42 GNU Assembler version 2.44-6 Memory Sections in GAS .text Section: Storing...
2 reads
2 today
Read article
Rust
Aug 4, 2026
#9 Modern C++ and Rust Programming – A Comparative Educational Guide from Concepts to Applications
Your First Program Hello World in both C++ and Rust Introduction: The Traditional “Hello World” The “Hello World” program is the canonical starting point for learning any programming language. It serves as a...
0 reads
0 today
Read article