Tagged articles
29 articles
Page 1 of 1
php Courses
php Courses
Jul 10, 2025 · Backend Development

10 Must‑Know PHP 8.3 Features to Supercharge Your Code in 2024

This article introduces ten powerful PHP 8.3 updates—including readonly properties, enums, match expressions, constructor promotion, named arguments, nullsafe operator, union types, array unpacking, JSON error handling, and JIT compilation—explaining how each feature works and how it can boost development efficiency.

BackendNew FeaturesPHP8
0 likes · 4 min read
10 Must‑Know PHP 8.3 Features to Supercharge Your Code in 2024
Python Crawling & Data Mining
Python Crawling & Data Mining
Jun 20, 2025 · Fundamentals

7 Creative Ways to Clean Up Strings in a Python List

This article explores a Python list string‑replacement problem and demonstrates seven distinct solutions—including simple replace loops, set‑based approaches, regular expressions, and comprehension techniques—providing clear code examples and results for each method.

code-exampleslist-processingset-comprehension
0 likes · 8 min read
7 Creative Ways to Clean Up Strings in a Python List
macrozheng
macrozheng
May 23, 2025 · Backend Development

Boost Java Productivity: 17 Essential Utility Classes Every Backend Developer Should Know

This article introduces 17 practical Java utility classes—including Collections, CollectionUtils, Lists, Objects, BooleanUtils, StringUtils, Assert, IOUtils, MDC, ClassUtils, BeanUtils, ReflectionUtils, Base64Utils, StandardCharsets, DigestUtils, SerializationUtils, and HttpStatus—showing how to use them with clear code examples to streamline everyday development tasks.

BackendJavacode-examples
0 likes · 30 min read
Boost Java Productivity: 17 Essential Utility Classes Every Backend Developer Should Know
Test Development Learning Exchange
Test Development Learning Exchange
Feb 10, 2025 · Fundamentals

Common Uses of Python Dictionaries with Code Examples

This article explains eight practical applications of Python dictionaries—including data mapping, configuration management, counting, caching, graph representation, grouping, statistical analysis, and simple database simulation—each illustrated with clear code snippets.

code-examplesdata-structuresdictionary
0 likes · 4 min read
Common Uses of Python Dictionaries with Code Examples
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
Jan 8, 2025 · Fundamentals

Python Built-in Functions and Common Usage Guide

This article provides a comprehensive overview of Python's built-in functions, data types, numeric conversions, mathematical operations, data structures, string handling, scope utilities, iterator tools, dynamic code execution, and file and module operations, complete with practical code examples for each concept.

Data TypesPythonTutorial
0 likes · 17 min read
Python Built-in Functions and Common Usage Guide
Test Development Learning Exchange
Test Development Learning Exchange
Dec 29, 2024 · Fundamentals

Understanding Python's del Statement and Garbage Collection

This article explains how Python's del statement removes variable references, how the interpreter's garbage collection mechanisms reclaim memory—including reference counting and cyclic‑reference detection—and provides multiple code examples demonstrating proper resource cleanup in automated testing scenarios.

Garbage CollectionMemory Managementcode-examples
0 likes · 7 min read
Understanding Python's del Statement and Garbage Collection
Test Development Learning Exchange
Test Development Learning Exchange
Nov 11, 2024 · Fundamentals

36 Frequently Used Python Built-in Functions with Usage Scenarios and Code Examples

This article presents 36 commonly used Python built‑in functions, describing each function’s purpose, typical use cases such as debugging, data conversion, iteration, and includes concise code snippets demonstrating how to apply them, helping readers improve programming efficiency and understanding.

built-in-functionscode-examples
0 likes · 11 min read
36 Frequently Used Python Built-in Functions with Usage Scenarios and Code Examples
Test Development Learning Exchange
Test Development Learning Exchange
Oct 6, 2024 · Fundamentals

Comprehensive Python Basics: Syntax, Data Structures, File I/O, Functions, OOP, Exceptions, Math, Regex, File System, and Network Requests

This tutorial presents a comprehensive collection of Python programming fundamentals, covering basic syntax, data structures, file operations, functions, object‑oriented concepts, exception handling, mathematical computations, regular expressions, file system manipulation, and network requests, each illustrated with clear code examples.

code-examplesprogramming
0 likes · 22 min read
Comprehensive Python Basics: Syntax, Data Structures, File I/O, Functions, OOP, Exceptions, Math, Regex, File System, and Network Requests
Test Development Learning Exchange
Test Development Learning Exchange
Sep 7, 2024 · Fundamentals

