vote up 7 vote down star
4

Subjective question inspired by this thread...

I believe that the term "random salt value" is one of the most poorly-named concepts in computer science. There is really nothing random about it. The salt value has to be deterministically tied to the entity for which it will be used to salt the hash (usually password.)

The initial creation of a salt value might be a rand process but after that the value has to be persisted the random concept goes out the window. IMO the word random should be dropped entirely from the term or perhaps replaced with the word arbitrary.

What are your pet peeves in terminology?

flag

2  
i dunno - i think random is a good word for it. You choose a value at random (mash the keyboard) and there's your value! – nickf Oct 30 at 10:03
@nick: my 2nd paragraph addresses that concept. Randomization is just one way out of many, may ways of creating a salt value. – psasik Oct 30 at 10:06
@nickf: Funnily enough, there have actually been cryptographic attacks based on the assumption that the "random" letters were mashed out on a keyboard and hence some outcomes are more likely than others... – Artelius Oct 30 at 10:08
1  
Before voting to close: this type of discussion could yield some interesting information for people by delving into nitty-gritty specifics. Please let it ride a while. – psasik Oct 30 at 10:08
6  
If you don't want it to be closed, make it a wiki – hasen j Oct 30 at 11:23
show 8 more comments

closed as not programming related by Mehrdad Afshari, Amarghosh, kgiannakakis, Binary Worrier, Brandon Oct 30 at 14:37

16 Answers

vote up 15 vote down

Cloud computing.

Is it a sign of bad weather approaching on software industry?

Or an attempt to hide Sun? (which has already been tried with Eclipse...)

link|flag
Good one! Could you explain your issue with the term? – psasik Oct 30 at 10:07
7  
Cloud computing has almost degenerated into a marketing buzzword at this point. – Charles Salvia Oct 30 at 10:10
6  
Almost? Really? – Checkers Oct 30 at 10:14
3  
as if it ever wasn't? – nickf Oct 30 at 10:18
No, silly goose, Oracle is attempting to hide Sun! :-) – Brian Knoblauch Oct 30 at 11:43
vote up -8 vote down

Object-oriented. Sounds good, but doesn't actually mean anything.

Applications, another misused word which now means virtually nothing. For example, web application doesn't mean anything at all.

Solutions was one I particularly disliked, but it seems to have died off since the 1990s, when every computer program was described as a "solution".

Even worse, legacy application is a silly misuse of the word "legacy" plus the dreaded "application".

Software stack doesn't really make sense. You could call it a "software puddle" or a "software tangle" or something and it wouldn't make any difference except "stack" sounds better or something.

Browser is just an annoying way of saying "viewer".

Similarly, surfing is just an annoying way of saying "viewing".

link|flag
1  
what's wrong with objects? – nickf Oct 30 at 10:16
As a name, it's meaningless. – Kinopiko Oct 30 at 10:23
1  
Could you please expand on why you don't think it means anything. One defines objects that they then interact with and therefore one's work is oriented around objects, hence, object-oriented. – Pheter Oct 30 at 11:58
I don't think I could possibly explain why it's meaningless any better than you just have done. – Kinopiko Oct 30 at 12:18
I agree about surfing. I've always thought surfing was a term particularly too hip for its own good. – Jason Oct 30 at 12:25
show 9 more comments
vote up 6 vote down

This might not be exactly what the question refers to but the most hopeless errors happen when suits believe that Javascript is just a modified form of Java.

I have actually seen managers picking out some team (because they had a little experience in Java) for interactive web application projects!

link|flag
1  
Is JavaScript a computer science concept? – Kinopiko Oct 30 at 10:24
That is what I meant by the disclaimer in the preamble :) Let's just say JS is vaguely related to CS – Crimson Oct 30 at 10:46
2  
You can help fight that. Quit calling it JavaScript and call it "the current preferred superset to ECMAscript". :-) – Brian Knoblauch Oct 30 at 11:45
vote up 1 vote down

When I'm teaching someone OO concepts, the very word "Polymorphism" makes their eyes glaze over.

