Tagged articles

Python

5000 articles · Page 6 of 50
Ubuntu
Ubuntu
Feb 26, 2026 · Fundamentals

Creating a Reproducible Linux Development Setup with VS Code, Conda, and NVM

The guide explains how to set up a reproducible, system‑clean Linux development environment by installing VS Code as a universal editor, managing Python with Miniconda or venv, handling Node.js via NVM, and adding C/C++ and Java toolchains, all with concrete commands and best‑practice tips.

NVMPythonVS Code
0 likes · 6 min read
Creating a Reproducible Linux Development Setup with VS Code, Conda, and NVM
Tencent Cloud Developer
Tencent Cloud Developer
Feb 26, 2026 · Artificial Intelligence

Building a Minimalist AI Agent Framework: Theory, Architecture, and Code Walkthrough

This article explains the fundamentals of AI agents, compares major frameworks, introduces the ReAct, Plan‑and‑Execute, and Reflection paradigms, and provides a step‑by‑step Python implementation of a lightweight agent loop with LLM calls, tool execution, and context engineering, complete with usage examples and references.

AI AgentContext EngineeringLLM
0 likes · 28 min read
Building a Minimalist AI Agent Framework: Theory, Architecture, and Code Walkthrough
Fun with Large Models
Fun with Large Models
Feb 25, 2026 · Artificial Intelligence

Fast Guide to LangChain DeepAgents: Using Summarization Middleware to Optimize Agent Memory

This article explains how LangChain DeepAgents' Summarization middleware automatically compresses conversation history to overcome large‑model context window limits, detailing its core mechanism, applicable scenarios, configuration parameters (trigger, keep, model, summary_prompt), and step‑by‑step Python examples that illustrate its integration and internal message flow.

AI AgentsDeepAgentsLangChain
0 likes · 23 min read
Fast Guide to LangChain DeepAgents: Using Summarization Middleware to Optimize Agent Memory
AI Engineering
AI Engineering
Feb 23, 2026 · Databases

Is Zvec the ‘SQLite Moment’ for Vector Databases?

Alibaba’s newly open‑sourced Zvec brings an in‑process vector database that claims millisecond searches over billions of vectors, supports dense and sparse embeddings, installs via a single pip command, and runs on anything from laptops to edge devices, though users warn of memory limits and unverified security concerns.

PythonRAGVector Database
0 likes · 3 min read
Is Zvec the ‘SQLite Moment’ for Vector Databases?
Data STUDIO
Data STUDIO
Feb 23, 2026 · Backend Development

Stop Using JSON Blindly: How Switching One API to MessagePack Cut Response Time by 5×

A performance bottleneck hidden in a fintech dashboard’s “coffee‑time” API was solved by profiling, discovering that 85% of latency came from JSON serialization, and replacing it with MessagePack, which reduced payload size by up to 74% and slashed end‑to‑end response time from 847 ms to 159 ms—a more than five‑fold improvement.

FlaskMessagePackPerformance
0 likes · 11 min read
Stop Using JSON Blindly: How Switching One API to MessagePack Cut Response Time by 5×
Lisa Notes
Lisa Notes
Feb 23, 2026 · Fundamentals

How to Convert Any Python Data Type to Boolean

This tutorial explains Python’s bool() function, lists the values that evaluate to False, demonstrates converting numbers, strings, collections, and None to booleans, and shows how implicit conversion works in conditional statements, with concrete code examples for each case.

Pythonboollist
0 likes · 4 min read
How to Convert Any Python Data Type to Boolean
Linux Tech Enthusiast
Linux Tech Enthusiast
Feb 23, 2026 · Information Security

What Programming Languages Do Hackers Prefer? Survey and Exploit-DB Analysis

A 2021 CCC member survey and a large‑scale analysis of Exploit‑DB reveal that hackers predominantly use Shell scripts and Python, with notable overlap across both data sets, while language preferences shift over time toward Python and away from C, highlighting detection challenges and future trends.

Programming LanguagesPythonSecurity Research
0 likes · 11 min read
What Programming Languages Do Hackers Prefer? Survey and Exploit-DB Analysis
AI Tech Publishing
AI Tech Publishing
Feb 23, 2026 · Artificial Intelligence

Final Lesson: Build a Fully Working RSS News Brief Agent

In this final lesson of a nine‑day Agent engineering series, the author integrates the full Agent Loop, tools, MCP, skills, RAG, context handling, multi‑turn dialogue, and multi‑agent coordination to create a runnable RSS news‑briefing Agent that fetches feeds in parallel, filters content with LLMs, summarizes articles, and outputs a markdown report.

LLMMulti-agentParallel Fetching
0 likes · 12 min read
Final Lesson: Build a Fully Working RSS News Brief Agent
DeepNoMind
DeepNoMind
Feb 22, 2026 · Artificial Intelligence

Parallel Hybrid Search Fusion for High‑Reliability Agentic AI

This article explains design patterns that boost the reliability of modern agentic AI systems, focusing on a parallel hybrid search fusion that runs vector and keyword retrievals concurrently, merges their results, and demonstrates through code and benchmarks that the combined approach yields more accurate and complete answers than either method alone.

Agentic AIHybrid SearchLangChain
0 likes · 11 min read
Parallel Hybrid Search Fusion for High‑Reliability Agentic AI
AI Tech Publishing
AI Tech Publishing
Feb 22, 2026 · Artificial Intelligence

Mastering Multi‑Agent Collaboration: Handoff Mode and Coordination

