Tagged Questions

59
votes
43answers
3k views

Anyone else find naming classes and methods one of the most difficult part in programming?

So I am working on this class that's suppose to request help documentation from a vendor through web service. I try to name it DocumentRetriever, VendorDocRequester, DocGetter, but they just doesn't …
36
votes
9answers
1k views

Why are the built in functions in PHP named so randomly?

It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some. Why is this the case? EDIT - this wasn't meant as a "troll" type …
32
votes
34answers
3k views

Why shouldn’t I use “Hungarian Notation”?

I know what Hungarian refers to - giving information about a variable, parameter, or type as a prefix to its name. Everyone seems to be rabidly against it, even though in some cases it seems to be a …
22
votes
40answers
2k views

Annoying or idiotic naming conventions?

What programming or naming conventions have you come across that really rub you the wrong way? For those that aren't aware, in C# we can wrap blocks of code with a #region directive, which allows …
21
votes
27answers
3k views

Table Naming Dilemma: Singular vs. Plural Names

Convention has it that table names should be the singular of the entity that they store attributes of. I dislike any T-SQL that requires square brackets around names, but I have renamed a Users …
20
votes
19answers
1k views

Naming of ID columns in database tables

I was wondering peoples opinions on the naming of ID columns in database tables. If I have a table called Invoices with a primary key of an identity column I would call that column InvoiceID so that …
19
votes
28answers
2k views

what is an ideal variable naming convention for loop variables?

if you are writing a simple little loop, what should you name the counter? provide example loops!
17
votes
29answers
1k views

Are variable prefixes ( Hungarian ) really necessary anymore?

Hi, Since C# is strongly typed, do we really need to prefix variables anymore? e.g. iUserAge iCounter strUsername I used to prefix in the past, but going forward I don't see any benefit.
16
votes
9answers
572 views

Does functional programming mandate new naming conventions?

I recently started studying functional programming using Haskell and came upon this article on the official Haskell wiki: How to read Haskell. The article claims that short variable names such as x, …
16
votes
19answers
2k views

Dash vs. Underscore

Should it be /about_us or /about-us? From usability point of view, I personally think /about-us is much better for end-user yet Google and most other websites (and javascript frameworks) use …
15
votes
12answers
545 views

Will bad things happen to me if I name my arrays, collections, lists, enumerables, etc. just the plural of what they contain?

I have always thought it was "best practice" to be explicit in naming my collection variables. So, if I had a collection of Car objects, I would typically name a Car[] carArray and a List<Car> …
15
votes
24answers
2k views

Why should (or shouldn’t) I prefix fields with ‘m_’ in C#?

I've been a C++ programmer for almost 12 years now. When I moved to C# two years ago I brought with me the same coding style I was so accustomed to. Soon I realized how much useless it was in C# and …
14
votes
12answers
666 views

Is “username” one word or two?

While trying to cleanup an application's API, I found myself scratching my head... What should I call the variable for a user's name "username", or "userName"?
14
votes
11answers
767 views

What strategy do you use for package naming in Java projects and why?

I thought about this awhile ago and it recently resurfaced as my shop is doing its first real Java web app. As an intro, I see two main package naming strategies. (To be clear, I'm not referring to …
14
votes
17answers
2k views

What is your naming convention for stored procedures?

I have seen various rules for naming stored procedures. Some people prefix the sproc name with usp_, others with an abbreviation for the app name, and still others with an owner name. You shouldn't …

1 2 3 4 5 29 next
15 30 50 per page