Tagged articles
5000 articles
Page 13 of 50
Cognitive Technology Team
Cognitive Technology Team
Mar 6, 2025 · Artificial Intelligence

From Traditional Machine Learning to Deep Learning: A Comprehensive Guide to Algorithms, Feature Engineering, and Model Training

This article provides a step‑by‑step tutorial that walks readers through the fundamentals of traditional machine‑learning algorithms, feature‑engineering techniques, model training pipelines, evaluation metrics, and then advances to deep‑learning concepts such as MLPs, activation functions, transformers, and modern recommendation‑system models.

Deep LearningModel TrainingPython
0 likes · 63 min read
From Traditional Machine Learning to Deep Learning: A Comprehensive Guide to Algorithms, Feature Engineering, and Model Training
Test Development Learning Exchange
Test Development Learning Exchange
Mar 6, 2025 · Fundamentals

Understanding Class Attributes in Object‑Oriented Programming with Examples

This article explains the concept of class attributes in object‑oriented programming, contrasts them with instance attributes, and demonstrates ten practical scenarios—including shared data, default values, instance counting, singleton and factory patterns—through clear Python code examples and usage guidelines.

Class AttributesFactoryPython
0 likes · 10 min read
Understanding Class Attributes in Object‑Oriented Programming with Examples
Raymond Ops
Raymond Ops
Mar 5, 2025 · Fundamentals

Master Python ThreadPool and ProcessPool: Boost Concurrency and Performance

This article explains Python's multithreading and multiprocessing concepts, compares thread pools and process pools, provides practical code examples for task execution and file downloading, and offers performance tips and best practices for writing efficient concurrent programs.

PythonThreadPoolmultiprocessing
0 likes · 14 min read
Master Python ThreadPool and ProcessPool: Boost Concurrency and Performance
Python Programming Learning Circle
Python Programming Learning Circle
Mar 5, 2025 · Fundamentals

Implementing a Python Singleton with Decorators

This article explains the singleton design pattern in Python, demonstrates how to implement it using a decorator with a wrapper class, provides step‑by‑step code examples, discusses its advantages, appropriate use cases, and cautions against overuse.

DecoratorPythonSingleton
0 likes · 7 min read
Implementing a Python Singleton with Decorators
Test Development Learning Exchange
Test Development Learning Exchange
Mar 5, 2025 · Fundamentals

Comprehensive Guide to File Operations in Python

This article provides a thorough introduction to Python file operations, covering basic concepts, opening and closing files, reading and writing techniques, advanced methods like binary handling and file pointer control, and includes practical code examples and best‑practice recommendations.

Code ExamplesFile I/OPython
0 likes · 8 min read
Comprehensive Guide to File Operations in Python
Open Source Tech Hub
Open Source Tech Hub
Mar 4, 2025 · Backend Development

Unlock Python Power in PHP with phpy: New Features and Practical Examples

This article introduces phpy, an open‑source bridge that lets PHP import and execute Python packages, and walks through its latest features such as the with‑syntax, socket handle conversion, exception propagation, slicing, enum definition, annotated functions, and environment variable handling with concrete code samples.

InteropPythonSocket
0 likes · 8 min read
Unlock Python Power in PHP with phpy: New Features and Practical Examples
Data STUDIO
Data STUDIO
Mar 4, 2025 · Backend Development

Super‑Modern Python Tools for 2025: Boosting Efficiency and Code Quality

This article reviews a suite of modern Python utilities—including uv for version management, Ruff for fast linting, mypy for static typing, Typer for type‑hinted CLI creation, and Rich for terminal styling—explaining their features, performance benefits, and practical usage examples on Python 3.11.

PythonRuffTyper
0 likes · 21 min read
Super‑Modern Python Tools for 2025: Boosting Efficiency and Code Quality
Code Mala Tang
Code Mala Tang
Mar 4, 2025 · Fundamentals

10 Game-Changing Python Performance Hacks You Should Know

This article presents ten practical Python performance optimization techniques—including list comprehensions, built‑in functions, generator expressions, set lookups, multiprocessing, caching, itertools, Cython/Numba, and profiling—to help developers write faster, more efficient code for large data and CPU‑intensive tasks.

Code EfficiencyPythonPython Best Practices
0 likes · 9 min read
10 Game-Changing Python Performance Hacks You Should Know
Code Mala Tang
Code Mala Tang
Mar 4, 2025 · Fundamentals

Essential Python Libraries: 100 Must‑Have Packages for Every Developer

