Tagged articles
5000 articles
Page 3 of 50
Lisa Notes
Lisa Notes
Mar 15, 2026 · Fundamentals

Understanding Python’s “pass” Keyword: A Practical Guide

The article explains that the pass keyword in Python serves only as a syntactic placeholder to keep code blocks valid, illustrating its use with a simple age‑checking example where the pass statement does nothing but allow the program to run without errors.

Pythonbasic programmingpass keyword
0 likes · 2 min read
Understanding Python’s “pass” Keyword: A Practical Guide
Lisa Notes
Lisa Notes
Mar 14, 2026 · Fundamentals

Mastering Common Nested if Statements in Python

This tutorial explains Python's nested if syntax, shows how single, double, and multi‑branch conditions can be combined, and walks through a practical ticket‑checking example that demonstrates input handling, conditional nesting, and the resulting output.

Control FlowPythonTutorial
0 likes · 3 min read
Mastering Common Nested if Statements in Python
AI Explorer
AI Explorer
Mar 14, 2026 · Artificial Intelligence

Build a Claude‑Code‑Level AI Agent in 12 Incremental Lessons

This open‑source tutorial walks developers through twelve progressive lessons, expanding a minimal 84‑line agent to a full‑featured 694‑line Claude‑Code‑style AI system that covers tool calls, sub‑agents, context compression, and multi‑agent collaboration.

AI AgentAgent LoopClaude Code
0 likes · 9 min read
Build a Claude‑Code‑Level AI Agent in 12 Incremental Lessons
AI Waka
AI Waka
Mar 13, 2026 · Artificial Intelligence

Rethinking LLM Agents: Stream Tool Outputs Directly to the Client

The article critiques the conventional LLM‑agent loop that forces every tool output back through the model, proposes a dual‑output architecture where tools stream multimedia events directly to the client while still returning a compact semantic result to the model, and demonstrates the design with Python code examples.

AgentLLMMultimodal
0 likes · 14 min read
Rethinking LLM Agents: Stream Tool Outputs Directly to the Client
Mingyi World Elasticsearch
Mingyi World Elasticsearch
Mar 11, 2026 · Backend Development

How to Achieve One‑Line Semantic Search for Nearby Clean Coffee Shops with Elasticsearch

This article walks through building a practical Elasticsearch demo that lets users type a single query like “nearby clean coffee shop” and get results by combining dense‑vector semantic search, geo filtering, BM25, and a hybrid RRF‑style ranking, with both LLM‑based structuring and a fallback hash‑based embedding.

BM25FlaskHybrid Search
0 likes · 10 min read
How to Achieve One‑Line Semantic Search for Nearby Clean Coffee Shops with Elasticsearch
AI Explorer
AI Explorer
Mar 11, 2026 · Artificial Intelligence

Unlock Programmatic Access to Google NotebookLM with notebooklm-py

The unofficial notebooklm-py library reverse‑engineers Google’s private NotebookLM API, offering a full Python and CLI interface that enables batch downloads, content export, AI‑agent integration, and automated research workflows, while outlining its architecture, quick‑start steps, suitable users, and the risk of API changes.

AICLIPython
0 likes · 7 min read
Unlock Programmatic Access to Google NotebookLM with notebooklm-py
DeepHub IMBA
DeepHub IMBA
Mar 11, 2026 · Fundamentals

Detecting Time‑Series Change Points with Grid Search and Piecewise Regression

This article shows how to turn change‑point detection into an optimization problem by exhaustively searching knot configurations with grid search, selecting the best model using a penalised likelihood criterion (BIC), and applying piecewise regression to automatically locate trend breakpoints, illustrated with R and Python code on California natural‑gas consumption data.

BICPythonR
0 likes · 12 min read
Detecting Time‑Series Change Points with Grid Search and Piecewise Regression
Fun with Large Models
Fun with Large Models
Mar 11, 2026 · Artificial Intelligence

LangChain DeepAgents Quick Guide – FileSystem Middleware Gives AI Agents System‑Level Memory Management

This article explains why AI agents need a memory‑management solution, introduces LangChain DeepAgents' FileSystem middleware, details its four backend options for short‑term, long‑term, disk‑based, and hybrid storage, and provides step‑by‑step Python examples for installing, configuring, and using the middleware in real‑world scenarios.

