All Articles

143329 articles · Page 350 of 7167
SuanNi
SuanNi
May 10, 2026 · Artificial Intelligence

How HTML Beats Markdown for Better AI Communication and Collaboration

The article argues that while Markdown has served as a convenient intermediate language for large language models, generating HTML output unlocks richer visual presentation, interactive controls, and easier sharing, albeit at the cost of higher token usage and more complex version control.

AI InteractionHTMLMarkdown
0 likes · 9 min read
How HTML Beats Markdown for Better AI Communication and Collaboration
SuanNi
SuanNi
May 10, 2026 · Artificial Intelligence

Hermes Agent Overtakes OpenClaw to Lead Global Token Consumption

Hermes Agent, an open‑source autonomous‑agent framework from Nous Research, has surpassed OpenClaw to become the top token consumer on OpenRouter, offering self‑evolving skills, persistent cross‑session memory, multi‑environment execution, and extensive IM integration while addressing security and deployment challenges.

AI agentsHermes AgentOpenClaw
0 likes · 7 min read
Hermes Agent Overtakes OpenClaw to Lead Global Token Consumption
AI Architect Hub
AI Architect Hub
May 10, 2026 · Artificial Intelligence

RAG Series Recap: From Chunking to Prompt – A Complete Technical Roadmap

This article systematically reviews the nine‑stage RAG pipeline—from data cleaning and text chunking through embedding, vector indexing, retrieval, reranking, and finally prompt assembly—highlighting core concepts, practical code snippets, common pitfalls, and optimization tips for building production‑grade systems.

AIEmbeddingLLM
0 likes · 22 min read
RAG Series Recap: From Chunking to Prompt – A Complete Technical Roadmap
TechVision Expert Circle
TechVision Expert Circle
May 10, 2026 · R&D Management

The Hidden Conflict: CTO vs Platform Team vs Business Units

In scaled tech companies, a hidden clash among the CTO, platform team, and business units—each pursuing its own “right” of technical leadership, standardization, or rapid delivery—creates organizational friction, which the article dissects through typical battlefields and proposes a Platform Engineering governance model to institutionalize conflict resolution.

CTObusiness alignmentorganizational conflict
0 likes · 11 min read
The Hidden Conflict: CTO vs Platform Team vs Business Units
phodal
phodal
May 10, 2026 · Artificial Intelligence

From /goal to Long‑Running Asynchronous Agents: Making AI Sustainably Deliver Complex Tasks

By experimenting with OpenAI’s /goal feature, the author shows how to turn ad‑hoc AI prompts into a structured, long‑running loop that records progress in Git, README and test artifacts, enabling agents to handle complex engineering tasks across multiple sessions with clear checkpoints and human‑in‑the‑loop control.

AI agentsRalph LoopSoftware Engineering
0 likes · 12 min read
From /goal to Long‑Running Asynchronous Agents: Making AI Sustainably Deliver Complex Tasks
MeowKitty Programming
MeowKitty Programming
May 10, 2026 · Backend Development

Why Java Developers Should Stop Treating Null as a Minor Issue – JSpecify Turns NPEs into Enforceable Contracts

The article explains how Java developers have become numb to NullPointerExceptions, why AI‑assisted coding makes undocumented null assumptions riskier, and how JSpecify's nullability annotations—adopted by Spring 7—provide explicit contracts that improve code safety and tooling support.

AI code generationJSpecifyJava
0 likes · 7 min read
Why Java Developers Should Stop Treating Null as a Minor Issue – JSpecify Turns NPEs into Enforceable Contracts
Architect
Architect
May 10, 2026 · Artificial Intelligence

Long‑Running Agents: From Ralph Loop to Hand‑over‑Ready Harness

The article analyzes the challenges of long‑running AI agents, showing that persistence alone is insufficient and that reliable hand‑over requires explicit specifications, external state files, drift mitigation, sub‑agents, and a verifiable evidence chain to keep the work understandable for the next model or human.

AI agentsContext EngineeringHarness
0 likes · 25 min read
Long‑Running Agents: From Ralph Loop to Hand‑over‑Ready Harness
Smart Workplace Lab
Smart Workplace Lab
May 10, 2026 · Artificial Intelligence

When Your Internal AI Is Fed Bad Data, How to Fix It?

The article recounts a real incident where an AI‑generated SOP cited outdated policy because a knowledge base was overloaded with unchecked historical documents, then outlines a step‑by‑step protocol—including corpus cleaning, version locking, and isolation zones—to prevent data contamination and ensure reliable AI outputs.

AIData GovernanceKnowledge Base
0 likes · 7 min read
When Your Internal AI Is Fed Bad Data, How to Fix It?
DataFunSummit
DataFunSummit
May 10, 2026 · Artificial Intelligence