This lesson explains how to extend a single‑agent system with multi‑agent collaboration, covering context isolation, Handoff and Router patterns, flat coordinator architecture, code examples, task decomposition, and practical run‑time demos for building complex AI workflows.

AICoordinatorLLM
0 likes · 20 min read
Mastering Multi‑Agent Collaboration: Handoff Mode and Coordination
DeepNoMind
DeepNoMind
Feb 21, 2026 · Artificial Intelligence

Parallel Hybrid Search Fusion: Boosting Reliability in Agentic AI

This article demonstrates how parallel hybrid search—combining vector and keyword retrieval—enhances the reliability of agentic AI systems by delivering complete, high‑fidelity context compared with using either method alone.

Agentic AIHybrid SearchLangChain
0 likes · 12 min read
Parallel Hybrid Search Fusion: Boosting Reliability in Agentic AI
Old Zhang's AI Learning
Old Zhang's AI Learning
Feb 21, 2026 · Artificial Intelligence

Why Fine‑Tuning Large Models Is Now Ridiculously Easy

The article explains how Unsloth dramatically lowers the barrier to fine‑tuning large language models, offering one‑click installation, free Colab GPU support, extensive model coverage, impressive speed and memory gains, and detailed step‑by‑step guides that let anyone with basic Python skills train powerful models.

ColabGPULoRA
0 likes · 14 min read
Why Fine‑Tuning Large Models Is Now Ridiculously Easy
Lisa Notes
Lisa Notes
Feb 21, 2026 · Fundamentals

How to Convert Various Python Data Types to Integers

This tutorial explains why type conversion is needed in Python, describes the int(), str(), float() and bool() functions with their parameters, and provides a concrete example showing how to turn user input from a string into an integer for arithmetic.

Pythonboolfloat
0 likes · 4 min read
How to Convert Various Python Data Types to Integers
Lisa Notes
Lisa Notes
Feb 20, 2026 · Fundamentals

Master Python's input() Function: A Beginner’s Guide

This tutorial explains how Python's input() function works, covering its syntax, behavior, and return type, and provides concrete examples such as prompting for a password and age, illustrating how user input is captured and displayed in Python 3.

BeginnerPythonUser Input
0 likes · 4 min read
Master Python's input() Function: A Beginner’s Guide
DeepNoMind
DeepNoMind
Feb 19, 2026 · Artificial Intelligence

Redundant Execution: A High‑Reliability Design Pattern for Agentic AI

This article introduces the redundant‑execution pattern for agentic AI, explains how running multiple identical agents in parallel can mitigate API timeouts, model crashes, and network glitches, and presents a quantitative comparison showing a jump from 60% to 80% success rate and markedly lower latency variance.

Agentic AIParallelismPython
0 likes · 12 min read
Redundant Execution: A High‑Reliability Design Pattern for Agentic AI
AI Tech Publishing
AI Tech Publishing
Feb 19, 2026 · Artificial Intelligence

Add Long-Term Memory to Your Agent with Lightweight RAG (Lesson 5)

This tutorial shows how to equip an AI agent with long‑term memory using Retrieval‑Augmented Generation (RAG), covering the concepts of vector embeddings, FAISS indexing, building and querying a knowledge base, and providing complete Python code examples.

AgentFAISSPython
0 likes · 13 min read
Add Long-Term Memory to Your Agent with Lightweight RAG (Lesson 5)
AI Algorithm Path
AI Algorithm Path
Feb 18, 2026 · Artificial Intelligence

Using Autoencoders for Industrial Defect Detection

This article explains how to train a simple fully‑connected autoencoder on defect‑free images, use reconstruction error to highlight anomalies in industrial parts, and convert the error into a single metric that cleanly separates good from defective components.

AutoencoderKerasPython
0 likes · 7 min read
Using Autoencoders for Industrial Defect Detection
DeepNoMind
DeepNoMind
Feb 18, 2026 · Artificial Intelligence

Decentralized Blackboard Collaboration: A High‑Reliability Design Pattern for Agentic AI

This article introduces the decentralized blackboard collaboration pattern for building reliable agentic AI systems, explains its shared data space and specialist agents, demonstrates a customer‑support ticket workflow with analyzer, retriever, and draftsman agents, and highlights benefits such as error reduction, deeper specialization, and auditability.

Agentic AIDecentralized BlackboardDesign Patterns
0 likes · 12 min read
Decentralized Blackboard Collaboration: A High‑Reliability Design Pattern for Agentic AI
TonyBai
TonyBai
Feb 18, 2026 · Backend Development

Why We Chose Go Over Python for Building an LLM Gateway

The Bifrost team replaced Python with Go for their LLM gateway, achieving roughly 700× lower latency, 68% less memory usage, and three‑fold higher throughput, and the article explains the performance bottlenecks of Python, Go’s concurrency model, deployment advantages, and future AI infrastructure trends.

AI infrastructureGoLLM gateway
0 likes · 14 min read
Why We Chose Go Over Python for Building an LLM Gateway
AI Tech Publishing
AI Tech Publishing
Feb 18, 2026 · Artificial Intelligence

Empowering Agents with Skills: Let Specialized Agents Handle Expert Tasks

This tutorial shows how to extend the MiniManus agent framework with Skill support, explains why Skills are needed compared to plain MCP, details the Claude Skill specification, provides concrete command‑line operations, code implementations, and demonstrates Skill‑MCP collaboration through practical examples.