AI AgentDeepAgentsFileSystemMiddleware
0 likes · 16 min read
LangChain DeepAgents Quick Guide – FileSystem Middleware Gives AI Agents System‑Level Memory Management
IT Services Circle
IT Services Circle
Mar 11, 2026 · Backend Development

How to Build Scalable Python Back‑End Systems: Architecture, Async, and Ops

This article walks Python developers through designing high‑concurrency back‑end systems, covering architectural planning, modular project layout, async I/O with asyncio and FastAPI, load balancing with Gunicorn, database scaling, Celery task queues, caching, rate limiting, monitoring, and graceful shutdown techniques.

FastAPIPythonasyncio
0 likes · 20 min read
How to Build Scalable Python Back‑End Systems: Architecture, Async, and Ops
Lisa Notes
Lisa Notes
Mar 11, 2026 · Fundamentals

Master Python if/else Statements with Practical Examples

This tutorial explains Python's selection structure by walking through three hands‑on exercises—checking if a number exceeds 16, determining odd or even, and calculating the day of the year (including leap‑year logic)—complete with code snippets and sample output.

Control FlowPythonexample-code
0 likes · 4 min read
Master Python if/else Statements with Practical Examples
Data STUDIO
Data STUDIO
Mar 11, 2026 · Backend Development

Build Your First MCP Server with FastMCP – A Python Power Tool

This article introduces the Model Context Protocol (MCP) and the FastMCP Python library, then walks through setting up a virtual environment, creating a simple weather‑query tool, testing it with a client, upgrading to a real OpenWeatherMap API, and finally covering production deployment options such as HTTP transport, Docker, and security middleware.

AI toolsDeploymentDocker
0 likes · 19 min read
Build Your First MCP Server with FastMCP – A Python Power Tool
DeepHub IMBA
DeepHub IMBA
Mar 10, 2026 · Fundamentals

7 Hidden Python Stdlib Tools That Simplify Your Code

The article presents seven powerful Python standard‑library features—generators for lazy evaluation, defaultdict for concise counting, pathlib for robust path handling, functools.partial for quick function specialization, itertools for flattening nested loops, type for dynamic class creation, and decorators for reusable logic—showing how each reduces memory usage, simplifies code, and improves automation.

GeneratorsPythonStandard Library
0 likes · 7 min read
7 Hidden Python Stdlib Tools That Simplify Your Code
Su San Talks Tech
Su San Talks Tech
Mar 10, 2026 · Artificial Intelligence

Inside Nanobot: A Deep Dive into a Lightweight AI Assistant Framework

This article provides a comprehensive walkthrough of the open‑source Nanobot project, detailing its architecture, core configuration, message bus, tool system, LLM provider, context builder, session management, agent loop, channel integration, cron and heartbeat services, and CLI commands, while illustrating each component with code snippets and diagrams.

AI AssistantLLMNanobot
0 likes · 29 min read
Inside Nanobot: A Deep Dive into a Lightweight AI Assistant Framework
Lisa Notes
Lisa Notes
Mar 9, 2026 · Fundamentals

Learn Python from Scratch: Using if and if‑else Statements

This tutorial explains Python's three program structures, then details the syntax and execution flow of single‑branch if statements and double‑branch if‑else statements with concrete code examples and their corresponding outputs.

Control FlowPythonTutorial
0 likes · 4 min read
Learn Python from Scratch: Using if and if‑else Statements
Lisa Notes
Lisa Notes
Mar 8, 2026 · Fundamentals

Understanding Python’s Logical Operators: Values and Short‑Circuit Behavior

The article explains how Python’s and/or operators work with any expression type, why they may return non‑boolean values, and demonstrates short‑circuit evaluation through concrete print examples showing the actual results, including cases where the left operand determines the outcome without evaluating the right side.

PythonShort-Circuitand
0 likes · 5 min read
Understanding Python’s Logical Operators: Values and Short‑Circuit Behavior
Code Mala Tang
Code Mala Tang
Mar 8, 2026 · Fundamentals

Essential Python 2 vs 3 Differences Every Developer Must Know

Although Python 2 is officially deprecated, many legacy systems still use it, so understanding the key syntax, arithmetic, string handling, loop constructs, exception syntax, input functions, dictionary iteration, and library support differences between Python 2 and Python 3 is crucial for maintaining and migrating code.

LegacyPythonmigration
0 likes · 9 min read
Essential Python 2 vs 3 Differences Every Developer Must Know
AI Explorer
AI Explorer
Mar 7, 2026 · Artificial Intelligence

