User Abhishek Yadav - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T14:37:33Zhttp://stackoverflow.com/feeds/user/30252http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/271514/how-does-the-hp-tandem-non-stop-compare-with-linux-clusters1How does the HP (Tandem) Non stop compare with Linux clusters ?Abhishek Yadav2008-11-07T08:23:52Z2009-11-14T17:06:59Z
<p>Non Stop systems are known for their high availability and reliability, and higher price. How do Linux or Unix based clusters compare with them, in these respects and others? </p>
http://stackoverflow.com/questions/287794/multivalued-attributes-in-databases2multivalued attributes in databasesAbhishek Yadav2008-11-13T18:32:06Z2009-09-09T19:21:41Z
<p>How should a relational database be designed to handle multi-valued attributes ?</p>
<p><strong>edit</strong>: To elaborate: </p>
<p>There are two ways I could think of for doing this -</p>
<ol>
<li>Trying something like putting comma separated values in the field, which appears a bit clumsy.</li>
<li>Create another table for the field and let the multiple values go to the field. This might lead to very large number of tables, if I have too many fields of this kind.</li>
</ol>
<p>The question is:</p>
<ol>
<li>Are there any more ways of handling this?</li>
<li>Which of the above two methods is generally used?</li>
</ol>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/292646/identifying-list-item-index-which-is-a-better-approach0Identifying list item index - which is a better approach? Abhishek Yadav2008-11-15T15:00:59Z2008-11-16T00:59:46Z
<p>I need to pick up list items from an list, and then perform operations like adding event handlers on them. I can think of two ways of doing this.</p>
<p>HTML:</p>
<pre><code> <ul id="list">
<li id="listItem-0"> first item </li>
<li id="listItem-1"> second item </li>
<li id="listItem-2"> third item </li>
</ul>
</code></pre>
<ol>
<li><p>Using the IDs-</p>
<pre><code>for(i=0;i<3;i++)
{
document.getElementById("listItem-"+i).addEventListener("click",foo,false);
}
</code></pre></li>
<li><p>Using childNodes property-</p>
<pre><code>for(i=0;i<3;i++)
{
document.getElementById("list").childNodes[i]
.addEventListener("click",foo,false);
}
</code></pre></li>
</ol>
<p>The reason i'm using the first approach is that in the function foo, if I want the index at which the item is located in the list, i can do it by splitting the id -</p>
<pre><code> function foo()
{
tempArr = this.id.split('-');
index = tempArr[tempArr.length-1]; // the last element in the array
}
</code></pre>
<p>I can't think of a way of doing it by using the second method, that is, without using the id naming scheme.</p>
<p>The questions:</p>
<ol>
<li>How do I get the index using the second method or any better method</li>
<li>Are there some very bad affects of following the first method ? </li>
</ol>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/289312#2893121Answer by Abhishek Yadav for Worst UI You've Ever UsedAbhishek Yadav2008-11-14T05:28:51Z2008-11-14T05:28:51Z<p>Countless websites with forms for entering addresses while the input text field has a max limit of 10 characters.</p>
http://stackoverflow.com/questions/256754/how-to-pass-arguments-to-addeventlistener-listener-function1How to pass arguments to addEventListener listener function?Abhishek Yadav2008-11-02T10:36:14Z2008-11-02T14:57:04Z
<p>The situation is somewhat like-</p>
<pre><code>var someVar;
someVar = some_other_function();
someObj.addEventListener("click",
function(){
some_function(someVar);
},
false);
</code></pre>
<p>The problem is that the value of someVar is not visible inside the listener function of the addEventListener, where it is probably being treated as a new variable.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/236000/whats-a-turing-machine/236023#2360230Answer by Abhishek Yadav for What's a Turing machine?Abhishek Yadav2008-10-25T06:44:44Z2008-10-25T06:44:44Z<p>Turing machine is an abstract machine that can operate on a sequence of data and can change its own state as well as the data while operating, according to some logic.</p>
<p>This is a concept that forms the basis of algorithms, stored programs, and computation in general. It provides good insights and abstractions if you are dealing with algorithms, states, data etc. </p>
<p>Food for thought, for most.</p>
http://stackoverflow.com/questions/232445/dynamic-arrays/232536#2325360Answer by Abhishek Yadav for Dynamic ArraysAbhishek Yadav2008-10-24T05:17:44Z2008-10-24T05:17:44Z<p>An array always needs a contiguous block of memory. In a situation where you might need to resize the array later on, reallocation is probably the only solution. This is what Moishe and Shadow2531 do above. </p>
<p>The problem with reallocation is that it can be a costly operation. So if you need adding 5 more elements to a 5000 element array, you might end up copying all the 5000 elements across memory.</p>
<p>Using a linked list instead can be considered for such a scenario.</p>