Tagged Questions
The study of the origins and history of words.
180
votes
31answers
48k views
Why are variables “i” and “j” used for counters? [closed]
Possible Duplicate:
Why are we using i as a counter in loops
I know this might seem like an absolutely silly question to ask, yet I am too curious not to ask...
Why did "i" and "j" become ...
17
votes
4answers
1k views
Why are “pure” functions called “pure”?
A pure function is one that has no side effects -- it cannot do any kind of I/O and it cannot modify the state of anything -- and it is referentially transparent -- when called multiple times with the ...
13
votes
4answers
363 views
Why is the concept of Marshalling called as such?
I've always thought that the concept of Marshalling had a bit of a funny name.
My mental conception of the process would always involve an ol' wildwest gunslinging marshall who would coerce objects ...
10
votes
2answers
594 views
What is the history of the variable names x and xs?
I'm trying to pick up a bit of Haskell, and I'm alternating between awe and befuddlement. One of the really alienating things for me, trivial as this may seem, is the pattern matching idiom (x:xs). ...
8
votes
5answers
309 views
“Duck typing” etymology?
Is there a story behind the name ''duck typing'', I've heard ''if it looks like a duck, and sounds like a duck, let's call it a duck'' (or something like that), but why a duck? Why not ``if it looks ...
7
votes
2answers
190 views
Naming of `pure` function in Control.Applicative
Why is the function for lifting a value into a functor named pure in Control.Applicative?
6
votes
2answers
598 views
Origin of the name jQuery
This may seem like an odd question, but does anyone know the origin of the jQuery name? How did it come to be called "jQuery"?
4
votes
6answers
269 views
Origin of the word Refactoring
Code refactoring is the process of changing a computer program's internal structure without modifying its external behavior or existing functionality.
What is the origin of the word refactoring and ...
3
votes
3answers
194 views
Why do we use the 'virtual' keyword (etymologically)?
Most modifiers make sense to me - abstract, protected etc. But "virtual" seems a confusing arbitrary choice for what is really "overridable".
'Virtual' in computing (virtual machine, virtual memory) ...
2
votes
5answers
286 views
static vs static vs static in C/C++ [closed]
I understand that static means "statically stack allocated" as opposed to "dynamically stack allocated" in:
void foo() {
static int b = 0;
++b;
}
And that static means "statically dispatched" ...
1
vote
1answer
110 views
Is the Tower of Hanoi related to Hà Nội, Việt Nam? [closed]
In Chinese many people are translating the Tower of Hanoi to a completely different name with Hanoi the capital of Vietnam, so I want to ask the etymology of this phrase.
Is it related to Hanoi the ...
0
votes
0answers
16 views
Origin of the programming language term “boxing”? [migrated]
What was the first programming environment (probably language) to use the words "boxing" and "unboxing" to indicate encapsulating a primitive type in some kind of wrapper to allow it to be used in ...
0
votes
0answers
62 views
What is the origin of the term 'drop' in the software industry? [closed]
Such as in the phrase "We just uploaded the latest drop to the server."
I'd like to know the actual origin of the term. Is it borrowed from another industry?
0
votes
1answer
139 views
Other forms of “kluge”? [closed]
http://dictionary.reference.com/browse/kluge
Who knew that the word "kluge" had its roots in computer software/hardware? Ok, so... what are the other forms of this word, and how do you spell them?
...