Tagged articles

Python

5000 articles · Page 1 of 50
Code Ape Tech Column
Code Ape Tech Column
Aug 20, 2026 · Artificial Intelligence

Why FastMCP Is Becoming the Default Choice for 70% of MCP Servers

FastMCP, a Python framework built on the Model Context Protocol (MCP), now powers over 70% of MCP servers thanks to its one‑line decorator API, automatic schema generation, production‑ready features, and a thriving ecosystem that turns the MCP standard into a practical development tool.

AI AgentsFastMCPMCP
0 likes · 16 min read
Why FastMCP Is Becoming the Default Choice for 70% of MCP Servers
Su San Talks Tech
Su San Talks Tech
Aug 20, 2026 · Artificial Intelligence

Why FastMCP Is Becoming the Default Choice for AI Agents

FastMCP now powers over 70% of MCP servers, offering a Pythonic decorator‑based API that automates schema, validation and documentation, bridges prototype and production workloads, and enjoys a thriving ecosystem, which together explain its rapid adoption among AI developers.

AI AgentsFastMCPMCP
0 likes · 16 min read
Why FastMCP Is Becoming the Default Choice for AI Agents
AI Engineering
AI Engineering
Aug 18, 2026 · Artificial Intelligence

How macOS Harness Lets an LLM Write Code and Control Your Entire Mac

macOS Harness is an open‑source project that gives a persistent Python process to a large language model, exposing six primitive actions so the model can see the screen, type, click, read accessibility trees, run AppleScript, and write custom Python logic to automate virtually any macOS task.

AppleScriptAutomationLLM
0 likes · 3 min read
How macOS Harness Lets an LLM Write Code and Control Your Entire Mac
Geek Labs
Geek Labs
Aug 15, 2026 · Artificial Intelligence

Edit Video on the Fly: JD’s Open‑Source Real‑Time Streaming Editor JoyAI‑Video‑Edit

JoyAI‑Video‑Edit, an open‑source system from JD, enables real‑time, frame‑by‑frame video editing driven by natural‑language commands, achieving 30 FPS at 720p and offering capabilities such as subject replacement, background swapping, style transfer, and motion alteration, while contrasting sharply with traditional offline batch editors.

AI video editingPythoncausal VAE
0 likes · 12 min read
Edit Video on the Fly: JD’s Open‑Source Real‑Time Streaming Editor JoyAI‑Video‑Edit
AI Engineer Programming
AI Engineer Programming
Aug 15, 2026 · Artificial Intelligence

Mastering Stateful AI Agent Orchestration with LangGraph

LangGraph is an open‑source framework that replaces linear LLM pipelines with graph‑based, stateful agents, offering loops, conditional branching, persistent checkpoints, human‑in‑the‑loop support, and built‑in monitoring, enabling complex multi‑step workflows that scale from simple chatbots to enterprise‑grade AI assistants.

AI WorkflowLLM agentsLangChain
0 likes · 20 min read
Mastering Stateful AI Agent Orchestration with LangGraph
21CTO
21CTO
Aug 14, 2026 · Artificial Intelligence

Don’t Just Focus on Python – Build Enterprise‑Grade AI Agent Architectures with Elixir and Clojure

The article compares Python, Clojure, and Elixir for building production‑ready AI agents, detailing their concurrency models, state isolation, fault tolerance, and distributed scaling, and provides concrete code samples, a feature matrix, and guidance on choosing the right language for different team and workload requirements.

AI AgentsClojureElixir
0 likes · 12 min read
Don’t Just Focus on Python – Build Enterprise‑Grade AI Agent Architectures with Elixir and Clojure
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Aug 13, 2026 · Backend Development

Why asyncio.gather Errors Don’t Halt All Branches and How to Design Robust Failure Strategies

The article explains that asyncio.gather only propagates the first exception without cancelling other awaitables, distinguishes fan‑out/fan‑in from a Supervisor role, and demonstrates a pure‑Python pattern for classifying required versus optional branches, handling failures, and merging results safely.

Pythonasyncioconcurrency
0 likes · 12 min read
Why asyncio.gather Errors Don’t Halt All Branches and How to Design Robust Failure Strategies
Black & White Path
Black & White Path
Aug 13, 2026 · Information Security

Master Web Reverse Engineering with the hello_js_reverse_skill

The hello_js_reverse_skill provides a comprehensive workflow for web reverse engineering and signature reconstruction, combining Camoufox anti‑detection browsing, dual‑language algorithm decryption, JS obfuscation analysis, anti‑crawling tactics, and seamless AI integration, with both AI‑chat and manual installation options.

JS obfuscationNode.jsPython
0 likes · 6 min read
Master Web Reverse Engineering with the hello_js_reverse_skill
21CTO
21CTO
Aug 12, 2026 · Artificial Intelligence

Why Google Says Go Is the Standard Answer for AI‑Assisted Programming

The article analyses Google’s claim that Go is the ideal language for AI‑assisted software engineering, contrasting dynamic languages’ rapid prototyping strengths with Go’s static safety, readability, built‑in testing and profiling that make it suited for large‑scale, production‑grade AI code generation.

