|
Started by Garfield234 on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at reddit):
Now here's an interesting idea: what are the mechanisms of this ideas explaining ideas explaining ideas? Wan we understand the process?
That would mean that the process....
The game of telephone gets old after awhile.
This is why we have shaman.
|
|
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.
|
|
Can you please explain me what is automation of project? How it is related with testing? Please explain with an example.
Started by Shailesh Jaiswal on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I guess what you're referring to is Build automation :
Build automation is the act of scripting or automating a wide variety of tasks that software developers do in their day-to-day activities including things like:
compiling computer source code into... .
|
Ask your Facebook Friends
|
MySQL's explain output is pretty straightforward. PostgreSQL's is a little more complicated. I haven't been able to find a good resource that explains it either.
Can you describe what exactly explain is saying or at least point me in the direction of ...
Started by KJG on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
This is obviously not a full explanation from an actual database:
v3orders=> ....
Guessed (particularly if you have read a bunch of explain plans before), however you can try to verify into Google along with a few keywords like EXPLAIN.
|
|
I know why one shouldn't do that. But is there way to explain to a layman why this is not possible. You can explain this to a layman easily : Animal animal = new Dog(); . A dog is a kind of animal but a list of dogs is not a list of animals.
Started by fastcodejava on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
This is a good reading and should explain it a litlle bit more.
Considers one of Java Design Flaws.
|
|
If you had to explain recursion to a novice how would you do it?
Started by John Nolan on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
If the person has not understood recursion, explain recursion, then come back to the current(i-1,n*i); }
you can call it like this....
Source
Explain recursion in terms of conquer-and-divide.
Frog fell asleep;
...and the child fell asleep.
|
|
Can you explain it in most simple words?
Best with a demo script.
Started by Mask on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
However....
It's basically a way of describing objects in text - a text-based serialization format .
More info here.
JavaScript Object Notation, is a lightweight computer data interchange format .
JSON is Javascript source code that creates a data structure .
|
|
How does the Apache web server work? Can someone explain it in detail?
Started by PROFESSOR on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Then, you probably want to go into....
Http://svn.apache.org/viewvc/httpd/
Start with the Apache architecture overview to understand the basic components and data flows for Apache .
It's perfectly clear.
Don't even bother trying understand it.
It's magic.
|
|
Can anyone explain exactly how the Strategy Pattern relates to Inversion of Control?
Started by Shane on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
One way to do this is to have the concrete strategy injected into a class that uses it as the interface rather than having the class... .
When you use the strategy pattern, you want your other classes to depend on the interface rather than a concrete strategy .
|
|
How to explain this statment
var a = $(this);
What will 'a' contain?
Started by Mario on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
See the manual page about the jQuery....
A will reference a jQuery object of the object referenced by this .
According to the article, depending on where this line of code exists, this can be either a DOM object or a jQuery object .
As always, it depends.
|