vote up 14 vote down star
1

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"?

flag

1  
dictionary.reference.com/browse/username – JaredCacurak Jul 22 at 15:39
11  
I have the same doubt for filename vs. fileName – Federico Ramponi Jul 22 at 15:39
3  
This is turning out to be a poll-type question, so how about communitywikifying it? – David Jul 22 at 15:42
1  
Why does it matter how you spell it in the API so long as you are consistent? – Sinan Ünür Jul 22 at 15:47
This is the best question I have seen all week! – Troggy Jul 22 at 16:12

12 Answers

vote up 43 vote down check

I vote for "username" (one word).

"User name" (as two words) could easily mean "The user's real world name", whereas "username" (one word) has a specific meaning in many contexts (an operating system username, for instance).

My name is Richie Hindle, but my username is RichieHindle.

link|flag
You're right, i delete my answer, yours is the best =) – Clement Herreman Jul 22 at 15:40
1  
So do I. answers.com/username (But there is no such thing as a login - that's the process of logging in.) – Jan Aagaard Jul 22 at 15:40
Also the most common and, therefor, the most familiar. – T Pops Jul 22 at 15:40
I wholeheartedly agree. +1 – Randolpho Jul 22 at 15:41
vote up 2 vote down

FxCop, IIRC, will tell you to call it UserName or userName (depending on context) by default.

So that could be your deciding factor.

link|flag
vote up 1 vote down

I'll vote user_name since no one has voted for it yet. :)

link|flag
COBOL: 'user-name' – tpower Jul 22 at 15:41
2  
I won't downmod you, but BOOOOOOOOOOOOOOOOOOOOOO!!! – Randolpho Jul 22 at 15:42
Haha. Thanks. Truthfully in practice I generally use username because of laziness, but I decided to put user_name to offer another perspective because everyone else is posting username. I don't type fast enough to be the first response. :) – Dusty Jul 22 at 15:45
vote up 1 vote down

I generally have always used the term in regards to a user login as "Username" (as a variable - "username"). However, if I'm talking about a user's name, then it's "userName".

I think the general convention is to use "username" as one word.

link|flag
vote up 1 vote down

'username' should be the name they log in with. 'userName' should be their actual name.

My username is 'akway' here, while my name is 'Austin Way', for example.

Important Edit: You should not have username and userName anywhere near each other.

link|flag
vote up 1 vote down

It depends...

userName - for Windows/Java fanatics.

user_name - for C/UNIX/Linux fans.

user-name - for some old languages and database programmers (Progress, Cobol, ...).

username - for all others.

:)

link|flag
is there space for uname there :) – shiva Jul 22 at 16:30
uname stands for Unix name - please don't touch it! :) – Thevs Jul 22 at 16:36
Why is that a problem if you are writing, say, an app in C# or Java or python. further, if one keeps the scope of variables small as possible, it shouldn't matter how big or small the variable name is. In a function with 10-25 lines of code, the argument over naming conventions of variables is simply pedantic, the length however, really contributes to readability. – shiva Aug 31 at 23:23
The question said that this decision affected a public API. So the ramifications go far beyond "10-25 lines of code." – Richard Berg Sep 19 at 18:48
vote up 1 vote down

Use username to refer to the unique identifier by which the user is known to the system. If you want to use userName, I say go ahead, so long as you are consistent.

The distinction between this identifier and the user's real life details should not rest on the capitalization of a single letter.

Those variables can be stored in a User class (or equivalent) and should be named to reflect the information they hold. E.g. User.fullname or User.lastname. As before, if you want to call these User.fullName or User.lastName, again, go ahead, but be consistent.

referer anyone? The world did not end when that was misspelled.

link|flag
vote up 0 vote down

As a lazy typist, I vote "username"

link|flag
laziness in typing is never a good reason while coding – sbi Jul 22 at 15:42
1  
you type it once, but read it hundreds of times! – DanDan Jul 22 at 15:47
1  
you should really consider uname instead. It far shorter and more obscure :) – shiva Jul 22 at 16:26
Ouch. Tough room! – Corey Trager Jul 23 at 1:09
vote up 0 vote down

I always use userName

link|flag
1  
To me, that's the real name of the user. – Jan Aagaard Jul 22 at 15:42
1  
@Jan, i use realName for that. – ercu Jul 22 at 15:47
vote up 0 vote down

As two words are combined, "user" and "name", for me it is "userName". Also I always use "userName" because FxCop tells me to.

link|flag
vote up 0 vote down

I personally prefer loginName (or, perhaps, userID, although some people might interpret this to be a number) because of the confusion over what a "username" might be.

link|flag
vote up 0 vote down

I've always found camel-casing a distraction. I think it is over hyped. What I find really useful is to structure code, such that general boundaries around flow conditions are more visible (eg. all LHS and RHS of an assignment align, contents of if block are of mostly same length lines, etc..) If all other variables are camel-cased, use it for userName as well.

link|flag
soyoulikethosereallylongvariablesthatyoucantread – Matthew Whited Aug 24 at 20:27
1  
v. soYouLikeThoseReallyLongVariablesThatYouCantRead ... you choose – Matthew Whited Aug 24 at 20:28
one idea will be to not use really long variable names. :) I prefer readable_var vs soyoulikethosereallylongvariablesthatyoucantread – shiva Aug 31 at 23:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.