Can Tang Dynasty Bureaucracy Manage AI Agents? Inside the edict Open‑Source Multi‑Agent Framework

The edict project adapts the Tang dynasty’s three‑province, six‑department bureaucracy to a multi‑agent AI framework, introducing a hierarchical “Prince”, “Three Ministries”, and “Six Departments” structure with a veto‑power “Chancellor” layer, real‑time dashboards, task intervention, health monitoring, and zero‑dependency deployment.

AI agentsEdictPython
0 likes · 9 min read
Can Tang Dynasty Bureaucracy Manage AI Agents? Inside the edict Open‑Source Multi‑Agent Framework
Tech Musings
Tech Musings
Mar 6, 2026 · Artificial Intelligence

How to Build a Qwen3 Chat UI with Chainlit: Hooks, Auth, and Persistence

Learn how to use the Chainlit Python framework to create a web‑based Qwen3 chat interface, covering its core features, hook mechanisms for data layers, authentication, chat start, message handling, streaming generation, performance monitoring, and session restoration, with full code examples and SQLite persistence.

AIChainlitPython
0 likes · 13 min read
How to Build a Qwen3 Chat UI with Chainlit: Hooks, Auth, and Persistence
Frontend AI Walk
Frontend AI Walk
Mar 6, 2026 · Frontend Development

One‑Click Design‑to‑Code with Lanhu MCP: Setup, Pitfalls, and Why It Fails

This article documents the end‑to‑end process of using Lanhu MCP to convert UI design files into HTML/CSS, covering environment setup, installation, Cursor integration, common errors such as Python 3.13 incompatibility and HTTP 418 responses, and practical work‑arounds when the core API is blocked.

AI code generationCursorDocker
0 likes · 9 min read
One‑Click Design‑to‑Code with Lanhu MCP: Setup, Pitfalls, and Why It Fails
Lisa Notes
Lisa Notes
Mar 6, 2026 · Fundamentals

Master Python Logical Operators from the Ground Up

This article explains Python's logical operators—and, or, and not—by comparing them to mathematical logic, detailing their syntax, truth rules, how they work with any expression type, and illustrating usage with concrete code examples and output.

Pythonandboolean logic
0 likes · 4 min read
Master Python Logical Operators from the Ground Up
Code Mala Tang
Code Mala Tang
Mar 5, 2026 · Artificial Intelligence

Master YOLOv12: A Step‑by‑Step Guide to Build, Train, and Deploy Custom Models

This tutorial walks readers through the fundamentals of YOLOv12, covering model variants, dataset preparation with Roboflow, optional FlashAttention acceleration, installation, model selection, training commands, post‑training tasks such as tracking, validation, inference, exporting to ONNX, and benchmarking, all with concrete code snippets and practical tips.

Computer VisionFlashAttentionModel Training
0 likes · 8 min read
Master YOLOv12: A Step‑by‑Step Guide to Build, Train, and Deploy Custom Models
Lisa Notes
Lisa Notes
Mar 5, 2026 · Fundamentals

Python Basics: From Zero to Core Concepts with Practical Code Examples

This tutorial walks through essential Python fundamentals—including comments, naming conventions, variable assignment, input/output functions, common data types, type conversion, and arithmetic, assignment, relational, and membership operators—providing clear explanations and concrete code snippets for each concept.

Data TypesInput/OutputPython
0 likes · 20 min read
Python Basics: From Zero to Core Concepts with Practical Code Examples
AI Algorithm Path
AI Algorithm Path
Mar 4, 2026 · Artificial Intelligence

Beginner’s Guide: Building a Pedestrian Detection Skill with NanoBot

This step‑by‑step tutorial shows how to install NanoBot, configure it with a DeepSeek API key, create a YOLO‑based pedestrian detection skill via natural‑language commands, test the generated code, and extend the output to JSON, demonstrating AI agents in Python.

AI AgentDeepSeekNanobot
0 likes · 6 min read
Beginner’s Guide: Building a Pedestrian Detection Skill with NanoBot
Data STUDIO
Data STUDIO
Mar 4, 2026 · Frontend Development

9 Python GUI Libraries That Stand Out in 2026

The article reviews nine notable Python GUI libraries—covering traditional desktop toolkits, modern web‑style frameworks, terminal UI solutions, and high‑performance professional options—providing feature overviews, sample code, and guidance on which library fits specific development needs.

