K
Koliber (js)
sorry for my weak english
I want to put here this tematique:
What do you do to ensure that your names in code are good.
I think that
1) structure - of a code is about half work/invention programmer do
the second is the
2) names
personnaly I was (when I started to code in work) verry terrified
and always in bad mood because of my troubles with names
- it is alwayst very bad - i think i do it bad and this - names -
is very hard
now I am still veru unpleasant of my names
and I do not have worked out good rules I havent worked out
many rules at all,
one rule I try to use always is that the type (SomeClass)
i begin with uppercase letter where an instance (someClass)
with lowercase
also I often (if this is adewuate i would say) try name objects
same as types but with lowercase, like
SomeClass someClass = new SomeClass()
StringBuilder stringBuilder = new StringBuilder()
It seems very very god for me personnaly because
I can then not think (which is for some unknown reason
hard for me what name to chose)
I think I (Here I talk about me only and my troubles) should prefer
such
techniques which let me to forget about name - than try
to be very descriptive - because If I will be try to be good
descriptive I think I will be realy good maybe in it and
it slows down always me a lot and bad thing - I was
always unhappy of result (of tryin to write a good descriptive
names) (especially when i code in work - in home
i was always much more at ease.
It is often a need to have a names that are like that "foo"
or "bar" I heard about but I do not espacially like
- names that shoulb be rather an invisible and
not descriptive - becouse for sure i think many micronames
in code shouldnt be descriptive
The second (after the techniques of creating not important non
descriptive 'invisible' names) thing is - how are the good and easy
rules
of avoid troubles in name-choosing in coding (such that
one I recall in this moment that class and instance names names
should be noun and method names shoul be verb)
The third is how to chose names if you decide write
a code with good descriptive names. It is so hard for me
that I am really almost afraid - it is very hard thing - it all.

K.
I want to put here this tematique:
What do you do to ensure that your names in code are good.
I think that
1) structure - of a code is about half work/invention programmer do
the second is the
2) names
personnaly I was (when I started to code in work) verry terrified
and always in bad mood because of my troubles with names
- it is alwayst very bad - i think i do it bad and this - names -
is very hard
now I am still veru unpleasant of my names
and I do not have worked out good rules I havent worked out
many rules at all,
one rule I try to use always is that the type (SomeClass)
i begin with uppercase letter where an instance (someClass)
with lowercase
also I often (if this is adewuate i would say) try name objects
same as types but with lowercase, like
SomeClass someClass = new SomeClass()
StringBuilder stringBuilder = new StringBuilder()
It seems very very god for me personnaly because
I can then not think (which is for some unknown reason
hard for me what name to chose)
I think I (Here I talk about me only and my troubles) should prefer
such
techniques which let me to forget about name - than try
to be very descriptive - because If I will be try to be good
descriptive I think I will be realy good maybe in it and
it slows down always me a lot and bad thing - I was
always unhappy of result (of tryin to write a good descriptive
names) (especially when i code in work - in home
i was always much more at ease.
It is often a need to have a names that are like that "foo"
or "bar" I heard about but I do not espacially like
- names that shoulb be rather an invisible and
not descriptive - becouse for sure i think many micronames
in code shouldnt be descriptive
The second (after the techniques of creating not important non
descriptive 'invisible' names) thing is - how are the good and easy
rules
of avoid troubles in name-choosing in coding (such that
one I recall in this moment that class and instance names names
should be noun and method names shoul be verb)
The third is how to chose names if you decide write
a code with good descriptive names. It is so hard for me
that I am really almost afraid - it is very hard thing - it all.

K.