Fading Coder

One Final Commit for the Last Sprint

Configuring HHB Compilation Environment for YOLOv5n on LicheePi 4A

Setting Up the Development Environment WSL2 Configuration Enable virtualization in Windows settings and install WSL2: wsl --update wsl --set-default-version 2 wsl --list --verbose Ubuntu Installation Install Ubuntu 20.04 from the Microsoft Store and configure the WSL environment. Visual Studio Code...

Diagnosing Linux System Load and CPU Bottlenecks

When investigating system performance degradation, engineers typically begin by examining system responsiveness via standard monitoring utilities. The top utility provides a dynamic real-time view, while uptime offers a quick snapshot of system history. The output of uptime includes three numerical...

File Sharing Between an Embedded Board and Host Computer Using NFS over Ethernet

File Sharing Between an Embedded Board and Host Computer Using NFS over Ethernet
Connect the board to your computer with an Ethernet cable. This can be a direct connection, without a switch or router. With NFS you can mount a directory from the host computer onto the embedded board over the network, making file exchange as convenient as a local disk access. 1. Configure a stati...

Basic Concepts and Practical Usage of Spring Boot

Why Adopt Spring Boot Spring serves as a lightweight alternative to legacy J2EE/EJB architectures, enabling developers to implement enterprise-grade functionality using Plain Old Java Objects (POJOs) via Dependency Injection and Aspect-Oriented Programming, without the overhead of heavyweight EJBs....

Understanding Java Wrapper Class Caching Mechanisms

Java's wrapper classes implement caching mechanisms to optimize performance for commonly used values. Several numeric wrapper classes cache values within specific ranges: Byte, Short, Integer, and Long cache values between -128 and 127 Character caches values from 0 to 127 Boolean directly returns e...

Gaussian Elimination, Determinants, and Matrix-Tree Theorem

Gaussian Elimination Gaussian elimination is a powerful technique for solving systems of linear equations and simplifying matrices through linear transformations. The Gauss-Jordan method specifically transforms a matrix into diagonal form, which serves as the foundation for computing determinants. T...

Essential jQuery DOM Manipulation and AJAX Patterns

This guide covers foundational jQuery techniques for dynamic DOM updates and asynchronous communication—focused on practical, production-relevant patterns rather than legacy workarounds. Event Binding After Dynamic Content Updates When elements are re-rendered (e.g., table rows rebuilt via .html()),...

Understanding Vue.use() for Plugin Installation

Plugins that need to be installed via Vue.use() must expose an install method. This method allows you to attach global capabilities to the Vue framework. Global Capabilities You Can Add Global methods or properties attached directly to the Vue constructor Global resources such as directives, filters...

Java Multithreading Implementation and Synchronization Techniques

Understanding Multithreading Multithreading enables concurrent execution of multiple threads, improving performance by leveraging hardware capabilities. Concurrency vs Parallelism Parallelism: Simultaneous execution of instructions across multiple CPUs Concurrancy: Interleaved execution of instructi...

Angular Fundamentals Summary

Create project: ng new projectName Start project: ng serve --open Create component: ng g c directory/componentName Create module: ng g m directory/moduleName Create service: ng g s directory/serviceName Angular Project Directory Analysis Initial Angular Modules 2.1 Contents Included in a Module: Co...