Tagged Questions
The definition tag has no wiki summary.
122
votes
14answers
22k views
What is a y-combinator?
A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.
What is a y-combinator?
How do they ...
117
votes
8answers
7k views
What exactly is RESTful programming?
What exactly is RESTful programming?
Don't give me links to wikipedia please, I'm hoping for a straight-forward answer, not some BUZZ-word-ful answer.
Bonus question: Should I feel stupid because I ...
60
votes
8answers
22k views
What is Unit test, Integration Test, Smoke test, Regression Test?
What is Unit test, Integration Test, Smoke test, Regression Test and what are the differences between them? And Which tools can I use for each of them?
For example I use JUnit,NUnit for Unit testing ...
52
votes
10answers
8k views
What is the Liskov Substitution Principle?
I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?
51
votes
3answers
4k views
What's the difference between faking, mocking, and stubbing?
I know how I use these terms, but I'm wondering if there are accepted definitions for faking, mocking, and stubbing for unit tests? How do you define these for your tests? Describe situations where ...
49
votes
10answers
8k views
How to find where a method is defined at runtime?
We recently had a problem where, after a series of commits had occurred, a backend process failed to run. Now, we were good little boys and girls and ran rake test after every check-in but due to some ...
48
votes
4answers
3k views
What is 'Currying'?
I've seen references to curried functions in several articles and blogs but I can't find a good explanation (or at least one that makes sense!)
47
votes
3answers
3k views
What is the difference between currying and partial application
I'm not exactly sure how to word this question.
I learnt what currying was in the first year of university, and have been using it where applicable ever since.
However, I quite often see on the ...
31
votes
10answers
6k views
What is the Difference between a Heuristic and an Algorithm?
What is the Difference between a Heuristic and an Algorithm?
29
votes
5answers
942 views
Haskell: What is Weak Head Normal Form?
What does Weak Head Normal Form (WHNF) mean? What does Head Normal form (HNF) and Normal Form (NF) mean?
Real World Haskell states:
The familiar seq function evaluates an expression to what we ...
29
votes
9answers
12k views
Software design vs. software architecture
Could someone explain the difference between software design and software architecture? More specifically; if you tell someone to present you the 'design' - what would you expect them to present? Same ...
28
votes
5answers
669 views
Haskell: How does non-strict and lazy differ?
I often read that lazy is not the same as non-strict but I find it hard to understand the difference. They seem to be used interchangeably but I understand that they have different meanings. I would ...
25
votes
6answers
3k views
What exactly is NoSQL?
What exactly is NoSQL? Is it database systems that only work with {key:value} pairs?
As far as I know MemCache is one of such database systems, am I right?
What other popular NoSQL databases are ...
21
votes
5answers
1k views
What kind of language is CSS?
What kind of language is CSS?
My first inclination was to call it a markup language... but it doesn't really fit the mold.
Edit:
A markup language is a system for
annotating a text in a way ...
19
votes
9answers
2k views
What is fuzzy logic?
I'm working with a couple of AI algorithms at school and I find people use the words Fuzzy Logic to explain any situation that they can solve with a couple of cases. When I go back to the books I just ...
17
votes
6answers
867 views
What exactly does “closure” refer to in JavaScript?
I understand what closures are, but I am having some trouble grokking exactly what the term closure refers to. I have seen the term used in many websites, but rarely do they agree on the actual ...
16
votes
5answers
1k views
What exactly do “IB” and “UB” mean?
I've seen the terms "IB" and "UB" used several times, particularly in the context of C++. I've tried googling them, but apparently those two-letter combinations see a lot of use. :P
So, i ask ...
15
votes
7answers
609 views
Why separate variable definition and initialization in C++?
I'm currently working on some quite old C++ code and often find things like
int i;
i = 42;
or
Object* someObject = NULL;
someObject = new Object();
or even
Object someObject;
someObject = ...
15
votes
13answers
14k views
What's the difference between “Solutions Architect” and “Applications Architect”? [closed]
As far as I can see Solutions Architect is just a different "marketing" term for Applications Architect. Is that correct or are the roles actually different somehow? If so, how?
And yes, I have ...
14
votes
5answers
500 views
Is Type name = name; ever valid code in C++?
The following code is allowed in C++:
int a = a;
or
Type name = name;
Both lead to an uninitialized object being initialized by itself which often leads to undefined behavior.
Is such code ever ...
14
votes
5answers
555 views
What is the origin of “launch the missiles”?
In the context of functional programming, a typical example of a side effect is "launch the missiles". Where does that expression come from historically?
14
votes
2answers
515 views
14
votes
21answers
1k views
What is AJAX, really?
I have to start using AJAX in a project and I don't know where to start. Can someone please help?
14
votes
10answers
3k views
What is a code cave, and is there any legitimate use for one?
I encountered this word for the first time in the StackOverflow question "C# Theoretical: Write a JMP to a codecave in asm." I see that according to Wiktionary, a code cave is:
an unused block of ...
14
votes
7answers
6k views
What does 'Monkey Patching' exactly Mean in Ruby?
According to Wikipedia, a monkey patch is:
a way to extend or modify the runtime
code of dynamic languages [...]
without altering the original source
code.
The following statement from the ...
14
votes
7answers
11k views
What is managed/unmanaged code in C#?
I am using Assembly.GetEntryAssembly()... in my C# code to get the version of the application. It runs fine but when I try it in NUnit it returns NULL. In the MSDN it states that it can return NULL ...
14
votes
10answers
1k views
Service Oriented Architecture: How would you define it
Service Oriented Architecture seems to be more and more of a hot quote these days, but after asking around the office I have found that I seem to get many different definitions for it. How would you ...
13
votes
9answers
3k views
What does .NET stand for? Is it an acronym?
I've seen pronunciation guides and all sorts of definitions of .NET as a framework, but no definition or explanation of the actual name of the framework.
Wikipedia doesn't seem to know. This ...
13
votes
4answers
5k views
When do I define objective-c methods?
I'm learning Objective-C, and have a C/C++ background.
In object-oriented C++, you always need to declare your method before you define (implement) it, even if it is declared in the parent class. ...
13
votes
6answers
16k views
What is ultimately a time_t typedef to?
I searched in linux box and saw it being typedef to
typedef __time_t time_t;
But could not find the __time_t definition.
12
votes
8answers
614 views
What exactly is Java?
The question may at first sound silly, but maybe it isn't at all.
Java is not the Java language, most people know that, since you can program Java with lots of other langauges like Scala or Groovy
...
12
votes
6answers
730 views
What is this strange function definition syntax in C?
I've seen a few function definitions like this recently while playing with GNU Bison:
static VALUE
ripper_pos(self)
VALUE self;
{
//code here
}
Why is the type of self outside of the ...
11
votes
6answers
3k views
10
votes
10answers
478 views
Initialization of Objects with Static Storage Duration in C vs C++ [closed]
Possible Duplicate:
What does main return?
For example, the following code compiles without any warning:
#include <stdio.h>
int i = i + 1;
int main(int argc, char *argv[])
{
...
10
votes
7answers
3k views
What is boilerplate code?
A coworker had never heard of this, and I couldn't provide a real definition. For me, it's always been an instance of 'I-know-it-when-I-see-it'.
Bonus question, who originated the term?
10
votes
10answers
6k views
What does the term legacy database mean?
I read this term a lot. What exactly is a legacy database? I ask because I had thought it meant an old database like dbase or rdb, but I don't think I'm right.
When looking at RoR or Django and ...
10
votes
12answers
961 views
What exactly is Reflection and when is it a good approach?
What exactly is Reflection?
I read the Wikipedia article on this subject and I understand that it is a kind of meta-programming, where the program can modify itself at run-time, but what does this ...
9
votes
2answers
121 views
Scala: order of definition for companion object vs case class
In Scala 2.9.1 I get the following behavior:
class Foo {
case class X()
object X // this compiles
def bar() {
object Y // this compiles
case class Y()
...
9
votes
5answers
348 views
Declaration or Definition in C
From External Variables Wiki:
If neither the extern keyword nor an
initialization value are present, the
statement can be either a declaration
or a definition. It is up to the
compiler to ...
9
votes
7answers
627 views
What is a hack?
I use the term all the time... but I was just sort of thinking that I don't really have a solid denotational sense behind the term (or at least the term in the sense I want to discuss here). I'm ...
9
votes
3answers
198 views
An exception to the “only one implementation” rule?
While I was reading the accepted answer of this question, I had the following question:
Typically, methods are defined in header files (.hpp or whatever), and implementation in source files (.cpp or ...
9
votes
6answers
1k views
C++ - defining static const integer members in class definition
My understanding is that C++ allows static const members to be defined inside a class so long as it's an integer type.
Why, then, does the following code give me a linker error?
#include ...
9
votes
3answers
984 views
PHP: word definition script?
I am developing a web page in which I am accepting input words from user and when user will submit those words then I want to display definition of those words or wikipedia link of those words for ...
9
votes
18answers
1k views
What is “over-engineering” as applied to software?
I wonder what would be a good definition of term "over-engineering" as applied to software development. The expression seems to be used a lot during software design discussions often in conjunction ...
8
votes
6answers
989 views
What is marshalling? What is happening when something is “marshalled?”
I know this question has been asked, at least here.
But there wasn't a satisfactory answer, at least not to me. There is a lot of talk about marshalling as regards interoperating with unmanaged code, ...
8
votes
3answers
290 views
Is this code valid C++?
Is the following code valid C++?
const int var = 10;
{
int var[var]; // why doesn't this give any error ?
}
Note : The code compiles on my g++ compiler.
8
votes
9answers
830 views
Explain polymorphism
What is polymorphism? I'm not sure I am understanding it correctly.
In the Python scope, what I am getting out of it is that I can define parameters as followed:
def blah (x, y)
without having to ...
8
votes
2answers
517 views
What is the Managed Extensibility Framework (MEF)?
I googled and got only a few articles about MEF. Would someone please explain in brief:
What is the Manage Extensibility Framework?
For what purpose is it needed?
How can I start working with it?
...
8
votes
8answers
618 views
What is the actual definition of an array? [closed]
Possible Duplicate:
Arrays, What’s the point?
I tried to ask this question before in What is the difference between an array and a list? but my question was closed before reaching a ...
8
votes
3answers
1k views
What c preprocessor macros have already been defined, gcc?
In gcc, wow can I check what C preprocessor definitions are in place during the compilation of a C program, in particular what standard or platform-specific macrodefinitions are defined?