Tagged articles
93 articles
Page 1 of 1
Test Development Learning Exchange
Test Development Learning Exchange
May 2, 2026 · Operations

Give Your Test Scripts a Brain: 15 Cutting‑Edge AI Decorators for 2026

The article showcases fifteen practical AI‑powered Python decorators that transform brittle if‑else test code into intelligent, self‑healing automation—covering smart retry, semantic assertions, data generation, flaky detection, traffic replay, dynamic timeouts, sensitive data masking, root‑cause analysis, and more—complete with concrete code samples and explanations.

AI testingLLMPython
0 likes · 18 min read
Give Your Test Scripts a Brain: 15 Cutting‑Edge AI Decorators for 2026
Test Development Learning Exchange
Test Development Learning Exchange
Apr 22, 2026 · Backend Development

Master Python API Automation with 10 Essential Decorators

This guide shows how to streamline Python API testing by using ten practical decorators—covering automatic retries, timing, token injection, detailed logging, environment skipping, schema validation, timeout enforcement, cleanup, HTTP recording, and concurrent stress testing—each illustrated with real‑world code examples and usage patterns.

API testingPythonautomation
0 likes · 18 min read
Master Python API Automation with 10 Essential Decorators
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
AI Code to Success
AI Code to Success
Jan 21, 2026 · Fundamentals

Why ArkTS Bans any/unknown Types and What It Means for Performance

This article explains ArkTS's strict type restrictions, its use of ESObject for unknown JS types, special limits on interfaces, classes, and decorators, as well as its memory model, closure rules, and the differences between Record and Map containers, highlighting how these design choices improve compilation and runtime efficiency.

AoTTypeScriptarkTS
0 likes · 7 min read
Why ArkTS Bans any/unknown Types and What It Means for Performance
Data STUDIO
Data STUDIO
Jan 19, 2026 · Fundamentals

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

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

PythonRBACRetry
0 likes · 29 min read
10 Advanced Python Decorators to Replace Repetitive if‑else Logic and Clean Up Your Code
Test Development Learning Exchange
Test Development Learning Exchange
May 5, 2025 · Backend Development

Comprehensive Collection of Python Decorators for Logging, Timing, Error Handling, Caching, and More

This article presents a thorough set of Python decorator implementations covering logging, performance timing, exception handling, caching, retry mechanisms, authentication, parameter validation, decorator chaining, JSON response formatting, rate limiting, environment variable injection, response monitoring, custom headers, data transformation, concurrency control, distributed locking, API version control, security auditing, input validation, and output filtering, each with usage examples and sample output.

APIPythondecorators
0 likes · 21 min read
Comprehensive Collection of Python Decorators for Logging, Timing, Error Handling, Caching, and More
Raymond Ops
Raymond Ops
Apr 18, 2025 · Fundamentals

Master Python Class vs Static Methods, Deep/Shallow Copies, and Decorators

This comprehensive guide explains Python’s class and static methods, compares deep and shallow copying techniques, demystifies decorators, and reveals how variables are stored in memory, providing clear examples and best‑practice recommendations for writing efficient, maintainable code.

class methodsdecoratorsdeep copy
0 likes · 13 min read
Master Python Class vs Static Methods, Deep/Shallow Copies, and Decorators
Code Mala Tang
Code Mala Tang
Apr 12, 2025 · Fundamentals

Master Python Decorators: From Simple 2‑Layer to Powerful 3‑Layer Patterns

This article explains Python decorators, describing how they wrap functions to add extra behavior, demonstrates a basic two‑layer decorator with code examples, then extends to parameterized three‑layer decorators, and shows real‑world uses in Flask and Django for routing and access control.

DjangoFlaskWeb Frameworks
0 likes · 6 min read
Master Python Decorators: From Simple 2‑Layer to Powerful 3‑Layer Patterns
Python Programming Learning Circle
Python Programming Learning Circle
Apr 9, 2025 · Fundamentals

10 Practical Python Code Simplification Techniques

This article presents ten concise Python techniques—including list comprehensions, zip, lambda functions, generators, f‑strings, collections, decorators, enumerate, the walrus operator, and itertools—to dramatically reduce code length, improve readability, and boost development efficiency.

GeneratorsPythondecorators
0 likes · 6 min read
10 Practical Python Code Simplification Techniques
php Courses
php Courses
Apr 3, 2025 · Fundamentals

Understanding Higher-Order Functions in Python

This article explains Python's higher-order functions, covering their definition, how they can accept or return other functions, built-in examples like map, filter, reduce, and demonstrates custom higher-order functions, closures, and decorators with practical code snippets.

