All Articles

143124 articles · Page 276 of 7157
Shuge Unlimited
Shuge Unlimited
May 25, 2026 · Information Security

Why Securing AI Agents Is a Nightmare: How Many Are Struggling?

The article analyzes the security challenges of large‑scale AI agents, explains why fine‑grained permission design is essential, critiques existing protocols like MCP, A2A, and CLI/GUI automation, and details the new ATH three‑party trusted handshake with code examples and a Python demo.

A2AAI agentsATH protocol
0 likes · 26 min read
Why Securing AI Agents Is a Nightmare: How Many Are Struggling?
Su San Talks Tech
Su San Talks Tech
May 25, 2026 · Artificial Intelligence

Mastering RAG: Chunking, Embeddings, BM25 & Multi‑Index Retrieval in Python

This tutorial explains Retrieval‑Augmented Generation (RAG) from fundamentals to a full pipeline, covering text chunking strategies, VoyageAI embeddings, vector‑store implementation, BM25 lexical search, and a multi‑index retriever that fuses semantic and lexical results with Reciprocal Rank Fusion.

BM25ChunkingPython
0 likes · 48 min read
Mastering RAG: Chunking, Embeddings, BM25 & Multi‑Index Retrieval in Python
Architect's Guide
Architect's Guide
May 25, 2026 · Frontend Development

Is WebSocket Still the Best Choice for Real‑Time Push? A Comparison with SSE and Polling

The article compares three server‑to‑client push techniques—polling, WebSocket, and Server‑Sent Events (SSE)—detailing their mechanisms, advantages, drawbacks, browser compatibility, and suitable use cases, and provides step‑by‑step Node/Express demos showing how to implement SSE in a simple web page.

ExpressJavaScriptNode.js
0 likes · 12 min read
Is WebSocket Still the Best Choice for Real‑Time Push? A Comparison with SSE and Polling
ZhiKe AI
ZhiKe AI
May 25, 2026 · Artificial Intelligence

Give AI a Remote Control: Learn Slash Commands in 3 Minutes – The Shortcut All AI Tools Use

Slash Commands let you wrap frequently used prompts into a single '/'‑prefixed shortcut, turning repetitive typing into a remote‑control‑like experience; the article explains what they are, how they differ from CLI flags, showcases built‑in commands, three practical use cases, and provides a step‑by‑step guide to create your own command.

AI automationAI toolsPrompt Engineering
0 likes · 13 min read
Give AI a Remote Control: Learn Slash Commands in 3 Minutes – The Shortcut All AI Tools Use
Geek Labs
Geek Labs
May 25, 2026 · Frontend Development

Turn Any City’s Street Layout into a Stylized Vector Poster with One Click

This article introduces two open‑source web tools—MapPoster Online (Rust/WASM) and MapToPoster JS (Leaflet + MapLibre GL)—that let you input a city name and instantly generate a customizable, high‑resolution vector map poster directly in the browser.

JavaScriptLeafletMapLibre
0 likes · 8 min read
Turn Any City’s Street Layout into a Stylized Vector Poster with One Click
Coder Trainee
Coder Trainee
May 25, 2026 · Frontend Development

Build a No‑Install, Cloud‑Synced Web Serial Assistant with Spring Boot 3 and the Web Serial API

This article shows how to replace traditional installable serial‑debug tools with a browser‑based, cross‑platform serial assistant that uses the Web Serial API for direct hardware access and Spring Boot 3 with WebSocket to relay data to the cloud, including architecture, code examples, and deployment pitfalls.

Browser hardware accessCloud synchronizationIoT
0 likes · 6 min read
Build a No‑Install, Cloud‑Synced Web Serial Assistant with Spring Boot 3 and the Web Serial API
AI Engineering
AI Engineering
May 25, 2026 · Artificial Intelligence

Anthropic’s Open‑Source Claude Plugin for Small Biz: 15 Ready Workflows, No Prompt Needed

Anthropic has released an open‑source Claude plugin for small businesses that provides fifteen atomic skills and fifteen ready‑to‑use workflows across finance, sales, and customer operations, allowing users to issue natural‑language commands without writing prompts, with a three‑layer architecture (skill, command, routing) and optional integrations with QuickBooks, PayPal, HubSpot, and other tools.

AI automationAnthropicClaude
0 likes · 5 min read
Anthropic’s Open‑Source Claude Plugin for Small Biz: 15 Ready Workflows, No Prompt Needed
AI Engineer Programming
AI Engineer Programming
May 25, 2026 · Artificial Intelligence

From Demo to Production: Building a Reliable Agent Development Lifecycle

The article outlines a four‑stage agent development lifecycle—Build, Test, Deploy, Monitor—explaining how early, iterative delivery, systematic testing, controlled deployment, and continuous monitoring transform experimental agents into reliable production systems while addressing governance, cost, and scalability challenges.