AI-assisted programmingGoJavaScript
0 likes · 8 min read
Why Google Says Go Is the Standard Answer for AI‑Assisted Programming
21CTO
21CTO
Aug 12, 2026 · Artificial Intelligence

Mojo 1.0 Launches: A Compiler Guru Dismantles CUDA, Redefining AI Compute

Mojo 1.0, the production‑ready language created by Chris Lattner, promises a unified, open‑source AI stack that combines Python simplicity, Rust safety, and C‑level performance via MLIR, breaking CUDA lock‑in and supporting any GPU, CPU or ASIC.

AICUDAMLIR
0 likes · 5 min read
Mojo 1.0 Launches: A Compiler Guru Dismantles CUDA, Redefining AI Compute
DeepHub IMBA
DeepHub IMBA
Aug 12, 2026 · Fundamentals

Inside Python Virtual Environments: How sys.path and Isolation Really Work

The article explains the historical need for Python environment isolation, details the directory layout and configuration files of a virtual environment, walks through its creation steps, shows how sys.path is built and used for module imports, compares venv, virtualenv and conda, and provides advanced tips and debugging techniques for managing Python environments.

Pythoncondadependency isolation
0 likes · 13 min read
Inside Python Virtual Environments: How sys.path and Isolation Really Work
Geek Labs
Geek Labs
Aug 12, 2026 · Operations

Convert Word, PPT, PDF to Markdown in 4.7 ms – 14 Formats Supported

Anydoc is an open‑source tool that instantly converts Word, PPT, Excel, PDF and other office files into clean Markdown, supporting 14 formats, running in a median of 4.7 ms versus LibreOffice’s 1.1 s, with local PDF parsing and easy CLI or library integration.

CLINode.jsPDF parsing
0 likes · 7 min read
Convert Word, PPT, PDF to Markdown in 4.7 ms – 14 Formats Supported
IT Learning Made Simple
IT Learning Made Simple
Aug 9, 2026 · Fundamentals

Deadlock Illustrated: Two Programmers Stuck Over a Meeting Room

The article explains deadlock by describing two programmers who each hold a meeting room and wait for the other, defines deadlock and its four necessary conditions, provides real‑world analogies, shows a Python threading example that deadlocks, and outlines prevention, avoidance, detection, and best‑practice strategies.

DeadlockOperating SystemsPython
0 likes · 8 min read
Deadlock Illustrated: Two Programmers Stuck Over a Meeting Room
AI Architecture Path
AI Architecture Path
Aug 9, 2026 · Artificial Intelligence

How Semantica Turns Black‑Box RAG into Auditable AI Decisions for Regulated Industries

The article analyzes the compliance shortcomings of traditional Retrieval‑Augmented Generation, introduces the open‑source Semantica framework (v0.6.0) that combines RDF triples with property graphs, and demonstrates how its context graph, W3C PROV‑O provenance, deterministic reasoning and multi‑agent sharing enable fully auditable AI decision pipelines for high‑regulation sectors.

AI governanceAuditKnowledge Graph
0 likes · 18 min read
How Semantica Turns Black‑Box RAG into Auditable AI Decisions for Regulated Industries
DeepHub IMBA
DeepHub IMBA
Aug 7, 2026 · Big Data

Pandas vs Polars vs DuckDB: Benchmarking Performance on a 1.2M‑row CSV

A head‑to‑head benchmark on a 2.3 GB CSV (~1.2 million rows) shows Pandas exhausting memory, Polars completing the pipeline in 8.7 seconds with modest RAM, and DuckDB answering the same query in just 12 milliseconds, highlighting distinct trade‑offs for Python data processing.

CSVDuckDBPandas
0 likes · 11 min read
Pandas vs Polars vs DuckDB: Benchmarking Performance on a 1.2M‑row CSV
AI Architecture Path
AI Architecture Path
Aug 7, 2026 · Artificial Intelligence

Run 2.8‑Trillion‑Parameter Models on a 4 GB GPU with AirLLM’s Lossless Inference

AirLLM lets ordinary 4‑GB consumer GPUs run massive LLMs such as 70B Llama and the 2.8‑trillion‑parameter Kimi K3 MoE without quantisation, by streaming model layers from disk, offering a detailed comparison with traditional low‑VRAM tricks, step‑by‑step installation, pitfalls, scenario‑based guidance and an assessment of strengths and risks.

AirLLMLLM inferenceMoE
0 likes · 16 min read
Run 2.8‑Trillion‑Parameter Models on a 4 GB GPU with AirLLM’s Lossless Inference
DeepHub IMBA
DeepHub IMBA
Aug 6, 2026 · Backend Development

10 Practical Python API Tips to Turn Scripts from Working to Robust

This article presents ten concrete Python techniques for handling APIs—automatic retries, response caching, environment‑based secrets, Pydantic schema validation, clean pagination, WebSocket streaming, rate‑limiting, concurrent requests, mock responses, and GraphQL—each illustrated with runnable code to make scripts more reliable and efficient.

APIGraphQLPydantic
0 likes · 8 min read
10 Practical Python API Tips to Turn Scripts from Working to Robust
Fun with Large Models
Fun with Large Models
Aug 4, 2026 · Artificial Intelligence