Understanding the Underscore (_) in Python: Uses and Conventions

This article explains the versatile uses of the underscore (_) in Python, covering temporary variables in REPL, loop placeholders, tuple unpacking, translation functions, numeric literals, naming‑conflict avoidance, protected and private attributes, and special magic methods, with clear code examples for each case.

Naming Conventioncode-examplesunderscore
0 likes · 6 min read
Understanding the Underscore (_) in Python: Uses and Conventions
Test Development Learning Exchange
Test Development Learning Exchange
Aug 19, 2024 · Fundamentals

Applying Python Magic Methods in Unit Tests: __init__, setUp, tearDown, __str__, __repr__, __eq__, __lt__, __len__, __iter__, __getitem__

This article explains how Python's magic (special) methods such as __init__, setUp, tearDown, __str__, __repr__, __eq__, __lt__, __len__, __iter__, and __getitem__ can be leveraged within unittest test cases to customize initialization, setup, cleanup, representation, comparison, length, iteration, and indexing, accompanied by concrete code examples.

code-examplesmagic-methodsunittest
0 likes · 7 min read
Applying Python Magic Methods in Unit Tests: __init__, setUp, tearDown, __str__, __repr__, __eq__, __lt__, __len__, __iter__, __getitem__
Test Development Learning Exchange
Test Development Learning Exchange
Aug 3, 2024 · Fundamentals

Understanding Python Magic Methods: __bool__, __int__, __float__, __complex__, __index__, __oct__, __hex__, and __dir__

This article explains Python's special (magic) methods such as __bool__, __int__, __float__, __complex__, __index__, __oct__, __hex__, and __dir__, describing their purpose, how they affect object behavior, and provides concrete code examples demonstrating their usage and output.

boolcode-examplesint
0 likes · 5 min read
Understanding Python Magic Methods: __bool__, __int__, __float__, __complex__, __index__, __oct__, __hex__, and __dir__
Test Development Learning Exchange
Test Development Learning Exchange
Jul 10, 2024 · Fundamentals

Advanced Usage of Python Pillow Library for Image Processing

This article introduces advanced techniques using Python's Pillow library, covering filters, image blending, word cloud generation, dynamic resizing, border addition, GIF creation, slicing, flipping, color space conversion, and batch processing, with complete code examples to enhance image manipulation capabilities.

Advanced Techniquescode-examplesimage-processing
0 likes · 6 min read
Advanced Usage of Python Pillow Library for Image Processing
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
Python Programming Learning Circle
Python Programming Learning Circle
Jun 21, 2024 · Fundamentals

Introduction to Python itertools: Common Functions and Usage

This article provides a concise, English-language overview of Python's itertools library, explaining its purpose, demonstrating how its iterator‑producing functions such as accumulate, chain, combinations, compress, count, cycle, dropwhile, filterfalse, groupby, islice, permutations, product, repeat, starmap, takewhile, tee, and zip_longest work, and offering clear code examples for each.

Iteratorcode-examplesfunctional-programming
0 likes · 10 min read
Introduction to Python itertools: Common Functions and Usage
Test Development Learning Exchange
Test Development Learning Exchange
Jun 17, 2024 · Fundamentals

Common Python Built‑in Functions with Example Code

This article introduces a collection of essential Python built‑in functions such as print, len, type, conversion utilities, data‑structure constructors, iteration helpers, and numeric helpers, each illustrated with concise example code snippets to demonstrate their typical usage.

Tutorialbuilt-in-functionscode-examples
0 likes · 5 min read
Common Python Built‑in Functions with Example Code
Test Development Learning Exchange
Test Development Learning Exchange
May 28, 2024 · Fundamentals

Using the pass Statement in Python: Beginner to Advanced Examples

This article explains the purpose and syntax of Python's pass statement, illustrating beginner, intermediate, and advanced usage scenarios—including placeholders in classes and functions, empty control structures, decorator templates, iterators, context managers, and exception handling—providing clear code examples for each case.

code-examplescontrol-flowpass statement
0 likes · 5 min read
Using the pass Statement in Python: Beginner to Advanced Examples
Python Programming Learning Circle
Python Programming Learning Circle
Mar 9, 2024 · Fundamentals

Python String and List Operations with Practical Code Examples