AgentGitHubMCP
0 likes · 10 min read
Empowering Agents with Skills: Let Specialized Agents Handle Expert Tasks
Lisa Notes
Lisa Notes
Feb 17, 2026 · Fundamentals

Python Print Function: A Beginner’s Guide to Output

This article introduces Python's print() function, explaining its purpose of displaying program results and detailing each parameter—self, *args, sep, end, and file—so beginners can understand how to control output formatting and destinations.

Pythonbasicsoutput
0 likes · 3 min read
Python Print Function: A Beginner’s Guide to Output
AI Tech Publishing
AI Tech Publishing
Feb 16, 2026 · Artificial Intelligence

Mastering MCP: Connecting AI Agents to the World in One Lesson

This tutorial explains how the Model Context Protocol (MCP) standardizes AI agent integration by replacing custom tool code with a JSON‑RPC based, auto‑discovered ecosystem, walks through configuration, core loading logic, code implementation, a runnable example, and compares MCP with traditional tool use.

AI AgentJSON-RPCMCP
0 likes · 8 min read
Mastering MCP: Connecting AI Agents to the World in One Lesson
AI Tech Publishing
AI Tech Publishing
Feb 15, 2026 · Artificial Intelligence

Mastering AI Agent Engineering in 9 Days: Lesson 1 – The Core Agent Loop

This tutorial introduces the foundational Agent Loop that powers modern AI agents, explains why it is needed, breaks down its four core components, compares workflow‑based and agent‑based designs, and provides a minimal Python implementation with code, pitfalls, and a concrete RSS‑news use case.

AI AgentAgent LoopOpenAI
0 likes · 17 min read
Mastering AI Agent Engineering in 9 Days: Lesson 1 – The Core Agent Loop
AI Tech Publishing
AI Tech Publishing
Feb 15, 2026 · Artificial Intelligence

Mastering Agent Tool Use: Adding Search, Time, and Calculator Functions

This tutorial extends a minimal LLM Agent loop by introducing Tool Use (function calling) to give the agent actionable capabilities—searching the web, retrieving the current datetime, and performing mathematical calculations—while explaining the BaseTool architecture, registration process, system‑prompt adjustments, and practical execution examples.

AI AgentBaseToolFunction Calling
0 likes · 15 min read
Mastering Agent Tool Use: Adding Search, Time, and Calculator Functions
Lisa Notes
Lisa Notes
Feb 15, 2026 · Fundamentals

Python Identifier Naming Rules and Conventions for Beginners

This guide explains the purpose of Python identifiers, outlines the character and naming rules—including case sensitivity and keyword restrictions—provides common naming patterns such as boolean prefixes and collection naming, and offers best‑practice recommendations for clear, maintainable code.

Pythonbest practicescoding style
0 likes · 4 min read
Python Identifier Naming Rules and Conventions for Beginners
Lisa Notes
Lisa Notes
Feb 14, 2026 · Fundamentals

Why Comments Matter in Python: A Beginner’s Guide

This article explains the importance of comments in Python, describing how they improve code readability for collaborators and future maintenance, and outlines the two comment styles—single‑line with # and multi‑line with triple quotes—along with practical examples.

PythonSoftware Documentationcode readability
0 likes · 3 min read
Why Comments Matter in Python: A Beginner’s Guide
Subtle Storm
Subtle Storm
Feb 13, 2026 · Artificial Intelligence

Using Ollama API for Custom Model Parameters and Batch Processing in Python

This article demonstrates how to configure advanced Ollama API options—including temperature, top‑p, and custom model creation—and shows a complete Python batch‑processing workflow that benchmarks multiple LLMs while measuring latency and success rates.

APIBatch ProcessingCustom Model
0 likes · 6 min read
Using Ollama API for Custom Model Parameters and Batch Processing in Python
IT Services Circle
IT Services Circle
Feb 13, 2026 · Fundamentals

5 Proven Python Memory‑Optimization Patterns to Slash RAM Usage

Learn five practical Python techniques—streaming large files, using generator pipelines, leveraging __slots__, avoiding temporary objects in loops, and reusing buffers—that together can reduce memory consumption by up to 70% and dramatically improve performance when processing gigabyte‑scale datasets.

PythonStreaming__slots__
0 likes · 9 min read
5 Proven Python Memory‑Optimization Patterns to Slash RAM Usage
Data STUDIO
Data STUDIO
Feb 12, 2026 · Artificial Intelligence

How to Add Tools to a LangGraph AI Agent for Real‑World Tasks

This tutorial walks through adding custom, pre‑built, and server‑side tools to a LangGraph AI agent, demonstrates a ReAct workflow, implements conditional edges for web search, enforces structured output for intelligent shutdown, and shows how to monitor token usage with callbacks, all with runnable Python code.

AI AgentLangGraphPython
0 likes · 16 min read
How to Add Tools to a LangGraph AI Agent for Real‑World Tasks
Subtle Storm
Subtle Storm
Feb 11, 2026 · Artificial Intelligence

How to Call Your Own Deployed LLM with Ollama API (Part 1)

This guide walks through installing Ollama, pulling a large language model, and using both the raw REST endpoint and the official Python client to generate completions, manage models, and handle streaming responses on a local machine.

APILLMOllama
0 likes · 9 min read
How to Call Your Own Deployed LLM with Ollama API (Part 1)
Woodpecker Software Testing
Woodpecker Software Testing
Feb 11, 2026 · Artificial Intelligence

Building a Smart Face‑Recognition Attendance System with FastAPI and OpenCV