DeepAgents Code Command System – Full Guide to Production‑Ready Agent Commands

This article dissects DeepAgents Code’s command architecture, explaining the five‑layer framework, slash‑command registration, priority handling via BypassTier, skill and startup commands, and the engineering safeguards that balance interaction efficiency with system safety in production‑grade AI agents.

AI AgentsDeepAgentsLangChain
0 likes · 24 min read
DeepAgents Code Command System – Full Guide to Production‑Ready Agent Commands
Test Development Learning Exchange
Test Development Learning Exchange
Aug 3, 2026 · Backend Development

Stop Hand‑Writing Prompts: Use LangChain Templates to Automate API Testing with AI

API testing often involves repetitive string concatenation, inconsistent output formats, and costly token usage; this article shows how LangChain's PromptTemplate and ChatPromptTemplate turn prompts into reusable, composable components that generate assertions, test data, log analysis, multi‑turn debugging, and more, with concrete Python examples.

API testingAutomationChatPromptTemplate
0 likes · 15 min read
Stop Hand‑Writing Prompts: Use LangChain Templates to Automate API Testing with AI
PaperAgent
PaperAgent
Aug 2, 2026 · Artificial Intelligence

OpenWorker: Andrew Ng’s Open‑Source AI Coworker Hits 11K Stars

OpenWorker, an open‑source AI coworker released by Andrew Ng, delivers finished work such as HTML briefings by integrating with tools like HubSpot and Slack, supports multiple models, offers 25+ connectors, and enforces approval for risky actions, positioning it as a self‑hosted alternative to Tencent's WorkBuddy.

AI coworkerAgent HarnessOpenWorker
0 likes · 7 min read
OpenWorker: Andrew Ng’s Open‑Source AI Coworker Hits 11K Stars
Tech Ocean
Tech Ocean
Jul 29, 2026 · Backend Development

MCP Spec Finalized: Major SDK Overhaul and Version Locking Before Installation

The new MCP 2026-07-28 specification replaces the stateful session model with a stateless request‑response protocol, introduces nine breaking changes, splits the TypeScript SDK into multiple packages, upgrades the Python SDK to 2.0.0, and forces developers to lock SDK versions and verify gateway header handling before deployment.

MCPPythonSDK migration
0 likes · 11 min read
MCP Spec Finalized: Major SDK Overhaul and Version Locking Before Installation
Advanced AI Application Practice
Advanced AI Application Practice
Jul 28, 2026 · Operations

One-Click Test Data Generation, Validation, and Cleanup with the 42nd Test Skill

The article walks through the pain of manually creating, validating, and cleaning test data for a user‑registration feature and shows how the test-data-manager Skill automates the entire workflow—producing dependency lists, SQL/API scripts, verification steps, and cleanup commands in minutes instead of hours.

API testingAutomationPython
0 likes · 10 min read
One-Click Test Data Generation, Validation, and Cleanup with the 42nd Test Skill
Shepherd Advanced Notes
Shepherd Advanced Notes
Jul 28, 2026 · Artificial Intelligence

Master the MCP Protocol: Core Concepts, Implementation Details, and Best‑Practice Applications

This article provides a systematic deep‑dive into the Model Context Protocol (MCP), explaining its purpose, architecture, core capabilities, data and transport layers, and step‑by‑step guides for building both local and remote MCP servers with Python, while also covering security, permission, and best‑practice recommendations for real‑world AI applications.

AI integrationMCPModel Context Protocol
0 likes · 37 min read
Master the MCP Protocol: Core Concepts, Implementation Details, and Best‑Practice Applications
Geek Labs
Geek Labs
Jul 27, 2026 · Artificial Intelligence

Let AI Trade for You: HKU’s Open‑Source Vibe‑Trading Agent Handles Research, Backtesting, and Order Execution in One Command

Vibe‑Trading, an open‑source AI‑driven personal trading agent from HKU’s Data Intelligence Lab, lets users issue a natural‑language prompt to automatically fetch data, generate strategy code, run vectorized backtests across multiple markets, produce detailed reports, and simulate live orders, while offering self‑improving behavior, multi‑agent teams, a 460‑plus academic factor library, and extensive broker connectors.

AI tradingBacktestingLLM agent
0 likes · 10 min read
Let AI Trade for You: HKU’s Open‑Source Vibe‑Trading Agent Handles Research, Backtesting, and Order Execution in One Command
IT Services Circle
IT Services Circle
Jul 26, 2026 · Fundamentals

Python 3.15 Beta: 6 Must‑Try Features to Boost Your Projects Now

The Python 3.15 beta introduces lazy imports, built‑in frozendict and sentinel types, a low‑overhead sampling profiler, JIT speed gains, unpacking syntax in comprehensions, UTF‑8 as the default encoding, smarter error messages, TypedDict enhancements, and a rollback of incremental GC, each backed by concrete examples and practical guidance for immediate adoption.

JITPythonSentinel
0 likes · 15 min read
Python 3.15 Beta: 6 Must‑Try Features to Boost Your Projects Now
Geek Labs
Geek Labs
Jul 26, 2026 · Artificial Intelligence

