definition Questions
7
Solved
I have 3 projects: Server, Client and Commons. Making header & source pairs in Commons doesn't cause any problems and I can access the functions freely from both Server and Client.
However, fo...
Lamebrain asked 13/6, 2015 at 17:10
4
I have a project which has this structure:
project/
├── package.config
├── node_modules/
│ ├── interactjs/
│ ├── ├── index.d.ts
├── src/
│ ├── browser/
│ | ├── tsconfig.json
│ | ├── index.ts
I h...
Groin asked 26/12, 2018 at 22:43
2
Solved
In programming literature and on internet in general I noticed frequent use of term "wrapping".
For example "to wrap library in classes" or to "wrap database". Is that...
Pulsimeter asked 16/3, 2012 at 21:9
6
Solved
I do not understand what is meant by the terms "compile time" and "run time" (or "runtime").
I'm also a bit confused about what "value type" and "reference type" mean, and how they relate to the ...
Corby asked 5/10, 2009 at 10:25
3
Solved
Just to be sure, has Dart removed explicitly defining an interface now in favor of implicitly defining it via abstract?
I see it mentioned in Dart and Interface Segregation Principle, however I...
Groat asked 18/2, 2015 at 22:52
18
I have a pre-existing table, containing 'fname', 'lname', 'email', 'password' and 'ip'. But now I want an auto-increment column. However, when I enter:
ALTER TABLE users
ADD id int NOT NULL AUTO_I...
Kelly asked 7/2, 2013 at 14:20
12
Solved
I have been trying to find a good definition, and get an understanding, of what a thread really is.
It seems that I must be missing something obvious, but every time I read about what a thread is,...
Toritorie asked 5/3, 2011 at 5:16
1
I created person table as shown below:
CREATE TABLE person (
id INTEGER,
name VARCHAR(20)
);
Then, trying to show the definition of person table with \d and \d+ got the error as shown below:
pos...
Bengt asked 18/1 at 16:56
9
Solved
Is there an easy way to see the code used to create a view using the PostgreSQL command-line client?
Something like the SHOW CREATE VIEW from MySQL.
Goof asked 31/1, 2013 at 20:13
8
What's the definition of a Shim?
Hopscotch asked 22/1, 2010 at 9:11
9
Solved
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 = ge...
Hershberger asked 23/3, 2011 at 10:51
2
Solved
What exactly does the One-Definition Rule in C++ say?
The only trustworthy occurrence I can find is in The C++ Programming Language, 3rd. ed., P. 9.2.3. Is there any official definition of the rule...
Skipjack asked 16/11, 2010 at 8:9
25
Solved
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!)
Gerda asked 30/8, 2008 at 20:12
18
Solved
This is probably a n00blike (or worse) question. But I've always viewed a schema as a table definition in a database. This is wrong or not entirely correct. I don't remember much from my database c...
Willamina asked 18/11, 2008 at 13:41
3
Solved
I was reading C Programming Language and found this sentence:
The commas that separate ... variables in declarations ... are not comma operators, and do not guarantee left to right evaluation.
...
Popelka asked 10/9, 2016 at 23:14
35
Solved
What exactly is RESTful programming?
Ralston asked 22/3, 2009 at 14:45
11
Solved
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 ...
Reptant asked 6/10, 2008 at 18:44
18
Solved
What is an idempotent operation?
Snoop asked 3/7, 2009 at 1:6
16
Solved
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...
Farika asked 6/12, 2008 at 15:17
3
Solved
I was trying to define a type at run-time that inherits from a known class and implements an interface.
public class ParentClass
{
}
public interface IImplementMe
{
double Value{get;set}
}
Her...
Meissen asked 11/3, 2011 at 19:13
9
Solved
A heap is a tree data structure where higher levels of the tree always contain greater (or lesser, if it's set up that way) values than lower levels. "The" heap is a bunch of free RAM that a progra...
Egerton asked 16/4, 2009 at 16:9
7
Solved
What are public, private and protected in object oriented programming?
Bijou asked 20/6, 2009 at 2:8
15
Solved
I've been trying Vim for any text editing work for almost a week now. I want to know the fastest way to select a C function definition.
For example, if I have a function like this:
void helloworlds...
Chema asked 30/7, 2012 at 14:4
8
Solved
I keep coming across the use of this word and I never understand its use or the meaning being conveyed.
Phrases like...
"add semantics for those who read"
"HTML5 semantics"
&qu...
Adjoin asked 28/7, 2010 at 16:57
7
Solved
So the title of this question pretty much sums up my question. To be clear, I understand what a kernel is and why we make them. I would like to know the origin of it's name. So far All my goggling ...
Hon asked 19/10, 2012 at 1:36
1 Next >
© 2022 - 2024 — McMap. All rights reserved.