Tagged articles

Python

5000 articles · Page 2 of 50
Raymond Ops
Raymond Ops
Jun 27, 2026 · Artificial Intelligence

vLLM Quantized Inference: Loading AWQ/GPTQ Models and Optimizing GPU Memory

This article provides a step‑by‑step guide on using vLLM to load AWQ and GPTQ quantized large language models, covering environment setup, calibration data preparation, model quantization, deployment scripts, performance benchmarking, accuracy checks, best‑practice recommendations, and troubleshooting tips for GPU memory optimization.

AWQGPTQGPU memory optimization
0 likes · 45 min read
vLLM Quantized Inference: Loading AWQ/GPTQ Models and Optimizing GPU Memory
Fun with Large Models
Fun with Large Models
Jun 27, 2026 · Artificial Intelligence

Quick Guide to LangChain DeepAgents: Exploring the Production‑Grade DeepAgents Code Framework

This article provides a comprehensive walkthrough of the DeepAgents Code repository, explaining its client‑server architecture, module organization, technology stack—including DeepAgents SDK, Textual UI, SQLite persistence, and streaming protocol—and the design rationale behind building a production‑ready AI agent framework.

AI AgentsDeepAgentsLangChain
0 likes · 14 min read
Quick Guide to LangChain DeepAgents: Exploring the Production‑Grade DeepAgents Code Framework
Lisa Notes
Lisa Notes
Jun 27, 2026 · Artificial Intelligence

Getting Started with Stanford CoreNLP: Tokenization, POS, NER, and Parsing

This guide introduces Stanford CoreNLP, a Python interface for fundamental NLP tasks such as tokenization, part‑of‑speech tagging, named‑entity recognition, constituency and dependency parsing, showing installation steps, model download links, and example outputs.

NLPNamed Entity RecognitionPOS tagging
0 likes · 4 min read
Getting Started with Stanford CoreNLP: Tokenization, POS, NER, and Parsing
IT Services Circle
IT Services Circle
Jun 26, 2026 · Artificial Intelligence

Where to Find Reliable Free Large‑Model APIs for Everyday Developers?

The author built a zero‑cost internal coding assistant using iFlytek's free Qwen3.6‑35B‑A3B and Qwen3.5‑35B‑A3B models, explains why these models were chosen over alternatives, provides a nine‑step guide to claim the free MaaS token quota, shares ready‑to‑run Python code, and reports real‑world performance across code generation, long‑document parsing, and multi‑turn conversations, while also outlining suitable user groups and an optional enterprise Token Plan.

APICode AssistantMaaS
0 likes · 12 min read
Where to Find Reliable Free Large‑Model APIs for Everyday Developers?
DeepHub IMBA
DeepHub IMBA
Jun 25, 2026 · Artificial Intelligence

Transform a Single RAG Pipeline with LangGraph – Agent Picks Vector, Graph or Web Search

This article demonstrates how to use LangGraph to build a state‑machine‑based hybrid RAG agent that routes each query to the most suitable retriever—vector similarity, graph traversal, or web search—through a Router, and then validates answers with grading, rewriting, generation, and hallucination‑checking components.

Agentic RetrievalFAISSLLM
0 likes · 12 min read
Transform a Single RAG Pipeline with LangGraph – Agent Picks Vector, Graph or Web Search
AI Engineering
AI Engineering
Jun 23, 2026 · Industry Insights

After Three Years of Building Scrapers, This One‑Line Tool Beats It

The article analyzes why acquiring public social‑media data is the biggest obstacle for AI‑driven content apps, compares DIY crawlers with commercial solutions, and demonstrates how RedFox’s unified API lets developers fetch multi‑platform data with a single key, minimal code, and lower maintenance costs.

AI dataPythonREST
0 likes · 10 min read
After Three Years of Building Scrapers, This One‑Line Tool Beats It
AI Architecture Path
AI Architecture Path
Jun 21, 2026 · Artificial Intelligence

How Abogen Generates 3,000‑Character Audio in 11 seconds Offline – 4.8k‑Star GitHub TTS Tool

Abogen is an open‑source, fully offline TTS solution that eliminates cloud‑based costs and privacy risks, converts 3,000 characters to a 3‑minute‑28‑second audio file in just 11 seconds, and automatically produces word‑ or sentence‑level synchronized subtitles for e‑books and short‑video scripts.

Audiobook GenerationKokoro ModelOffline Speech Synthesis
0 likes · 13 min read
How Abogen Generates 3,000‑Character Audio in 11 seconds Offline – 4.8k‑Star GitHub TTS Tool
webdream
webdream
Jun 20, 2026 · Artificial Intelligence

Building an Enterprise‑Grade RAG Knowledge Base from Scratch: Architecture, Tech Choices & Pitfalls

The article details how to construct an enterprise‑level Retrieval‑Augmented Generation (RAG) knowledge‑base for the insurance sector, covering architecture, dual‑service Java + Python design, tech selections such as MiMo LLM, BGE‑M3 embeddings, hybrid search, performance‑tuned streaming, permission models, and lessons learned.

Hybrid SearchJavaPython
0 likes · 15 min read
Building an Enterprise‑Grade RAG Knowledge Base from Scratch: Architecture, Tech Choices & Pitfalls
IT Services Circle
IT Services Circle
Jun 20, 2026 · Artificial Intelligence

How I Doubled RAG Accuracy with These Optimizations

This article walks through a complete RAG pipeline, identifying common pitfalls from document preprocessing to prompt construction, and provides concrete Python and Java examples, chunking strategies, embedding tweaks, hybrid retrieval, reranking, advanced techniques, and evaluation methods to reliably double retrieval accuracy.

Artificial IntelligenceJavaPrompt Engineering
0 likes · 35 min read
How I Doubled RAG Accuracy with These Optimizations
Black & White Path
Black & White Path
Jun 19, 2026 · Information Security