This article walks through the complete design and implementation of an intelligent attendance system that uses face detection, face encoding comparison, and liveness verification with the Python face_recognition library, OpenCV, FastAPI, SQLModel, and WebSocket communication, providing end‑to‑end code samples for backend APIs, database schema, and interactive front‑end pages.

FastAPIOpenCVPython
0 likes · 68 min read
Building a Smart Face‑Recognition Attendance System with FastAPI and OpenCV
Shuge Unlimited
Shuge Unlimited
Feb 11, 2026 · Operations

How to Easily Manage Operations of 10 Milvus Clusters with an Agent Skill

This article walks through the real‑world pain points of monitoring dozens of Milvus collections across multiple clusters, then details a Python‑based Skill that automates connection handling, aggregates collection metadata, evaluates index health with a three‑state model, and provides unified health checks, performance testing, and capacity analysis for reliable large‑scale vector database operations.

Index managementMilvusOperations Automation
0 likes · 18 min read
How to Easily Manage Operations of 10 Milvus Clusters with an Agent Skill
Woodpecker Software Testing
Woodpecker Software Testing
Feb 10, 2026 · Industry Insights

Building a Comprehensive Financial Stress‑Test Scenario Generator

This article explains the principles, architecture, Monte Carlo algorithms, Python implementations, risk‑metric calculations, and practical applications of a financial stress‑test scenario generator, while also discussing future trends, AI integration, and challenges such as data quality and computational cost.

Monte Carlo simulationPythonRisk Management
0 likes · 18 min read
Building a Comprehensive Financial Stress‑Test Scenario Generator
Tech Musings
Tech Musings
Feb 10, 2026 · Backend Development

How to Build a Hybrid Vector‑+‑Text Search with Redis 8 (No GPU Required)

This article walks through the complete setup of a hybrid retrieval pipeline on two CPU‑only Linux servers using Redis 8, Qwen‑3‑Embedding vectors, and RediSearch to combine BM25 keyword scores with cosine‑based vector similarity, showing environment details, index creation, data ingestion, the hybrid_search function implementation, result normalization, and a common pitfall of forgetting to set the query language to Chinese.

Hybrid SearchPythonRediSearch
0 likes · 23 min read
How to Build a Hybrid Vector‑+‑Text Search with Redis 8 (No GPU Required)
Golang Shines
Golang Shines
Feb 10, 2026 · Backend Development

Python vs Go: A Complete Guide to Choosing the Right Language for Web Crawling

The article compares Python and Go across syntax, libraries, concurrency, memory usage, readability, data processing, and deployment, concluding that Go suits large‑scale, high‑concurrency crawlers while Python excels when rich data‑analysis tools and rapid development are needed.

Data ProcessingLibrariesPython
0 likes · 6 min read
Python vs Go: A Complete Guide to Choosing the Right Language for Web Crawling
Fun with Large Models
Fun with Large Models
Feb 10, 2026 · Artificial Intelligence

Building LangChain Agent Skills from Scratch to Cut Token Usage and Boost Tool Accuracy

The article presents a step‑by‑step design and implementation of a Claude‑style Skills mechanism for LangChain agents, using a double‑layer tool architecture, state‑driven dynamic filtering, and middleware interception to load only relevant tools, dramatically reducing token consumption and improving decision quality and response speed.

Agent SkillsDynamic LoadingLangChain
0 likes · 15 min read
Building LangChain Agent Skills from Scratch to Cut Token Usage and Boost Tool Accuracy
Data STUDIO
Data STUDIO
Feb 10, 2026 · Backend Development

Master Python asyncio: Make Your Code Fly with Asynchronous Programming

This article explains why synchronous Python code blocks on I/O, introduces asyncio’s event loop and coroutine model, and walks through creating and managing tasks, using TaskGroup, handling timeouts, avoiding common pitfalls, and applying best‑practice patterns for high‑performance I/O‑bound programs.

Asynchronous ProgrammingPythonasyncio
0 likes · 20 min read
Master Python asyncio: Make Your Code Fly with Asynchronous Programming
Smart Sea Tide
Smart Sea Tide
Feb 9, 2026 · Big Data

Practical Taobao User‑Behavior Analysis with AARRR and RFM Models

This article walks through a complete data‑driven study of Taobao app user actions, using SQL and Python to ingest 2 million records, applying the AARRR funnel and RFM segmentation to quantify churn, retention, conversion rates, and to propose data‑backed marketing tactics.

AARRRPythonRFM
0 likes · 25 min read
Practical Taobao User‑Behavior Analysis with AARRR and RFM Models
Alibaba Cloud Developer
Alibaba Cloud Developer
Feb 9, 2026 · Artificial Intelligence

Rebuilding an AI‑Powered Shopping Scene Generator with LangGraph, Agent Skills, and Planner

This article details how a low‑code e‑commerce workflow was migrated to a modular LangGraph architecture, introducing Agent Skills, an A2A protocol, and a Planner node to enable multi‑turn natural‑language scene creation, product matching, and persistent storage while leveraging AI coding tools for rapid development.

Agent SkillsDSLLangGraph
0 likes · 24 min read
Rebuilding an AI‑Powered Shopping Scene Generator with LangGraph, Agent Skills, and Planner
Woodpecker Software Testing
Woodpecker Software Testing
Feb 8, 2026 · Artificial Intelligence

From Functional Testing to AI Test Architect: A Cross‑Domain Career Breakthrough