This article presents a curated list of 100 essential Python libraries covering web development, AI and machine learning, data science, automation, DevOps, security, databases, game development, and various utility tools, helping developers boost productivity across diverse projects.

Data SciencePythonWeb Development
0 likes · 14 min read
Essential Python Libraries: 100 Must‑Have Packages for Every Developer
Python Programming Learning Circle
Python Programming Learning Circle
Mar 3, 2025 · Backend Development

ProgressPal: A Python Progress Tracker for Functions, Iterables, and Logs with Distributed and Parallel Support

ProgressPal is a Python library that extends tqdm‑style progress bars to track functions, iterables, and log messages across threads, processes, and distributed systems, offering a web‑based dashboard, logging server, and easy integration with threading, concurrent.futures, and joblib for collaborative monitoring.

Distributed MonitoringPythonprogress tracking
0 likes · 7 min read
ProgressPal: A Python Progress Tracker for Functions, Iterables, and Logs with Distributed and Parallel Support
Test Development Learning Exchange
Test Development Learning Exchange
Mar 3, 2025 · Fundamentals

Understanding Function Calls and References in Python

This article explains the core concepts of function calls and references in Python, covering basic definitions, common calling methods, advanced applications such as passing functions as arguments, returning functions, using functions as objects, and includes numerous code examples illustrating direct calls, indirect calls, decorators, closures, and callbacks.

Function CallsFunction ReferencesHigher-Order Functions
0 likes · 9 min read
Understanding Function Calls and References in Python
Test Development Learning Exchange
Test Development Learning Exchange
Mar 2, 2025 · Fundamentals

Understanding Python Anonymous Functions (Lambda) with Practical Examples

This article introduces Python's anonymous (lambda) functions, explains their syntax and typical use cases, and provides a series of clear code examples—including calculations, map/filter/sorted operations, reduce, callbacks, and string formatting—while highlighting important considerations for readability and limitations.

Code ExamplesLambdaPython
0 likes · 11 min read
Understanding Python Anonymous Functions (Lambda) with Practical Examples
Test Development Learning Exchange
Test Development Learning Exchange
Mar 2, 2025 · Fundamentals

Common Python Built‑in Functions with Examples

This article introduces Python's most frequently used built-in functions, such as len, type, print, range, sum, and others, providing clear explanations, practical use cases, and complete code examples to help readers understand and apply these essential tools for efficient programming.

Code ExamplesPythonTutorial
0 likes · 13 min read
Common Python Built‑in Functions with Examples
Code Mala Tang
Code Mala Tang
Mar 2, 2025 · Fundamentals

6 Surprising Python Dictionary Tricks You Probably Didn’t Know

Discover six unexpected Python dictionary features—from insertion-order preservation in Python 3.7+, safe key access with .get(), immutable key requirements, the power of collections.defaultdict, the concise merge operator | in Python 3.9+, to using popitem() for stack-like behavior—each illustrated with clear code examples.

Code ExamplesData StructuresPython
0 likes · 4 min read
6 Surprising Python Dictionary Tricks You Probably Didn’t Know
Code Mala Tang
Code Mala Tang
Mar 1, 2025 · Fundamentals

Why Python’s deque Beats Lists for Fast Insertions: A Practical Guide

This article explains why Python lists are slow for head insertions and deletions, introduces the deque data structure from the collections module, compares their time complexities, and shows practical scenarios and code examples where deque provides superior performance and thread‑safety.

Data StructuresListPython
0 likes · 7 min read
Why Python’s deque Beats Lists for Fast Insertions: A Practical Guide
Test Development Learning Exchange
Test Development Learning Exchange
Feb 28, 2025 · Fundamentals

Understanding and Using Python Functions: Definitions, Examples, and Best Practices

This article introduces Python functions, explains their syntax and various use cases, and provides numerous code examples—including basic definitions, parameters, return values, default arguments, variable arguments, keyword arguments, docstrings, recursion, lambda expressions, higher‑order functions, and nested functions—to help readers write clean, reusable, and efficient code.

Code ExamplesPythonTutorial
0 likes · 8 min read
Understanding and Using Python Functions: Definitions, Examples, and Best Practices
Code Mala Tang
Code Mala Tang
Feb 28, 2025 · Fundamentals

Why AI Code Generation Needs Test‑Driven Development: Avoid Hidden Bugs