Storm-Breaker: A Multi‑Feature Social Engineering Penetration Tool for Red Teams

Storm‑Breaker is an open‑source red‑team framework built with PHP and Python that provides device information harvesting, real‑time location tracking, remote camera and microphone access via deceptive web pages, offers a visual web panel, supports multiple deployment platforms (Kali, macOS, Android/Termux, self‑hosted), and includes installation commands, default credentials, and legal usage guidelines.

PHPPenetration TestingPython
0 likes · 5 min read
Storm-Breaker: A Multi‑Feature Social Engineering Penetration Tool for Red Teams
IT Services Circle
IT Services Circle
Jun 18, 2026 · Fundamentals

8 Python Tricks to Save You 30 Minutes Every Day

The article presents eight practical Python techniques—from using python -m to avoid import errors, leveraging rich for better debugging output, pathlib for path handling, dataclasses to reduce boilerplate, enumerate, proper __main__ guard, perf_counter for benchmarking, and watchdog for hot-reloading—each with code examples, showing how they cut down repetitive tasks and improve productivity.

DebuggingProductivityPython
0 likes · 13 min read
8 Python Tricks to Save You 30 Minutes Every Day
Black & White Path
Black & White Path
Jun 18, 2026 · Information Security

ADPulse: Open‑Source Read‑Only AD Security Scanner with 35 Checks

ADPulse is an open‑source, read‑only Active Directory security scanner that runs 35 built‑in checks, provides a 100‑point risk score, supports Pass‑the‑Hash authentication, and generates console, JSON, or self‑contained HTML reports with a single command, making it suitable for quick AD health assessments and penetration‑test reconnaissance.

AD auditActive DirectoryPass-the-Hash
0 likes · 8 min read
ADPulse: Open‑Source Read‑Only AD Security Scanner with 35 Checks
Raymond Ops
Raymond Ops
Jun 17, 2026 · Databases

Redis Sentinel Mode Explained: Automatic Failure Detection and Master‑Slave Switching in Practice

This guide walks through Redis Sentinel’s architecture, explains subjective and objective down states, details the leader election and failover workflow, shows step‑by‑step configuration of a three‑node Sentinel cluster, client integration in Python and Java, and provides best‑practice recommendations, monitoring metrics, and troubleshooting tips.

ConfigurationFailoverJava
0 likes · 27 min read
Redis Sentinel Mode Explained: Automatic Failure Detection and Master‑Slave Switching in Practice
Java Tech Enthusiast
Java Tech Enthusiast
Jun 17, 2026 · Industry Insights

Which Programming Languages Will Dominate 2025 and Why?

The article argues that "most used" language rankings hide three key facts—companies prioritize stability, hiring pools, and ecosystem maturity—so it breaks down JavaScript/TypeScript, Python, Java, C#/ .NET, C/C++, Go and Rust, and offers practical guidance on choosing the right language for different career paths in 2025.

2025 trendsGoJavaScript
0 likes · 12 min read
Which Programming Languages Will Dominate 2025 and Why?
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 17, 2026 · Operations

5 Essential Python Automation Scenarios for Operations Engineers

The article presents five practical Python automation scenarios for operations engineers—remote command execution, log parsing, system monitoring with alerts, batch software deployment, and backup/recovery—each illustrated with concrete code examples and library recommendations.

AutomationFabricOperations
0 likes · 10 min read
5 Essential Python Automation Scenarios for Operations Engineers
Coder Trainee
Coder Trainee
Jun 16, 2026 · Artificial Intelligence

Building a Data Analysis AI Agent: From Basics to Real‑World Implementation

This article walks through the design and implementation of a data‑analysis AI agent that converts natural‑language queries into SQL, executes them on a SQLite sales database, generates visualizations, and produces insight reports, complete with architecture diagrams and full Python code examples.

AI AgentLLMLangChain
0 likes · 9 min read
Building a Data Analysis AI Agent: From Basics to Real‑World Implementation
IT Services Circle
IT Services Circle
Jun 16, 2026 · Artificial Intelligence

Microsoft’s Open‑Source SkillOpt Supercharges AI Agent Skills, Surpasses 5K GitHub Stars

SkillOpt, an open‑source framework from Microsoft Research, treats skill markdown files as trainable parameters and applies neural‑network optimization techniques across six ReflACT stages, achieving up to 39‑point accuracy gains on 52 benchmark evaluations and demonstrating cross‑model transferability, all while requiring zero inference cost.

AI AgentsGitHubNeural optimization
0 likes · 10 min read
Microsoft’s Open‑Source SkillOpt Supercharges AI Agent Skills, Surpasses 5K GitHub Stars
Coder Trainee
Coder Trainee
Jun 15, 2026 · Artificial Intelligence

Building a Smart AI Coding Assistant: From Design to Real‑World Use

This tutorial walks through the functional planning, project layout, core Python code, context management, FastAPI service, and execution steps needed to create a full‑featured AI coding assistant that can generate, explain, refactor, fix, test, and review code.

AI AgentFastAPILangChain
0 likes · 9 min read
Building a Smart AI Coding Assistant: From Design to Real‑World Use
Data Party THU
Data Party THU
Jun 15, 2026 · Artificial Intelligence

Why Claude Code Uses Exactly 12 Agent Design Patterns—and How to Apply Them

The article breaks down Claude Code's twelve agent design patterns—grouped into memory, workflow, tool‑permission, and automation categories—explaining the architectural pain points each solves, when to use them, signs of over‑design, and provides concrete Python implementations and trade‑off analyses.

Agent Design PatternsClaude CodeMemory Management
0 likes · 22 min read
Why Claude Code Uses Exactly 12 Agent Design Patterns—and How to Apply Them
xkx's Tech General Store
xkx's Tech General Store
Jun 14, 2026 · Fundamentals

Lesson 4: Breaking Down Time Series into Trend, Seasonality, Cycle & Random Noise

