The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
126 views

Choosing a proper wording for referring compiler errors

Consider someone is writing a message (or a question at StackOverflow). The context is following: In my code, I have the following line: int foo = Bar(); However, the compiler returns an ...
1
vote
2answers
210 views

Good principles to explain the use of data objects

I'm in a little need of names clarification. First a brief description of my position. I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how ...
1
vote
3answers
225 views

Compute or Calculate? [closed]

If you were to use one of these verbs to describe some functions, which one would you use? function1: Calculates/Computes the distance between 2 points. function2: Calculates/Computes the length of ...
3
votes
2answers
233 views

Naming your applications or projects [duplicate]

Possible Duplicate: How do you name your projects? I think as developers and programmers that having some help and resources for naming projects would really be of some help, and some of us ...
33
votes
1answer
931 views

What's a generic word for both Methods and Attributes?

In a class diagram, each class contains methods and attributes. What's the correct word for describing both of them besides something generic such as contents or items? Context: The Orange class ...
7
votes
6answers
1k views

Is it called class or object instance?

I have a wording / precision question. Sometimes I write "object instance" sometimes "class instance". Isn't it that an object is always an instance of a class? Therefore "object instance" is not the ...
4
votes
5answers
484 views

Is there a clean alternative to WTF that communicates to coders? [duplicate]

Possible Duplicate: Another term for common code smell Programmers know immediately what I mean if I talk of finding a 'WTF' in the code base. In particular, it is a noun that refers to an ...
2
votes
3answers
243 views

Why is code sometimes called “listings”?

When reading Programmers at Work (by Susan Lammers), they often refer to code as "listings". Why is that?
15
votes
3answers
321 views

“My stuff” vs. “Your stuff” in UI texts

When refering to a users stuff should you use My or Your, for example: My Cart | My Account | My Wishlist Or Your Cart | Your Account | Your Wishlist I found this article that argues for ...