|
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 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.
|
Ask your Facebook Friends
|
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.
|
|
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.
|
|
Hi there. This question is not for the faint of heart and will be time consuming..
I am learning Java, and I was wondering if anyone could walk me through my program to tell me what I did wrong and how I can fix it so that I can learn.
My whole program...
Started by alainmeyer1 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
First of all, I'd probably throw away what you have and start... .
I'm not sure how much it will help, but I'd like to give some general tips about how you might approach this .
I guess you realize from the comments that this is kind of difficult to help with .
|
|
Without pointing me to MSDN, could someone give a concise, clear explanation of the purpose of each of these and when to use them. (IntPtr, SafeHandle and HandleRef)
Answer Snippets (Read the full thread at stackoverflow):
IntPtr is just a simple integer-based struct that can hold a pointer (ie., 32 bit size on 32-bit systems... .
It's used frequently by external calls to the native Win32 DLLs .
IntPtr is just a standard 32bit pointer to a memory location of some type of object .
|
|
Hello!
Imagine the following problem:
You have a database containing about 20,000 texts in a table called "articles" You want to connect the related ones using a clustering algorithm in order to display related articles together The algorithm should do...
Answer Snippets (Read the full thread at stackoverflow):
Then....
Lets say between all your articles, you only have 500 unique words between them .
First, create a 'histogram' of words for each article.
The most standard way I know of to do this on text data like you have, is to use the 'bag of words' technique .
|
|
Below is a list of locks that SQL Server 2000 is meant to support. I am a bit confused as to what the "intent" locks actually mean. I've looked around on the Web and the answers seem to be a bit cryptic.
Further to getting an answer to my specific question...
Started by Simon Johnson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For example a ....
This speeds up conflict checking for transactions that need to place locks on the table level .
The intent locks are placed on the table level and indicate that a transaction will place appropriate locks on some of the rows in the table .
|
|
I am working in a project which needs top performance in SQL results, and was looking to optimize a query, but after some trial and error I am having some trouble with IN.
-- THIS RETURNS NO RESULTS AT ALL. SELECT sysdba.HISTORY.TICKETID FROM sysdba.HISTORY...
Started by jpabluz on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Lastly check the collation types for the database, it might be that the collation is case... .
Do the sysdba.History.TicketID and sysdba.C_TICKETPROVIDERS.TICKETID match in terms of datatype and length?
I've also found group by's to be quicker than distinct .
|