This tutorial explains the four fundamental components of a time series—trend, seasonality, cyclicality, and random noise—covers additive and multiplicative decomposition models, provides step‑by‑step Python code with visualizations, and shows how removing these components improves stationarity for forecasting.

Pythonadditive decompositionmultiplicative decomposition
0 likes · 14 min read
Lesson 4: Breaking Down Time Series into Trend, Seasonality, Cycle & Random Noise
SpringMeng
SpringMeng
Jun 14, 2026 · Artificial Intelligence

How I Built an AI Contract Review System for 60,000 RMB in One Month

In 45 days a two‑person team delivered an AI‑powered contract review platform that parses PDFs, extracts key clauses, flags risks, and integrates with enterprise tools, using Python, FastAPI, LangChain, large language models, vector databases and OCR technologies.

AIContract ReviewFastAPI
0 likes · 7 min read
How I Built an AI Contract Review System for 60,000 RMB in One Month
Coder Trainee
Coder Trainee
Jun 12, 2026 · Artificial Intelligence

From Solo to Team: Multi‑Agent Collaboration with AutoGen, CrewAI, and LangGraph

This article explains why a single AI agent often falls short for complex tasks, outlines the benefits of multi‑agent collaboration, compares common architecture patterns, and provides hands‑on examples using AutoGen, CrewAI, and LangGraph, followed by a real‑world customer‑service team case and best‑practice guidelines.

AI AgentsAgent ArchitectureAutoGen
0 likes · 14 min read
From Solo to Team: Multi‑Agent Collaboration with AutoGen, CrewAI, and LangGraph
Data STUDIO
Data STUDIO
Jun 12, 2026 · Fundamentals

8 Python Tricks That Can Save You 30 Minutes Every Day

This article presents eight practical Python techniques—from using python -m to avoid import errors, to pathlib for path handling, dataclasses for boilerplate reduction, rich for pretty debugging, enumerate, proper __main__ guards, perf_counter for accurate timing, and watchdog for hot‑reloading—each designed to eliminate daily friction and boost development efficiency.

ProductivityPythondataclasses
0 likes · 14 min read
8 Python Tricks That Can Save You 30 Minutes Every Day
Coder Trainee
Coder Trainee
Jun 11, 2026 · Artificial Intelligence

Deep Dive into Function Calling for AI Agents: Enabling External Tool Integration

This article explains the concept of Function Calling in large language models, walks through defining function schemas, shows step‑by‑step API call flows, demonstrates multi‑tool orchestration, parallel execution, tool‑chain composition, and integrates Function Calling with LangChain, while providing best‑practice guidelines and code examples.

AI AgentsFunction CallingLangChain
0 likes · 16 min read
Deep Dive into Function Calling for AI Agents: Enabling External Tool Integration
Xike
Xike
Jun 11, 2026 · Artificial Intelligence

Adding Memory: Enabling Multi‑Turn Conversations in an LLM Agent

This guide demonstrates how to replace a simple message list with a ContextManager that tracks user and assistant turns, estimates token usage, applies a sliding‑window truncation based on a token budget, and provides a single build_for_llm entry point to keep multi‑turn dialogues stable and observable.

AgentLLMPython
0 likes · 11 min read
Adding Memory: Enabling Multi‑Turn Conversations in an LLM Agent
Data Party THU
Data Party THU
Jun 11, 2026 · Artificial Intelligence

GBrain’s 14K‑Star Open‑Source System Solves AI Agent Forgetting

GBrain, the open‑source AI agent memory platform with over 14,000 GitHub stars, uses a three‑layer architecture—Markdown‑based truth source, hybrid retrieval with PGLite, and 34 skill workflows—to eliminate agent forgetting, achieve a 31.4% retrieval boost, and provide Python integration via the MCP protocol, while outlining practical deployment pitfalls.

AI memoryAgent ArchitectureHybrid Retrieval
0 likes · 17 min read
GBrain’s 14K‑Star Open‑Source System Solves AI Agent Forgetting
SpringMeng
SpringMeng
Jun 11, 2026 · Artificial Intelligence

From Zero to Agent: My 2‑Month AI Project with Full Open‑Source Learning Roadmap

The article provides a step‑by‑step learning roadmap for beginners to master AI and Agent development, covering essential programming foundations, model APIs, prompt engineering, tool calling, RAG, multi‑stage project builds, evaluation, logging, security, and deployment, with concrete examples and open‑source resources.

AIFastAPIPrompt Engineering
0 likes · 24 min read
From Zero to Agent: My 2‑Month AI Project with Full Open‑Source Learning Roadmap
Su San Talks Tech
Su San Talks Tech
Jun 11, 2026 · Artificial Intelligence

Why MarkItDown Is Dominating GitHub Trending: An In‑Depth AI‑Ready Document Converter

MarkItDown, the Microsoft‑backed open‑source tool that converts PDFs, Word, PPT, images and more into LLM‑friendly Markdown, has surged to over 150 k GitHub stars, and this article explains its architecture, installation, advanced features, strengths, limitations, and how it fits into RAG and AI workflows.

AI preprocessingLLMMCP
0 likes · 20 min read
Why MarkItDown Is Dominating GitHub Trending: An In‑Depth AI‑Ready Document Converter
Python Crawling & Data Mining
Python Crawling & Data Mining
Jun 11, 2026 · Operations

Real Fan Request: Python Automation for Bulk Bill-of-Lading Watermark Replacement (Part 1)

The article outlines a fan's request to automate the replacement of header watermarks in dozens of foreign‑trade bill‑of‑lading .doc files using Python, explains the inefficiency of manual editing, describes converting .doc to .docx and applying python‑docx, and previews a detailed multi‑part walkthrough of the implementation challenges.

AutomationPythonWord
0 likes · 4 min read
Real Fan Request: Python Automation for Bulk Bill-of-Lading Watermark Replacement (Part 1)
DeepHub IMBA
DeepHub IMBA
Jun 10, 2026 · Fundamentals

