All Articles

143443 articles · Page 387 of 7173
Machine Heart
Machine Heart
May 3, 2026 · Operations

Is LLM4OR the Next Hot Application? Exploring Its First Enterprise Decisions

The article examines how LLM4OR merges large language models with operations research to turn manufacturing and supply‑chain business language, data fields, and on‑site rules into computable optimization models, outlining its potential entry points in enterprise decision‑making and the challenges of modeling.

Agentic FactoryEnterprise OptimizationLLM
0 likes · 9 min read
Is LLM4OR the Next Hot Application? Exploring Its First Enterprise Decisions
Su San Talks Tech
Su San Talks Tech
May 3, 2026 · Databases

How to Speed Up a 10‑Table JOIN Query in MySQL (JD Interview Scenario)

When a production MySQL query joins ten tables and exceeds 30 seconds, a systematic approach—starting with EXPLAIN analysis, profiling, and configuration checks—combined with layered optimizations such as indexing, join order adjustment, query splitting, temporary tables, materialized views, OLAP engines, and vertical partitioning—can dramatically improve performance.

IndexingJOINMySQL
0 likes · 17 min read
How to Speed Up a 10‑Table JOIN Query in MySQL (JD Interview Scenario)
Geek Labs
Geek Labs
May 3, 2026 · Frontend Development

Edit Word Docs Directly in the Browser with This Open‑Source Engine

SuperDoc is an open‑source DOCX engine that parses and renders real .docx files in the browser with full format fidelity, offers one‑click integration for major front‑end frameworks, real‑time Yjs collaboration, and AI‑driven document automation.

AI automationBrowserFrontend
0 likes · 5 min read
Edit Word Docs Directly in the Browser with This Open‑Source Engine
Geek Labs
Geek Labs
May 3, 2026 · Artificial Intelligence

VibeVoice: Microsoft’s Open‑Source Cutting‑Edge Speech AI Models

The article introduces Microsoft’s open‑source VibeVoice project, detailing its long‑audio ASR‑7B and real‑time TTS‑0.5B models, the continuous speech tokenizer and next‑token diffusion techniques, and provides quick‑start instructions for online demos and local deployment via Hugging Face.

Hugging FaceMicrosoftVibeVoice
0 likes · 3 min read
VibeVoice: Microsoft’s Open‑Source Cutting‑Edge Speech AI Models
java1234
java1234
May 3, 2026 · Mobile Development

Building a WeChat Mini‑Program Dormitory Management System in 20 Minutes with Cursor AI

The author demonstrates how Cursor AI and Opus 4.7 can generate a complete campus dormitory management solution—including a Spring Boot backend, Vue 3 admin portal, and a WeChat mini‑program front‑end—within twenty minutes, and provides the source code, video tutorial, and deployment details.

Cursor AIDormitory ManagementMySQL
0 likes · 7 min read
Building a WeChat Mini‑Program Dormitory Management System in 20 Minutes with Cursor AI
AI Explorer
AI Explorer
May 3, 2026 · Artificial Intelligence

Why a 55k‑Star Open‑Source ‘Skills’ Repo Is a Must‑Have for Engineers Working with AI

The article analyzes Matt Pocock’s highly starred open‑source “skills” repository, explaining how its lightweight Markdown‑based protocols solve common AI coding tool problems—misunderstanding intent and verbosity—by enforcing clear communication, context sharing, and a quick three‑step setup for developers.

AI CodingDeveloper WorkflowPrompt Engineering
0 likes · 5 min read
Why a 55k‑Star Open‑Source ‘Skills’ Repo Is a Must‑Have for Engineers Working with AI
Deepin Linux
Deepin Linux
May 3, 2026 · Backend Development

Master Lock‑Free Queues: Unlock the Core of High‑Concurrency Programming

This article demystifies lock‑free queues by explaining their low‑level implementation, atomic operations, memory barriers, and the four SPSC/MPMC models, while also covering ABA problems, false sharing avoidance, and practical C++ code examples to help developers truly understand high‑concurrency fundamentals.

C++ConcurrencyLock-free queue
0 likes · 44 min read
Master Lock‑Free Queues: Unlock the Core of High‑Concurrency Programming
PMTalk Product Manager Community
PMTalk Product Manager Community
May 3, 2026 · Product Management

Why Every AI Product Manager Must Master Agent Architecture

Product managers are increasingly anxious about how AI Agents will reshape product logic, prompting a shift from button‑driven apps to intent‑driven assistants; this article breaks down the four core modules of an Agent, illustrates a market‑analysis workflow, and outlines design trade‑offs and common pitfalls.

AI AgentActorContext Engineering
0 likes · 11 min read
Why Every AI Product Manager Must Master Agent Architecture
PMTalk Product Manager Community
PMTalk Product Manager Community
May 3, 2026 · Product Management

A Practical Guide to Uncovering Hidden Requirements in B2B Systems

This article shares a step‑by‑step framework for systematically discovering hidden user requirements in rule‑intensive B2B applications, using real‑world case studies, the McGovern iceberg model, four investigative dimensions, and funnel‑style questioning to turn vague requests into concrete, auditable features.

B2B product managementFMEARequirement Analysis
0 likes · 20 min read
A Practical Guide to Uncovering Hidden Requirements in B2B Systems
Java Tech Workshop
Java Tech Workshop
May 3, 2026 · Backend Development

Mastering Java Annotations: From Basic Usage to Custom Annotation Processors

