Category "naming-conventions"

Naming: Composite vs compound for entities that delegate function calls to array of entities (vs something else?)

Imagine you have some Entity class and want another class that groups multiple instances of Entity. How do you name it? CompoundEntity? CompositeEntity? somethi

Typescript file-naming conventions

I'm looking for the Typescript file-naming conventions, specifically for a file which stores only types and interfaces. Now, I've found a couple of Typescript

Swift: Global constant naming convention?

In Swift, it seems that global constants should be camelCase. For example: let maximumNumberOfLoginAttempts = 10 Is that correct? I'm used to all caps, e.g

How do you PEP 8-name a class whose name is an acronym?

I try to adhere to the style guide for Python code (also known as PEP 8). Accordingly, the preferred way to name a class is using CamelCase: Almost without