All Articles

143153 articles · Page 291 of 7158
Linux Tech Enthusiast
Linux Tech Enthusiast
May 22, 2026 · Fundamentals

28 Diagrams That Instantly Clarify How TCP Works

This article walks through TCP from the physical layer up to congestion control, explaining MAC and IP addressing, sockets and ports, reliable transmission mechanisms like stop‑and‑wait and sliding windows, the three‑way handshake, four‑way teardown, UDP differences, routing, packet fragmentation, and security considerations.

HandshakeReliable TransmissionTransport Layer
0 likes · 28 min read
28 Diagrams That Instantly Clarify How TCP Works
FunTester
FunTester
May 22, 2026 · Artificial Intelligence

Why Prompt Tuning Isn’t Enough: Building a Test‑Driven Mindset for AI Products

The article argues that while prompt engineering accelerates early AI product development, it cannot guarantee overall quality, and advocates establishing a systematic evaluation pipeline—including curated datasets, clear benchmarks, regression testing, and automated checks—to make AI product quality visible and reliably improve over time.

AI TestingPrompt engineeringevaluation pipeline
0 likes · 16 min read
Why Prompt Tuning Isn’t Enough: Building a Test‑Driven Mindset for AI Products
Geek Labs
Geek Labs
May 22, 2026 · Artificial Intelligence

Top GitHub Projects: AI Programming Language, Small‑Model Coding Tool, and Efficiency System

This article reviews three trending GitHub projects—ZeroLang, a C‑based AI‑agent programming language; smallcode, a 4B‑parameter coding assistant achieving 87% benchmark accuracy; and ECC, a comprehensive AI‑coding efficiency system with skills, instincts, memory optimization, and security scanning—detailing their design goals, core features, usage scenarios, and current adoption.

AI agentsAI codingECC
0 likes · 7 min read
Top GitHub Projects: AI Programming Language, Small‑Model Coding Tool, and Efficiency System
Java Architecture Diary
Java Architecture Diary
May 22, 2026 · Artificial Intelligence

What the Javadocs MCP Server Solves for Java AI Development

AI code assistants often misinterpret Java library placeholders because they rely on web searches or bytecode decompilation, which miss Javadoc details; the Javadocs MCP server indexes Maven Central Javadocs, letting AI retrieve accurate method signatures and placeholder rules, and can be added to Claude Code with a simple configuration.

AIClaudeHutool
0 likes · 7 min read
What the Javadocs MCP Server Solves for Java AI Development
Alibaba Cloud Developer
Alibaba Cloud Developer
May 22, 2026 · Artificial Intelligence

How Core Agent Concepts and Paradigms Have Evolved and the Rationale Behind Them

The article traces the evolution of AI agents from early ReAct‑style models through workflow‑based systems to autonomous and self‑evolving agents, analyzing six core dimensions—Prompt, Planning, Memory, Tools, Workflow, and Environment—and explains why each paradigm shift occurred, citing recent frameworks and research.

AI agentsMemory ManagementPrompt engineering
0 likes · 25 min read
How Core Agent Concepts and Paradigms Have Evolved and the Rationale Behind Them
Shuge Unlimited
Shuge Unlimited
May 22, 2026 · Artificial Intelligence

Why Does Hermes Agent’s Sub‑10‑Line Loop Enable Self‑Evolution?

This article dissects Hermes Agent v0.14.0, revealing its three‑layer prompt architecture, a concise sub‑10‑line conversation loop, tool auto‑discovery, installation options, configuration pitfalls, security measures, and deployment best practices that together enable a self‑evolving AI agent framework.

AI AgentDeploymentHermes Agent
0 likes · 18 min read
Why Does Hermes Agent’s Sub‑10‑Line Loop Enable Self‑Evolution?
Fun with Large Models
Fun with Large Models
May 22, 2026 · Artificial Intelligence

How to Rigorously Evaluate Large Models: Methods and Key Benchmark Datasets

This guide explains why systematic evaluation is essential for large models, outlines three core evaluation approaches—human assessment, benchmark‑dataset testing, and automated judge models—introduces the most widely used benchmark suites, and shows how to use the open‑source EvalScope framework and prompt‑design techniques to conduct reliable model assessments.

EvalScopePrompt Designautomated judge
0 likes · 17 min read
How to Rigorously Evaluate Large Models: Methods and Key Benchmark Datasets
Architecture & Thinking
Architecture & Thinking
May 22, 2026 · Databases

Redis Persistence Options Explained: RDB, AOF, and Hybrid Mode – Principles and Production Configurations

Redis, a high‑performance in‑memory database, offers three persistence mechanisms—RDB snapshots, AOF logs, and the hybrid RDB+AOF mode—each with distinct principles, performance trade‑offs, and configuration nuances, and the article provides detailed analysis, production case studies, and Go code examples to guide optimal selection.

GoHybrid ModePersistence
0 likes · 21 min read
Redis Persistence Options Explained: RDB, AOF, and Hybrid Mode – Principles and Production Configurations
Coder Trainee
Coder Trainee
May 22, 2026 · Cloud Native

Spring Cloud Microservices Hands‑On (Revised Part 10): Full Deployment with Docker Compose

After building the order, stock, and point services along with Nacos, Seata, Sentinel, Prometheus, Grafana, and SkyWalking, this guide shows how to package all components into Docker images and use a single Docker Compose command to start the entire microservice system with one click, while addressing common pitfalls.

ContainerizationDockerDocker Compose
0 likes · 13 min read
Spring Cloud Microservices Hands‑On (Revised Part 10): Full Deployment with Docker Compose
Deepin Linux
Deepin Linux
May 22, 2026 · Backend Development