This article explains how AI‑generated code can be fast but unreliable, and demonstrates how applying Test‑Driven Development (TDD) with concrete Python examples catches errors like stack overflows, edge‑case failures, and security issues, ensuring robust, maintainable software.

AIPythonSoftware Testing
0 likes · 13 min read
Why AI Code Generation Needs Test‑Driven Development: Avoid Hidden Bugs
Code Mala Tang
Code Mala Tang
Feb 28, 2025 · Fundamentals

What’s New in Python 3.14 Alpha 3? Explore Key Features and Timeline

Python 3.14.0 Alpha 3 introduces delayed annotation evaluation, a new configuration C API, Sigstore‑based package verification, and improved error messages, while outlining critical release dates and how developers can test and contribute to the upcoming Python version.

Alpha ReleasePEP 649PEP 741
0 likes · 7 min read
What’s New in Python 3.14 Alpha 3? Explore Key Features and Timeline
Test Development Learning Exchange
Test Development Learning Exchange
Feb 28, 2025 · Fundamentals

Understanding Python Sets: Definition, Operations, and Practical Examples

This article introduces Python's set data structure, explains its unordered, unique, and mutable characteristics, demonstrates how to create sets, and provides eleven practical code examples covering basic definitions, element addition and removal, set operations like union, intersection, difference, subset checks, deduplication, iteration, and conditional filtering.

Data StructuresPythonSet
0 likes · 7 min read
Understanding Python Sets: Definition, Operations, and Practical Examples
Test Development Learning Exchange
Test Development Learning Exchange
Feb 28, 2025 · Fundamentals

Python Slicing: Syntax, Examples, and Best Practices

This article introduces Python's slicing syntax, explains its parameters, and provides eleven practical examples ranging from basic string and list slicing to advanced uses like negative indices, step values, and slice assignment, while highlighting performance considerations and best practices.

ListsPythonSlicing
0 likes · 8 min read
Python Slicing: Syntax, Examples, and Best Practices
ShiZhen AI
ShiZhen AI
Feb 27, 2025 · Artificial Intelligence

Step‑by‑Step Guide: Build Your Own Lerobot SO‑ARM100 Robotic Arm from Scratch

This article walks you through the entire process of assembling a low‑cost Lerobot SO‑ARM100 6‑DOF robotic arm, configuring its Feetech servos, calibrating motion, adding dual cameras for teleoperation, collecting a dataset, and training a reinforcement‑learning policy locally or on cloud GPUs, with detailed troubleshooting tips and code examples.

LerobotPythonReinforcement Learning
0 likes · 16 min read
Step‑by‑Step Guide: Build Your Own Lerobot SO‑ARM100 Robotic Arm from Scratch
AI Code to Success
AI Code to Success
Feb 27, 2025 · Artificial Intelligence

Master Decision Trees: Theory, Construction, and Python Implementation

This article provides a comprehensive guide to decision tree algorithms, covering their theoretical foundations, key components, construction workflow—including data preprocessing, feature selection, tree growth, stopping criteria, and pruning—followed by an overview of popular variants like ID3, C4.5, CART, practical advantages, applications, and a complete Python implementation using scikit-learn.

Pythonclassificationdata preprocessing
0 likes · 29 min read
Master Decision Trees: Theory, Construction, and Python Implementation
Test Development Learning Exchange
Test Development Learning Exchange
Feb 26, 2025 · Fundamentals

Understanding Python's range() Function: Syntax, Usage, and Practical Examples

This article introduces Python's built‑in range() function, explains its syntax and parameters, and provides ten clear code examples that demonstrate basic counting, custom start‑stop values, step sizes, reverse iteration, list creation, summation, string traversal, bulk list updates, 2‑D coordinate generation, and spaced element access.

LoopsPythoniteration
0 likes · 7 min read
Understanding Python's range() Function: Syntax, Usage, and Practical Examples
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
Feb 25, 2025 · Artificial Intelligence

Accelerate DeepSeek‑V2‑Lite Deployment with FlashMLA: A Step‑by‑Step Guide

This tutorial walks users through installing FlashMLA, integrating it with the vLLM framework, downloading the DeepSeek‑V2‑Lite‑Chat model, benchmarking various MLA implementations, and running a local inference demo that shows FlashMLA’s speed advantage on long‑sequence generation.

DeepSeekFlashMLAInferenceOptimization
0 likes · 16 min read
Accelerate DeepSeek‑V2‑Lite Deployment with FlashMLA: A Step‑by‑Step Guide
FunTester
FunTester
Feb 25, 2025 · Industry Insights