Getting Started with Pydantic v2: Models, Fields, and Validators

This tutorial walks through every core feature of Pydantic v2 on Python 3.10+, showing how to define models with BaseModel, constrain fields using Field, reuse constraints via Annotated, switch between lax and strict validation modes, write field and model validators, customize serialization, work with nested and recursive models, and generate JSON schemas, all with runnable code examples.

BaseModelFieldPydantic
0 likes · 13 min read
Getting Started with Pydantic v2: Models, Fields, and Validators
Xike
Xike
Jun 10, 2026 · Artificial Intelligence

Step 0: Build a Conversational Entry Point for Your AI Agent

This tutorial launches the Agent series by showing how to create a minimal, CLI‑driven entry point that wraps the model API in a Brain.chat() method, configures credentials via a .env file, handles errors gracefully, maintains multi‑turn conversation state, and outlines the project structure and next development steps.

AI AgentCLIMulti-turn Conversation
0 likes · 15 min read
Step 0: Build a Conversational Entry Point for Your AI Agent
Python Crawling & Data Mining
Python Crawling & Data Mining
Jun 10, 2026 · Artificial Intelligence

Automating Validation of 300,000 Records with Python + AI to Detect Errors and Dirty Data

Even with 99 % accuracy, tens of thousands of errors remain in a 300 k‑row dataset, so the author builds a Python‑AI pipeline that preprocesses images, performs high‑precision OCR, merges data, applies custom validation rules, and automatically generates an error report, dramatically reducing manual effort.

AIAutomationOCR
0 likes · 6 min read
Automating Validation of 300,000 Records with Python + AI to Detect Errors and Dirty Data
James' Growth Diary
James' Growth Diary
Jun 9, 2026 · Artificial Intelligence

How Hermes’s Three‑Way Adapter Unifies Anthropic, Gemini, and Codex APIs

This article explains how Hermes uses three dedicated adapters—anthropic_adapter.py, gemini_native_adapter.py, and codex_responses_adapter.py—to translate the wildly different request and response schemas of Anthropic Messages, Gemini generateContent, and Codex Responses into a single OpenAI‑style chat.completions interface, covering message formats, system prompts, tool calls, reasoning signatures, lazy SDK loading, pure‑function design, and defensive validation.

API IntegrationAnthropicCodex
0 likes · 24 min read
How Hermes’s Three‑Way Adapter Unifies Anthropic, Gemini, and Codex APIs
AI Open-Source Efficiency Guide
AI Open-Source Efficiency Guide
Jun 9, 2026 · Artificial Intelligence

Can GordenSuperPPTSkills End the AI‑PPT Struggle? From Visual Drafts to Editable Slides

The article introduces GordenSuperPPTSkills, an open‑source tool that first uses GPT to generate high‑quality image‑based PPT slides and then reconstructs them into fully editable PPTX files through visual recognition and layer extraction, addressing key pain points of AI‑generated presentations.

AICodexPPT automation
0 likes · 9 min read
Can GordenSuperPPTSkills End the AI‑PPT Struggle? From Visual Drafts to Editable Slides
Coder Trainee
Coder Trainee
Jun 8, 2026 · Artificial Intelligence

Rapidly Build AI Agents with LangChain: A Hands‑On Tutorial

This article walks through why LangChain is the leading framework for AI agents, compares it with low‑level implementations, and provides step‑by‑step code examples for installation, prompt templates, LCEL pipelines, memory modules, RAG, custom tools, and a complete customer‑service agent, concluding with a concise feature comparison.

AI AgentsLLMLangChain
0 likes · 14 min read
Rapidly Build AI Agents with LangChain: A Hands‑On Tutorial
James' Growth Diary
James' Growth Diary
Jun 8, 2026 · Artificial Intelligence

7‑Level Multi‑Provider Fallback: Keeping the Agent Alive When a Model Fails

Hermes Agent’s auxiliary_client.py implements a seven‑level provider fallback chain that ensures auxiliary tasks keep running even if the main LLM crashes, runs out of credits, or hits rate limits, by prioritizing the user’s primary provider, cycling through alternative providers, and handling protocol quirks.

AI AgentsFallbackHermes
0 likes · 14 min read
7‑Level Multi‑Provider Fallback: Keeping the Agent Alive When a Model Fails
Su San Talks Tech
Su San Talks Tech
Jun 8, 2026 · Backend Development

Building an Enterprise Log MCP: A Hands‑On Guide

The article explains why AI alone cannot reliably analyze logs, proposes wrapping an enterprise Loki or Elasticsearch log system with a custom MCP that separates discovery and query layers, discusses transport and authentication choices, provides complete Python implementation, and shares three production lessons to ensure safe, scalable log querying.

AI‑assisted debuggingElasticsearchLogQL
0 likes · 24 min read
Building an Enterprise Log MCP: A Hands‑On Guide
Mingyi World Elasticsearch
Mingyi World Elasticsearch
Jun 7, 2026 · Artificial Intelligence

Build an Enterprise RAG Vector Search System from Scratch with LangChain, Easysearch, and MiMo

This article walks through the complete end‑to‑end pipeline for building a production‑grade RAG system—including document chunking, embedding generation via MiMo, vector storage and kNN retrieval in Easysearch, hybrid search configuration, prompt engineering, answer generation, interactive chat, and a detailed list of common pitfalls and fixes.

EasysearchKNNLangChain
0 likes · 17 min read
Build an Enterprise RAG Vector Search System from Scratch with LangChain, Easysearch, and MiMo
Old Zhang's AI Learning
Old Zhang's AI Learning
Jun 7, 2026 · Artificial Intelligence

Hands‑On LLM Local Deployment: vLLM Inference Optimizations Explained