MAPPythonclosures
0 likes · 6 min read
Understanding Higher-Order Functions in Python
Python Programming Learning Circle
Python Programming Learning Circle
Mar 12, 2025 · Fundamentals

Python Essentials: Strings, Collections, Iterators, and Decorators

This article presents a comprehensive collection of Python fundamentals, covering useful string methods like partition and translate, mutable versus immutable types and argument passing, tuple unpacking, dictionary utilities, set operations, iterator implementations, best practices for exception handling, and various decorator techniques with practical code examples.

CollectionsIteratorsPython
0 likes · 16 min read
Python Essentials: Strings, Collections, Iterators, and Decorators
Test Development Learning Exchange
Test Development Learning Exchange
Mar 5, 2025 · Fundamentals

Understanding Python Classes: Definitions, Attributes, Methods, Inheritance, and Advanced Features

This article provides a comprehensive guide to Python's class mechanism, covering basic class definition and instantiation, attributes, methods, constructors, special methods like __str__, inheritance, polymorphism, class and static methods, private members, and property decorators, each illustrated with clear code examples and practical usage scenarios.

Encapsulationclassesdecorators
0 likes · 9 min read
Understanding Python Classes: Definitions, Attributes, Methods, Inheritance, and Advanced Features
Code Mala Tang
Code Mala Tang
Mar 3, 2025 · Artificial Intelligence

Unlock AI’s Full Potential with Structured Prompt Decorators

Prompt Decorators are structured prefixes that standardize and enhance AI responses, addressing common challenges like vague prompts, inconsistent answers, and lack of reasoning by guiding the model to produce clear, logical, and well‑organized outputs across various use cases.

LLMPrompt engineeringai
0 likes · 23 min read
Unlock AI’s Full Potential with Structured Prompt Decorators
Test Development Learning Exchange
Test Development Learning Exchange
Feb 13, 2025 · Fundamentals

Python Function Fundamentals: Arguments, Lambdas, Decorators, and Advanced Techniques

This tutorial showcases Python function fundamentals such as default and keyword arguments, *args and **kwargs, lambda expressions, higher‑order functions, decorators (with and without parameters), closures, scope modifiers, type hints, and utility modules like functools, inspect, and operator, providing concise code examples for each concept.

Advancedargumentsdecorators
0 likes · 8 min read
Python Function Fundamentals: Arguments, Lambdas, Decorators, and Advanced Techniques
Code Mala Tang
Code Mala Tang
Feb 3, 2025 · Fundamentals

Boost Your Python Code: 5 Powerful Custom Decorators You Must Use

This article explores how Python decorators can eliminate repetitive code, improve performance, enforce type safety, simplify debugging, and implement rate limiting, offering five custom decorator examples with clear explanations and ready-to-use implementations.

code-reusedecoratorsperformance
0 likes · 8 min read
Boost Your Python Code: 5 Powerful Custom Decorators You Must Use
Test Development Learning Exchange
Test Development Learning Exchange
Jan 21, 2025 · Fundamentals

Understanding Python Decorators: Concepts, Examples, and Advanced Usage

This article explains Python decorators as higher‑order functions that can modify or extend the behavior of functions and classes, covering their definition, application with @ syntax, parameterized and class decorators, built‑in decorators, multiple decorator ordering, and includes clear code examples.

Class Decoratorscode-examplesdecorators
0 likes · 6 min read
Understanding Python Decorators: Concepts, Examples, and Advanced Usage
Python Programming Learning Circle
Python Programming Learning Circle
Nov 23, 2024 · Fundamentals

Advanced Python Concepts: Exception Handling, Collections, itertools, Lambdas, Decorators, Generators, Threads, Dunder Methods, Logging, and Context Managers

This article introduces ten advanced Python topics—including exception handling, the collections and itertools modules, lambda functions, decorators, generators, threading, dunder methods, logging, and context managers—providing explanations, code examples, and practical tips to help developers deepen their programming skills and prepare for interviews.

AdvancedCollectionsGenerators
0 likes · 13 min read
Advanced Python Concepts: Exception Handling, Collections, itertools, Lambdas, Decorators, Generators, Threads, Dunder Methods, Logging, and Context Managers
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Oct 16, 2024 · Frontend Development

Common Sliver Decorators in Flutter

This article introduces the most frequently used Flutter Sliver decorators—including SliverToBoxAdapter, SliverFillRemaining, SliverPadding, SliverOpacity, DecoratedSliver, SliverVisibility, SliverOffstage, SliverMainAxisGroup, and SliverAppBar—explains their purposes, provides code examples, and demonstrates a practical scenario for applying them in a CustomScrollView.

