Questions tagged as 'nomenclatura'

1
answer

Does programming in English conflict with the construction of a ubiquitous language?

I've already found some arguments in favor of programming in English, instead of programming in Portuguese, and we already have a # wondering which would be the recommended way. I happened to think about it from the point of view of Domain Dr...
asked by 07.07.2016 / 06:05
3
answers

Is it correct to prefix variable names with their type?

Is it customary / correct to use variables where the first letter refers to your typing? Eg: string sVariavel; int iVariavel; , etc ... EDIT: The name said is Hungarian notation . Is this a good practice? What is the good...
asked by 07.07.2016 / 15:37
3
answers

Is there a naming pattern for enums?

I do not understand much of object naming pattern. I am creating a enum that enumerates positions, for example: manager, programmer, attendant ... Is there a standard to name this enum? EnumCargo , CargoEnum , ... ???    ...
asked by 17.07.2015 / 15:54
1
answer

Terms used in CSS

Knowing that CSS literally means Cascade Style Sheets , I regularly see the term "property" being used to refer to left , width , top , background etc . Faced with this, I had the following doubt: Is this referral...
asked by 22.07.2018 / 02:15
3
answers

How can I use or name constants for response type fields?

There are situations in which we have fields that represent a type of response, whether they are boolean sim and não , S and N or with multiple answers like the status of something. For example the status of a course c...
asked by 09.07.2018 / 19:38
1
answer

URL with uppercase letters

Is there a problem naming high-end pages? ex: http://exemplo.com.br/Minha-Pagina.php     
asked by 15.09.2016 / 17:23
1
answer

Why use the "is" variable beginning in Kotlin?

What is the reason for using is in front of the variable. Example source code. I know it has something to do with set . class Rectangle( val height: Int, val width:Int) { val IsSquare: Boolean get(){ return height...
asked by 26.11.2017 / 17:06
1
answer

Android Development Standards

Does anyone know where I meet the standards for Android development? From: Views Name Class Name Activities Resources
asked by 24.12.2014 / 10:38
1
answer

Body or entity that sets standards for web development

Sometimes the consensus between designers and web developers regarding standards "forces" them, almost exclusively, to use patterns of fact . I would like to know if there is any body or entity that establishes legal standards for web develop...
asked by 07.07.2017 / 19:05
2
answers

Can a static method have the same name as a property?

Since a static method is not going to be an object method, can I have a static method with the same name as a property defined inside the constructor?     
asked by 22.08.2017 / 17:58