|
If you had to explain Active Directory to someone how would you explain it?
Answer Snippets (Read the full thread at serverfault):
PERIOD.)
Now, can you please explain SCCM in a few paragraphs? Thanks!
Who.
Of it together."
(Technically, I liked Evan's answer better, but this is how I'd explain Directory.
|
|
Could you please explain the deMorgan rules as simply as possible (e.g. with a secondary school background) ?
Started by Stefano Borini on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
I think I can explain it better by using conditions that are actually related to each other.
|
|
I need a web page or Windows application that takes a regular expression and explains it to me in text what it does.
Do you have any suggestions for such an application?
Started by Germstorm on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
YAPE::Regex::Explain....
I believe there is also a builit a wonderful Regex parser that will explain a regex in detail, using plain English as far as possible.
Regex::Explain comes with a utility named explain that does this.
|
Ask your Facebook Friends
|
Hello,
gcc 4.4.1
I am maintaining someone's code and I have come across something that I don't understand.
#define RES_API(name, func) name##_##func
Can anyone explain?
Many thanks,
Started by robUK on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Personally I think its....
Instead of doing OBJ_DoSomething , with this macro you can do RES_API(OBJ, DoSomething) .
More information here.
Using RES_API(name1, func1) in your code would be replaced with name1_func1 .
The ## is a concatenation operator.
|
|
I tried to find a interpretation of the memory segments of the sun java vm, which would also understandable by an administrator . It should explain what heap / non-heap memory is and the significance of the different memory pools.
If it would somehow ...
Started by Mauli on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Some of these explain how the heap/garbage collection works.
A list of resources I had noted down.
|
|
Hi,
Could somebody please explain this piece of Ruby code:
def add_spec_path_to(args) # :nodoc: args << {} unless Hash === args.last args.last[:spec_path] ||= caller(0)[2] end
I have seen the << operator used for concatenation strings or as...
Started by dagda1 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The ||....
Hash is the name of a class - the first line pushes an empty hash {} onto args unless the last element of args is already a Hash (the === operator for classes tests whether an object is of a certain class) .
I'm presuming that args is an Array.
|
|
Which classic CS and programming books have you read and then you find an alternative book that explained the concepts in an easier way?
Started by MainID on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Understandable and if you need more help, much of the information can be further explained by searching and discussions that explain these principles, making the patterns easier to understand
The famous CLRS book.
|
|
I've been experimenting with fulltext search lately and am curious about the meaning of the Score value. For example I have the following query:
SELECT table. * , MATCH ( col1, col2, col3 ) AGAINST ( '+(Term1) +(Term1)' ) AS Score FROM table WHERE MATCH...
Started by Eric Lamb on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For the Vector Space Model , which someone else can explain thoroughly.
|
|
I come from a .NET background and am completely new to Java and am trying to get my head around the Java project structure.
My typical .NET solution structure contains projects that denote logically distinct components, usually named using the format:...
Started by MalcomTucker on
, 10 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
"Simple" J2SE projects As cletus explained, source directory structure is directly.
You started.
|
|
I'm a little familiar with C++, but the virtual keyword still confuses me. What exactly does it mean? If a function is defined as virtual, is that the same as pure virtual?
Started by Justin on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
I will try to explain the notion of "virtual" and "pure virtual" in English so you can remember.
|