From Manual Tester to Automation Engineer: A Complete Career Roadmap and Learning Guide

This comprehensive guide walks software testers through the transition from basic functional testing to advanced automation, performance, and DevOps roles, offering a detailed learning roadmap, practical tips, and curated resources to boost skills, increase marketability, and secure higher‑pay positions in the testing industry.

Career DevelopmentPerformance TestingPython
0 likes · 28 min read
From Manual Tester to Automation Engineer: A Complete Career Roadmap and Learning Guide
AI Code to Success
AI Code to Success
Feb 25, 2025 · Artificial Intelligence

Master Logistic Regression: Theory, Practice, and Real‑World Tips

This comprehensive guide explains logistic regression fundamentals, the role of the Sigmoid function, loss and optimization methods, step‑by‑step Python implementation with data preparation, model training, evaluation, hyper‑parameter tuning, handling over‑ and under‑fitting, multi‑class extensions, and diverse application scenarios across medicine, finance, e‑commerce, and text analysis.

Model EvaluationPythonclassification
0 likes · 23 min read
Master Logistic Regression: Theory, Practice, and Real‑World Tips
Ops Development & AI Practice
Ops Development & AI Practice
Feb 24, 2025 · Fundamentals

Why Pipx Is the Secret Weapon for Clean Python Tool Management

pipx is a Python‑based CLI utility that installs and runs other Python command‑line tools in isolated virtual environments, keeping the global Python setup clean; the article explains its core features, why Ansible recommends it, its popularity, pros and cons, and provides step‑by‑step installation instructions.

AnsibleCLI toolsPython
0 likes · 7 min read
Why Pipx Is the Secret Weapon for Clean Python Tool Management
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Feb 24, 2025 · Artificial Intelligence

Generate Game Code Instantly with DeepSeek V3 on Huawei Cloud

This tutorial walks you through configuring a Huawei Cloud host, installing the AutoGen framework, setting up DeepSeek V3 model API keys, and using the model to automatically generate Python code for a graphical two‑player battle game, complete with step‑by‑step instructions and sample commands.

AI code generationAutoGenDeepSeek
0 likes · 9 min read
Generate Game Code Instantly with DeepSeek V3 on Huawei Cloud
AI Code to Success
AI Code to Success
Feb 24, 2025 · Artificial Intelligence

Master Linear Regression: Concepts, Math, and Python Implementation

This comprehensive guide explores linear regression from its fundamental concepts and mathematical foundations to practical Python implementation with scikit‑learn, covering single‑ and multiple‑variable models, assumptions, loss functions, OLS and gradient‑descent solutions, evaluation metrics, advantages, limitations, and real‑world case studies.

Model EvaluationPythongradient descent
0 likes · 21 min read
Master Linear Regression: Concepts, Math, and Python Implementation
Python Programming Learning Circle
Python Programming Learning Circle
Feb 22, 2025 · Fundamentals

10 Practical Python Scripts for Automation and Everyday Tasks

This article presents ten ready‑to‑use Python scripts covering file renaming, web image downloading, automated email sending, password generation, Excel processing, image compression, weather querying, PDF merging, text‑to‑speech conversion, and a simple Snake game, each with clear code examples and usage tips.

PythonScriptingutilities
0 likes · 10 min read
10 Practical Python Scripts for Automation and Everyday Tasks
Test Development Learning Exchange
Test Development Learning Exchange
Feb 22, 2025 · Fundamentals

Python Input/Output and Data Type Conversion Tutorial

This article introduces Python's input and output functions and demonstrates various data type conversion techniques through practical code examples, helping readers master essential programming fundamentals for building functional applications and improves their ability to handle user interaction and data processing.

Input/OutputPythondata type conversion
0 likes · 7 min read
Python Input/Output and Data Type Conversion Tutorial
Code Mala Tang
Code Mala Tang
Feb 21, 2025 · Fundamentals

10 Must‑Try Python Scripts to Supercharge Your Daily Tasks

This guide presents ten practical Python scripts—from batch file renaming and web‑image downloading to email automation, password generation, Excel processing, image compression, weather lookup, PDF merging, text‑to‑speech, and a simple Snake game—each explained with clear scenarios, code examples, results, and handy tips for both beginners and seasoned developers.

PythonTutorialproductivity
0 likes · 10 min read
10 Must‑Try Python Scripts to Supercharge Your Daily Tasks
Python Programming Learning Circle
Python Programming Learning Circle
Feb 21, 2025 · Fundamentals