The article outlines a tester’s three‑stage journey—from manual functional testing through AI testing practice to becoming an AI test architect—highlighting skill gaps, learning strategies, essential capabilities, and industry outlook for professionals seeking to reshape their career with AI.

AI testingMachine LearningPython
0 likes · 7 min read
From Functional Testing to AI Test Architect: A Cross‑Domain Career Breakthrough
Woodpecker Software Testing
Woodpecker Software Testing
Feb 8, 2026 · Information Security

Deploying Strix AI Security Testing Platform: From Scratch to Real‑World Use

This guide walks you through the full deployment of the open‑source Strix AI security testing platform, covering environment setup, dependency management, configuration, core module verification, real‑world scanning scenarios, performance tuning, Docker packaging, CI/CD integration, and troubleshooting steps.

AI security testingCI/CDDocker
0 likes · 7 min read
Deploying Strix AI Security Testing Platform: From Scratch to Real‑World Use
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Feb 5, 2026 · Artificial Intelligence

How to Deploy OpenClaw AI Assistant on Huawei Cloud and Auto‑Push Hot News to Feishu

This step‑by‑step guide shows developers how to create a Huawei Cloud development environment, obtain MaaS model tokens, install and configure the OpenClaw AI assistant, integrate it with Feishu via a plugin, set permissions and event callbacks, and finally enable automatic hot‑news push using Python code.

AIFeishuHuawei Cloud
0 likes · 10 min read
How to Deploy OpenClaw AI Assistant on Huawei Cloud and Auto‑Push Hot News to Feishu
Data STUDIO
Data STUDIO
Feb 5, 2026 · Fundamentals

9 Underrated Python Libraries That Can Boost Your Development Speed Tenfold

The article introduces nine lesser‑known Python packages—msgspec, glom, watchfiles, beartype, pyinstrument, duckdb, fakeredis, boltons, and returns—explaining how each tackles common prototyping pain points such as data serialization, file watching, runtime type safety, performance profiling, SQL querying without a server, mock Redis, utility functions, and explicit error handling, ultimately accelerating development by up to ten times.

Functional ProgrammingPythonSQL
0 likes · 25 min read
9 Underrated Python Libraries That Can Boost Your Development Speed Tenfold
Ubuntu
Ubuntu
Feb 4, 2026 · Industry Insights

Ubuntu 26.04 vs 24.04 LTS: Rust Coreutils, Wayland‑Only Desktop, TPM Encryption

The article provides a detailed comparison between Ubuntu 26.04 “Resolute Raccoon” and 24.04 “Noble Numbat”, covering release timelines, support windows, desktop environment upgrades to GNOME 50 with Wayland‑only rendering, Rust‑rewritten core utilities, TPM‑backed full‑disk encryption, Python 3.14, Snap permission changes, and offers guidance on which release suits stability‑focused or cutting‑edge users.

GNOMEPythonRust
0 likes · 7 min read
Ubuntu 26.04 vs 24.04 LTS: Rust Coreutils, Wayland‑Only Desktop, TPM Encryption
Data STUDIO
Data STUDIO
Feb 3, 2026 · Artificial Intelligence

Build a Self‑Thinking AI Agent with LangGraph: A Step‑by‑Step Guide

This tutorial explains how LangGraph adds explicit control‑flow, cycles, and shared state to LLM applications, and walks through building a Strava‑based intelligent training coach with Python code, node definitions, state design, graph assembly, and GitHub Actions deployment.

AI AgentsLLMLangGraph
0 likes · 12 min read
Build a Self‑Thinking AI Agent with LangGraph: A Step‑by‑Step Guide
Amazon Cloud Developers
Amazon Cloud Developers
Feb 3, 2026 · Cloud Computing

Automate AWS Tag Management: Scan, Identify Untagged Resources, and Apply Tags at Scale

The article presents an end‑to‑end automated solution for AWS resource tagging that scans all accounts, discovers services, identifies resources missing specified tags, and batch‑applies them, while offering configurable workflows, performance optimizations, permission requirements, and optional AI‑driven MCP integration for smarter governance.

AWSAutomationCloud Resource Management
0 likes · 22 min read
Automate AWS Tag Management: Scan, Identify Untagged Resources, and Apply Tags at Scale
DevOps Coach
DevOps Coach
Feb 2, 2026 · Fundamentals

Which Programming Language Will Dominate 2026? A Data‑Driven Verdict

The article evaluates programming languages for 2026 by defining modern criteria such as AI integration, cloud‑native support, developer productivity, job demand, and ecosystem health, then compares Python, TypeScript, Rust, and Go, ultimately declaring a clear winner.

2026 trendsGoProgramming Languages
0 likes · 8 min read
Which Programming Language Will Dominate 2026? A Data‑Driven Verdict
TonyBai
TonyBai
Feb 1, 2026 · Backend Development

Rewriting a Python API Gateway in Go: 10× Speedup and a Career Nightmare

The article recounts a developer’s successful rewrite of a Python/Flask API gateway in Go that delivered ten‑fold throughput, one‑third memory usage, and seconds‑level deployment, but caused no user‑visible latency gain, created a single point of failure, and sparked a broader discussion on technical decisions, business value, and team bus factor.

API-gatewayGoPerformance
0 likes · 8 min read
Rewriting a Python API Gateway in Go: 10× Speedup and a Career Nightmare
Mingyi World Elasticsearch
Mingyi World Elasticsearch
Jan 31, 2026 · Backend Development

How to Make a Python Project Support Both Elasticsearch and Easysearch – A Practical Walkthrough

