Tagged articles
14 articles
Page 1 of 1
ITPUB
ITPUB
Jan 20, 2026 · Databases

Boost Data Warehouse Efficiency with Proven Naming Conventions

A well‑defined naming convention for data‑warehouse tables reduces chaos, improves maintainability, speeds up queries, and cuts cross‑team collaboration costs, turning raw data into a strategic asset for modern enterprises.

Data GovernanceData WarehouseDatabase design
0 likes · 8 min read
Boost Data Warehouse Efficiency with Proven Naming Conventions
Code Mala Tang
Code Mala Tang
Aug 23, 2025 · Fundamentals

Decoding Python’s Underscore Conventions: From Throwaway Variables to Dunder Methods

This article explains the meaning behind Python’s various underscore patterns—single underscores for throwaway variables, leading underscores for internal use, double leading underscores for name‑mangling, dunder methods for special behavior, and trailing underscores to avoid keyword conflicts—helping developers write clearer, more idiomatic code.

Naming ConventionPythoncode style
0 likes · 6 min read
Decoding Python’s Underscore Conventions: From Throwaway Variables to Dunder Methods
IT Services Circle
IT Services Circle
Sep 12, 2024 · Fundamentals

Designing a Structured Firmware Version Number Format

This article explains a systematic firmware version numbering scheme—including project name, major/minor versions, build ID, and release type—provides a detailed table of the format, shows a concrete example, and offers best‑practice tips for linking each image to its corresponding Git commit.

Naming ConventionSoftware EngineeringVersioning
0 likes · 5 min read
Designing a Structured Firmware Version Number Format
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
Laravel Tech Community
Laravel Tech Community
Dec 23, 2021 · Databases

Database Object Naming and Design Standards

This guide details comprehensive naming conventions and design best‑practices for MySQL database objects—including schemas, tables, indexes, views, stored procedures, functions, triggers, constraints, and users—along with recommended storage engine, character set, field types, index strategies, and SQL usage rules to ensure consistency, performance, and maintainability.

Naming ConventionSQLindexing
0 likes · 20 min read
Database Object Naming and Design Standards
php Courses
php Courses
Nov 9, 2020 · Backend Development

Using Underscore Naming for PHP Controllers When Using PascalCase Class Names

This article explains that when PHP controller files are named using PascalCase, they must be accessed with lowercase and underscores in the URL, illustrating the issue with examples and providing the solution of using underscore naming to correctly load template files.

BackendMVCNaming Convention
0 likes · 1 min read
Using Underscore Naming for PHP Controllers When Using PascalCase Class Names
Continuous Delivery 2.0
Continuous Delivery 2.0
Feb 19, 2020 · Operations

Best Practices for Naming, Managing, and Retiring Feature Flags

This article outlines practical guidelines for creating clear feature‑flag names, establishing management processes, implementing retirement plans, detecting stale "zombie" flags, assigning ownership, and using metadata tags to keep feature‑flag systems maintainable and low‑risk.

Naming Conventionfeature-flagslifecycle management
0 likes · 7 min read
Best Practices for Naming, Managing, and Retiring Feature Flags
DevOps Cloud Academy
DevOps Cloud Academy
Sep 8, 2019 · Operations

Project Management Guidelines and Jenkins Pipeline Setup

This guide outlines project naming conventions and step‑by‑step instructions for creating a new Jenkins project, configuring build history, parameterized builds, triggers, Jenkinsfile, and how to build, view logs, and debug the pipeline, illustrated with screenshots.

JenkinsNaming ConventionOperations
0 likes · 2 min read
Project Management Guidelines and Jenkins Pipeline Setup
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Aug 23, 2019 · Backend Development

Choosing Between boolean and Boolean for POJO Fields: Naming, Default Values, and Serialization Implications

This article examines how to correctly define boolean-type member variables in Java POJOs, comparing primitive boolean and wrapper Boolean, discussing naming conventions like success vs isSuccess, default values, JavaBeans getter/setter rules, and the impact on JSON serialization across fastjson, Gson, and Jackson.

JSONJavaNaming Convention
0 likes · 12 min read
Choosing Between boolean and Boolean for POJO Fields: Naming, Default Values, and Serialization Implications
Senior Brother's Insights
Senior Brother's Insights
Mar 12, 2019 · Databases

Essential MySQL Naming, Design, and Indexing Standards for Reliable Databases

This guide presents comprehensive MySQL best‑practice rules covering database object naming, basic schema design, column definitions, index creation, SQL coding conventions, and operational behaviors to improve maintainability, performance, and data integrity across development and production environments.

Naming ConventionSQL Best Practicesdatabase-design
0 likes · 20 min read
Essential MySQL Naming, Design, and Indexing Standards for Reliable Databases