FletGUIKivy
0 likes · 16 min read
9 Python GUI Libraries That Stand Out in 2026
Open Source Tech Hub
Open Source Tech Hub
Mar 4, 2026 · Artificial Intelligence

Building AI Agents: From Basics to OpenAI-Compatible LLM Calls

This article explains the fundamental concepts of AI agents, their perception‑reasoning‑action loop, the evolution from rule‑based bots to LLM‑driven agents, and provides step‑by‑step Python and PHP code for invoking a large language model via the OpenAI‑compatible API.

AILLMOpenAI
0 likes · 11 min read
Building AI Agents: From Basics to OpenAI-Compatible LLM Calls
Data STUDIO
Data STUDIO
Mar 3, 2026 · Backend Development

How to Build a Never‑Crashing, Scalable Python Backend

This article walks through practical techniques for designing a highly concurrent Python backend that stays stable under load, covering architecture planning, async programming, load balancing, database scaling, distributed tasks, caching, rate limiting, monitoring, and graceful shutdown.

FastAPIPythonScalability
0 likes · 20 min read
How to Build a Never‑Crashing, Scalable Python Backend
Woodpecker Software Testing
Woodpecker Software Testing
Mar 3, 2026 · Operations

Self-Healing Test Scripts: End Frequent Maintenance Hassles

The article explains how self‑healing test scripts, built on observable snapshots, strategy libraries, and lightweight decision engines, can automatically detect UI changes, diagnose locator failures, and apply semantic or visual fixes, dramatically reducing maintenance time and manual intervention in fast‑paced continuous delivery environments.

PythonSeleniumUI automation
0 likes · 7 min read
Self-Healing Test Scripts: End Frequent Maintenance Hassles
DeepHub IMBA
DeepHub IMBA
Mar 2, 2026 · Fundamentals

PhysioDSP: A Python Library for Wearable Physiological Signal Processing

PhysioDSP is an open‑source Python library that unifies fragmented wearable signal‑processing pipelines by providing type‑safe, reproducible algorithms for activity analysis, ECG peak detection, and HRV scoring, with a modular architecture and ready‑to‑use data models.

ECGHRVPhysiological Signal Processing
0 likes · 6 min read
PhysioDSP: A Python Library for Wearable Physiological Signal Processing
Data STUDIO
Data STUDIO
Mar 2, 2026 · Backend Development

Say Goodbye to Flask: 7 FastAPI Extensions That Boost Productivity Tenfold

After struggling with Flask's heavyweight middleware and limited plugin ecosystem, the author switched to FastAPI and demonstrates how seven extensions—FastAPI Users, FastAPI-Mail, FastAPI‑SocketIO, FastAPI‑Limiter, FastAPI‑Cache, FastAPI‑CrudRouter, and FastAPI‑Plugins—dramatically simplify authentication, email, real‑time communication, rate limiting, caching, CRUD generation, and ecosystem integration, turning weeks of debugging into minutes of development.

APIBackendExtensions
0 likes · 22 min read
Say Goodbye to Flask: 7 FastAPI Extensions That Boost Productivity Tenfold
Raymond Ops
Raymond Ops
Mar 1, 2026 · Operations

How I Transitioned from Traditional Ops to SRE/DevOps in 18 Months

This detailed guide shares a step‑by‑step 18‑month roadmap, covering self‑assessment, skill acquisition (Python, Kubernetes, monitoring), project execution, interview preparation, and real‑world outcomes for engineers moving from legacy operations to SRE/DevOps roles.

KubernetesPythonSRE
0 likes · 35 min read
How I Transitioned from Traditional Ops to SRE/DevOps in 18 Months
Lisa Notes
Lisa Notes
Mar 1, 2026 · Fundamentals

Python Relational Operators: A Beginner’s Guide from Zero

This tutorial explains Python's relational operators, how they compare numbers and strings to produce Boolean results, lists the available operators, shows typical use in if statements and loops, and provides concrete code examples with expected output.

Pythonbooleanif statement
0 likes · 3 min read
Python Relational Operators: A Beginner’s Guide from Zero
Old Meng AI Explorer
Old Meng AI Explorer
Feb 28, 2026 · Artificial Intelligence

Unlock Claude Development: 15+ Real-World Examples to Jumpstart Your AI Projects

