Steps to Add STC MCU Models in Keil

Steps to Add STC MCU Models in Keil

Are you feeling frustrated when creating projects in Keil because it doesn’t have STC models? Don’t worry… come, follow me to do it. 1. Open the download software in this file (stc-isp-15xx-v6.18-Beta2). 2. Click ① to find the associated settings for Keil ②. 3. Click on the Keil settings as shown in the above image, … Read more

Building a CPU with Excel: 128KB RAM and Assembly Language

Building a CPU with Excel: 128KB RAM and Assembly Language

YouTube tech blogger “Inkbox” recently released a video demonstrating how to build a fully functional CPU within the limitations of Microsoft Excel. Inkbox claims that no Visual Basic scripts or plugins were used—everything was achieved entirely with Excel. https://www.youtube.com/watch?v=5rg7xvTJ8SU It is reported that this is a 16-bit CPU built in Excel and runs at a … Read more

The History of FORTRAN Programming Language

The History of FORTRAN Programming Language

Programming Language – History FORTRAN Past Events Fortran is an abbreviation of “Formula Translation”. It is the world’s first high-level programming language for computers, widely used in scientific and engineering computations. FORTRAN plays an important role in numerical, scientific, and engineering computations due to its unique features. (Versions prior to Fortran 90 are known as … Read more

Experience of Building a Programmable Computer

Experience of Building a Programmable Computer

Hello everyone, I am Tao Ge. Having been in contact with computers for many years, I often feel a sense of confusion. Today, let’s work together to build a computer to deepen our understanding and experience. It must be stated that computers can be complex or simple, but their structures and principles are fundamentally similar. … Read more

How Programming Languages Are Implemented

How Programming Languages Are Implemented

Do you know how the programming languages you often use are implemented? Today, let’s talk about this question. Smart humans discovered that by combining simple switches, they could express complex boolean logic. Based on this, they built the CPU, which can only understand switches in a simple way, represented numerically as 0 and 1. The … Read more

Understanding Compiler Principles for Everyone

Understanding Compiler Principles for Everyone

Mathematics Algorithm Club Date : December 25, 2021 Total Words : 4255 words Source : Job Online Understanding the internal principles of compilers can help you utilize them more efficiently. Gradually delve into how programming languages and compilers work according to the order of compilation. This article contains numerous links, sample code, and charts to … Read more

Switching from C++ to Rust: A Significant Improvement in Work Experience!

Switching from C++ to Rust: A Significant Improvement in Work Experience!

Follow us丨Book giveaway at the end of the article I have been working professionally in C++ programming for over four years, but three months ago I found a new job that requires using Rust. I want to share my personal experiences and thoughts on switching between the two languages in this article. Disclaimer: This article … Read more

A Concise Comparison of Memory Safety in Rust, C++, and Go

A Concise Comparison of Memory Safety in Rust, C++, and Go

A Concise Comparison of Memory Safety in Rust, C++, and Go Memory safety is a hot topic today. While everyone seems to agree that memory safety is very important, what truly constitutes safety remains subjective. Jeff Schwab’s article will guide us through semantically equivalent Rust, C++, and Go code, comparing how their approaches to safety … Read more

A Senior Developer’s Year-Long Journey Learning Rust

A Senior Developer's Year-Long Journey Learning Rust

Pine from Aofeisi Quantum Bit | WeChat Official Account QbitAI How to learn Rust? An article on Hacker News has gone viral. Unlike similar crash courses available online, this one points out a path to learning Rust through personal experiences. After the tutorial was published, users on Hacker News also shared their learning experiences. Finding … Read more

Rust Through The Eyes Of A Go Developer

Rust Through The Eyes Of A Go Developer

Hi everyone, I’m Tiger. This time, I want to talk about Rust.What’s so great about Rust?As an old user of Go, how do I view Rust?Let’s have a good discussion on this topic today. One of the most troublesome issues for us programmers is memory management, such as dangling pointers, memory leaks, data races, etc., … Read more