Stop Saying Rust is Overhyped

Stop Saying Rust is Overhyped

Author | thenewwazoo (online name)Translator | Nuclear Cola, Liu Yan Author’s Note: I wrote this article with great care, trying to avoid any overly affirmative or easily misunderstood statements. I also have my regular job and cannot fully devote myself to promoting Rust, so I can only express my feelings through this article. Due to … Read more

What New Features Will Rust 2021 Bring, Scheduled for Release in October?

What New Features Will Rust 2021 Bring, Scheduled for Release in October?

Author | Mara BosTranslator | SambodhiEditor | Cai FangfangRust 2021, the third edition of the Rust language, is scheduled for release in October. Rust 2021 includes several minor changes, yet they are expected to significantly improve the experience of using Rust in practical applications.What is a version? As part of Rust’s update principles, the release … Read more

Is C Language Only Applicable to Microcontroller Programming?

Is C Language Only Applicable to Microcontroller Programming?

Many students who are new to microcontrollers often ask me:“Teacher, is C language only used to light up LEDs and control motors? Does learning it mean I can only do microcontroller development? Isn’t that too limiting?”In fact, C language is not such a “limited” language; it has already permeated every aspect of our digital lives. … Read more

College News || Entrepreneurship Lecture

College News || Entrepreneurship Lecture

On the evening of March 11, 2025, the School of Computer Science and Engineering held an entrepreneurship lecture at the Sunrise Technology Building A201. The theme of this lecture was “Software Development and Embedded AI: An Innovative Journey from Code to Intelligent Hardware,” featuring engineer Yu Shikun from Shenzhen Xinyingda Technology Co., Ltd. as the … Read more

Key Software Technology Achievements Debut | Zhejiang University: Generative Operating System – TenonOS Based on Dynamic Generation of Software and Hardware Environment Features

Key Software Technology Achievements Debut | Zhejiang University: Generative Operating System - TenonOS Based on Dynamic Generation of Software and Hardware Environment Features

Debut Showcase Top Ten Key Software Technology Achievements On June 18, 2024, guided by the Ministry of Education’s Higher Education Department, the Demonstration Software College Alliance initiated the launch of a key software technology innovation platform, hosted by the Dishui Lake International Software College. During the launch ceremony, 10 universities showcased their key software technology … Read more

Common Errors in C Language Programming (Part Two)

Common Errors in C Language Programming (Part Two)

Learning programming involves not only knowing that there are errors in the program and how to correct them, but also understanding where the errors are and why the computer produces such erroneous outputs. The behavior of computers is always explainable; one must understand the underlying execution logic rather than simply correcting the program. This is … Read more

Technical Insights | Implementation of Hardware and Software in the Competition

Technical Insights | Implementation of Hardware and Software in the Competition

The Spring Festival holiday has passed, are you already looking forward to the next holiday? Do you miss the lazy days during the Spring Festival? Don’t worry, there are even tougher days ahead… Today, there are only 36 days until the next Qingming holiday! There are 60 days until Labor Day, 108 days until the … Read more

C++: A Key Player in Embedded Linux Applications

C++: A Key Player in Embedded Linux Applications

In the field of microcontrollers, C++ may not be very popular, but in the field of embedded Linux, C++ is one of the main players in the application layer, many open source libraries are written in C++. C++, a well-known programming language. As a multi-paradigm general-purpose programming language, it is applicable in a wide range … Read more

Gdbgui: An Efficient Tool for Debugging

Gdbgui: An Efficient Tool for Debugging

In-depth understanding of gdbgui: A powerful graphical debugging toolDuring the software development process, debugging is an indispensable and important part. It helps developers identify errors in the program and ensures that the software runs stably. As a powerful graphical debugging tool, gdbgui is gradually gaining popularity among developers. 1. What is gdbguigdbgui is a graphical … Read more

Detailed Explanation of CMakeLists Syntax Rules

Detailed Explanation of CMakeLists Syntax Rules

Author丨zhanghm1995@blog Source丨https://blog.csdn.net/zhanghm1995/article/details/80902807 Editor丨3D Vision Workshop Basic Syntax Rules CMake requires that a CMakeLists.txt file be created in the main project directory and all subdirectories containing source code. Pay attention to case sensitivity (CM is uppercase, Lists has an uppercase L and do not omit the s). CMake variables are accessed using the ${} syntax, but … Read more