The article explains why LLM inference is memory‑bound, introduces vLLM’s three core optimizations—Continuous Batching, PagedAttention, and Prefix Caching—shows how to launch a vLLM server, run Python code to benchmark performance, and examines KV‑Cache memory usage with concrete numbers.

KV cacheLLM inferencePagedAttention
0 likes · 11 min read
Hands‑On LLM Local Deployment: vLLM Inference Optimizations Explained
IT Services Circle
IT Services Circle
Jun 7, 2026 · Artificial Intelligence

Why Random Forest Beats Linear Regression: Robust Fitting and Clear Feature Importance

This article explains decision‑tree regression, its limitations, and how Random Forest regression—through bagging, random sub‑features, and averaging—reduces variance, provides out‑of‑bag error estimates, and offers interpretable feature importance, illustrated with a full Python example and visual analysis.

BaggingFeature ImportanceModel Evaluation
0 likes · 16 min read
Why Random Forest Beats Linear Regression: Robust Fitting and Clear Feature Importance
Data Party THU
Data Party THU
Jun 7, 2026 · Frontend Development

Build Web Tools with Python Only: Introducing NiceGUI

This article introduces NiceGUI, a pure‑Python web UI framework that lets developers create fully functional, visually appealing web applications without writing any HTML, CSS, or JavaScript, covering its core concepts, quick‑start example, advanced features, component library, layout system, data‑visualisation integration, multi‑page support, suitable scenarios, and a comparison with traditional web development.

NiceGUINo-code FrontendPython
0 likes · 14 min read
Build Web Tools with Python Only: Introducing NiceGUI
Coder Trainee
Coder Trainee
Jun 6, 2026 · Artificial Intelligence

What Is an AI Agent? From Large Language Models to Autonomous Agents

This article explains why large language models are powerful yet limited, defines AI agents as autonomous systems that combine a model, memory, tools, and actions, details the ReAct reasoning‑and‑acting loop, provides a 30‑line Python LangChain example and a Java Spring AI implementation, and outlines five practical use‑case scenarios and the roadmap for the series.

AI AgentJavaLangChain
0 likes · 10 min read
What Is an AI Agent? From Large Language Models to Autonomous Agents
IT Services Circle
IT Services Circle
Jun 6, 2026 · Fundamentals

Why Modern Languages Are Dropping the C‑Style for Loop

The article explains how C‑style for loops hide many pitfalls, why newer languages like Python, Rust, Swift and Go replace them with safer, more readable constructs, and when the classic C for loop still offers advantages for low‑level and performance‑critical code.

C for loopCode safetyGo
0 likes · 7 min read
Why Modern Languages Are Dropping the C‑Style for Loop
Test Development Learning Exchange
Test Development Learning Exchange
Jun 5, 2026 · Fundamentals

Master Python Syntax Sugar in One Guide

This article systematically introduces the most useful Python syntax sugar—from variable swapping and chain comparisons to comprehensions, decorators, context managers, argument packing, unpacking, ternary expressions, and f‑strings—showing concise examples and explaining why each feature makes code clearer and more Pythonic.

Pythonargument-unpackingcontext-managers
0 likes · 11 min read
Master Python Syntax Sugar in One Guide
Data STUDIO
Data STUDIO
Jun 5, 2026 · Artificial Intelligence

12 Reusable Agentic Harness Patterns: When to Use and Avoid Over‑Design

The article breaks down twelve reusable Agentic Harness design patterns extracted from Claude Code, grouping them into memory, workflow, tool‑permission, and automation categories, explains the architectural pain points each solves, shows when to apply or over‑engineer them, and provides concrete Python implementations.

Agentic HarnessDesign PatternsMemory Management
0 likes · 21 min read
12 Reusable Agentic Harness Patterns: When to Use and Avoid Over‑Design
Geek Labs
Geek Labs
Jun 4, 2026 · Artificial Intelligence

Three Popular Open‑Source AI Coding Projects: CodeWhale Agent, Free Claude Code Proxy, and Gemini‑Web2API

This article introduces three open‑source AI programming tools—CodeWhale, a Rust‑based terminal assistant with multi‑mode control and git snapshots; free‑claude‑code, a Python proxy that routes Claude Code requests through alternative models; and gemini‑web2api, a lightweight Python bridge that exposes Gemini Web as an OpenAI‑compatible API—detailing their features, installation steps, and usage considerations.

AI codingCodeWhalePython
0 likes · 8 min read
Three Popular Open‑Source AI Coding Projects: CodeWhale Agent, Free Claude Code Proxy, and Gemini‑Web2API
Advanced AI Application Practice
Advanced AI Application Practice
Jun 4, 2026 · Operations

Boost Test Report Writing Efficiency by 90% with the test-report-writer Skill

The article describes how the test-report-writer skill automates the collection, analysis, and formatting of test case and bug data into a structured, eight‑section report in just five minutes, cutting manual effort from over an hour to a few minutes while ensuring consistent metrics, risk assessment, and release recommendations.

AIPythonWorkBuddy
0 likes · 11 min read
Boost Test Report Writing Efficiency by 90% with the test-report-writer Skill
Test Development Learning Exchange
Test Development Learning Exchange
Jun 3, 2026 · Backend Development

How to Prevent Dirty Data in API Tests with Effective Cleanup Strategies

The article explains why dirty data appears in API automation tests, outlines five practical cleanup strategies—including teardown, setup, transaction rollback, unique ID isolation, and data‑factory soft deletes—and provides a complete Pytest‑based Python implementation with code examples and special‑case handling to keep test environments clean and reliable.

API testingAutomationDatabase
0 likes · 16 min read
How to Prevent Dirty Data in API Tests with Effective Cleanup Strategies
Lisa Notes
Lisa Notes
Jun 3, 2026 · Artificial Intelligence

Fundamentals of NLP: Core Tasks, Tool Setup, and Hands‑On Projects