Mastering the Zero‑Copy Trio: sendfile, mmap, and splice

This article provides a comprehensive, step‑by‑step analysis of Linux zero‑copy mechanisms—sendfile, mmap, and splice—detailing their internal workflows, performance trade‑offs, code examples, and practical selection guidelines for high‑throughput backend development.

Zero-copylinuxmmap
0 likes · 41 min read
Mastering the Zero‑Copy Trio: sendfile, mmap, and splice
AI Engineer Programming
AI Engineer Programming
May 22, 2026 · Artificial Intelligence

Is MCP Dead? From Protocol Design to Production

The article examines Model Context Protocol (MCP), introduced by Anthropic in November 2024, tracing its rapid adoption, architectural design—including Host/Client/Server roles, transport layers, security and observability practices—and outlines production guidelines, future roadmap, and current limitations.

AI integrationJSON-RPCMCP
0 likes · 19 min read
Is MCP Dead? From Protocol Design to Production
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
May 22, 2026 · Artificial Intelligence

Step-by-Step Guide to Building AI Assistants with Alibaba Cloud Elasticsearch Agent Builder

This article introduces Elastic Agent Builder on Alibaba Cloud, outlines the required Elasticsearch version, walks through creating an agent and AI connector in Kibana, configures model details and API keys, and demonstrates using natural‑language queries to analyze API logs with generated ES|QL statements.

AI assistantAgent BuilderConnector
0 likes · 8 min read
Step-by-Step Guide to Building AI Assistants with Alibaba Cloud Elasticsearch Agent Builder
AI Architecture Hub
AI Architecture Hub
May 22, 2026 · Artificial Intelligence

Unlocking Codex’s Full Potential: Expert Tips from the Official Team

The article provides a step‑by‑step guide on extending Codex beyond code generation by using persistent threads, voice input, task correction, queuing, tool integration, side‑panel displays, shared memory, and automation to create a continuous, context‑aware AI work system.

AI agentsCodeXautomation
0 likes · 13 min read
Unlocking Codex’s Full Potential: Expert Tips from the Official Team
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 22, 2026 · Backend Development

Why Hand‑Write WebSocket? Use Spring Boot + Netty‑SocketIO for Simpler Real‑Time Communication

This article walks through building a real‑time bidirectional communication system with Spring Boot 3.5.0 and the Netty‑SocketIO library, covering its core features, Maven setup, server implementation via CommandLineRunner, client HTML/JavaScript code, room support, and testing screenshots.

JavaReal-time communicationSocket.IO
0 likes · 9 min read
Why Hand‑Write WebSocket? Use Spring Boot + Netty‑SocketIO for Simpler Real‑Time Communication
Architects' Tech Alliance
Architects' Tech Alliance
May 21, 2026 · Industry Insights

DPU Deep Dive: The Hidden Workhorse Powering Data Centers

The article provides a comprehensive analysis of Data Processing Units (DPUs), detailing their role as off‑load engines in data centers, the rapid global market growth with China leading the surge, key technology trends, competitive landscape, and the major challenges that must be overcome for broader adoption.

AIChipletCloud Computing
0 likes · 12 min read
DPU Deep Dive: The Hidden Workhorse Powering Data Centers
Java Architect Essentials
Java Architect Essentials
May 21, 2026 · Backend Development

Building a High‑Performance SpringBoot Log Analyzer for Slow SQL Detection from Scratch

Faced with massive MyBatis log files that made manual slow‑SQL hunting impossible, the author designed a SpringBoot‑Vue‑MySQL system that parses logs with multithreaded batch processing, flexible regex templates, real‑time performance monitoring, and virtual‑scroll UI, achieving 55 000 lines/s throughput and over 95% matching accuracy.

Log AnalysisMultithreadingMyBatis
0 likes · 11 min read
Building a High‑Performance SpringBoot Log Analyzer for Slow SQL Detection from Scratch
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 21, 2026 · Artificial Intelligence

Visual Generation Meets Slow Thinking: Decoding New Multimodal Reasoning Paradigms from CVPR 2026

This article curates ten standout CVPR 2026 papers that introduce novel multimodal interaction frameworks, active video avatars, unified image customization, artistic poster generation, information‑theoretic video compression, all‑purpose visual reasoning models, 3D‑grounded spatial reasoning, interleaved text‑visual generation, and unified fine‑grained video understanding, each achieving state‑of‑the‑art performance.

AI researchCVPRimage customization
0 likes · 13 min read
Visual Generation Meets Slow Thinking: Decoding New Multimodal Reasoning Paradigms from CVPR 2026
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 21, 2026 · Artificial Intelligence

Can a New Training Objective Make LLMs See Further and Reason Better?

The paper introduces Next‑ToBE, a training‑objective modification that replaces the one‑hot next‑token label with a soft distribution covering a future token window, thereby activating latent anticipatory capacity in large language models and yielding significant gains in token‑hit rates, reasoning accuracy, and training efficiency.

Anticipatory CapacityNext-ToBEToken Prediction
0 likes · 11 min read
Can a New Training Objective Make LLMs See Further and Reason Better?
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 21, 2026 · Artificial Intelligence

Breaking the UED Bottleneck: PACE Locates the Reinforcement‑Learning Zone of Proximal Development

The paper introduces PACE, a Parameter‑Change based Unsupervised Environment Design method that evaluates training levels by the magnitude of induced policy‑parameter updates, offering a low‑variance, computationally cheap signal that consistently outperforms prior UED approaches on MiniGrid and Craftax benchmarks.

CraftaxICML 2026MiniGrid
0 likes · 11 min read
Breaking the UED Bottleneck: PACE Locates the Reinforcement‑Learning Zone of Proximal Development