This article explains the fundamentals of Java annotations, their core purposes, built‑in annotations, meta‑annotations, and provides step‑by‑step practical examples for creating a runtime @Sensitive annotation and a compile‑time @AutoGetter processor, while also dissecting how Spring leverages annotations for component scanning, dependency injection, and request mapping.

Annotation ProcessorJavaMeta‑annotations
0 likes · 27 min read
Mastering Java Annotations: From Basic Usage to Custom Annotation Processors
dbaplus Community
dbaplus Community
May 3, 2026 · Fundamentals

What Is 127.0.0.2? A Veteran Ops Engineer’s Surprising Discovery

The article explains that the entire 127.0.0.0/8 block consists of loopback addresses, shows how addresses like 127.0.0.2 and 127.0.1.1 are reachable, and demonstrates practical uses such as isolating services, simulating clusters, and the special role of 127.0.1.1 on Debian systems.

127.0.0.0/8Linux networkinghosts file
0 likes · 7 min read
What Is 127.0.0.2? A Veteran Ops Engineer’s Surprising Discovery
AI Architecture Hub
AI Architecture Hub
May 3, 2026 · Artificial Intelligence

What to Learn, Build, and Skip in AI Agents

The article analyzes the fast‑changing AI‑agent landscape, proposes five concrete criteria for filtering new technologies, outlines essential concepts such as context engineering, tool design, scheduler‑subagent patterns, evaluation frameworks, and recommends a stable 2026 tech stack while warning against hype‑driven tools.

AI agentsContext EngineeringEvaluation
0 likes · 27 min read
What to Learn, Build, and Skip in AI Agents
AI Architecture Path
AI Architecture Path
May 3, 2026 · Artificial Intelligence

How Matt Pocock’s Open‑Source ‘Skills’ Turns AI Coding from Vibe to Engineer‑Level Precision

Matt Pocock’s open‑source ‘Skills’ framework tackles four common AI‑coding pitfalls—misaligned requirements, verbose output, non‑runnable code, and architectural decay—by providing lightweight, composable skills such as deep‑questioning, domain‑language generation, test‑driven development, and architecture‑guardrails, enabling engineers to guide AI with disciplined, reproducible workflows.

AI CodingMatt PocockPrompt Engineering
0 likes · 15 min read
How Matt Pocock’s Open‑Source ‘Skills’ Turns AI Coding from Vibe to Engineer‑Level Precision
Test Development Learning Exchange
Test Development Learning Exchange
May 2, 2026 · Operations

Give Your Test Scripts a Brain: 15 Cutting‑Edge AI Decorators for 2026

The article showcases fifteen practical AI‑powered Python decorators that transform brittle if‑else test code into intelligent, self‑healing automation—covering smart retry, semantic assertions, data generation, flaky detection, traffic replay, dynamic timeouts, sensitive data masking, root‑cause analysis, and more—complete with concrete code samples and explanations.

AI testingCI/CDIntelligent Testing
0 likes · 18 min read
Give Your Test Scripts a Brain: 15 Cutting‑Edge AI Decorators for 2026
SuanNi
SuanNi
May 2, 2026 · Artificial Intelligence

Joint Modeling Predicts New Drugs in Nature: AI Maps a Billion‑Molecule Chemical Frontier

The article presents a joint molecular model that combines property prediction with molecule reconstruction, introduces a "strangeness" metric to detect distribution shift, validates it on 33 datasets, applies it to a 140k virtual screen, and experimentally discovers seven highly novel kinase inhibitors.

AI drug discoverydistribution shiftjoint molecular model
0 likes · 7 min read
Joint Modeling Predicts New Drugs in Nature: AI Maps a Billion‑Molecule Chemical Frontier
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 2, 2026 · Artificial Intelligence

RouteMoA: Dynamic Routing Without Pre‑Inference for Efficient Multi‑Agent Mixtures

RouteMoA moves model selection ahead of inference by using a lightweight scorer to predict each model's suitability from the query, dramatically cutting computation cost and latency while preserving or improving accuracy, as demonstrated on a 15‑model pool with up to 90% cost reduction and 64% latency reduction.

ACL 2026Dynamic RoutingMixture of Agents
0 likes · 9 min read
RouteMoA: Dynamic Routing Without Pre‑Inference for Efficient Multi‑Agent Mixtures

Meta Acquires ARI to Accelerate Humanoid Robot AI Development

Meta has completed the acquisition of Assured Robot Intelligence (ARI), a startup specializing in robot AI foundation models, and will integrate its team with Meta's Robotics Studio to fill AI gaps, boost humanoid robot capabilities, and reflect a strategic shift toward AI‑driven robotics.

Artificial IntelligenceAssured Robot IntelligenceIndustry Acquisition
0 likes · 6 min read
Meta Acquires ARI to Accelerate Humanoid Robot AI Development
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 2, 2026 · Artificial Intelligence

Real-World Large-Scale Test Shows Robots Learning While Deploying Outperform Baselines on Eight Tasks

The article presents the LWD (Learning While Deploying) framework, detailing its reinforcement‑learning‑driven data flywheel, the DIVL value‑evaluation and QAM policy‑optimization modules, and experimental results where a dual‑arm robot improves success rates by up to 17% and reduces cycle time by 23.75 seconds across eight real‑world tasks, surpassing strong baselines.

DIVLData FlywheelLWD
0 likes · 12 min read
Real-World Large-Scale Test Shows Robots Learning While Deploying Outperform Baselines on Eight Tasks