This article presents a collection of Python fundamentals covering string reversal, palindrome detection, unique element extraction, element equality checks, list flattening, element unpacking, finding top‑N values, memory size inspection, and various file I/O techniques, all illustrated with ready‑to‑run code snippets.

code-examplesfundamentalslist manipulation
0 likes · 6 min read
Python String and List Operations with Practical Code Examples
php Courses
php Courses
Nov 25, 2023 · Backend Development

New Features and Improvements in PHP 8.3

PHP 8.3, released on November 23 2023, introduces numerous backend enhancements such as improved readonly class cloning, typed class constants, the #[Override] attribute, negative array indexes, anonymous readonly classes, new functions like json_validate and mb_str_pad, Randomizer upgrades, and refined error handling, all aimed at boosting developer productivity.

Backendcode-examplesnew-features
0 likes · 8 min read
New Features and Improvements in PHP 8.3
Test Development Learning Exchange
Test Development Learning Exchange
Aug 2, 2023 · Fundamentals

10 Practical Python Metaprogramming Scenarios Using __getattr__, __setattr__, and Descriptors

This article presents ten useful Python metaprogramming examples that demonstrate dynamic attribute access, setting, descriptor‑based validation, runtime attribute creation and deletion, computed properties, dynamic class and method generation, and metaclass techniques for flexible program behavior.

Propertycode-examplesdynamic attributes
0 likes · 6 min read
10 Practical Python Metaprogramming Scenarios Using __getattr__, __setattr__, and Descriptors
Test Development Learning Exchange
Test Development Learning Exchange
Aug 2, 2023 · Fundamentals

Practical Python Garbage Collection and Memory Analysis: 10 Useful Code Examples

This article explains Python's automatic garbage collection mechanisms, including reference counting and cyclic garbage collection, and presents ten practical code snippets demonstrating how to inspect reference counts, list objects, trace memory usage, and employ profiling tools such as tracemalloc, memory_profiler, pympler, and objgraph to detect leaks and optimize memory usage.

code-examplesgarbage-collectionmemory-management
0 likes · 4 min read
Practical Python Garbage Collection and Memory Analysis: 10 Useful Code Examples
Test Development Learning Exchange
Test Development Learning Exchange
Jul 29, 2023 · Fundamentals

Understanding Python Context Managers: __enter__ and __exit__ Methods with Practical Examples

This article explains Python's context manager protocol, detailing the roles of __enter__() and __exit__() methods, their typical use cases, and provides ten concrete code examples ranging from file handling and database connections to custom managers for networking, temporary files, and exception handling.

Resource Managementcode-examplescontext manager
0 likes · 5 min read
Understanding Python Context Managers: __enter__ and __exit__ Methods with Practical Examples
21CTO
21CTO
Jun 4, 2023 · Backend Development

20 Essential PHP 8 Features You Must Master in 2023

Discover the 20 most important PHP 8 features released by 2023, including string helpers, type utilities, new functions, JIT compilation, and syntax enhancements, each illustrated with clear code examples to help developers quickly adopt and leverage these improvements in their projects.

New FeaturesPHP8code-examples
0 likes · 7 min read
20 Essential PHP 8 Features You Must Master in 2023
Su San Talks Tech
Su San Talks Tech
May 27, 2022 · Backend Development

Boost Java Development Efficiency with 17 Essential Utility Classes

This article introduces 17 practical Java utility classes—including Collections, CollectionUtils, Lists, Objects, BooleanUtils, StringUtils, Assert, IOUtils, MDC, ClassUtils, BeanUtils, ReflectionUtils, Base64Utils, StandardCharsets, DigestUtils, SerializationUtils, and HttpStatus—showing how to use them with concise code examples to streamline everyday development tasks.

Apache Commonsbackend-developmentcode-examples
0 likes · 27 min read
Boost Java Development Efficiency with 17 Essential Utility Classes
Architect's Tech Stack
Architect's Tech Stack
Oct 10, 2021 · Fundamentals

Java 8 Date and Time API Tutorial with Code Examples

This article introduces Java 8's new date‑time API, explains why the old java.util.Date and SimpleDateFormat were problematic, and provides eleven practical code examples that demonstrate how to obtain the current date, extract year/month/day, create specific dates, compare dates, work with time zones, and format or parse date strings.

Java 8code-examplesdatetime
0 likes · 11 min read
Java 8 Date and Time API Tutorial with Code Examples