CustomScrollViewUIdecorators
0 likes · 13 min read
Common Sliver Decorators in Flutter
Test Development Learning Exchange
Test Development Learning Exchange
Oct 15, 2024 · Fundamentals

Python Fundamentals: Decorators, List Comprehensions, Generators, Exception Handling, Modules, Threading, Copying, Garbage Collection, *args/**kwargs, Closures, Methods, Process vs Thread, Database Differences, Data Structures, and API Testing

This article provides a comprehensive overview of essential Python concepts—including decorators, list comprehensions, generators, exception handling, modules, threading, shallow and deep copying, garbage collection, variable arguments, closures, method types, process‑thread differences, relational vs NoSQL databases, array vs linked‑list structures, and the distinction between HTTP and Web Service API testing—illustrated with clear explanations and runnable code examples.

Data StructuresGeneratorsPython
0 likes · 10 min read
Python Fundamentals: Decorators, List Comprehensions, Generators, Exception Handling, Modules, Threading, Copying, Garbage Collection, *args/**kwargs, Closures, Methods, Process vs Thread, Database Differences, Data Structures, and API Testing
Python Programming Learning Circle
Python Programming Learning Circle
Sep 14, 2024 · Fundamentals

10 Useful Python Decorators with Code Examples

This article introduces ten practical Python decorators—including @timer, @memoize, @validate_input, and others—explaining their purpose, providing detailed code implementations, and demonstrating how they can improve performance, error handling, logging, validation, and visualization in data‑science and general programming tasks.

Error Handlingdecoratorslogging
0 likes · 10 min read
10 Useful Python Decorators with Code Examples
Test Development Learning Exchange
Test Development Learning Exchange
Jul 28, 2024 · Backend Development

Boost API Automation Testing with Parameterized Python Decorators

This guide demonstrates how parameterized Python decorators can streamline repetitive tasks in API automation testing—handling login tokens, retries, environment selection, data‑driven tests, logging, performance monitoring, permission checks, mock responses, cleanup, and test tagging—reducing code duplication and improving maintainability.

API testingBackendCode Examples
0 likes · 8 min read
Boost API Automation Testing with Parameterized Python Decorators
Test Development Learning Exchange
Test Development Learning Exchange
Jun 27, 2024 · Fundamentals

Understanding Python Decorators: Concepts, Use Cases, and Code Examples

Python decorators are special functions that wrap other functions or classes to add functionality without modifying their source code, and this guide explains their principles, common use cases such as logging, timing, caching, and permission checks, and provides ten practical code examples illustrating various decorator patterns.

code-examplesdecoratorssoftware development
0 likes · 7 min read
Understanding Python Decorators: Concepts, Use Cases, and Code Examples
Test Development Learning Exchange
Test Development Learning Exchange
May 25, 2024 · Fundamentals

Advanced pytest Fixtures and Decorators for Test Setup, Skipping, Retries, Parametrization, and More

This article demonstrates how to use pytest fixtures and a collection of custom decorators to handle setup/teardown, conditional skipping, retry logic, parameterized tests, timing, error handling, logging, transaction management, API authentication, response validation, concurrency, data cleanup, performance monitoring, state checks, and test marking in Python testing.

decoratorsfixturespytest
0 likes · 11 min read
Advanced pytest Fixtures and Decorators for Test Setup, Skipping, Retries, Parametrization, and More
Ops Development & AI Practice
Ops Development & AI Practice
May 13, 2024 · Fundamentals

Master Python Decorators: From Basics to Advanced Use Cases

This article explains Python decorators, covering their definition as higher‑order functions, basic syntax, practical examples such as logging, authorization, caching, and nested decorators, and demonstrates how they enhance code modularity, readability, and reusability without altering original functions.

Authorizationcachingcode-reuse
0 likes · 5 min read
Master Python Decorators: From Basics to Advanced Use Cases
Python Programming Learning Circle
Python Programming Learning Circle
May 8, 2024 · Fundamentals

Lesser‑Known Python Tricks and Techniques

This article introduces several lesser‑known Python tricks—including the ternary operator, enumerate, zip, list comprehensions, lambda functions, any/all, itertools, generators, decorators, and the use of * and ** for multiple arguments—each explained with concise examples to help developers write cleaner, more efficient code.

GeneratorsTipscode
0 likes · 7 min read
Lesser‑Known Python Tricks and Techniques
Python Programming Learning Circle
Python Programming Learning Circle
Apr 22, 2024 · Fundamentals

Advanced Python Concepts: Exception Handling, Collections, itertools, Decorators, Generators, and More

This tutorial covers a range of advanced Python topics—including exception handling, the collections module, itertools utilities, lambda functions, decorators, generators, threading, dunder methods, logging, and context managers—to help developers deepen their programming expertise and apply these techniques in real projects.

AdvancedCollectionsGenerators
0 likes · 13 min read
Advanced Python Concepts: Exception Handling, Collections, itertools, Decorators, Generators, and More
Test Development Learning Exchange
Test Development Learning Exchange
Apr 1, 2024 · Fundamentals

Python Syntax Sugar: List, Set, Dictionary Comprehensions and Other Handy Features

This article explains Python's syntax sugar—including list, set, and dictionary comprehensions, conditional expressions, generator expressions, star unpacking, multiple assignment, function annotations, context managers, and property decorators—showing how each feature makes code more concise, readable, and efficient.

decoratorsprogramming-fundamentalssyntax-sugar
0 likes · 4 min read
Python Syntax Sugar: List, Set, Dictionary Comprehensions and Other Handy Features
Python Programming Learning Circle
Python Programming Learning Circle
Feb 17, 2024 · Fundamentals

Common Python Decorators: Usage, Examples, and Implementation

This article introduces Python decorators, explains their syntax, and provides ten practical examples—including timing, caching, input validation, logging, error suppression, output validation, retry logic, visualization, debugging, and deprecation—complete with code snippets and usage guidance for data‑science and general development tasks.

Error Handlingcachingdecorators
0 likes · 9 min read
Common Python Decorators: Usage, Examples, and Implementation
Python Programming Learning Circle
Python Programming Learning Circle
Dec 9, 2023 · Fundamentals

Practical Python Decorators: Timing, Caching, Validation, Logging, and More

This article introduces ten practical Python decorators—including @timer, @memoize, @validate_input, @log_results, @suppress_errors, @validate_output, @retry, @visualize_results, @debug, and @deprecated—explaining their purpose, showing full code implementations, and demonstrating how they can improve performance, reliability, and maintainability of data‑science and general Python projects.

Error Handlingcachingdecorators
0 likes · 9 min read
Practical Python Decorators: Timing, Caching, Validation, Logging, and More
Test Development Learning Exchange
Test Development Learning Exchange
Nov 28, 2023 · Fundamentals

10 Practical Python Decorator Patterns to Supercharge Your Code

This article introduces ten useful Python decorator patterns—such as timing, logging, authentication, caching, input validation, retry, permission checks, type checking, singleton, and call counting—explaining their purpose, providing clear code examples, and showing how to apply them to enhance functions and classes.

Code Examplesbest practicesdecorators
0 likes · 7 min read
10 Practical Python Decorator Patterns to Supercharge Your Code
Python Programming Learning Circle
Python Programming Learning Circle
Sep 2, 2023 · Fundamentals

Python Decorators: Ten Practical Custom Decorators with Code Examples

This article explains Python decorators, a powerful feature for modifying functions or classes, and provides ten practical custom decorators—including @timer, @memoize, @validate_input, @log_results, @suppress_errors, @validate_output, @retry, @visualize_results, @debug, and @deprecated—each with clear explanations and complete code samples.

Pythoncachingdecorators
0 likes · 9 min read
Python Decorators: Ten Practical Custom Decorators with Code Examples
Test Development Learning Exchange
Test Development Learning Exchange
Aug 8, 2023 · Fundamentals

Master Python Metaprogramming: Metaclasses, Decorators, and Property Accessors Explained

Learn how Python's metaprogramming lets you dynamically create, modify, and control classes and functions at runtime, covering metaclasses for singleton patterns and class registration, decorators for caching, timing, and logging, and property accessors for validation and computed attributes, each illustrated with concrete code examples.

BackendPythonTutorial
0 likes · 7 min read
Master Python Metaprogramming: Metaclasses, Decorators, and Property Accessors Explained
Sohu Tech Products
Sohu Tech Products
Jul 26, 2023 · Frontend Development

Six Advanced TypeScript Techniques: Advanced Types, Decorators, Namespaces, Mixins, Type Guards, and Utility Types

This article introduces six advanced TypeScript techniques—advanced types, decorators, namespaces, mixins, type guards, and utility types—providing clear examples and code snippets that demonstrate how to improve code quality, modularity, and type safety in modern JavaScript projects.

MixinsNamespacesTypeScript
0 likes · 17 min read
Six Advanced TypeScript Techniques: Advanced Types, Decorators, Namespaces, Mixins, Type Guards, and Utility Types
Python Programming Learning Circle
Python Programming Learning Circle
Apr 19, 2023 · Fundamentals

Hidden Python Tricks: Ternary Operator, enumerate, zip, List Comprehensions, Lambdas, Generators, Decorators and More

This article introduces a collection of lesser‑known Python techniques—including the ternary operator, enumerate, zip, list comprehensions, lambda functions, any/all, itertools, generators, decorators, dynamic imports, dictionary comprehensions, and mutable data structures—each explained with clear examples to help developers write more concise and efficient code.

Code ExamplesGeneratorsPython
0 likes · 10 min read
Hidden Python Tricks: Ternary Operator, enumerate, zip, List Comprehensions, Lambdas, Generators, Decorators and More
Alipay Experience Technology
Alipay Experience Technology
Mar 20, 2023 · Frontend Development

What’s New in TypeScript 5.0? Explore the Biggest Changes and Features

This article reviews the major updates in TypeScript 5.0, covering new decorator support, the "bundler" moduleResolution option, const type parameters, unified enums, break changes, compiler option enhancements, JSDoc extensions, import‑sorting behavior, and performance improvements, all illustrated with code examples.

TypeScriptcompiler optionsconst assertions
0 likes · 29 min read
What’s New in TypeScript 5.0? Explore the Biggest Changes and Features
IT Services Circle
IT Services Circle
Mar 18, 2023 · Frontend Development

New Features in TypeScript 5.0: Decorators, Const Type Parameters, Module Resolution, JSDoc Enhancements and Performance Improvements

TypeScript 5.0 introduces a host of enhancements—including a new decorator standard, const type parameters, expanded JSDoc support, multiple tsconfig extends, improved module resolution options, verbatim module syntax, and performance optimizations—along with detailed examples and guidance for developers.

Const TypesJSDocTypeScript
0 likes · 26 min read
New Features in TypeScript 5.0: Decorators, Const Type Parameters, Module Resolution, JSDoc Enhancements and Performance Improvements
IT Services Circle
IT Services Circle
Feb 17, 2023 · Fundamentals

Understanding the New Decorator Syntax in TypeScript 5.0: History, Differences, and Practical Examples

This article explores the evolution of JavaScript decorators, the major changes introduced in TypeScript 5.0 beta—including the shift from stage 1 to stage 3 syntax—provides detailed comparisons of class, method, and property decorators, and offers practical code examples for migrating existing code.

JavaScriptStage3TypeScript
0 likes · 18 min read
Understanding the New Decorator Syntax in TypeScript 5.0: History, Differences, and Practical Examples
DaTaobao Tech
DaTaobao Tech
Oct 17, 2022 · Frontend Development

New Features in TypeScript 4.9 Beta

The TypeScript 4.9 beta, released on September 23 2022 and installable via npm or the VS Code Nightly extension, introduces a new satisfies operator, upcoming --noImplicitSuffix option, per‑file @ts‑* directives, refined in operator narrowing, NaN equality warnings, an updated Promise.resolve signature, and preserves import statements in JavaScript files, while postponing full decorator support to version 5.0.

4.9decoratorsmoduleResolution
0 likes · 15 min read
New Features in TypeScript 4.9 Beta
MaGe Linux Operations
MaGe Linux Operations
Oct 2, 2022 · Fundamentals

Master Python Decorators: From Basics to Advanced Usage

This article explains Python decorators by first reviewing functions as first‑class objects, then showing how to create simple timing decorators, extend them with *args/**kwargs, and build higher‑order decorators like a repeat‑n‑times wrapper, complete with practical code examples.

Pythonargsdecorators
0 likes · 9 min read
Master Python Decorators: From Basics to Advanced Usage
Taobao Frontend Technology
Taobao Frontend Technology
Sep 27, 2022 · Fundamentals

What’s New in TypeScript 4.9 Beta? New Decorators, satisfies Operator, and More

TypeScript 4.9 beta introduces ECMAScript‑aligned decorators, a new satisfies operator for safer upcasting, support for .ts import extensions, per‑file tsconfig directives, enhanced in‑operator narrowing, NaN equality warnings, updated Promise.resolve typing, and full retention of JavaScript imports, with installation instructions and migration notes.

BetaType Safetydecorators
0 likes · 16 min read
What’s New in TypeScript 4.9 Beta? New Decorators, satisfies Operator, and More
Python Programming Learning Circle
Python Programming Learning Circle
Aug 16, 2022 · Fundamentals

Exploring Useful Python Decorators: @lru_cache, @jit, @do_twice, @count_calls, @dataclass, @singleton, @use_unit, @singledispatch

This article introduces Python decorators, explains how they can modify function behavior, and provides practical examples of eight useful decorators—including @lru_cache, @jit, @do_twice, @count_calls, @dataclass, @singleton, @use_unit, and @singledispatch—along with code snippets that demonstrate their implementation and benefits.

Code ExamplesJITSingleton
0 likes · 10 min read
Exploring Useful Python Decorators: @lru_cache, @jit, @do_twice, @count_calls, @dataclass, @singleton, @use_unit, @singledispatch
DaTaobao Tech
DaTaobao Tech
Jul 6, 2022 · Fundamentals

TypeScript 4.8 Beta Release: Key Features and Enhancements

TypeScript 4.8 beta, released June 21 2022, adds Stage‑3 decorator groundwork, tighter strict‑null narrowing, more precise template‑literal inference, disables binding‑pattern inference, warns literal === comparisons, and boosts watch/incremental/build performance, while introducing breaking changes to lib.d.ts and JSDoc type imports.

Compiler OptimizationType InferenceType Narrowing
0 likes · 10 min read
TypeScript 4.8 Beta Release: Key Features and Enhancements
Alibaba Terminal Technology
Alibaba Terminal Technology
Apr 21, 2022 · Frontend Development

Explore the Latest TC39 Proposals: Decorators, Type Annotations, and Immutable Array Methods

This article reviews recent TC39 proposal progress—including decorators reaching Stage 3, type annotations advancing to Stage 1, new immutable array methods, RegExp set notation, decorator metadata, and function.once—detailing their syntax, semantics, migration considerations, and example implementations for modern JavaScript development.

JavaScriptTC39decorators
0 likes · 24 min read
Explore the Latest TC39 Proposals: Decorators, Type Annotations, and Immutable Array Methods
Yunxuetang Frontend Team
Yunxuetang Frontend Team
Apr 8, 2022 · Frontend Development

Essential Front-End Tech Insights: SSR, Monitoring, Babel, CSS 2022 & More

This article collection explores key front‑end topics—including Vue server‑side rendering, comprehensive monitoring strategies, Babel compilation fundamentals, the latest CSS 2022 features, and decorator design patterns, and tile‑layout techniques for BI reporting—while also introducing the Cloud Classroom front‑end team.

CSSSSRbabel
0 likes · 4 min read
Essential Front-End Tech Insights: SSR, Monitoring, Babel, CSS 2022 & More
Python Programming Learning Circle
Python Programming Learning Circle
Mar 31, 2022 · Fundamentals

Understanding Python Objects and Class Decorators

This article explains Python's object model, showing that numbers, strings, lists, tuples, sets, dictionaries, functions, classes, and modules are all objects, and then thoroughly introduces decorators, describing their design‑pattern nature, typical uses such as logging and profiling, and demonstrates class‑decorator implementation with practical examples.

Objectsclass-decoratordecorators
0 likes · 3 min read
Understanding Python Objects and Class Decorators
Python Programming Learning Circle
Python Programming Learning Circle
Mar 24, 2022 · Fundamentals

Python Small Examples: From Basics to Advanced Techniques

This article presents a collection of concise Python examples covering fundamental concepts such as truth testing, object representation, dictionary creation, iteration utilities, property decorators, nonlocal usage, custom decorators, file conversion, and data grouping, encouraging readers to practice each snippet for deeper understanding.

Tutorialdata groupingdecorators
0 likes · 11 min read
Python Small Examples: From Basics to Advanced Techniques
Python Programming Learning Circle
Python Programming Learning Circle
Jan 4, 2022 · Fundamentals

Python Processes, Multiprocessing, Decorators, and List Fundamentals

This article introduces Python process concepts, including process creation with the multiprocessing module, process states, comparison with threads, and practical examples of creating, managing, and communicating with processes, followed by a comprehensive overview of Python list types, their structure, operations, and common usage patterns.

PythonThread Comparisondecorators
0 likes · 26 min read
Python Processes, Multiprocessing, Decorators, and List Fundamentals
Taobao Frontend Technology
Taobao Frontend Technology
Apr 2, 2021 · Frontend Development

How Turbox Powers Reactive 3D Frontend Apps with Proxies and Decorators

Turbox is a front‑end framework designed for large‑scale 3D design editors, offering a reactive data‑flow transaction system, decorator‑based model definitions, Proxy‑driven state tracking, middleware, action handling, computed properties, and robust undo/redo mechanisms to streamline complex graphics applications.

ProxyTypeScriptdecorators
0 likes · 35 min read
How Turbox Powers Reactive 3D Frontend Apps with Proxies and Decorators
Node Underground
Node Underground
Nov 10, 2020 · Backend Development

Accelerate Midway Development with a Minimal Swagger Component

This article introduces Midway's lightweight, dependency‑free Swagger component that leverages the framework’s own decorators to generate Swagger‑compatible JSON, explains its advantages and limitations, showcases code examples for multi‑scenario service injection, details recent configuration refactoring that speeds up local development, and highlights new request‑parameter decorators for richer API documentation.

API documentationConfigurationMidway
0 likes · 7 min read
Accelerate Midway Development with a Minimal Swagger Component
MaGe Linux Operations
MaGe Linux Operations
Oct 25, 2020 · Fundamentals

Master Python Decorators: From Basics to Advanced Usage

This article explains what Python decorators are, how they work as closures to extend function behavior without altering source code, and provides clear examples—including basic syntax, syntactic sugar with @, execution timing, common use cases, and advanced patterns such as parameterized, multi‑decorator, and class‑based decorators.

Code Examplesclosuredecorators
0 likes · 9 min read
Master Python Decorators: From Basics to Advanced Usage
Python Programming Learning Circle
Python Programming Learning Circle
May 15, 2020 · Fundamentals

Understanding Python Closures and Decorators

This article explains Python closures and decorators, illustrating how closures capture free variables and how decorators can wrap functions to log calls, handle parameters, and preserve metadata, with clear code examples and step‑by‑step explanations.

Pythonclosuresdecorators
0 likes · 5 min read
Understanding Python Closures and Decorators
Python Programming Learning Circle
Python Programming Learning Circle
May 13, 2020 · Fundamentals

Why Explicit self Must Remain in Python

Bruce Eckel suggested removing the explicit 'self' parameter from Python class methods, but this article explains why keeping 'self' is essential for clear instance referencing, error messages, method types, decorators, and language compatibility, arguing that the proposal would introduce ambiguity and break existing conventions.

Pythondecoratorslanguage design
0 likes · 8 min read
Why Explicit self Must Remain in Python
Python Programming Learning Circle
Python Programming Learning Circle
May 11, 2020 · Fundamentals

Understanding Python Decorators: A Practical Guide

This article explains the concept of Python decorators, demonstrates how they can replace repetitive input‑type checks in multiple string‑manipulation functions, and shows both the explicit decorator implementation and the concise @ syntax with clear code examples.

Pythoncode-reusedecorators
0 likes · 7 min read
Understanding Python Decorators: A Practical Guide
360 Quality & Efficiency
360 Quality & Efficiency
Mar 9, 2020 · Fundamentals

Understanding Python Decorators: Types and a Practical Example

This article explains Python decorators, describing their purpose of adding functionality while preserving original code structure, outlines four decorator types—function‑decorating function, function‑decorating class, class‑decorating function, and class‑decorating class—and demonstrates a practical example that dynamically captures test case names.

decoratorsexamplefundamentals
0 likes · 3 min read
Understanding Python Decorators: Types and a Practical Example
Python Programming Learning Circle
Python Programming Learning Circle
Sep 12, 2019 · Fundamentals

8 Must‑Know Python Features Every Job Seeker Should Master

This article compiles eight representative Python language‑feature questions—covering iterators, generators, decorators, monkey‑patching, identity vs equality, shallow/deep copying, mutability, introspection, and naming conventions—to help candidates ace technical interviews and deepen their core Python knowledge.

IntrospectionIteratorsNamingConventions
0 likes · 10 min read
8 Must‑Know Python Features Every Job Seeker Should Master
MaGe Linux Operations
MaGe Linux Operations
Mar 2, 2019 · Fundamentals

Master Python’s functools: Decorators, partial, caching, and more

This article explores Python’s functools module, demonstrating how to create and use decorators, partial functions, update_wrapper, total_ordering, cmp_to_key, lru_cache, reduce, and singledispatch, with clear code examples that illustrate each utility and its practical applications.

Pythoncachingdecorators
0 likes · 19 min read
Master Python’s functools: Decorators, partial, caching, and more
MaGe Linux Operations
MaGe Linux Operations
Feb 28, 2019 · Fundamentals

5 Compelling Reasons to Master Python Decorators Today

This article explains why learning Python decorators is essential, covering their impact on code readability, logging, validation, framework integration, reuse, and career advancement, while providing clear examples and practical guidance for developers of all levels.

FlaskPythonRetry
0 likes · 9 min read
5 Compelling Reasons to Master Python Decorators Today
AutoHome Frontend
AutoHome Frontend
Jul 19, 2018 · Frontend Development

Why Use ECMAScript Decorators Instead of JavaScript Decorators? A Deep Dive

This article explains the distinction between ECMAScript and JavaScript decorators, walks through the TC39 proposal stages, demonstrates how to work with property descriptors, Object.defineProperty, Object.defineProperties, Object.create, and shows practical examples of method, class‑field, and class decorators using Babel.

Class FieldsECMAScriptJavaScript
0 likes · 16 min read
Why Use ECMAScript Decorators Instead of JavaScript Decorators? A Deep Dive
MaGe Linux Operations
MaGe Linux Operations
May 29, 2018 · Fundamentals

Master Python’s functools: Decorators, Partial, Caching, and More

This article introduces Python’s functools module, explaining how decorators, partial objects, update_wrapper, total_ordering, cmp_to_key, lru_cache, reduce, and singledispatch work, and provides clear code examples that demonstrate their practical use in everyday programming.

Higher-Order Functionscachingdecorators
0 likes · 19 min read
Master Python’s functools: Decorators, Partial, Caching, and More
MaGe Linux Operations
MaGe Linux Operations
Apr 24, 2018 · Fundamentals

5 Compelling Reasons to Master Python Decorators

This article explains why learning to write Python decorators is essential, covering benefits such as improved logging, validation, framework integration, code reuse, retry logic, and career advancement, while providing clear examples and practical code snippets.

Flaskcode-reusedecorators
0 likes · 8 min read
5 Compelling Reasons to Master Python Decorators
MaGe Linux Operations
MaGe Linux Operations
Dec 13, 2017 · Fundamentals

Unlock Python Metaprogramming: Master Metaclasses, Singletons, and Decorators

This article demystifies Python metaprogramming by exploring objects, classes, metaclasses, import‑time vs run‑time behavior, singleton implementations, decorators, and descriptors, showing how to harness these advanced features to write cleaner, more elegant code while explaining underlying concepts and practical examples.

PythonSingletondecorators
0 likes · 9 min read
Unlock Python Metaprogramming: Master Metaclasses, Singletons, and Decorators
MaGe Linux Operations
MaGe Linux Operations
Jul 11, 2017 · Fundamentals

6 Tricky Python Questions Even Experienced Developers Miss

This article presents six challenging Python puzzles—including a hidden list comprehension trap, a tricky class decorator for timing, the nuances of __call__ versus direct invocation, descriptor pitfalls, inheritance quirks, and metaclass‑based singleton implementation—each accompanied by detailed explanations and visual solutions.

AdvancedPythondecorators
0 likes · 6 min read
6 Tricky Python Questions Even Experienced Developers Miss
ITPUB
ITPUB
Feb 15, 2017 · Backend Development

Demystifying Python Decorators: Build a Flask‑Style Router for Tornado

This tutorial explains how Python decorators work, demonstrates a simple decorator that adds database‑connection logic, shows how to return a wrapper function to avoid modifying existing calls, and walks through creating a Flask‑style @router decorator for Tornado web routing.

decoratorssyntactic sugartornado
0 likes · 7 min read
Demystifying Python Decorators: Build a Flask‑Style Router for Tornado
Aotu Lab
Aotu Lab
Oct 28, 2016 · Frontend Development

Mastering JavaScript Decorators: From Python Concepts to ES6 Implementation

This article explains how decorators—originally popularized in Python—can be applied in JavaScript ES6, covering their syntax, class and property use cases, underlying mechanics with Object.defineProperty, and practical Babel transpilation steps.

JavaScriptPythondecorators
0 likes · 10 min read
Mastering JavaScript Decorators: From Python Concepts to ES6 Implementation
MaGe Linux Operations
MaGe Linux Operations
Nov 9, 2015 · Fundamentals

Essential Python Deep‑Dive: Super, Decorators, Metaclasses, and More

This article curates a comprehensive list of advanced Python concepts—including super(), decorators, metaclasses, concurrency, generators, performance tips, and design patterns—providing concise explanations and references to help developers master the language’s most powerful features.

AdvancedDesign PatternsGenerators
0 likes · 6 min read
Essential Python Deep‑Dive: Super, Decorators, Metaclasses, and More
MaGe Linux Operations
MaGe Linux Operations
Apr 27, 2015 · Fundamentals

Master Advanced Python Structures: Comprehensions, Generators, Decorators & More

This guide explores advanced Python design structures—including list comprehensions, generator expressions, zip processing, decorators, context managers, descriptors, metaclasses, and common patterns—explaining their syntax, best‑practice usage, memory implications, and providing clear code examples for each concept.

ComprehensionsGeneratorsPython
0 likes · 18 min read
Master Advanced Python Structures: Comprehensions, Generators, Decorators & More