Comprehensive Overview of Common Sorting Algorithms with Python Implementations

This article provides a detailed introduction to common sorting algorithms—including bubble, selection, insertion, shell, merge, quick, heap, counting, bucket, and radix sorts—explaining their principles, time complexities, stability, and offering complete Python implementations with step-by-step explanations and visual demonstrations.

PythonSortingcomplexity
0 likes · 21 min read
Comprehensive Overview of Common Sorting Algorithms with Python Implementations
Java Tech Enthusiast
Java Tech Enthusiast
Feb 21, 2025 · Fundamentals

TIOBE February 2025 Language Rankings and Performance Overview

The TIOBE February 2025 index shows Python leading, C++ rising to second, Go staying in the top ten and Rust hitting a 1.47 % share, while a 1‑billion‑loop benchmark on a MacBook Pro finds Zig, Rust and C finishing in ~0.5 s versus Python’s 31.6 s and R’s 72.6 s, and survey data highlight Python’s dominance across data analysis, web development, DevOps, web crawling, machine learning and education.

PythonRustTIOBE Index
0 likes · 6 min read
TIOBE February 2025 Language Rankings and Performance Overview
Test Development Learning Exchange
Test Development Learning Exchange
Feb 21, 2025 · Fundamentals

Understanding Variable Definition and Usage in Python

This article introduces Python variable fundamentals, explaining how to define, assign, and manipulate variables of various types—including integers, floats, strings, booleans, lists, and dictionaries—through ten clear examples that illustrate common programming scenarios.

PythonTutorialVariables
0 likes · 5 min read
Understanding Variable Definition and Usage in Python
Sohu Tech Products
Sohu Tech Products
Feb 19, 2025 · Mobile Development

Appium Mobile UI Automation Testing Workflow with Python

This guide walks through setting up Appium with the UiAutomator2 driver, verifying the environment, writing a Python script that connects to the Appium server, using weditor or uiautomatorviewer to inspect Android UI elements, and applying ID or XPath locators to automate clicks in the Zepp app.

AndroidAppiumMobile Automation
0 likes · 8 min read
Appium Mobile UI Automation Testing Workflow with Python
AI Algorithm Path
AI Algorithm Path
Feb 19, 2025 · Artificial Intelligence

How Temperature Shapes Output in Large Language Models

The article explains the Temperature hyper‑parameter in large language models, shows how it modifies the softmax distribution, provides a Python visualisation script, and demonstrates through experiments that higher values increase creativity while lower values make outputs more deterministic.

PythonSamplingSoftmax
0 likes · 5 min read
How Temperature Shapes Output in Large Language Models
Java Architecture Stack
Java Architecture Stack
Feb 19, 2025 · Fundamentals

Master Python Linked List: Reverse and Merge Techniques Explained

This article explains practical Python implementations for reversing a linked list using iterative and recursive approaches, merging two or multiple sorted linked lists, handling edge cases such as empty inputs, and includes complete code samples with complexity analysis for each method.

Data StructuresPythonalgorithm
0 likes · 12 min read
Master Python Linked List: Reverse and Merge Techniques Explained
MaGe Linux Operations
MaGe Linux Operations
Feb 19, 2025 · Fundamentals

Master Python Iterators & Generators: List Comprehensions, Memory‑Efficient Loops, and Fibonacci

This article explains Python's list comprehensions, demonstrates how to create and use generators for memory‑efficient iteration, compares iterators and iterable objects, and provides practical code examples including a generator‑based Fibonacci sequence, helping readers understand and apply these core concepts in their programs.

GeneratorsIteratorsPython
0 likes · 6 min read
Master Python Iterators & Generators: List Comprehensions, Memory‑Efficient Loops, and Fibonacci
AI Code to Success
AI Code to Success
Feb 19, 2025 · Artificial Intelligence

How to Build Traffic‑Sign Recognition and Sentiment Analysis with Keras – A Step‑by‑Step Guide

This article walks through practical Keras tutorials for image‑based traffic‑sign classification and text‑based sentiment analysis, covering data preparation, preprocessing, model construction, training, evaluation, deployment, and a concise comparison of Keras with TensorFlow and PyTorch.

Deep LearningImage ClassificationKeras
0 likes · 19 min read
How to Build Traffic‑Sign Recognition and Sentiment Analysis with Keras – A Step‑by‑Step Guide
AI Algorithm Path
AI Algorithm Path
Feb 18, 2025 · Artificial Intelligence

