All Articles

142216 articles · Page 171 of 7111
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 9, 2026 · Artificial Intelligence

Scientific, Controllable Skill Self‑Evolution: Deep Dive into Trace2Skill, EvoSkill and SkillOpt

This article analyzes three recent papers—Trace2Skill, EvoSkill, and SkillOpt—detailing their methodologies for automatically evolving Agent Skills, comparing their assumptions, processes, strengths, and limitations, and offering guidance on selecting the appropriate approach for scalable, reliable skill self‑improvement.

AgentArtificial IntelligenceMachine Learning
0 likes · 33 min read
Scientific, Controllable Skill Self‑Evolution: Deep Dive into Trace2Skill, EvoSkill and SkillOpt
Su San Talks Tech
Su San Talks Tech
Jun 9, 2026 · Artificial Intelligence

Zero‑Cost Unlimited‑Token Access to Qwen 3.6: A Step‑by‑Step Guide

This article explains how developers can bypass token‑cost barriers by using iFlytek’s MaaS platform to obtain free, unlimited‑token access to the Qwen 3.6‑35B‑A3B model, details the model’s MoE architecture and benchmark performance, and provides a complete Java integration tutorial with code samples and practical use‑case suggestions.

AIAPIJava
0 likes · 16 min read
Zero‑Cost Unlimited‑Token Access to Qwen 3.6: A Step‑by‑Step Guide
ShiZhen AI
ShiZhen AI
Jun 9, 2026 · Industry Insights

Did Apple Just Rent Cloud Power at WWDC26? Siri AI’s Strategic Trade‑offs

WWDC26 put Siri AI at the forefront of iOS 27, turning AI from a peripheral feature into a system‑level assistant, while sparking debate over Apple’s reliance on external cloud models, privacy implications, and the long‑term risk of mixing rented compute with its tightly integrated ecosystem.

AI strategyAppleSiri AI
0 likes · 10 min read
Did Apple Just Rent Cloud Power at WWDC26? Siri AI’s Strategic Trade‑offs
Deepin Linux
Deepin Linux
Jun 9, 2026 · Fundamentals

Why Is CPU Computation Lightning‑Fast While Data Lookup So Slow?

CPU arithmetic runs at near‑physical limits because all operations stay on‑chip, but data lookup is throttled by three physical bottlenecks—storage hierarchy, data placement, and addressing rules—forcing the processor to wait for cache, memory or disk transfers and dramatically reducing overall system throughput.

CPUMemory HierarchyPerformance
0 likes · 18 min read
Why Is CPU Computation Lightning‑Fast While Data Lookup So Slow?
Linux Cloud-Native Ops Stack
Linux Cloud-Native Ops Stack
Jun 9, 2026 · Databases

Zero‑Downtime Redis Cluster Expansion in Production

This guide details a step‑by‑step, zero‑downtime expansion of a 3‑master‑3‑slave Redis Cluster to a 4‑master‑4‑slave setup, covering node standardization, network checks, big‑key handling, full backups, monitoring, slot migration planning, progressive migration methods, replica addition, post‑expansion validation, rollback procedures, and practical lessons learned.

ExpansionHash SlotsMonitoring
0 likes · 13 min read
Zero‑Downtime Redis Cluster Expansion in Production
IT Architects Alliance
IT Architects Alliance
Jun 9, 2026 · Artificial Intelligence

From Implementer to Orchestrator: 7 Essential Skills Every 2026 Architect Must Master

The article shares a practitioner’s journey from chasing every new AI framework to focusing on seven durable capabilities—context management, tool design, data‑driven evaluation, robust harness, isolation, traceability, cost control, and disciplined multi‑agent collaboration—that will keep architects productive for years to come.

AI agentsContext ManagementHarness
0 likes · 11 min read
From Implementer to Orchestrator: 7 Essential Skills Every 2026 Architect Must Master
The Dominant Programmer
The Dominant Programmer
Jun 9, 2026 · Backend Development

Collect URLs and Async Convert to PDF for ZIP Download (Spring Boot + Feign)

An online education platform needs to batch‑download course materials from self‑hosted courses, partner APIs, and archived PDFs; the article details a Spring Boot service that aggregates URLs, signs them, distinguishes direct downloads, submits an asynchronous PDF conversion and ZIP packaging task via Feign, and returns a task ID for front‑end polling.

FeignJavaPDF
0 likes · 15 min read
Collect URLs and Async Convert to PDF for ZIP Download (Spring Boot + Feign)
AI Architecture Hub
AI Architecture Hub
Jun 9, 2026 · Artificial Intelligence

30 Ready‑to‑Use System Prompts to Turn Claude into an Expert in Any Domain

The article presents a method for distinguishing users who receive mediocre AI output from those who consistently get expert‑level answers by sharing 30 ready‑to‑copy system prompts that transform Claude into a specialized assistant across content creation, research, marketing, coding, and more, without paid courses or years of experience.

AI workflowClaudeProductivity
0 likes · 20 min read
30 Ready‑to‑Use System Prompts to Turn Claude into an Expert in Any Domain
AI Engineer Programming
AI Engineer Programming
Jun 8, 2026 · Artificial Intelligence