AgentDeploymentLangChain
0 likes · 16 min read
From Demo to Production: Building a Reliable Agent Development Lifecycle
Linyb Geek Road
Linyb Geek Road
May 25, 2026 · Artificial Intelligence

Designing a Claude Code Harness for Production‑Grade Java Microservices

The article presents a detailed, production‑focused harness for Claude Code that structures prompts, rules, skills, and external hooks to compensate for LLM shortcomings in Java microservice development, preventing hallucinations, concurrency bugs, and false completions while ensuring reliable code delivery.

JavaLLMPrompt Engineering
0 likes · 20 min read
Designing a Claude Code Harness for Production‑Grade Java Microservices
Lobster Programming
Lobster Programming
May 25, 2026 · Backend Development

Designing a System That Can Survive Sudden Spikes of One Million QPS

The article analyzes why simply adding Redis nodes cannot handle a sudden million‑QPS surge, then presents three practical solutions—key sharding, multi‑level caching with hot‑key detection, and distributed‑lock‑based fallback—to build a resilient high‑concurrency backend.

Cache ShardingHigh ConcurrencyHot Key Detection
0 likes · 7 min read
Designing a System That Can Survive Sudden Spikes of One Million QPS
Big Data Tech Team
Big Data Tech Team
May 25, 2026 · Artificial Intelligence

Mastering Data Agent: A Complete End‑to‑End Guide from Basics to Pro

This article breaks down the concept of a Data Agent that automates the entire traditional data‑analysis pipeline, explains its three‑layer architecture, the ReAct reasoning loop, multi‑agent collaboration, six practical use cases, and offers deployment recommendations for teams looking to adopt AI‑driven data workflows.

AIBIData Agent
0 likes · 18 min read
Mastering Data Agent: A Complete End‑to‑End Guide from Basics to Pro
AI Architecture Hub
AI Architecture Hub
May 25, 2026 · Artificial Intelligence

Google Antigravity Agents: API, SDK, and ADK Integration Guide

The article explains how Google Antigravity's production‑grade agent engine, managed Agent API, SDK, and ADK let developers replace heavyweight infrastructure with a single API call or a lightweight library, and provides detailed criteria and code examples for choosing and using each option.

ADKAI agentsAgent API
0 likes · 12 min read
Google Antigravity Agents: API, SDK, and ADK Integration Guide
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 25, 2026 · Backend Development

7 Practical Ways to Secure Spring Boot APIs with Permission Control

This article walks through seven concrete implementations for controlling access to Spring Boot 3.5.0 controller endpoints—including Spring Security, Sa‑Token, custom annotation with AOP, interceptor, URL‑based filter, custom HandlerMapping, and a Spring Cloud Gateway filter—providing code samples, configuration details, and test results to help developers choose the right approach for API security.

AOPAPI SecurityPermission control
0 likes · 14 min read
7 Practical Ways to Secure Spring Boot APIs with Permission Control
AI Architecture Path
AI Architecture Path
May 25, 2026 · Artificial Intelligence

Turn Any Codebase into an Interactive, Searchable Knowledge Graph with Claude‑Optimized Understand‑Anything

New developers often drown in massive legacy codebases, struggling to map dependencies and understand architecture, but Understand‑Anything leverages Claude, Tree‑sitter, and multi‑agent pipelines to generate a searchable, visual knowledge graph, offering onboarding tours, semantic QA, incremental diff analysis, and cross‑language support, while the article also compares it against competing tools and provides installation and usage guidance.

AI agentsClaude CodeLLM
0 likes · 15 min read
Turn Any Codebase into an Interactive, Searchable Knowledge Graph with Claude‑Optimized Understand‑Anything
Black & White Path
Black & White Path
May 24, 2026 · Information Security

How StubZero Exposed a Google Cloud Production RCE and Earned $148,337

A researcher discovered an unauthenticated debug endpoint in Google Cloud that leaked protobuf definitions, turned it into a "req2proto as a Service", abused Stubby RPC permissions, chained several API calls to achieve full remote code execution, and received a $148,337 bug‑bounty.

API SecurityGoogle CloudInformation Security
0 likes · 22 min read
How StubZero Exposed a Google Cloud Production RCE and Earned $148,337
Black & White Path
Black & White Path
May 24, 2026 · Information Security

AI‑Driven DeepSeek XML Error Injection Bypasses WAF, Dumps 19 DBs in 2 Hours

In a production‑environment penetration test, the researcher leveraged DeepSeek V4 Pro via a custom Claude Code bridge to craft an XML‑parsing‑error‑based Boolean blind SQL injection that evaded WAF keyword filters, allowing character‑by‑character extraction of all 19 database names within two hours at a cost of only ¥1.4.

DeepSeekSQL InjectionWAF bypass
0 likes · 10 min read
AI‑Driven DeepSeek XML Error Injection Bypasses WAF, Dumps 19 DBs in 2 Hours