Build DeepSeek‑R1 from Scratch: Complete Training Process with Code Walkthrough

This article provides a step‑by‑step, code‑first guide to reproducing DeepSeek‑R1 from the ground up, covering model selection, dataset preparation, custom reward functions, GRPO reinforcement‑learning training, supervised fine‑tuning, reasoning‑oriented RL, rejection sampling, and model distillation.

DeepSeek-R1LLM trainingPython
0 likes · 48 min read
Build DeepSeek‑R1 from Scratch: Complete Training Process with Code Walkthrough
Top Architecture Tech Stack
Top Architecture Tech Stack
Feb 18, 2025 · Backend Development

Step-by-Step Guide: Integrating DeepSeek API with a WeChat Public Account on a Cloud Server

This tutorial walks beginners through obtaining a DeepSeek API key, configuring a WeChat public account, setting up an Alibaba Cloud ECS instance, installing required dependencies, editing configuration files, and running the chatgpt‑on‑wechat project to enable AI‑powered replies via the WeChat platform.

DeepSeekPythonTutorial
0 likes · 13 min read
Step-by-Step Guide: Integrating DeepSeek API with a WeChat Public Account on a Cloud Server
Test Development Learning Exchange
Test Development Learning Exchange
Feb 17, 2025 · Frontend Development

Using Playwright for Advanced UI Automation: Page Navigation, Alerts, Scrolling, Drag‑Drop, and Browser History

This article explains how to use Playwright with Python to automate complex web interactions such as multi‑page navigation, new‑tab handling, alert/confirm/prompt dialogs, scrolling, drag‑and‑drop, and browser history manipulation, providing clear code examples for each scenario.

Browser InteractionPlaywrightPython
0 likes · 5 min read
Using Playwright for Advanced UI Automation: Page Navigation, Alerts, Scrolling, Drag‑Drop, and Browser History
Python Programming Learning Circle
Python Programming Learning Circle
Feb 17, 2025 · Frontend Development

Eight Python GUI Libraries for Building Desktop Applications

This article introduces eight Python GUI frameworks—including Tkinter, PyQt5, PySimpleGUI, Kivy, wxPython, Toga, Dear PyGui, and Streamlit—explaining their features, providing code examples, and offering a small exercise to create a simple calculator, helping developers quickly build desktop apps.

KivyPythonStreamlit
0 likes · 9 min read
Eight Python GUI Libraries for Building Desktop Applications
Test Development Learning Exchange
Test Development Learning Exchange
Feb 17, 2025 · Frontend Development

Playwright Guide: Form Filling, File Upload/Download, Keyboard Shortcuts, and Validation in UI Automation

This article demonstrates how to use Playwright for UI automation by showing how to fill various form fields, upload and download files, simulate keyboard shortcuts and combinations, and handle form validation and errors, providing complete Python code examples for each scenario.

Form TestingPlaywrightPython
0 likes · 7 min read
Playwright Guide: Form Filling, File Upload/Download, Keyboard Shortcuts, and Validation in UI Automation
21CTO
21CTO
Feb 16, 2025 · Artificial Intelligence

How to Deploy Your Own DeepSeek LLM Locally: Step-by-Step Guide

This guide walks you through setting up a local DeepSeek large language model, covering environment preparation, model acquisition, dependency installation, FastAPI service creation, Docker containerization, optional front‑end interface, performance tuning, and common troubleshooting steps.

AI modelDeepSeekDocker
0 likes · 7 min read
How to Deploy Your Own DeepSeek LLM Locally: Step-by-Step Guide
Test Development Learning Exchange
Test Development Learning Exchange
Feb 15, 2025 · Frontend Development

Getting Started with Playwright: Introduction, Installation, Browser Setup, and Configuration

This article introduces Playwright, explains its key features, guides readers through installing the tool and its dependencies, demonstrates how to launch Chromium, Firefox, and WebKit browsers with Python code, and shows common configuration options such as headless mode, timeouts, and proxy settings.

PlaywrightPythonUI testing
0 likes · 5 min read
Getting Started with Playwright: Introduction, Installation, Browser Setup, and Configuration
Python Programming Learning Circle
Python Programming Learning Circle
Feb 15, 2025 · Backend Development

Proper Python Configuration for Multi‑Environment Applications

