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

Beyond Try‑Catch: Advanced PHP Techniques for Safer Code

This article explores modern PHP practices that move error handling from runtime try‑catch blocks to proactive strategies such as static analysis, contract programming, attribute‑based validation, and test‑driven development, showing how to build more reliable and maintainable backend applications.

AttributesContractsPHP
0 likes · 5 min read
Beyond Try‑Catch: Advanced PHP Techniques for Safer Code
Open Source Tech Hub
Open Source Tech Hub
May 4, 2025 · Backend Development

Building a Model Context Protocol (MCP) Server with PHP 8 Attributes

This guide explains how to use the php-mcp/server library to create a standards‑compliant Model Context Protocol (MCP) server in PHP 8, covering installation, key features, attribute‑based definitions, configuration, transport options, discovery, and code examples for a simple stdio server.

AttributesCLIHTTP+SSE
0 likes · 15 min read
Building a Model Context Protocol (MCP) Server with PHP 8 Attributes
Code Mala Tang
Code Mala Tang
Apr 29, 2025 · Fundamentals

Unlock Python’s Hidden Power: Mastering the __dict__ Attribute

Explore how Python’s built-in __dict__ attribute stores object attributes, enabling introspection, dynamic attribute manipulation, memoization, JSON serialization, custom descriptors, and debugging, while also learning its limitations with slots and built-in types for performance.

AttributesIntrospectionPython
0 likes · 8 min read
Unlock Python’s Hidden Power: Mastering the __dict__ Attribute
php Courses
php Courses
Aug 19, 2024 · Backend Development

Using the #[Validate] Attribute in Livewire v3 for Simplified Form Validation

Livewire v3 introduces the #[Validate] attribute, enabling developers to define validation rules directly on component properties, which reduces boilerplate, improves readability, and offers advanced features such as custom messages, multiple rules, and conditional validation for PHP/Laravel applications.

AttributesBackendLaravel
0 likes · 5 min read
Using the #[Validate] Attribute in Livewire v3 for Simplified Form Validation
php Courses
php Courses
Jun 20, 2024 · Backend Development

Key New Features and Improvements in PHP 8

The article provides a comprehensive overview of PHP 8’s major enhancements—including an expanded type system, match expressions, the null‑safe operator, attributes, a JIT compiler, and string/array improvements—illustrated with code examples and notes on upcoming PHP 8.4 releases.

AttributesJIT compilerNullsafe Operator
0 likes · 8 min read
Key New Features and Improvements in PHP 8
php Courses
php Courses
Nov 21, 2023 · Backend Development

Using PHP 8 Attributes to Manage Code Metadata

This article explains PHP 8's new Attributes feature, describing what attributes are, how to attach them to classes and methods with examples like @Table and @Route, and demonstrates retrieving attribute values via reflection to enable flexible metadata management.

AttributesPHP8Reflection
0 likes · 4 min read
Using PHP 8 Attributes to Manage Code Metadata
php Courses
php Courses
Oct 23, 2023 · Backend Development

Using PHP 8 Attributes to Manage Code Metadata

This article explains PHP 8’s new Attributes feature, describing what attributes are, how to attach custom attributes such as @Table and @Route to classes and methods, and demonstrates retrieving attribute values via reflection, providing clear code examples for backend developers.

AttributesBackendPHP
0 likes · 5 min read
Using PHP 8 Attributes to Manage Code Metadata
Liangxu Linux
Liangxu Linux
Jun 22, 2023 · Backend Development

Mastering GNU C Extensions: typeof, Flexible Arrays, Case Ranges and More in the Linux Kernel

This article explains essential GNU C extensions used in the Linux kernel—including typeof, zero‑length (flexible) arrays, case range labels, designated initializers, variadic macros, function and variable attributes, built‑in functions, asmlinkage, and UL suffixes—showing why they matter and how to apply them safely.

AttributesC extensionsGNU C
0 likes · 13 min read
Mastering GNU C Extensions: typeof, Flexible Arrays, Case Ranges and More in the Linux Kernel
MaGe Linux Operations
MaGe Linux Operations
Jul 30, 2021 · Fundamentals

Unlock Python’s Hidden Attribute System: __dict__, property, and __getattr__ Explained

This article explains how Python stores object attributes in layered __dict__ structures, distinguishes class and instance attributes, demonstrates attribute lookup, shows how to modify attributes directly or via property, and introduces dynamic attribute creation using __getattr__ and related special methods.

AttributesObject-OrientedProperty
0 likes · 8 min read
Unlock Python’s Hidden Attribute System: __dict__, property, and __getattr__ Explained
Python Programming Learning Circle
Python Programming Learning Circle
Jul 21, 2021 · Fundamentals

Understanding Python's __dict__ System, Properties, and Dynamic Attribute Generation

This article explains Python's __dict__ attribute storage, class and instance attributes, demonstrates how to inspect and modify them, introduces properties using the built‑in property() function, and shows dynamic attribute generation with __getattr__, providing clear code examples and explanations.

AttributesObject-OrientedProperty
0 likes · 9 min read
Understanding Python's __dict__ System, Properties, and Dynamic Attribute Generation
php Courses
php Courses
Mar 2, 2021 · Backend Development

Understanding the New Features of PHP 8.0

This article explains how to download and configure PHP 8, troubleshoot common installation issues, and provides detailed examples of PHP 8's major new features—including union types, the match expression, null‑safe operator, constructor property promotion, attributes, and named arguments—complete with code snippets.

AttributesNullsafe OperatorUnion Types
0 likes · 11 min read
Understanding the New Features of PHP 8.0
21CTO
21CTO
Jul 25, 2020 · Backend Development

What PHP 8 Brings: Attributes, Match Expressions, Union Types & More

This article reviews PHP 8’s most impactful new features—including first‑class attributes, constructor property promotion, match expressions, union types, and named arguments—showing code examples and explaining how they modernize PHP development.

AttributesBackend DevelopmentPHP8
0 likes · 5 min read
What PHP 8 Brings: Attributes, Match Expressions, Union Types & More
Lin is Dream
Lin is Dream
May 14, 2020 · Frontend Development

Master HTML Forms: Elements, Attributes, and Practical Code Examples

This guide explains HTML form elements, common attributes like readonly, disabled, and required, and demonstrates how to build functional forms with code snippets, including input types, labels, and form association techniques for effective data submission.

AttributesCode ExamplesForms
0 likes · 5 min read
Master HTML Forms: Elements, Attributes, and Practical Code Examples
Full-Stack Internet Architecture
Full-Stack Internet Architecture
May 24, 2018 · Backend Development

Designing a Basic Product Model for E‑commerce Systems

The article analyzes the evolution of e‑commerce product modeling, introduces categories, brands, and attribute‑based filtering, distinguishes products from SKUs, and proposes a backend‑centric data model that supports flexible search, display, and integration with other business services.

AttributesDatabase designe‑commerce
0 likes · 5 min read
Designing a Basic Product Model for E‑commerce Systems
Architecture Digest
Architecture Digest
Jan 22, 2018 · Fundamentals

Designing a Basic Product Model for E‑commerce Systems

This article explains how to design a flexible product model for e‑commerce by evolving from simple category‑article structures to a richer schema that includes brands, attributes, specifications, and separate SKU entities, enabling effective filtering, search, and integration with other services.

Attributesdata modelinge‑commerce
0 likes · 6 min read
Designing a Basic Product Model for E‑commerce Systems