Parse vs Extract: When to Use Full Document Parsing vs Targeted Data Extraction for AI

The article explains the fundamental difference between parsing—converting documents into AI‑friendly formats that preserve structure and context—and extraction—pulling predefined fields into structured outputs—while offering concrete scenarios, decision criteria, and example implementations with LlamaParse and LlamaExtract.

AIDocument ParsingLLM
0 likes · 10 min read
Parse vs Extract: When to Use Full Document Parsing vs Targeted Data Extraction for AI
BirdNest Tech Talk
BirdNest Tech Talk
Jun 8, 2026 · Backend Development

Beyond gopacket: Introducing goscapy, the Powerful Go Network Library

The article examines goscapy, a pure‑Go network library that brings Scapy‑style stream‑builder APIs, automatic checksum calculation, protocol inference and zero‑copy serialization to Go, and compares it in depth with gopacket, showing code examples, performance tricks, and practical use‑cases such as ARP and TCP SYN scanning.

GoNetwork ProgrammingPacket crafting
0 likes · 18 min read
Beyond gopacket: Introducing goscapy, the Powerful Go Network Library
LuTiao Programming
LuTiao Programming
Jun 8, 2026 · Artificial Intelligence

Why Codex Skills Aren’t Plugins – Common Misuses Explained

The article clarifies that Codex Skills differ from plugins—plugins connect external resources while skills define how to act—and shows why many developers see no effect because they invoke skills incorrectly, use vague prompts, ignore context, or choose the wrong trigger mode.

AI skillCodexDesign automation
0 likes · 15 min read
Why Codex Skills Aren’t Plugins – Common Misuses Explained
Java Architect Essentials
Java Architect Essentials
Jun 8, 2026 · Artificial Intelligence

Is a Codex Subscription Worth It? Decide Based on Real Use Cases

The article evaluates whether buying a Codex subscription—bundled with ChatGPT Plus or higher plans—is justified by examining pricing, usage limits, and concrete developer scenarios such as debugging, legacy‑code navigation, and batch refactoring, offering a practical decision framework.

AI coding assistantChatGPT PlusCodex
0 likes · 5 min read
Is a Codex Subscription Worth It? Decide Based on Real Use Cases
Java Architect Essentials
Java Architect Essentials
Jun 8, 2026 · Backend Development

How to Configure a ThreadPool to Send 10 Million SMS in One Hour (Java)

The article walks through calculating the required QPS for 10 million SMS in an hour, derives a precise ThreadPoolExecutor configuration (core 200, max 500, queue 5000, 60 s keep‑alive, CallerRunsPolicy), and provides complete Spring Boot code with production tips such as pagination, retry, idempotency and rate‑limiting.

ConcurrencyJavaPerformance
0 likes · 7 min read
How to Configure a ThreadPool to Send 10 Million SMS in One Hour (Java)
Software Engineering 3.0 Era
Software Engineering 3.0 Era
Jun 8, 2026 · Artificial Intelligence

2026: The Watershed Year When AI Coding Redefines Programming Logic

In 2026, AI-driven development moves from simple code suggestions to autonomous, collaborative multi‑agent teams that can understand requirements, design, code, test, and self‑correct, turning programming into an industrialized, process‑focused practice where engineers act as overseers rather than sole coders.

AI codingcloud developmentmulti-agent automation
0 likes · 8 min read
2026: The Watershed Year When AI Coding Redefines Programming Logic
Infinite Tech Management
Infinite Tech Management
Jun 8, 2026 · R&D Management

When Engineers Want Management: Mistaking Fatigue for Ambition

Many engineers consider moving into management because they are tired of coding, but the article explains that management brings its own complexities, requires a shift in responsibility, and should only be pursued after honest self‑assessment and small experiments.

R&Dcareer transitionengineering
0 likes · 11 min read
When Engineers Want Management: Mistaking Fatigue for Ambition
Coder Trainee
Coder Trainee
Jun 8, 2026 · Artificial Intelligence

Rapidly Build AI Agents with LangChain: A Hands‑On Tutorial

This article walks through why LangChain is the leading framework for AI agents, compares it with low‑level implementations, and provides step‑by‑step code examples for installation, prompt templates, LCEL pipelines, memory modules, RAG, custom tools, and a complete customer‑service agent, concluding with a concise feature comparison.

AI agentsLLMLangChain
0 likes · 14 min read
Rapidly Build AI Agents with LangChain: A Hands‑On Tutorial
dbaplus Community
dbaplus Community
Jun 8, 2026 · Operations

Can You Really Let a Memory Leak Run? Practical Insights and Risks

The article compiles several Zhihu answers that debate the feasibility of deliberately tolerating memory leaks by relying on periodic restarts, covering techniques like NPI‑GC, GitLab Sidekiq memory‑killer settings, Linux OOM‑killer configuration, and real‑world anecdotes that illustrate both benefits and drawbacks.

NPI-GCOOM killerOperations
0 likes · 7 min read
Can You Really Let a Memory Leak Run? Practical Insights and Risks