How a Single /watch Command Lets Claude Actually See Video

The open‑source bradautomates/claude-video project adds a /watch command that lets Claude Code and compatible AI agents download videos, extract subtitles and key frames, deduplicate them, and feed the visual context back to the model, enabling practical video analysis and note‑taking.

AI AgentsClaudeFFmpeg
0 likes · 11 min read
How a Single /watch Command Lets Claude Actually See Video
Black & White Path
Black & White Path
Jul 26, 2026 · Information Security

CVE‑2026 PoC Collection: All 12 Exploit Codes in One Repository

A GitHub repository named cve-2026-poc-collection, maintained by researcher XZ1r0, aggregates twelve high‑severity CVE‑2026 proof‑of‑concept exploits across web, Linux, Windows and other categories, detailing their impact, implementation languages, and offering a search script to help security professionals quickly locate and analyze the code.

CVE-2026KubernetesPoC
0 likes · 9 min read
CVE‑2026 PoC Collection: All 12 Exploit Codes in One Repository
Python Crawling & Data Mining
Python Crawling & Data Mining
Jul 25, 2026 · Backend Development

Comparing Python’s Four Web‑Scraping Selectors: Regex, BeautifulSoup, XPath, and CSS

This article reviews the four main Python selectors used for web scraping—regular expressions, BeautifulSoup, lxml/XPath, and CSS—detailing their installation, parsing behavior, advantages, drawbacks, and a performance comparison table to help developers choose the most suitable tool for their projects.

BeautifulSoupCSS selectorsPython
0 likes · 8 min read
Comparing Python’s Four Web‑Scraping Selectors: Regex, BeautifulSoup, XPath, and CSS
Data Party THU
Data Party THU
Jul 24, 2026 · Artificial Intelligence

Create an IMDB Sentiment Classifier with Scikit‑LLM & Groq in 500 Lines

This tutorial walks through building a complete sentiment‑analysis pipeline for the IMDB movie‑review dataset using Scikit‑LLM and Groq, from environment setup and data sampling to custom text cleaning, zero‑shot LLM classification, model fitting, prediction, and evaluation with a 95% accuracy report.

GroqIMDB datasetPipeline
0 likes · 8 min read
Create an IMDB Sentiment Classifier with Scikit‑LLM & Groq in 500 Lines
Data Party THU
Data Party THU
Jul 24, 2026 · Fundamentals

Maximum Likelihood Estimation Explained Simply: Core Principles, Code Walkthroughs, and Limitations

This article demystifies maximum likelihood estimation by using a coin‑flip example to contrast probability and likelihood, introduces log‑likelihood for numerical stability, shows Python implementations for discrete and continuous cases, discusses historical origins, and highlights practical limitations such as small‑sample bias and over‑fitting.

Log-LikelihoodMachine LearningMaximum Likelihood Estimation
0 likes · 30 min read
Maximum Likelihood Estimation Explained Simply: Core Principles, Code Walkthroughs, and Limitations
Smart Sea Tide
Smart Sea Tide
Jul 24, 2026 · Big Data

A Complete Data Analysis Knowledge Map

This article presents a comprehensive collection of visual knowledge maps that outline data analysis steps, foundational concepts, technical tools, business processes, analyst skill frameworks, and related topics such as Python learning paths, Excel formulas, MySQL, and statistical methods.

AnalyticsExcelPython
0 likes · 3 min read
A Complete Data Analysis Knowledge Map
Black & White Path
Black & White Path
Jul 24, 2026 · Information Security

Boost CTF Performance with Alien: A Modular Webshell Management Client

Alien is an open‑source, modular Webshell client that centralizes file management, virtual shells, database access, pivoting, encrypted traffic and plugin support for multiple scripting languages, dramatically speeding up CTF Webshell challenges while remaining lightweight and extensible.

AlienCTFModular client
0 likes · 6 min read
Boost CTF Performance with Alien: A Modular Webshell Management Client
Liangxu Linux
Liangxu Linux
Jul 23, 2026 · Fundamentals

How to Automate Embedded Software Testing with Python

This guide explains how to automate embedded software testing by controlling hardware interfaces (DI/DO, CAN, 485, Ethernet) with Python, building a pytest‑based framework, and integrating continuous integration to achieve fast, reliable, and maintainable test cycles.

AutomationPythonembedded testing
0 likes · 8 min read
How to Automate Embedded Software Testing with Python
IT Services Circle
IT Services Circle
Jul 21, 2026 · Fundamentals

Can't Decode Python Errors? Three Lines Solve 80% of Them

In the AI era developers often copy‑paste full tracebacks into ChatGPT, but the most efficient way to diagnose Python errors is to read the traceback from the bottom up, focusing on the last three lines and applying a three‑step method to pinpoint the problem.

DebuggingPythonTraceback
0 likes · 11 min read
Can't Decode Python Errors? Three Lines Solve 80% of Them
SpringMeng
SpringMeng
Jul 19, 2026 · Backend Development

FastAPI for Java Developers: A Complete Guide to High‑Performance API Development