This article explains how to configure a Python codebase to connect simultaneously to Elasticsearch (8.x/9.x) and Easysearch by selecting the elasticsearch‑7.13.1 client, handling product‑validation differences, applying NumPy 2.0 compatibility patches, and configuring HTTPS self‑signed certificates, while comparing three implementation options and recommending the most maintainable solution.

EasysearchElasticsearchHTTPS
0 likes · 8 min read
How to Make a Python Project Support Both Elasticsearch and Easysearch – A Practical Walkthrough
AI Waka
AI Waka
Jan 31, 2026 · Artificial Intelligence

Build a 2026‑Ready LangGraph AI Agent: A Step‑by‑Step Guide

This tutorial walks you through constructing a LangGraph‑based AI agent for automated Strava training plans, covering core concepts like state, nodes, and edges, detailed workflow steps, Python code examples, conditional graph routing, testing, and deployment via GitHub Actions.

AI AgentAutomationLLM
0 likes · 18 min read
Build a 2026‑Ready LangGraph AI Agent: A Step‑by‑Step Guide
DeepNoMind
DeepNoMind
Jan 31, 2026 · Artificial Intelligence

Speculative Execution for High‑Reliability AI Agents

This article explains the predictive‑execution design pattern for agentic AI, showing how to launch tool calls speculatively in parallel with LLM reasoning, provides a full Python implementation using LangChain, and demonstrates a 28% latency reduction compared with a sequential workflow.

Agentic AILangChainPython
0 likes · 13 min read
Speculative Execution for High‑Reliability AI Agents
Data STUDIO
Data STUDIO
Jan 30, 2026 · Fundamentals

Discover Python’s New Built‑in Functions That Simplify Your Code

From Python 3.9 to 3.12 the standard library adds a suite of ready‑to‑use functions—such as str.removeprefix/removesuffix, math.dist, math.comb, zoneinfo, hashlib.blake2b, and tomllib—that eliminate repetitive code, boost performance, and let developers focus on core logic.

Pythonbuilt-in functionshashlib
0 likes · 9 min read
Discover Python’s New Built‑in Functions That Simplify Your Code
Test Development Learning Exchange
Test Development Learning Exchange
Jan 29, 2026 · Operations

How to Build a Python @performance_baseline Decorator for Real‑Time API Performance Monitoring

Learn to create a Python @performance_baseline decorator that automatically measures API response times, compares them against a stored performance baseline, flags regressions, updates baselines dynamically, integrates with pytest, and supports advanced features like environment‑specific baselines, P95/P99 statistics, and Grafana visualization.

BaselinePythonapi monitoring
0 likes · 9 min read
How to Build a Python @performance_baseline Decorator for Real‑Time API Performance Monitoring
Tech Musings
Tech Musings
Jan 29, 2026 · Databases

Mastering Redis 8 Vector Search: Indexing, Hybrid Retrieval, and Re‑ranking Techniques

This article explains how to use Redis 8.4.0 for vector recall and keyword filtering, covering index selection (FLAT vs HNSW), schema creation with redisvl, full‑text BM25 search, pure KNN vector queries, hybrid text‑plus‑vector retrieval, query cleaning, score fusion, and optional in‑Redis Lua re‑ranking or TAG‑based filtering extensions.

IndexingPythonvector search
0 likes · 15 min read
Mastering Redis 8 Vector Search: Indexing, Hybrid Retrieval, and Re‑ranking Techniques
Data STUDIO
Data STUDIO
Jan 29, 2026 · Fundamentals

10 Python Design Patterns to Eliminate Spaghetti Code and Build Maintainable Projects

The article explains why architecture matters, introduces ten essential Python design patterns—such as Dependency Injection, Strategy, Builder, Event‑Driven, Repository, Mapper, Pipeline, Command, Specification, and Plugin Registry—with concrete code examples and practical advice to transform messy scripts into clean, scalable applications.

Builder PatternDesign PatternsPlugin System
0 likes · 44 min read
10 Python Design Patterns to Eliminate Spaghetti Code and Build Maintainable Projects
Old Meng AI Explorer
Old Meng AI Explorer
Jan 28, 2026 · Artificial Intelligence

How DeepTutor Turns AI into a Personal Learning Mentor

DeepTutor, an open‑source AI tutoring platform from HKU’s Data Science Lab, combines a four‑layer architecture, interactive visualizations, a dual‑loop reasoning engine, and exam‑cloning features, and can be deployed with a single Docker command, offering a guided learning experience that emphasizes thinking over instant answers.

AI tutoringDockerFastAPI
0 likes · 7 min read
How DeepTutor Turns AI into a Personal Learning Mentor
Woodpecker Software Testing
Woodpecker Software Testing
Jan 28, 2026 · Artificial Intelligence

How Large Language Models Overcome Traditional Software Testing Pain Points

Large language models can dramatically reshape software testing by automating test case generation, understanding requirements, predicting failures, and streamlining result analysis, as demonstrated through detailed workflow diagrams, pseudocode, Python implementations, and real‑world case studies in finance, e‑commerce, and IoT domains.

AI test generationAutomationLarge Language Models
0 likes · 10 min read
How Large Language Models Overcome Traditional Software Testing Pain Points
Go Development Architecture Practice
Go Development Architecture Practice
Jan 28, 2026 · Backend Development

Mastering gRPC with Python: From Basics to Real‑World Microservices