This article explains how to structure Python projects so that configuration is managed through packages and environment variables, enabling seamless deployment across development, testing, staging, and production environments without code changes, while illustrating best practices with clear examples and code snippets.

BackendConfigurationDeployment
0 likes · 12 min read
Proper Python Configuration for Multi‑Environment Applications
Test Development Learning Exchange
Test Development Learning Exchange
Feb 15, 2025 · Fundamentals

Overview of Common Python Built‑in Functions, itertools, and operator Utilities

This article introduces essential Python built‑in functions such as map, filter, reduce, sorted, any, all, zip, enumerate, and utilities from functools, itertools, and operator modules, providing concise explanations and practical code examples for each to help readers master fundamental programming techniques.

OperatorPythonbuilt-in functions
0 likes · 8 min read
Overview of Common Python Built‑in Functions, itertools, and operator Utilities
Code Mala Tang
Code Mala Tang
Feb 15, 2025 · Fundamentals

Unlock Full CPU Power in Python: A Hands‑On Guide to Multiprocessing

This article explains why Python’s Global Interpreter Lock limits CPU core usage, introduces the multiprocessing module for parallel execution of CPU‑intensive tasks, and provides step‑by‑step code examples, key concepts, synchronization tools, a real‑world image‑processing case, and best practices to dramatically speed up your programs.

CPU BoundParallelismPython
0 likes · 9 min read
Unlock Full CPU Power in Python: A Hands‑On Guide to Multiprocessing
Python Programming Learning Circle
Python Programming Learning Circle
Feb 14, 2025 · Backend Development

Python Project Ideas for Intermediate Developers: Web, GUI, and CLI Applications

This article presents thirteen practical Python project ideas for intermediate developers, covering web scrapers, URL shorteners, regex tools, note‑taking apps, quizzes, media players, alarm utilities, file managers, accounting tools, address books, site checkers, bulk renamers, and directory tree generators, each with technical details and optional challenges.

CLIGUIPython
0 likes · 15 min read
Python Project Ideas for Intermediate Developers: Web, GUI, and CLI Applications
Test Development Learning Exchange
Test Development Learning Exchange
Feb 14, 2025 · Fundamentals

Python Date and Time Modules Overview

This article provides a comprehensive overview of Python's core date and time handling modules, including datetime, time, calendar, dateutil, and zoneinfo, with practical examples and installation instructions for advanced functionality.

Pythondate handlingdatetime
0 likes · 3 min read
Python Date and Time Modules Overview
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
Feb 14, 2025 · Big Data

How MaxCompute Powers Intelligent Data Warehousing in the Data+AI Era

This article summarizes a meetup talk by Alibaba Cloud expert Yu Deshui, detailing MaxCompute’s evolution, serverless architecture, AI‑enabled features, and the platform’s comprehensive solutions—including OpenLake, MaxFrame, Object Table, near‑real‑time computing, and AI Functions—to address the challenges of modern data‑centric AI workloads.

AI integrationBig DataMaxCompute
0 likes · 13 min read
How MaxCompute Powers Intelligent Data Warehousing in the Data+AI Era
AI Algorithm Path
AI Algorithm Path
Feb 13, 2025 · Artificial Intelligence

How to Build a Local RAG Knowledge Base with DeepSeek‑R1 and Ollama

This article walks through setting up a local Retrieval‑Augmented Generation (RAG) system using the open‑source DeepSeek‑R1 model run via Ollama, covering installation, model selection, PDF ingestion with LangChain, semantic chunking, FAISS vector store creation, RetrievalQA chain construction, and a Streamlit UI for querying.

DeepSeek-R1FAISSLangChain
0 likes · 8 min read
How to Build a Local RAG Knowledge Base with DeepSeek‑R1 and Ollama
DataFunSummit
DataFunSummit
Feb 13, 2025 · Big Data

E‑commerce Data Scraping: Fundamentals, Tools, Python Scripts, and Challenges

This tutorial explains e‑commerce web scraping fundamentals, covering definitions, tool types, data categories, step‑by‑step Python script creation with Requests, BeautifulSoup, and Selenium, provides sample code for Amazon, Walmart, and eBay, discusses challenges like dynamic pages and anti‑scraping measures, and recommends using specialized scraping APIs.

Bright DataData ExtractionPython
0 likes · 15 min read
E‑commerce Data Scraping: Fundamentals, Tools, Python Scripts, and Challenges
Code Mala Tang
Code Mala Tang
Feb 13, 2025 · Fundamentals

Top 10 VS Code Extensions to Supercharge Your Python Development

