All Articles

140488 articles · Page 56 of 7025
macrozheng
macrozheng
Jun 21, 2026 · Artificial Intelligence

10 Essential Claude Code Skills That Supercharge Your Programming Workflow

The article reviews ten Claude Code Skills—Superpowers, Planning with Files, UI UX Pro Max, Code Review, Code Simplifier, Webapp Testing, Ralph Loop, token‑optimizer, MCP Builder, and Skill Creator—detailing their purpose, installation commands, real‑world effects, and trade‑offs, and shows how they transform an AI‑assisted development pipeline.

AI PluginsAutomationClaude Code
0 likes · 16 min read
10 Essential Claude Code Skills That Supercharge Your Programming Workflow
AI Engineer Programming
AI Engineer Programming
Jun 21, 2026 · Artificial Intelligence

RAG Data Governance: Incremental Sync and Consistency (Part 1)

The article explains how additions, updates, and deletions affect a vector store differently, outlines three layers of incremental synchronization—change detection, change handling, and service stability—and compares timestamp polling, content‑hash diffing, and CDC while discussing consistency models and conflict resolution in distributed vector databases.

CDCData GovernanceRAG
0 likes · 16 min read
RAG Data Governance: Incremental Sync and Consistency (Part 1)
Frontend AI Walk
Frontend AI Walk
Jun 21, 2026 · Artificial Intelligence

From Simple Prompts to Closed-Loop SOPs: Loop Engineering for Reliable AI Code

The article demonstrates how adding a structured Loop Engineering prompt—anchoring, execution, verification, correction, and exit—transforms ordinary AI code‑generation prompts into a closed‑loop SOP, reducing errors, enforcing self‑checks, and delivering more reliable, maintainable code for complex multi‑file projects.

AI promptingLoop EngineeringPrompt Engineering
0 likes · 13 min read
From Simple Prompts to Closed-Loop SOPs: Loop Engineering for Reliable AI Code
Alibaba Cloud Native
Alibaba Cloud Native
Jun 21, 2026 · Cloud Native

One‑Line SDK Turns Electron Desktop Apps into Fully Observable Services

This article explains how the dual‑process architecture of Electron creates a monitoring blind spot, outlines four key challenges—separate runtimes, native crash dumps, unreliable data reporting, and unobservable IPC—and presents a single‑init SDK that provides zero‑config injection, local crash parsing, tRPC monitoring, distributed tracing, memory leak detection, and comprehensive exception protection while keeping overhead negligible.

ElectronObservabilityRUM
0 likes · 16 min read
One‑Line SDK Turns Electron Desktop Apps into Fully Observable Services
Machine Heart
Machine Heart
Jun 21, 2026 · Artificial Intelligence

From Detection to Repair: Closing the Loop in AI‑Generated Image Forensics

GenShield, a unified autoregressive framework introduced by researchers from Peking University, combines explainable AI‑generated image detection with controllable artifact correction, leveraging a two‑stage Visual Chain‑of‑Thought curriculum and the newly built GenShield‑Set dataset to achieve state‑of‑the‑art performance on both detection and repair benchmarks.

AI-generated image detectionGenShieldVisual Chain-of-Thought
0 likes · 8 min read
From Detection to Repair: Closing the Loop in AI‑Generated Image Forensics
Machine Heart
Machine Heart
Jun 21, 2026 · Artificial Intelligence

Is GRPO Obsolete? Why GLM‑5.2 Dropped It and What It Means for RL

GLM‑5.2 replaces the Group Relative Policy Optimization (GRPO) algorithm with a critic‑based PPO approach for long‑horizon tasks, arguing that GRPO’s group comparison breaks down on variable‑length trajectories, a shift that has sparked vigorous debate across the reinforcement‑learning community.

DeepSeekGLM-5.2GRPO
0 likes · 10 min read
Is GRPO Obsolete? Why GLM‑5.2 Dropped It and What It Means for RL
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jun 21, 2026 · Backend Development

Beyond Vibe Coding: A Deep Dive into OpenSpec Spec‑Driven Development

This article explains why Vibe Coding reaches its limits for large projects, introduces Spec‑Driven Development with OpenSpec, walks through installing the tool, using its opsx commands, creating specification documents, applying code generation, and archiving the results in a Spring Boot 3.5.0 application.

AI-assisted codingOpenSpecOpsx commands
0 likes · 12 min read
Beyond Vibe Coding: A Deep Dive into OpenSpec Spec‑Driven Development
java1234
java1234
Jun 21, 2026 · Artificial Intelligence

AgentScope Java 2.0 Unveiled: Major Upgrades for Production‑Ready AI Agents

The open‑source AgentScope Java framework now ships with version 2.0, introducing HarnessAgent for long‑running tasks, a Workspace‑based persistence layer, enterprise‑grade multi‑tenant isolation, streaming events, and a refactored middleware model, all illustrated with runnable Java examples and a concise feature table.

AI agentsAgentScopeHarnessAgent
0 likes · 12 min read
AgentScope Java 2.0 Unveiled: Major Upgrades for Production‑Ready AI Agents
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 21, 2026 · Fundamentals

28 Diagrams That Explain TCP From Basics to Advanced Concepts