The article introduces the open‑source Claude Quickstarts repository, which provides over 15 ready‑to‑run examples—including multimodal image Q&A, function calling, and batch document analysis—along with step‑by‑step setup instructions, code snippets, and best‑practice notes to help developers quickly build Claude‑powered applications.

AIClaudeFunction Calling
0 likes · 11 min read
Unlock Claude Development: 15+ Real-World Examples to Jumpstart Your AI Projects
Old Zhang's AI Learning
Old Zhang's AI Learning
Feb 28, 2026 · Artificial Intelligence

How to Build a Private AI‑Powered RSS Reading Knowledge Base

The article details a fully automated workflow that fetches 92 top‑tech blogs via RSS, cleans the content into Markdown, uses a MiniMax‑M2.5 LLM to generate concise Chinese summaries, and delivers them through Bark and a Telegram bot, all stored for seamless integration with Obsidian.

AIBarkLLM
0 likes · 10 min read
How to Build a Private AI‑Powered RSS Reading Knowledge Base
IT Services Circle
IT Services Circle
Feb 28, 2026 · Artificial Intelligence

Unlock Adaptive Crawling, AI Agent Memory, and Remote Claude Code with Open‑Source Tools

This article introduces four open‑source projects—Scrapling for self‑adjusting web crawling, Agent‑Skills‑for‑Context‑Engineering for AI agent memory management, claude‑code‑telegram for remote Claude Code access via Telegram, and Hugging Face Skills for versatile AI task automation—detailing their core features, popularity, and installation steps.

AI agentsHugging FacePython
0 likes · 7 min read
Unlock Adaptive Crawling, AI Agent Memory, and Remote Claude Code with Open‑Source Tools
Lisa Notes
Lisa Notes
Feb 28, 2026 · Fundamentals

Master Python Assignment Operators: From Simple = to Compound Forms

This tutorial explains Python's simple and compound assignment operators, showing how = assigns values and how operators like +=, -=, *=, /=, %=, **=, and //= combine arithmetic with assignment, illustrated with concrete code examples and their output, while noting Python lacks ++/--.

Code ExamplePythonassignment-operator
0 likes · 4 min read
Master Python Assignment Operators: From Simple = to Compound Forms
Old Zhang's AI Learning
Old Zhang's AI Learning
Feb 27, 2026 · Backend Development

How I Built a Telegram AI Coding Bot (FakeClawBot) Using OpenCode

This article walks through creating a Telegram bot that leverages OpenCode's Server API to provide full AI coding assistance, covering setup, multi‑model integration, core architecture, common pitfalls, and extensible features, all with under 900 lines of Python code.

AI coding assistantOpenCodePython
0 likes · 13 min read
How I Built a Telegram AI Coding Bot (FakeClawBot) Using OpenCode
Woodpecker Software Testing
Woodpecker Software Testing
Feb 27, 2026 · Artificial Intelligence

Automating WeChat Public Account Publishing with AI (DeepSeek & Qwen)

This article walks through building a Python pipeline that uses DeepSeek and Alibaba Qwen to generate AI‑written articles, creates cover images, and automatically saves them as drafts in a WeChat public account, with detailed environment setup, client implementations, fallback strategies, and deployment tips.

AIContent GenerationDeepSeek
0 likes · 26 min read
Automating WeChat Public Account Publishing with AI (DeepSeek & Qwen)
Woodpecker Software Testing
Woodpecker Software Testing
Feb 27, 2026 · Cloud Computing

Deploy Your Program to Alibaba Function Compute (FC) in Minutes

This guide walks through the step‑by‑step process of deploying a daily‑triggered Python program to Alibaba Function Compute, covering account login, function creation, code packaging, runtime configuration, network settings, trigger setup, and verification of execution logs.

Alibaba CloudDeploymentFunction Compute
0 likes · 3 min read
Deploy Your Program to Alibaba Function Compute (FC) in Minutes
Data STUDIO
Data STUDIO
Feb 27, 2026 · Backend Development

Ruff: The Lightning‑Fast All‑In‑One Python Linter and Formatter

Ruff is a Rust‑written Python linter and formatter that claims 10‑100× speed improvements over Flake8, Black, and isort, offering a single‑command solution for linting, auto‑fixing, and formatting, with simple installation, flexible TOML configuration, editor, pre‑commit, and CI/CD integration.

PythonRuffRust
0 likes · 9 min read
Ruff: The Lightning‑Fast All‑In‑One Python Linter and Formatter
Lisa Notes
Lisa Notes
Feb 27, 2026 · Fundamentals