link|flag
Good one, but what term would you use to replace polymorphism? – psasik Oct 30 at 10:21
6  
Morphypolism, of course. – Kinopiko Oct 30 at 10:24
variadic-proteanism? – Charles Salvia Oct 30 at 10:26
hmmm, "Stereotyping" ? – James McCormack Oct 30 at 10:39
1  
Just use the phrase "many-shaped". Poly - many Morphism - shaped. – cartoonfox Oct 30 at 12:53
show 2 more comments
vote up 3 vote down

How about:

generic programming

It's now considered a good thing to say, "I wrote a completely generic function".

link|flag
vote up 8 vote down

"Real-time" is a vague term that is used to describe things not related to its original meaning.

Say, "twitter is a real-time social network" is not the same as "QNX is a real-time operating system",

link|flag
vote up 3 vote down
  • Assembly language - The name means nothing to someone who's never come across it before. Maybe "Primitive" would be a better name, since it's primitive in itself, and also makes use of hardware primitives - e.g. "seL4 is composed of 8700 lines of C code, and 600 lines of Primitive".
  • freeing memory - there seems something magical about this term, like the memory is suddenly happy and floating around. I think "deallocation" is better, it sound a bit more algorithmic. The sad fact is, too many programmers are of the belief that freed memory is suddenly available to any program that needs it. "It is returned to the operating system," some programmers will assert. Most of the time, at least when freeing small pieces of memory, the memory is not returned to the operating system, but retained in the program's heap as a sort of slack space (for several reasons, among them OS page granularity, memory fragmentation, and the performance cost of doing a syscall when there's a good chance the program will need the memory again later on).
  • real numbers - Some languages (like ol' FORTRAN) have a "real" type which uses floating-point numbers. You know what such languages need to do? They need to get real ;)
link|flag
+1 for getting real! – hasen j Oct 30 at 11:24
real numbers is a mathematical term, and makes sense if you understand that we need to distinguish them from imaginary and complex numbers (not to mention quaternions etc). On a computer, they might be better classified as rational numbers, since computers can't store irrational ones – Jonny Cundall Oct 30 at 11:51
vote up 3 vote down

Web 2.0.

What exactly happened this time to make us increment the version that we haven't done before?

link|flag
3  
ajax, and using the browser as an application platform – hasen j Oct 30 at 11:25
AJAX isn't exactly new. iFrames have been around since the late 90s. – theycallmemorty Oct 30 at 12:18
vote up 5 vote down

C++0x, I wish...........

link|flag
vote up 2 vote down

"Parallel Programming"

For a non-CS person it might sound like either

two or more programmers are programming simultaneously

or one person is programming two things simultaneously

:D:D

Disclaimer: Yeah right, what else could we have named it?

link|flag
1  
Could have been (and sometimes is) concurrent programming. – Mark Rushakoff Oct 30 at 11:33
Actually my issue with parallel programming is that it seems to oversimplify concurrent programming, which is anything but a few straight lines which never meet :D – Artelius Oct 30 at 12:17
vote up 12 vote down

Debugger ... I wish it did.

link|flag
You know, I'd never even noticed that until now. Perhaps 'Inspector' is a better name for it. – Kaz Dragon Oct 30 at 11:55
vote up 4 vote down

Currying--sounds delicious!

Memoization--looks like a misspelling!

Monad--never mind...

link|flag
'cept curry tastes bitter... – RCIX Nov 3 at 5:00
vote up 1 vote down

Agile methodologies produce some really vague sounding concepts (itself included). Scrum is the most vague, in my opinion.

link|flag
vote up 0 vote down

Complexity Theory - The name of the field doesn't really help people grasp what it's about. It's supposed to be http://en.wikipedia.org/wiki/Computational%5Fcomplexity%5Ftheory but even Wikipedia finds it ambiguous - http://en.wikipedia.org/wiki/Complexity%5Ftheory

This is one of the most unhelpfully named subjects on the CS curriculum.

link|flag
vote up 1 vote down

Dynamic Programming.

It's just a weird term to me. It sounds like you should be editing your program while it is currently running, whereas 'static programming' would be the normal cycle of code -> compile -> run.

link|flag
vote up 2 vote down

The memory heap, and (unrelated) heapsort. A heap sounds like a disorganized pile of something, which isn't what you want in your computer's memory OR in your data structures.

link|flag

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