This guide explains the fundamentals of gRPC, why it uses HTTP/2 and Protocol Buffers, walks through writing and compiling .proto files, provides complete Python server and client examples, and outlines common microservice and Kubernetes use cases, giving developers a practical end‑to‑end workflow.

Protocol BuffersPythonbackend development
0 likes · 11 min read
Mastering gRPC with Python: From Basics to Real‑World Microservices
Woodpecker Software Testing
Woodpecker Software Testing
Jan 27, 2026 · Artificial Intelligence

How to Build a Multimodal AI Assistant with FastAPI, Alibaba Cloud and DashScope

This guide walks through configuring Alibaba Cloud credentials, implementing a FastAPI backend with email function calling, Alibaba OpenSearch, image generation via DashScope, speech recognition, and a responsive HTML/CSS/JavaScript front‑end that supports text chat, image recognition, image synthesis, and voice interaction.

Alibaba CloudDashScopeFastAPI
0 likes · 38 min read
How to Build a Multimodal AI Assistant with FastAPI, Alibaba Cloud and DashScope
Data STUDIO
Data STUDIO
Jan 27, 2026 · Artificial Intelligence

How Python RAG Architectures Can Tame Large‑Model Hallucinations: A Complete Guide to 9 Designs

This article explains why large‑language‑model hallucinations are risky, introduces Retrieval‑Augmented Generation (RAG) as a remedy, and walks through nine Python‑based RAG architectures—standard, conversational, corrective, adaptive, fusion, HyDE, self‑RAG, agentic, and graph RAG—detailing their workflows, code examples, strengths, weaknesses, and a decision‑making map for selecting the right design.

AI hallucinationLangChainLarge Language Models
0 likes · 29 min read
How Python RAG Architectures Can Tame Large‑Model Hallucinations: A Complete Guide to 9 Designs
AI Tech Publishing
AI Tech Publishing
Jan 27, 2026 · Artificial Intelligence

Step‑by‑Step: Adding Skill Capabilities to Your Agent System

This article walks through the design patterns, three‑level loading mechanism, and practical implementation steps for integrating reusable, domain‑specific Skills into an existing Agent system, covering both local and distributed deployments with Redis‑based versioning and sandboxed execution.

AgentLLMMeta-Tool Pattern
0 likes · 14 min read
Step‑by‑Step: Adding Skill Capabilities to Your Agent System
Woodpecker Software Testing
Woodpecker Software Testing
Jan 26, 2026 · Backend Development

How to Design Practical Login API Test Cases

This article presents several Python‑based login API test cases—including normal login, parameterized login, handling missing endpoints, and chaining an order request—along with step‑by‑step code examples and best‑practice tips for writing reliable, maintainable tests.

API testingPythonlogin API
0 likes · 5 min read
How to Design Practical Login API Test Cases
Data STUDIO
Data STUDIO
Jan 26, 2026 · Backend Development

Choosing the Right Python Web Framework: Django, Flask or FastAPI

This article compares Django, Flask, and FastAPI—three of the most popular Python web frameworks—by examining their philosophies, built‑in features, learning curves, performance characteristics, and code examples for a simple Hello World service and a user‑query API, then provides a decision flowchart and a detailed matrix to help developers pick the best fit for their next project.

APIDjangoFastAPI
0 likes · 15 min read
Choosing the Right Python Web Framework: Django, Flask or FastAPI
Woodpecker Software Testing
Woodpecker Software Testing
Jan 25, 2026 · Artificial Intelligence

Integrating LLMs with Speech: Whisper, Vosk, and Alibaba Cloud in Python and JavaScript

This tutorial walks through setting up local speech recognition with OpenAI's Whisper and Vosk, leveraging Alibaba Cloud's ASR services, building a WebSocket server/client for real‑time audio streaming, capturing audio in the browser via MediaRecorder or RecordRTC, and performing speech synthesis with pyttsx3 and Alibaba's Sambert model.

Alibaba CloudJavaScriptPython
0 likes · 20 min read
Integrating LLMs with Speech: Whisper, Vosk, and Alibaba Cloud in Python and JavaScript
Ubuntu
Ubuntu
Jan 25, 2026 · Artificial Intelligence

Deploy Alibaba Qwen3‑TTS on Ubuntu: 3‑Second Voice Cloning with 97 ms Latency

This guide walks through installing and running Alibaba's open‑source Qwen3‑TTS on Ubuntu, covering environment setup, GPU requirements, model selection, Python virtual‑environment creation, code examples for voice cloning and voice design, low‑latency streaming, Web UI launch, and common troubleshooting tips.

AIDeep LearningPython
0 likes · 9 min read
Deploy Alibaba Qwen3‑TTS on Ubuntu: 3‑Second Voice Cloning with 97 ms Latency
Old Meng AI Explorer
Old Meng AI Explorer
Jan 25, 2026 · Artificial Intelligence

How AI Can Control Your Desktop: Inside the Open‑Source TuriX‑CUA Agent

TuriX‑CUA is an open‑source AI desktop agent that captures screen content, uses multimodal large models to decide actions, and automatically moves the mouse or types, offering cross‑platform support, multi‑model architecture, and detailed setup instructions for Windows and macOS.

AI automationDesktop AgentPython
0 likes · 7 min read
How AI Can Control Your Desktop: Inside the Open‑Source TuriX‑CUA Agent
Subtle Storm
Subtle Storm
Jan 24, 2026 · Cloud Native

How to Deploy a Flask App with Docker: A Step‑by‑Step Guide