Why Memory Is the Bottleneck for AI Agents and How MemOS Overcomes It

The article analyzes the critical role of memory in AI agents, compares model‑driven and application‑driven approaches, details the five‑layer MemOS architecture with three‑level memory coordination, and presents performance gains such as 100‑200% monthly cloud‑service growth, up to 72% token savings, and a 30% improvement in answer quality.

AI AgentEnterprise AILLM
0 likes · 18 min read
Why Memory Is the Bottleneck for AI Agents and How MemOS Overcomes It
DataFunSummit
DataFunSummit
May 10, 2026 · Big Data

How Lance File Format v2.2 Accelerates, Cuts Costs, and Governs Multimodal Data

Lance File Format v2.2 tackles the AI data explosion by delivering hundred‑fold random‑read performance, advanced two‑layer compression, zero‑cost schema evolution, Git‑style versioning, external blob handling, and a roadmap toward native media support and intelligent encoding, positioning it as a core infrastructure for large‑scale multimodal workloads.

Data GovernanceFile FormatIO performance
0 likes · 14 min read
How Lance File Format v2.2 Accelerates, Cuts Costs, and Governs Multimodal Data
IT Services Circle
IT Services Circle
May 10, 2026 · Fundamentals

Why Does Python Use a Leading Underscore for Some Variables?

The article explains that a leading underscore in Python names signals a non‑public or internal use convention defined by PEP 8, describes its practical effects on imports and IDE hints, and outlines other underscore naming patterns such as name mangling, trailing underscores, magic methods, and throwaway variables.

Naming ConventionsPEP 8name mangling
0 likes · 6 min read
Why Does Python Use a Leading Underscore for Some Variables?
Java Tech Enthusiast
Java Tech Enthusiast
May 10, 2026 · Industry Insights

US Researcher’s 36‑Hour China AI Lab Tour Highlights Culture and Open‑Source Edge

During a 36‑hour visit to six leading Chinese AI labs, US researcher Nathan observed a collaborative, student‑driven culture, strong admiration for DeepSeek, pragmatic open‑source practices, and distinct market dynamics, contrasting sharply with the ego‑driven, less inclusive approaches typical of many US AI organizations.

AIAI CultureChina AI
0 likes · 11 min read
US Researcher’s 36‑Hour China AI Lab Tour Highlights Culture and Open‑Source Edge
Java Tech Enthusiast
Java Tech Enthusiast
May 10, 2026 · Databases

Why Can Redis Handle Over 100k QPS? A Deep Technical Breakdown

Redis can sustain over 100,000 queries per second thanks to four key factors: pure in‑memory storage, highly optimized data structures such as SDS and ziplist, a single‑threaded event loop with epoll‑based I/O multiplexing, and optional multi‑threaded network handling introduced in Redis 6.0.

Data StructuresIO MultiplexingIn-Memory Database
0 likes · 10 min read
Why Can Redis Handle Over 100k QPS? A Deep Technical Breakdown
Data Party THU
Data Party THU
May 10, 2026 · Artificial Intelligence

SpikingBrain 2.0 Breaks Long‑Sequence and Low‑Power Bottlenecks in Brain‑Inspired LLMs

The Chinese Academy of Sciences unveils SpikingBrain 2.0‑5B, a brain‑inspired large model that uses dual‑space sparse attention and dual activation (FP8 and INT8‑Spiking) to cut training cost by over tenfold, achieve up to 15× speedup on long sequences, and match Qwen‑3 performance while drastically reducing power consumption.

SpikingBrain2.0benchmark performancebrain-inspired AI
0 likes · 10 min read
SpikingBrain 2.0 Breaks Long‑Sequence and Low‑Power Bottlenecks in Brain‑Inspired LLMs
21CTO
21CTO
May 10, 2026 · Industry Insights

JetBrains Makes CLion Free for Non‑Commercial Use – What It Means for Developers

JetBrains has announced that its flagship C/C++ IDE CLion is now free for any non‑commercial use, joining WebStorm and Rider in a broader strategy that lowers barriers for students, open‑source contributors, hobbyists, and content creators while preserving full functionality.

C++CLionDeveloper Tools
0 likes · 7 min read
JetBrains Makes CLion Free for Non‑Commercial Use – What It Means for Developers
21CTO
21CTO
May 10, 2026 · Industry Insights

Why GitHub’s Reliability Issues Are Driving Users Away

GitHub’s uptime has fallen sharply, with hundreds of incidents—including dozens of major outages—largely fueled by AI‑driven code generation, prompting high‑profile users to migrate, leadership to prioritize availability, and a costly overhaul of capacity and architecture.

AI-driven developmentCapacity PlanningGitHub
0 likes · 11 min read
Why GitHub’s Reliability Issues Are Driving Users Away