This article introduces the basics of Natural Language Processing, covering core tasks such as language understanding and generation, common applications, essential linguistic analyses, environment setup with Python libraries, hands‑on code examples for preprocessing, POS tagging, NER, sentiment analysis using both classical and transformer models, text generation with GPT‑2, and discusses challenges and Rust‑centric integration strategies.

NLPNatural Language ProcessingPython
0 likes · 13 min read
Fundamentals of NLP: Core Tasks, Tool Setup, and Hands‑On Projects
Java Backend Technology
Java Backend Technology
Jun 3, 2026 · Artificial Intelligence

Why MarkItDown’s 104K Stars Keep It at the Top of GitHub Trending

MarkItDown, a Microsoft‑maintained Python tool that converts PDFs, Word, PPT, audio and video into structured Markdown, has surged past 104 000 stars and repeatedly topped GitHub’s weekly trending list by addressing RAG‑related document‑conversion pain points, offering a universal MCP interface for AI agents, and enjoying strong community adoption.

AI AgentMCPMarkItDown
0 likes · 10 min read
Why MarkItDown’s 104K Stars Keep It at the Top of GitHub Trending
Linyb Geek Road
Linyb Geek Road
Jun 3, 2026 · Artificial Intelligence

Practical Harness Engineering: The Most Effective Way to Understand Harnesses

The article presents a hands‑on exploration of Harness Engineering for AI agents, detailing a four‑layer Python harness built with DeepSeek API, step‑by‑step safety experiments, and iterative improvements that demonstrate how precise constraints make powerful agents reliably controllable.

AI AgentsControl TheoryDeepSeek API
0 likes · 8 min read
Practical Harness Engineering: The Most Effective Way to Understand Harnesses
Data STUDIO
Data STUDIO
Jun 2, 2026 · Fundamentals

Python 3.15 Arrives: Boost Speed Without Changing a Single Line

Python 3.15 brings lazy imports, a built‑in frozendict type, unpacking in comprehensions, JIT improvements, the Tachyon sampling profiler, default UTF‑8 encoding, GC rollback and .start files, delivering up to 12‑13% faster execution on ARM Macs and offering a step‑by‑step migration guide for data engineers.

GCJITPython
0 likes · 18 min read
Python 3.15 Arrives: Boost Speed Without Changing a Single Line
Data STUDIO
Data STUDIO
Jun 1, 2026 · Artificial Intelligence

Build a CLI AI Agent in Just 250 Python Lines

This tutorial walks through seven incremental stages—starting with a simple while‑True loop and adding tool‑calling, dynamic skill loading, slash commands, JSON persistence, automatic context compression, and a background timed loop—to create a fully functional CLI AI Agent using Ollama and the local qwen3.5 model without GPU or API keys.

AI AgentCLIOllama
0 likes · 15 min read
Build a CLI AI Agent in Just 250 Python Lines
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 1, 2026 · Artificial Intelligence

How Front‑End Developers Can Transition to AI Agent Engineering by 2026: A Complete Guide

This article analyses why front‑end engineers face shrinking opportunities by 2026, explains the rise of AI Agent technology, compares the required skill sets, outlines realistic salary expectations, and provides a step‑by‑step roadmap for a successful career shift into AI Agent development.

AI AgentLLMPrompt Engineering
0 likes · 20 min read
How Front‑End Developers Can Transition to AI Agent Engineering by 2026: A Complete Guide
Liangxu Linux
Liangxu Linux
May 31, 2026 · Fundamentals

Why Modern Languages Drop the Classic C‑Style for Loop

The article examines the hidden pitfalls of C‑style for loops, explains how languages like Python, Rust, Swift and Go replace them with safer, more readable constructs, and discusses when the traditional C for loop remains advantageous for low‑level or performance‑critical code.

C languageCode safetyGo
0 likes · 7 min read
Why Modern Languages Drop the Classic C‑Style for Loop
AI Architecture Path
AI Architecture Path
May 31, 2026 · Artificial Intelligence

Zero‑Barrier AI Short‑Video Generator: From Theme to Daily Posts with MoneyPrinterTurbo (70K+ Stars)

Creating short‑form videos is notoriously time‑consuming, but the open‑source MoneyPrinterTurbo tool automates the entire pipeline—from theme input to script,素材, voice‑over, subtitles and rendering—using Claude models, runs on low‑end hardware, and offers both Python and Docker deployment options with detailed troubleshooting and quality‑boosting tips.

AI video generationAutomationClaude
0 likes · 13 min read
Zero‑Barrier AI Short‑Video Generator: From Theme to Daily Posts with MoneyPrinterTurbo (70K+ Stars)
IT Services Circle
IT Services Circle
May 30, 2026 · Industry Insights

Why AI Coding CLIs Are Switching to TypeScript: The kimi-cli Refactor Story

The article examines the rapid shift of AI coding command‑line tools from Python to TypeScript, using the kimi-cli rewrite as a case study, and explains how Bun’s native binary support, distribution challenges of Python, and industry momentum make TypeScript the dominant choice for end‑user CLI tools.

AI CLIBunCLI distribution
0 likes · 7 min read
Why AI Coding CLIs Are Switching to TypeScript: The kimi-cli Refactor Story
Geek Labs
Geek Labs
May 30, 2026 · Industry Insights

Weekly GitHub Picks: WeChat Bill Viewer, Kimi Code Assistant, Pianke, PoC-Lab

Each week we spotlight four trending GitHub repos—a desktop Electron tool that visualizes WeChat payment CSVs, the Kimi AI‑powered code assistant that understands whole‑project context, the lightweight Python‑based Pianke for local markdown note‑taking, and the PoC‑Lab collection of multi‑platform vulnerability exploitation scripts.

AIElectronGitHub
0 likes · 8 min read
Weekly GitHub Picks: WeChat Bill Viewer, Kimi Code Assistant, Pianke, PoC-Lab
AI Agent Super App
AI Agent Super App
May 29, 2026 · Databases