This guide walks you through containerizing a Flask web application with Docker, covering project setup, Dockerfile creation, image building, container runtime options, and performance optimizations such as multi‑stage builds, non‑root users, and Gunicorn configuration.

DockerDockerfileFlask
0 likes · 11 min read
How to Deploy a Flask App with Docker: A Step‑by‑Step Guide
Ubuntu
Ubuntu
Jan 24, 2026 · Artificial Intelligence

Deploy Alibaba’s Qwen3‑TTS on Ubuntu and Clone Your Voice in 3 Seconds

This guide walks through installing the open‑source Qwen3‑TTS model on Ubuntu, covering environment setup, GPU requirements, package installation, model variants, and hands‑on Python scripts for ultra‑low‑latency voice cloning and text‑driven voice design.

AI speech synthesisMultilingual TTSPyTorch
0 likes · 9 min read
Deploy Alibaba’s Qwen3‑TTS on Ubuntu and Clone Your Voice in 3 Seconds
AI Waka
AI Waka
Jan 24, 2026 · Artificial Intelligence

2026 Agentic AI Roadmap: How to Build Autonomous AI Agents

This comprehensive 2026 roadmap outlines the essential programming foundations, core agent architectures, LLM and API integrations, tool usage, memory management, RAG systems, deployment strategies, monitoring, and security practices needed to design, develop, and operate autonomous AI agents.

AI roadmapAgentic AIAutonomous Agents
0 likes · 10 min read
2026 Agentic AI Roadmap: How to Build Autonomous AI Agents
Data STUDIO
Data STUDIO
Jan 23, 2026 · Artificial Intelligence

Choosing the Best AI Agent Framework: A Practical Guide

This article explains the core AI agent loop, why dedicated frameworks are needed, compares eight popular frameworks—including RelevanceAI, smolagents, PhiData, LangChain, LlamaIndex, CrewAI, AutoGen, and LangGraph—offers selection criteria, and provides hands‑on code demos for AutoGen and LangGraph.

AI AgentsAutoGenFramework Comparison
0 likes · 19 min read
Choosing the Best AI Agent Framework: A Practical Guide
Sohu Tech Products
Sohu Tech Products
Jan 21, 2026 · Artificial Intelligence

Building an AI Knowledge Management System with Claude Skills & Dynamic Routing

This article explains how to design and implement a knowledge‑management and intelligent‑assistant system called Krawl using Claude Skills, covering the three‑layer skill architecture, progressive disclosure, dynamic routing, lazy loading, meta‑tool integration, and concrete Python examples for video summarisation and knowledge queries.

AIClaudeKnowledge Management
0 likes · 19 min read
Building an AI Knowledge Management System with Claude Skills & Dynamic Routing
Design Hub
Design Hub
Jan 21, 2026 · Artificial Intelligence

One‑Click AI‑Powered WeChat Article Creation: Write, Illustrate, and Publish Automatically

This guide walks you through building an automated workflow that uses Google’s Antigravity AI to generate a fully formatted WeChat public‑account article—including text, multiple high‑quality images, cloud upload, and markdown‑to‑WeChat conversion—so you can copy‑paste the result directly into the editor.

AIAutomationPython
0 likes · 9 min read
One‑Click AI‑Powered WeChat Article Creation: Write, Illustrate, and Publish Automatically
ShiZhen AI
ShiZhen AI
Jan 20, 2026 · Artificial Intelligence

Inside X’s Open‑Source ‘For You’ Algorithm: How AI Drives Your Attention

The article dissects X’s newly open‑sourced ‘For You’ feed algorithm, detailing its Rust and Python implementation, the Home Mixer pipeline, candidate sourcing, Grok‑based scoring, and extensive filtering, showing how machine‑learning predicts user interactions and shapes the content you see.

Grok transformerMachine LearningPython
0 likes · 8 min read
Inside X’s Open‑Source ‘For You’ Algorithm: How AI Drives Your Attention
Data STUDIO
Data STUDIO
Jan 19, 2026 · Fundamentals

10 Advanced Python Decorators to Replace Repetitive if‑else Logic and Clean Up Your Code

This article introduces ten practical Python decorator patterns—covering caching, timing, retry, rate‑limiting, logging, dependency injection, class‑wide decoration, singleton, role‑based access control, and context management—each explained with concrete code examples, output snapshots, and guidance on when and how to apply them.

LoggingPythonRBAC
0 likes · 29 min read
10 Advanced Python Decorators to Replace Repetitive if‑else Logic and Clean Up Your Code
DevOps Coach
DevOps Coach
Jan 18, 2026 · Backend Development

How to Build a Production-Ready Django Project Structure

This article explains why the default Django project layout is unsuitable for production, then presents a detailed, battle‑tested directory structure, split settings, environment variable management, organized apps, services, selectors, testing layout, Makefile shortcuts, and Django 5.2 considerations to help developers create maintainable, secure, and scalable Django applications.

DevOpsDjangoProject Structure
0 likes · 14 min read
How to Build a Production-Ready Django Project Structure
AI Engineering
AI Engineering
Jan 18, 2026 · Artificial Intelligence

Why a Single For Loop Powers BU’s Open‑Source Agent Framework

The BU Browser Use team open‑sourced bu‑agent‑sdk, a minimal LLM agent framework that treats the agent as a simple for‑loop and adds explicit done tools, context compression, ephemeral messages, and a unified LLM interface, enabling flexible, low‑overhead AI applications.

Agent FrameworkLLMPython
0 likes · 7 min read
Why a Single For Loop Powers BU’s Open‑Source Agent Framework