Discover the ten most essential VS Code extensions for Python that boost productivity, improve code quality, and streamline debugging, covering everything from intelligent code completion and formatting to version control insights and Jupyter notebook integration.

ExtensionsPythonVS Code
0 likes · 6 min read
Top 10 VS Code Extensions to Supercharge Your Python Development
AI Code to Success
AI Code to Success
Feb 13, 2025 · Artificial Intelligence

Why PyTorch Is the Go-To Framework for Modern AI Development

This article introduces PyTorch, explains its dynamic computation graph, Python‑centric design, and tensor operations, surveys its major applications in computer vision, natural language processing, and reinforcement learning, and provides a step‑by‑step tutorial for building and training a multilayer perceptron on the MNIST dataset.

Deep LearningDynamic Computation GraphMNIST
0 likes · 11 min read
Why PyTorch Is the Go-To Framework for Modern AI Development
Test Development Learning Exchange
Test Development Learning Exchange
Feb 12, 2025 · Operations

20 Python Automation Scripts for Common Tasks

This article presents twenty practical Python scripts that automate everyday tasks such as batch file renaming, email sending, scheduling reminders, generating reports, backing up files, updating Excel sheets, downloading web pages, filling forms, extracting PDF text, converting file formats, visualizing data, and more, providing ready-to-use code examples for each.

OperationsPythonScripting
0 likes · 10 min read
20 Python Automation Scripts for Common Tasks
Alimama Tech
Alimama Tech
Feb 12, 2025 · Artificial Intelligence

HighService: A High‑Performance Pythonic AI Service Framework for Model Inference and Global Resource Scheduling

HighService, Alibaba’s Pythonic AI service framework, accelerates large‑model inference and maximizes GPU utilization by separating CPU‑GPU processes, offering out‑of‑the‑box quantization, parallelism and caching, and dynamically reallocating idle GPUs across clusters through a master‑worker scheduler to keep online latency low while boosting offline throughput for diffusion and LLM workloads.

AI ServiceDistributed SystemsPython
0 likes · 16 min read
HighService: A High‑Performance Pythonic AI Service Framework for Model Inference and Global Resource Scheduling
Python Programming Learning Circle
Python Programming Learning Circle
Feb 12, 2025 · Fundamentals

Top 25 Pandas Tricks for DataFrame Manipulation and Analysis

This tutorial showcases a comprehensive set of pandas techniques—including reading data from the clipboard, random sampling, multi‑condition filtering, handling missing values, string splitting, list expansion, multi‑function aggregation, slicing, descriptive statistics, categorical conversion, DataFrame styling, and profiling—to efficiently explore and transform DataFrames in Python.

ProfilingPythondata-analysis
0 likes · 11 min read
Top 25 Pandas Tricks for DataFrame Manipulation and Analysis
AI Code to Success
AI Code to Success
Feb 11, 2025 · Artificial Intelligence

Unlocking TensorFlow: From Basics to Building Your First Linear Regression Model

This article introduces TensorFlow's core concepts—tensors, computational graphs, variables, and sessions—covers its wide range of AI applications from traditional machine learning to deep learning in NLP and computer vision, and provides a step‑by‑step Python tutorial for implementing a simple linear regression model.

AI TutorialDeep LearningNeural Networks
0 likes · 6 min read
Unlocking TensorFlow: From Basics to Building Your First Linear Regression Model
Test Development Learning Exchange
Test Development Learning Exchange
Feb 8, 2025 · Fundamentals

Using Python’s os, sys, and os.path Modules: Common Operations and Code Examples

This article introduces Python’s os, sys, and os.path modules, demonstrating how to retrieve the current working directory, create and delete directories, list files, execute system commands, access interpreter information, handle command‑line arguments, redirect I/O, and manipulate file paths with practical code snippets.

OS modulePythonfile-handling
0 likes · 4 min read
Using Python’s os, sys, and os.path Modules: Common Operations and Code Examples
21CTO
21CTO
Feb 8, 2025 · Artificial Intelligence

Can Java Overtake Python in AI? Insights from the 2025 Azul Report

A recent Azul Systems study suggests that Java may surpass Python in enterprise AI development within the next 18‑36 months, highlighting Java's scalability, performance, and emerging GPU projects while acknowledging cultural and tooling advantages that still favor Python.

AIDevOpsEnterprise
0 likes · 9 min read
Can Java Overtake Python in AI? Insights from the 2025 Azul Report