This article introduces FastAPI, compares it with Spring Boot and Flask, explains why its ASGI architecture delivers superior performance, provides step‑by‑step setup and code examples—including routing, validation, dependency injection, async support, database integration, unified responses, middleware, and automatic documentation—then evaluates its pros, cons, ideal use cases, and a real‑world benchmark against Spring Boot.

APIASGIFastAPI
0 likes · 26 min read
FastAPI for Java Developers: A Complete Guide to High‑Performance API Development
Geek Labs
Geek Labs
Jul 19, 2026 · Artificial Intelligence

7 Open-Source AI PPT Projects Every Developer Should Try

The article surveys seven popular open‑source AI PPT generators on GitHub, detailing each project's star count, output format (editable PPTX or HTML), key features, licensing, and recommending which tool fits specific presentation needs.

AI PPTGitHubHTML slides
0 likes · 8 min read
7 Open-Source AI PPT Projects Every Developer Should Try
java1234
java1234
Jul 19, 2026 · Artificial Intelligence

FastCode: Up to 4× Faster and 44% Cheaper Than Claude Code for Codebase Understanding

FastCode, an open‑source framework from HKU’s DS team, builds semantic maps and structural graphs of codebases to let AI assistants answer queries up to four times faster, cut token usage by up to 44 %, and achieve higher accuracy across benchmarks, supporting multiple languages and deployment options.

AI code analysisFastCodePython
0 likes · 7 min read
FastCode: Up to 4× Faster and 44% Cheaper Than Claude Code for Codebase Understanding
Black & White Path
Black & White Path
Jul 18, 2026 · Information Security

LLMVault: Offline AI Security Lab Covering OWASP LLM Top 10 with 25 Exercises

LLMVault, an open‑source offline sandbox released by GitHub user CyberSunil, offers 25 tiered labs that simulate all ten OWASP LLM Top 10 vulnerabilities, enabling security professionals and learners to practice prompt injection, data poisoning, model extraction, and other AI attacks without needing external API keys.

AI SecurityCTFDocker
0 likes · 8 min read
LLMVault: Offline AI Security Lab Covering OWASP LLM Top 10 with 25 Exercises
AI Architecture Path
AI Architecture Path
Jul 16, 2026 · Artificial Intelligence

How Vibe‑Trading’s AI Agents Cut Quant Research Barriers to Zero in Just 3 Months

Vibe‑Trading is an MIT‑licensed open‑source AI‑driven quant platform that bundles 74 financial skills and 29 pre‑configured multi‑agent teams, offers zero‑token data access, one‑click Pine Script export, and Docker deployment, while warning about hallucinations, data latency, and token costs.

AI AgentsMulti-agentPine Script
0 likes · 15 min read
How Vibe‑Trading’s AI Agents Cut Quant Research Barriers to Zero in Just 3 Months
inShocking
inShocking
Jul 15, 2026 · Artificial Intelligence

Understanding Function Calling: How AI Agents Safely Execute Tools

This article explains why AI agents need function calling, describes the structured tool‑call protocol between LLMs and runtimes, shows how to define and secure function tools, and provides best‑practice code and checklists for production deployments.

Agent RuntimeFunction CallingLLM
0 likes · 21 min read
Understanding Function Calling: How AI Agents Safely Execute Tools
IT Services Circle
IT Services Circle
Jul 15, 2026 · Fundamentals

Which 3–5 Programming Languages Should Multi‑Language Developers Master?

The author, drawing on experience with C, Python, Shell, and Go, explains why these four languages together cover most development scenarios—C for low‑level embedded work, Python for rapid scripting and data tasks, Shell for Linux automation, and Go for high‑performance cloud services—while noting each language’s trade‑offs.

C++GoLanguage Selection
0 likes · 7 min read
Which 3–5 Programming Languages Should Multi‑Language Developers Master?
Java Tech Enthusiast
Java Tech Enthusiast
Jul 14, 2026 · Backend Development

Why Are More Developers Turning to FastAPI?

FastAPI, a modern Python web framework, offers high‑performance APIs, automatic documentation, type‑safe validation and native async support, making it a compelling alternative to Spring Boot and Flask for AI model serving, microservices, and rapid prototyping, as demonstrated by benchmarks, code examples, and real‑world comparisons.

APIASGIFastAPI
0 likes · 25 min read
Why Are More Developers Turning to FastAPI?
Code Ape Tech Column
Code Ape Tech Column
Jul 14, 2026 · Backend Development

Why FastAPI Is Gaining Popularity Among Developers

FastAPI, a modern Python web framework, offers high performance, rapid development, and strong type safety, making it an attractive choice for Java developers looking to build AI services, data‑processing APIs, or micro‑services, as demonstrated by benchmark results, real‑world case studies, and a step‑by‑step implementation guide.

ASGIFastAPIPerformance
0 likes · 26 min read
Why FastAPI Is Gaining Popularity Among Developers
Tech Freedom Circle
Tech Freedom Circle
Jul 14, 2026 · Artificial Intelligence

Designing Production‑Grade Observability and Evaluation with Langfuse + RAGAS for LLM Applications