Why SQLite Is the World's Most Deployed Database—and How to Use It End‑to‑End

SQLite, the server‑less, single‑file database engine, is the most widely deployed database on the planet, powering Android, iOS, browsers and countless desktop apps; this article walks through its core features, Linux installation, command‑line CRUD, language bindings for Python, C, Java and Go, plus practical backup and performance tricks.

C++CLIDatabase
0 likes · 21 min read
Why SQLite Is the World's Most Deployed Database—and How to Use It End‑to‑End
DeepHub IMBA
DeepHub IMBA
May 28, 2026 · Artificial Intelligence

AutoGen Multi‑Agent Demo: Coder, Reviewer, and Executor Automatically Complete a Code Review

The article explains how Microsoft’s AutoGen framework enables a Planner‑Executor‑Critic loop and a three‑agent GroupChat workflow, providing step‑by‑step Python code that configures AssistantAgent, UserProxyAgent, and ReviewerAgent to generate, review, and execute code automatically, and discusses the system’s advantages, scalability, and real‑world deployments.

AutoGenGroupChatLLM
0 likes · 13 min read
AutoGen Multi‑Agent Demo: Coder, Reviewer, and Executor Automatically Complete a Code Review
Geek Labs
Geek Labs
May 28, 2026 · Artificial Intelligence

What Your AI Coding Agent Is Doing Behind the Scenes: 4 Visual Tools to See Its Status Instantly

The article reviews four open‑source projects—Clawd on Desk, Codex on Desk, Star Office UI, and Clawmetry—that visualize the real‑time status of AI coding agents, comparing their features, supported agents, technology stacks, visual styles, and use cases to help developers choose the most suitable tool.

AI AgentsDesktop PetElectron
0 likes · 7 min read
What Your AI Coding Agent Is Doing Behind the Scenes: 4 Visual Tools to See Its Status Instantly
AI Engineering
AI Engineering
May 28, 2026 · Artificial Intelligence

Webwright Lets Browser Agents Move Beyond Guessing the Next Click

Microsoft's newly open‑sourced Webwright framework replaces the traditional step‑by‑step LLM decision loop with code‑generated Playwright scripts, stores all state locally, achieves SOTA benchmark results on Online‑Mind2Web and Odysseys, integrates with major agent ecosystems, and offers auditability and reusable automation.

LLM AutomationMicrosoftPlaywright
0 likes · 9 min read
Webwright Lets Browser Agents Move Beyond Guessing the Next Click
DeepHub IMBA
DeepHub IMBA
May 27, 2026 · Artificial Intelligence

Testing Four Non‑Vector RAG Approaches: BM25, GraphRAG, Tree Search, and Agentic Search

The article evaluates four non‑vector Retrieval‑Augmented Generation methods—BM25 lexical search, GraphRAG graph traversal, Tree‑Search document navigation, and an Agentic search loop—using a small JSON‑based corpus, showing each method’s strengths, weaknesses, and when to combine them for production‑grade retrieval.

Agentic SearchBM25GraphRAG
0 likes · 12 min read
Testing Four Non‑Vector RAG Approaches: BM25, GraphRAG, Tree Search, and Agentic Search
AI Architect Hub
AI Architect Hub
May 27, 2026 · R&D Management

Hermes Kanban Deep Dive with a Real-World Public Account Matrix Management System

This article explains Hermes Kanban's multi‑agent orchestration features, core concepts, and a step‑by‑step case study that builds a public‑account matrix management system, demonstrating task decomposition, parallel execution, dependency handling, human intervention, and best‑practice guidelines.

Hermes KanbanMulti-agentPython
0 likes · 15 min read
Hermes Kanban Deep Dive with a Real-World Public Account Matrix Management System
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
May 27, 2026 · Artificial Intelligence

Building a Multimodal Search with Alibaba Cloud Elasticsearch and Qwen‑VL

This article demonstrates how to integrate Alibaba Cloud Elasticsearch with the Qwen‑VL large model and DashScope Embedding API to extract image features and perform multimodal vector search, covering text‑to‑image, text‑to‑text, image‑to‑image, and image‑to‑text queries, with step‑by‑step code, environment setup, data loading, indexing, and a Streamlit demo.

AI EmbeddingDashScopeElasticsearch
0 likes · 8 min read
Building a Multimodal Search with Alibaba Cloud Elasticsearch and Qwen‑VL
Big Data Technology Tribe
Big Data Technology Tribe
May 27, 2026 · Fundamentals

Understanding the Internals of Lance’s describe_indices() Method

The article walks through Lance’s describe_indices() workflow—from reading the manifest and caching index metadata, through optional filtering and grouping by logical index name, to building human‑readable index descriptions and highlighting differences from load_indices and index_statistics, while noting edge cases and limitations.

LancePythonRust
0 likes · 13 min read
Understanding the Internals of Lance’s describe_indices() Method
Architect's Ambition
Architect's Ambition
May 26, 2026 · Artificial Intelligence

Choosing CLI vs MCP for Enterprise AI Agents: A Hybrid Approach Balancing Cost and Effectiveness

The article compares CLI and MCP as integration methods for enterprise AI agents, presents benchmark data showing CLI's lower cost and higher reliability, explains why MCP is needed for compliance and structured data, and recommends a "CLI‑first, MCP‑supplement" architecture with reusable Python or Java implementations across multiple AI tools.

AI AgentCLIJava
0 likes · 24 min read
Choosing CLI vs MCP for Enterprise AI Agents: A Hybrid Approach Balancing Cost and Effectiveness
Ubuntu
Ubuntu
May 26, 2026 · Fundamentals

Choosing the Right Python Environment on WSL: venv vs conda vs uv

This guide compares Python virtual‑environment tools—pip + venv, Miniconda, and the new uv—detailing installation steps, performance differences, use‑case recommendations, and practical commands for setting up a consistent development environment on Ubuntu WSL.