This article walks through the TCP protocol step by step—starting with physical and data‑link layers, then IP addressing, sockets, transport‑layer functions, TCP header fields, reliable transmission mechanisms, congestion control, connection setup and teardown, and finally a comparison with UDP—using concrete diagrams and real‑world analogies.

Congestion ControlNetwork ProtocolsReliable Transmission
0 likes · 28 min read
28 Diagrams That Explain TCP From Basics to Advanced Concepts
Architect's Guide
Architect's Guide
Jun 21, 2026 · Operations

Mastering Jenkins Pipelines: A Step‑by‑Step Guide for Beginners

This article provides a comprehensive, hands‑on tutorial on Jenkins pipelines, covering the two syntax styles (Declarative and Scripted), pipeline structure, agents, stages, steps, post actions, parameters, triggers, environment variables, credentials, and practical Jenkinsfile examples for Kubernetes, Docker, and more.

AutomationCI/CDJenkins
0 likes · 28 min read
Mastering Jenkins Pipelines: A Step‑by‑Step Guide for Beginners
Lisa Notes
Lisa Notes
Jun 21, 2026 · Artificial Intelligence

Understanding Byte Pair Encoding (BPE): A Greedy Subword Compression Algorithm for NLP

The article explains how Byte Pair Encoding (BPE) works as a greedy, linear‑time subword segmentation technique, walks through its step‑by‑step token merging process with a concrete sentence example, discusses its strengths in handling OOV words, and outlines its limitations and alternatives such as WordPiece and SentencePiece.

BPEByte Pair EncodingNLP
0 likes · 8 min read
Understanding Byte Pair Encoding (BPE): A Greedy Subword Compression Algorithm for NLP
Lisa Notes
Lisa Notes
Jun 21, 2026 · Fundamentals

How to Use Java’s super Keyword to Access Base-Class Members

This tutorial demonstrates how the super keyword lets a subclass invoke overridden methods and access shadowed fields in its superclass, providing step‑by‑step Java code examples, execution results, and explanations of the underlying inheritance mechanics.

field shadowinginheritancejava
0 likes · 5 min read
How to Use Java’s super Keyword to Access Base-Class Members
ZhiKe AI
ZhiKe AI
Jun 21, 2026 · Databases

From ACID to BASE: Picking the Best of 6 Distributed Transaction Strategies

The article explains why ACID guarantees break down in distributed systems, introduces the BASE and CAP trade‑offs, then details six concrete transaction solutions—2PC, 3PC, TCC, Saga, local message tables, and reliable messages—highlighting their processes, drawbacks, and a decision framework for selecting the right approach.

2PC3PCACID
0 likes · 19 min read
From ACID to BASE: Picking the Best of 6 Distributed Transaction Strategies
Java Tech Workshop
Java Tech Workshop
Jun 21, 2026 · Backend Development

Mastering Spring’s BeanPostProcessor: The Ultimate Hook for Advanced Container Customization

Spring’s BeanPostProcessor is a global container hook that intercepts every bean’s lifecycle, enabling custom initialization, dynamic proxying, annotation processing, and resource cleanup; the article explains its three-tier hierarchy, execution order, priority rules, practical use‑cases like auto‑injection, logging, data masking, and common pitfalls.

AOPBeanPostProcessorData Masking
0 likes · 18 min read
Mastering Spring’s BeanPostProcessor: The Ultimate Hook for Advanced Container Customization
SpringMeng
SpringMeng
Jun 21, 2026 · Artificial Intelligence

What Is the Viral “Loop” Everyone’s Talking About?

The article explains the AI‑Agent “Loop” concept that has gone viral, contrasting it with traditional programming loops, detailing the ReAct paradigm, single‑agent vs. multi‑agent loops, the four engineering layers of Prompt, Context, Loop and Harness, and discussing Loop engineering’s building blocks, benefits, limitations, and practical use cases.

AI agentsLoop EngineeringPrompt Engineering
0 likes · 18 min read
What Is the Viral “Loop” Everyone’s Talking About?
Black & White Path
Black & White Path
Jun 21, 2026 · Artificial Intelligence

DeerFlow: ByteDance’s Open‑Source Super‑Agent That Executes Whole Projects End‑to‑End

DeerFlow, an open‑source super‑agent framework from ByteDance released in early 2026, lets a single instruction drive end‑to‑end project delivery by automatically planning, orchestrating sub‑agents, writing and testing code in a sandbox, and producing ready‑to‑use results, surpassing traditional tool‑calling agents.

AI AgentDeerFlowDocker
0 likes · 8 min read
DeerFlow: ByteDance’s Open‑Source Super‑Agent That Executes Whole Projects End‑to‑End
Geek Labs
Geek Labs
Jun 21, 2026 · Industry Insights

5 Ground‑Up Developer Tools That Redefine Performance

This article reviews five innovative GitHub projects—a Rust‑based React framework, an AI‑agent pipeline tool, a lightweight Go database client, a highly configurable full‑stack scaffolder, and a Rust‑rewritten Vue toolchain—detailing their architectures, benchmark results, and unique features.

AI workflowFullstack scaffoldingReAct
0 likes · 7 min read
5 Ground‑Up Developer Tools That Redefine Performance