This article presents a comprehensive, production‑ready guide for building end‑to‑end observability and quantitative evaluation of LLM‑powered RAG/Agent systems using the open‑source Langfuse platform together with the RAGAS benchmark, covering architecture, installation, code instrumentation, dataset management, metric collection, and best‑practice recommendations.

LLM observabilityLangChainLangGraph
0 likes · 46 min read
Designing Production‑Grade Observability and Evaluation with Langfuse + RAGAS for LLM Applications
Java Backend Technology
Java Backend Technology
Jul 14, 2026 · Backend Development

Why FastAPI Is Gaining Massive Popularity Among Developers

FastAPI, a modern Python web framework built on ASGI, offers high performance, automatic documentation, type‑safe request validation, and native async support, making it an attractive choice for Java developers seeking to build fast APIs, microservices, or AI model deployment services.

APIASGIFastAPI
0 likes · 22 min read
Why FastAPI Is Gaining Massive Popularity Among Developers
Test Development Learning Exchange
Test Development Learning Exchange
Jul 12, 2026 · Fundamentals

Master Python’s Built‑in Math Functions for Precise API Automation

This article walks through six essential Python built‑in functions—abs(), sum(), min(), max(), round() and pow()—showing concrete use cases such as calculating response‑time deviations, tolerant float assertions, total request time, pass/fail counts, pagination calculations, and exponential back‑off, while highlighting common pitfalls and best‑practice patterns for robust API testing scripts.

API testingAutomationData Processing
0 likes · 18 min read
Master Python’s Built‑in Math Functions for Precise API Automation
Su San Talks Tech
Su San Talks Tech
Jul 12, 2026 · Backend Development

Why Java Developers Are Turning to FastAPI for High‑Performance APIs

This article explains why FastAPI has become popular among Java developers, comparing its high‑performance, type‑safe, async‑first design to Spring Boot and Flask, showing benchmark results, core concepts, step‑by‑step setup, pros and cons, real‑world use cases, and a practical performance comparison.

ASGIFastAPIPerformance
0 likes · 22 min read
Why Java Developers Are Turning to FastAPI for High‑Performance APIs
Test Development Learning Exchange
Test Development Learning Exchange
Jul 11, 2026 · Fundamentals

Mastering Python Built‑ins: print, input, open, eval, and exec for Test Automation

This tutorial demonstrates how to harness Python's built‑in functions—print, input, open, eval, and exec—to customize console logs, write test results to files, create interactive scripts, safely evaluate strings, and dynamically load code, while highlighting common pitfalls and security considerations.

Data ProcessingEvalPython
0 likes · 15 min read
Mastering Python Built‑ins: print, input, open, eval, and exec for Test Automation
IT Services Circle
IT Services Circle
Jul 10, 2026 · Fundamentals

7 Essential Python Libraries for Robust Production Code

The article examines seven Python libraries—tenacity, attrs, structlog, DeepDiff, diskcache, watchdog, and msgspec—explaining when to adopt each, how they solve real‑world reliability, data‑modeling, logging, diffing, caching, file‑watching, and serialization problems, and when to replace them with heavier solutions.

LibrariesLoggingPython
0 likes · 19 min read
7 Essential Python Libraries for Robust Production Code
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Jul 10, 2026 · R&D Management

How Huawei Cloud CodeArts (Py4OH) Rebuilt OpenHarmony Python Development with Spec‑Driven AI Automation

The article details the challenges of the legacy Py4OH‑1.0 toolchain for OpenHarmony, explains how Huawei Cloud CodeArts (Py4OH) was used to completely refactor the project with spec‑driven development, AI‑assisted code generation, automated review, and secure, cross‑platform deployment, dramatically reducing code size and development friction.

AI automationOpenHarmonyPython
0 likes · 12 min read
How Huawei Cloud CodeArts (Py4OH) Rebuilt OpenHarmony Python Development with Spec‑Driven AI Automation
Long Ge's Treasure Box
Long Ge's Treasure Box
Jul 9, 2026 · Backend Development

Mastering WebSocket: Full‑Duplex Communication, Server Push, and Real‑Time Messaging Implementations

This article explains WebSocket fundamentals, compares it with HTTP polling, details the handshake and frame format, and provides complete server‑side examples in Python, FastAPI, Go, and Java Spring, followed by a full real‑time chat system with private messaging, database schema, heartbeat handling, and Redis‑based online presence management.

FastAPIGoJava
0 likes · 13 min read
Mastering WebSocket: Full‑Duplex Communication, Server Push, and Real‑Time Messaging Implementations
Qborfy AI
Qborfy AI
Jul 8, 2026 · Artificial Intelligence

Build a Working AI Agent Loop in Just 50 Lines of Python

This tutorial walks through a minimal 50‑line Python implementation of an AI Agent Loop, covering the core four‑step cycle, dual termination strategies, deterministic vs. autonomous designs, tool registration, and a complete runnable example.

AI AgentAgent LoopDeterministic vs Autonomous
0 likes · 13 min read
Build a Working AI Agent Loop in Just 50 Lines of Python
Code of Duty
Code of Duty
Jul 7, 2026 · Operations