PythonVS CodeWSL
0 likes · 12 min read
Choosing the Right Python Environment on WSL: venv vs conda vs uv
Su San Talks Tech
Su San Talks Tech
May 25, 2026 · Artificial Intelligence

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

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

BM25ChunkingPython
0 likes · 48 min read
Mastering RAG: Chunking, Embeddings, BM25 & Multi‑Index Retrieval in Python
IT Services Circle
IT Services Circle
May 24, 2026 · Fundamentals

Common Python Operator Mistakes and How to Use Them Correctly

The article explains why beginners often misuse ^, &, and | in Python—mistaking them for exponentiation or logical operators—and clarifies the proper use of bitwise operators, the ** exponent operator, and the logical and/or keywords with concrete code examples.

Pythonbitwiseexponentiation
0 likes · 4 min read
Common Python Operator Mistakes and How to Use Them Correctly
Data Party THU
Data Party THU
May 24, 2026 · Artificial Intelligence

How Graphify Builds Codebase Knowledge Graphs and Replaces Vector Search with Graph Traversal

Graphify is a Python tool and Claude Code skill that creates a persistent, queryable knowledge graph of code, documentation, and media, cutting token usage by up to 71.5× compared with raw file reads, and it does so through a three‑pass pipeline that combines deterministic AST extraction, optional local audio transcription, and AI‑driven semantic extraction.

Claude CodeKnowledge GraphLLM
0 likes · 13 min read
How Graphify Builds Codebase Knowledge Graphs and Replaces Vector Search with Graph Traversal
SuanNi
SuanNi
May 23, 2026 · Artificial Intelligence

Deploy the Open-Source ChatLaw Legal LLM on the SuanWang Platform

This article introduces ChatLaw, an open‑source legal large language model trained on 936,727 real cases, explains its high‑dimensional embedding ChatLaw‑Text2Vec for fast knowledge alignment, and provides a step‑by‑step guide to deploy it on the SuanWang cloud platform using Python and MLU resources.

ChatLawLLMPython
0 likes · 3 min read
Deploy the Open-Source ChatLaw Legal LLM on the SuanWang Platform
DeepHub IMBA
DeepHub IMBA
May 23, 2026 · Artificial Intelligence

Reason → Act → Observe: Building an Agentic Loop with LangChain and Python

This article explains what an agentic loop is, contrasts it with single‑pass chatbots, outlines its five stages, shows a visual architecture, walks through a concrete multi‑step example, provides Python pseudocode and a LangChain implementation, and discusses when to use or avoid such loops.

AI AgentsAgentic LoopLLM
0 likes · 8 min read
Reason → Act → Observe: Building an Agentic Loop with LangChain and Python
Shuge Unlimited
Shuge Unlimited
May 23, 2026 · Artificial Intelligence

Why Hermes Agent Manages 40+ Built‑in Tools Without a Config File

The article dissects Hermes Agent’s tool system, explaining its four‑layer architecture, singleton registry, import‑based auto‑registration, AST discovery, argument coercion, async bridging, error handling, schema design, toolset composition, and best‑practice recommendations, all backed by concrete code examples and design rationale.

AI AgentsFunction CallingHermes Agent
0 likes · 21 min read
Why Hermes Agent Manages 40+ Built‑in Tools Without a Config File
DeepHub IMBA
DeepHub IMBA
May 22, 2026 · Fundamentals

Inside Python’s Automatic Memory Management: Core Mechanisms and Optimization Guide

The article breaks down Python’s memory system layer by layer, explaining stack vs. heap, reference counting, generational garbage collection, the true effect of the del statement, built‑in optimizations like integer caching, string interning and __slots__, and shows how to process a 20 GB CSV efficiently with generators.

Garbage CollectionMemory ManagementOptimization
0 likes · 12 min read
Inside Python’s Automatic Memory Management: Core Mechanisms and Optimization Guide
Java Tech Enthusiast
Java Tech Enthusiast
May 21, 2026 · Industry Insights

May 2026 TIOBE Rankings Reveal a Major Shift in Statistical Programming Languages

The May 2026 TIOBE index shows R rebounding to #8, Python and R dominating the statistical programming market, older tools like MATLAB and SAS slipping, Julia still outside the top 30, while emerging languages such as Stan and Zig climb, highlighting a profound consolidation driven by ecosystem strength and AI compatibility.

Language PopularityProgramming LanguagesPython
0 likes · 7 min read
May 2026 TIOBE Rankings Reveal a Major Shift in Statistical Programming Languages
Data STUDIO
Data STUDIO
May 21, 2026 · Operations

How I Migrated 5 Python Projects to UV in One Hour and Cut CI Time by 5×

The article explains why pip is fundamentally slower, describes UV's Rust‑based architecture—including PubGrub conflict‑driven learning, hard‑link global caching, and async parallel I/O—shows benchmark numbers, provides step‑by‑step migration commands, discusses cross‑platform lockfiles, and highlights OpenAI's acquisition as a signal of AI‑driven tooling importance.

Package ManagementPythonci optimization
0 likes · 17 min read
How I Migrated 5 Python Projects to UV in One Hour and Cut CI Time by 5×
Su San Talks Tech
Su San Talks Tech
May 20, 2026 · Artificial Intelligence

Why Convert Docs to Markdown for LLMs? Meet the Open‑Source MarkItDown Tool

The article explains that LLMs process Markdown more effectively than raw PDFs, introduces Microsoft’s open‑source MarkItDown utility that converts a wide range of file types—including PDFs, Word, Excel, HTML, images with OCR, and YouTube videos—into clean Markdown, and provides installation, usage examples, recent feature updates, and a brief critique of its scope.

Azure Document IntelligenceCLILLM preprocessing
0 likes · 6 min read
Why Convert Docs to Markdown for LLMs? Meet the Open‑Source MarkItDown Tool