The study of the origins and history of words.

learn more… | top users | synonyms

19
votes
5answers
2k 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 ...
14
votes
4answers
543 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 ...
13
votes
2answers
863 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). ...
12
votes
6answers
515 views

What is the origin of magic number 42, indispensable in coding? [closed]

Update: Surprised that it is being so heavily downvoted... The question is coding-related and before asking this question I have googled for "42" in combination with: ...
12
votes
2answers
700 views

What is PurpleEventCallback?

I've stared at it for too long Sitting on my Stack Traces Not knowing what it is and if Hendrix is inside my iPhone.
10
votes
5answers
394 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
1k 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"?
7
votes
2answers
219 views

Naming of `pure` function in Control.Applicative

Why is the function for lifting a value into a functor named pure in Control.Applicative?
4
votes
6answers
371 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 ...
4
votes
3answers
429 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) ...
3
votes
1answer
74 views

What are the origins of the name “scanf” and the specifier “%g”?

What does the "f" in 'scanf' mean? Also, why are double values signified by "%g" - what does the g mean?
2
votes
2answers
123 views

What is Matlab's colon operator called?

When teaching people about Matlab, it would be very nice if I could refer to Matlab's colon operator as something other than just "the colon operator". As you can read on this Mathworks blog, the ...
2
votes
1answer
86 views

Why the inline string block in Ruby is named “eos”?

Why the inline string block in Ruby is named "eos"? Update Thank you for denoting the right way. I always thought that "eos" is a reserved word, but it seems that any word may be used: a = ...
1
vote
5answers
414 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
195 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
1answer
152 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? ...