How to Batch Normalize Bitrate and Sample Rate of Legacy Game Audio Files

This guide explains a Python offline script that recursively scans a game audio directory, backs up original MP3 files, and re‑encodes them to a unified 44.1 kHz, 128 kbps MP3 format using imageio‑ffmpeg, with detailed usage flags, backup handling, and execution reports.

FFmpegPythonaudio processing
0 likes · 6 min read
How to Batch Normalize Bitrate and Sample Rate of Legacy Game Audio Files
Data Party THU
Data Party THU
Jul 7, 2026 · Artificial Intelligence

Beyond Vector Retrieval: Building a Multi‑Strategy RAG Agent with LangGraph

This article explains how to use LangGraph to create a hybrid RAG agent that dynamically selects between vector, graph, web, or direct LLM retrieval, detailing the router, grader, rewriter, generator, and hallucination‑checking components along with a complete Python implementation.

Hybrid AgentLLMLangGraph
0 likes · 16 min read
Beyond Vector Retrieval: Building a Multi‑Strategy RAG Agent with LangGraph
Geek Labs
Geek Labs
Jul 7, 2026 · Artificial Intelligence

memU: Enabling Long-Term Memory for AI Coding Agents

memU is an open‑source Python library and CLI that gives AI coding agents persistent memory by converting past conversations, code, documents, and media into a structured Markdown file tree, allowing agents to retrieve only the needed context instead of re‑entering project details each session.

AI AgentsCLILong-Term Memory
0 likes · 4 min read
memU: Enabling Long-Term Memory for AI Coding Agents
Linyb Geek Road
Linyb Geek Road
Jul 7, 2026 · Artificial Intelligence

Understanding AI Agents: What They Are and How to Pick the Right Framework

An AI Agent combines a large language model, tools, and memory to turn natural language requests into actions, with three core components—environment, sensor, actuator—seven agent types, usage criteria, and guidance on selecting between Microsoft Agent Framework and Azure AI Agent Service, plus runnable demos.

AI AgentAzure AI Agent ServiceLLM
0 likes · 15 min read
Understanding AI Agents: What They Are and How to Pick the Right Framework
Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Jul 6, 2026 · Cloud Native

Taming Massive Alert Noise: A Hands‑On Guide to AI‑Driven Dynamic Thresholds for Prometheus

This article presents a practical solution that uses Facebook Prophet time‑series AI to automatically calibrate dynamic alert thresholds in Prometheus, reducing over‑80% of false alarms in Kubernetes environments by learning business cycles and updating rules hourly without manual intervention.

AIOpsDynamic ThresholdFacebook Prophet
0 likes · 10 min read
Taming Massive Alert Noise: A Hands‑On Guide to AI‑Driven Dynamic Thresholds for Prometheus
Advanced AI Application Practice
Advanced AI Application Practice
Jul 5, 2026 · Artificial Intelligence

Cut TAPD Bug Reporting from 10 Minutes to 10 Seconds with One Skill

Testing engineers spend about 30 % of their time writing and submitting TAPD bug reports; the bug‑report‑writer‑tapd skill automates screenshot parsing, report generation, six‑dimensional quality scoring, and one‑click submission, boosting single‑bug entry speed from 8‑12 minutes to 10‑15 seconds, improving quality from ~70 % to ~95 % and enabling batch submission.

AIAutomationBug Reporting
0 likes · 15 min read
Cut TAPD Bug Reporting from 10 Minutes to 10 Seconds with One Skill
The Dominant Programmer
The Dominant Programmer
Jul 3, 2026 · Backend Development

Full Guide to Integrating External APIs with Qoder: Configurations, Service Comparison, and Hands‑On Examples

This article walks through Qoder's supported external API integration methods, details step‑by‑step MCP configuration, compares three transport protocols, provides multiple concrete configuration examples in Python and Node.js, and offers troubleshooting tips and official resource links for successful API integration.

API IntegrationConfigurationMCP
0 likes · 10 min read
Full Guide to Integrating External APIs with Qoder: Configurations, Service Comparison, and Hands‑On Examples
Lisa Notes
Lisa Notes
Jul 3, 2026 · Artificial Intelligence

NLP Study Notes: How Deep Learning Powers Natural Language Processing

This article explains how deep learning models such as RNN, LSTM, GRU and Transformer enable NLP tasks like machine translation, text classification, question answering and text generation, outlines their advantages over traditional methods, and provides a Keras code example for text classification.

Deep LearningKerasNLP
0 likes · 8 min read
NLP Study Notes: How Deep Learning Powers Natural Language Processing
Lao Guo's Learning Space
Lao Guo's Learning Space
Jul 2, 2026 · Artificial Intelligence

Learn AI from Scratch: 4 Stages to Save Two Years of Mistakes

This article presents a four‑stage learning roadmap—from foundational math and Python, through core machine‑learning concepts and classic algorithms, to deep‑learning fundamentals and large‑model practice—offering concrete resources, hands‑on project ideas, and common pitfalls to help beginners become project‑ready in 6‑10 months.

AI learning roadmapDeep LearningLarge Language Models
0 likes · 12 min read
Learn AI from Scratch: 4 Stages to Save Two Years of Mistakes
Geek Labs
Geek Labs
Jul 2, 2026 · Artificial Intelligence