How Python’s + Operator Concatenates Strings (and Why Numbers Fail)

The article explains that in Python the + operator joins two strings into one, demonstrates this with code examples, and warns that adding a number to a string raises a TypeError, illustrating the rule with sample output and error messages.

Arithmetic operatorsPythonString concatenation
0 likes · 3 min read
How Python’s + Operator Concatenates Strings (and Why Numbers Fail)
AI Tech Publishing
AI Tech Publishing
Feb 27, 2026 · Artificial Intelligence

Step‑by‑Step Guide to Building OpenClaw: A Persistent AI Assistant with Sessions, Tools, and Multi‑Agent Support

This tutorial walks through constructing OpenClaw from scratch, covering persistent JSONL sessions, SOUL.md persona files, tool definitions and an agent loop, permission checks, gateway architecture, context compression, long‑term memory, command queuing, scheduled heartbeats, and multi‑agent routing, all with concrete Python code examples.

AI agentsLLMMulti-Agent
0 likes · 38 min read
Step‑by‑Step Guide to Building OpenClaw: A Persistent AI Assistant with Sessions, Tools, and Multi‑Agent Support
Big Data Technology Tribe
Big Data Technology Tribe
Feb 27, 2026 · Fundamentals

What Is pyarrow.Schema and How to Use It?

pyarrow.Schema is the Python representation of an Arrow table schema, describing column names, types, nullability, and other metadata, and it is essential for defining, inspecting, serializing, and interfacing data structures across libraries like Pandas, Polars, and Arrow‑based query engines.

Apache ArrowData StructuresPyArrow
0 likes · 4 min read
What Is pyarrow.Schema and How to Use It?
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 agentsContext WindowDeepAgents
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.

PythonRAGZvec
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.

FlaskJSONMessagePack
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.

ListPythonbool
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.

Information SecurityPythonShell
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.

Agent CoordinationLLMMulti-Agent
0 likes · 12 min read
Final Lesson: Build a Fully Working RSS News Brief Agent
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.

AICoordinatorHandoff
0 likes · 20 min read
Mastering Multi‑Agent Collaboration: Handoff Mode and Coordination
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.

PythonTutorialbool
0 likes · 4 min read
How to Convert Various Python Data Types to Integers
IT Services Circle
IT Services Circle
Feb 20, 2026 · Fundamentals

Why Java Remains China’s Tech Staple and the Next Languages to Master

Based on JetBrains' 2025 developer ecosystem report, this article reveals why Java still dominates Chinese enterprises, why Python is essential for AI development, how JavaScript fits the full‑stack future, and which AI coding assistants are gaining traction among local developers.

AI toolsChinaJavaScript
0 likes · 6 min read
Why Java Remains China’s Tech Staple and the Next Languages to Master
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.

BeginnerPythonTutorial
0 likes · 4 min read
Master Python's input() Function: A Beginner’s Guide
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.

AgentEmbeddingFAISS
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.

AutoencoderComputer VisionKeras
0 likes · 7 min read
Using Autoencoders for Industrial Defect Detection
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.

PythonTutorialbasics
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.

Pythoncode readabilitycomments
0 likes · 3 min read
Why Comments Matter in Python: A Beginner’s Guide
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.

GeneratorsMemory OptimizationPython
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
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 simulationPythonfinancial modeling
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.

EmbeddingHybrid SearchPython
0 likes · 23 min read
How to Build a Hybrid Vector‑+‑Text Search with Redis 8 (No GPU Required)
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.

Pythonasynchronous programmingasyncio
0 likes · 20 min read
Master Python asyncio: Make Your Code Fly with Asynchronous Programming
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 testingPythoncareer transition
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 testingDeploymentDocker
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.

ProfilingPythonfile-watching
0 likes · 25 min read
9 Underrated Python Libraries That Can Boost Your Development Speed Tenfold
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
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 trendsGoPython
0 likes · 8 min read
Which Programming Language Will Dominate 2026? A Data‑Driven Verdict
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 AgentLLMLangGraph
0 likes · 18 min read
Build a 2026‑Ready LangGraph AI Agent: A Step‑by‑Step Guide
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.

API monitoringBaselinePython
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.

PythonVector Searchindexing
0 likes · 15 min read
Mastering Redis 8 Vector Search: Indexing, Hybrid Retrieval, and Re‑ranking Techniques