4 Open-Source AI Agent Tools to Watch This Week

This article reviews four open-source AI Agent development projects—ORG2, ClawCodex, Fugu, and AgentCN—highlighting their transparency, cost savings, lightweight shell automation, and React UI components, and notes a broader trend toward more professional, controllable, and low‑cost Agent tooling.

AI AgentIDEPython
0 likes · 4 min read
4 Open-Source AI Agent Tools to Watch This Week
IT Services Circle
IT Services Circle
Jul 1, 2026 · Artificial Intelligence

Why Gaussian Processes Beat Neural Networks for Small‑Sample Regression with Uncertainty

This article explains how Gaussian Process Regression (GPR) provides a principled Bayesian alternative to neural networks for small‑sample regression, delivering both accurate predictions and calibrated uncertainty by defining a prior over functions, using kernel composition, marginal likelihood optimization, and efficient numerical techniques.

Gaussian ProcessKernel MethodsPython
0 likes · 22 min read
Why Gaussian Processes Beat Neural Networks for Small‑Sample Regression with Uncertainty
Geek Labs
Geek Labs
Jul 1, 2026 · Artificial Intelligence

How AI Turns Your Obsidian Notes into a Living Second Brain

The article introduces obsidian-second-brain, an open‑source project that adds AI capabilities to Obsidian, offering 43 commands for knowledge management, code documentation, scheduling, and self‑rewriting notes, and explains how to install and use it across Claude Code, Codex, Gemini, and OpenCode.

AI integrationCLI toolKnowledge Management
0 likes · 7 min read
How AI Turns Your Obsidian Notes into a Living Second Brain
360 Zhihui Cloud Developer
360 Zhihui Cloud Developer
Jun 30, 2026 · Artificial Intelligence

Agents Power 360 View Computing for Smarter Visual Perception and Decisions

By tightly integrating autonomous agents with the 360 View Computing platform, the article shows how multi‑layer perception, analysis, decision, and application enhancements—backed by concrete Python code—boost real‑time anomaly detection, cut false‑alarm rates by over 40%, and accelerate scene adaptation across industrial, campus, and city security scenarios.

AI AgentsIoT securityPython
0 likes · 15 min read
Agents Power 360 View Computing for Smarter Visual Perception and Decisions
Old Zhang's AI Learning
Old Zhang's AI Learning
Jun 29, 2026 · Backend Development

How the New z‑skills Video Download Split Improves Knowledge‑Gathering Workflows

The author refactors the z‑skills suite by separating video link discovery (z‑web‑pack) from actual downloading (z‑video‑downloader), explains why the split solves performance and reliability issues, details four concrete code and documentation changes, and shows a simple usage pattern for the updated skills.

PythonWeb Scrapingtool architecture
0 likes · 7 min read
How the New z‑skills Video Download Split Improves Knowledge‑Gathering Workflows
IT Services Circle
IT Services Circle
Jun 29, 2026 · Game Development

What Programming Languages Power Genshin Impact?

Genshin Impact combines Unity's C# scripting, C++ engine cores, Go or Java for servers, Python for tooling, and even hand‑written assembly for critical paths, illustrating how a modern AAA game relies on a multi‑language stack to balance performance and development speed.

C++C++Go
0 likes · 7 min read
What Programming Languages Power Genshin Impact?
Black & White Path
Black & White Path
Jun 29, 2026 · Information Security

One-Click Telegram Username Checker for Bulk Availability and Monitoring

The open‑source Telegram Username Availability Checker, built with Telethon, lets security researchers and OSINT analysts quickly verify whether channel or user names are free, taken, or invalid, supporting bulk input, watch‑mode monitoring, suggested alternatives, and safe handling of credentials and metadata.

OSINTPythonTelegram
0 likes · 6 min read
One-Click Telegram Username Checker for Bulk Availability and Monitoring
Geek Labs
Geek Labs
Jun 29, 2026 · Artificial Intelligence

DeepSpec Boosts Large-Model Inference Speed by 2–5× with Speculative Decoding

DeepSpec, an open‑source framework from DeepSeek, accelerates large‑language‑model inference by 2–5× through speculative decoding, where a lightweight draft model generates candidate tokens that the target model validates in parallel, reducing the serial bottleneck of autoregressive decoding and offering a full‑stack pipeline from data preparation to evaluation.

DeepSpecGPUInference Acceleration
0 likes · 6 min read
DeepSpec Boosts Large-Model Inference Speed by 2–5× with Speculative Decoding
Qborfy AI
Qborfy AI
Jun 27, 2026 · Artificial Intelligence

Advanced Guide to LLM API: Multimodal Input and Structured Output

This advanced tutorial explores how LLM APIs handle multimodal inputs and produce structured outputs, detailing format differences, image‑generation parameters, JSON vs JSON‑Schema responses, platform‑specific quirks, practical code examples, and best‑practice strategies for building reliable production pipelines.

APIJSON SchemaLLM
0 likes · 19 min read
Advanced Guide to LLM API: Multimodal Input and Structured Output