User Moishe - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:34:17Z http://stackoverflow.com/feeds/user/23786 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1786144/c-passing-const-string-references-in-methods/1786168#1786168 -1 Answer by Moishe for C++ passing const string references in methods? Moishe 2009-11-23T21:35:59Z 2009-11-23T21:35:59Z <p>How is 'name' declared? It seems like maybe it's declared as a reference instead of an object.</p> http://stackoverflow.com/questions/1785811/programmatically-check-if-a-number-is-a-palindrome/1785880#1785880 1 Answer by Moishe for Programmatically check if a number is a palindrome Moishe 2009-11-23T20:53:03Z 2009-11-23T20:53:03Z <p>Here's some pseudocode:</p> <pre><code>function isPalindrome(number) returns boolean index = 0 while number != 0 array[index] = number mod 10 number = number div 10 index = index + 1 startIndex = 0; endIndex = index - 1 while startIndex &gt; endIndex if array[endIndex] != array[startIndex] return false endIndex = endIndex - 1 startIndex = startIndex + 1 return true </code></pre> <p>Note that that's for base 10. Change the two 10s in the first while loop for other bases.</p> http://stackoverflow.com/questions/1777931/what-is-the-most-straightforward-gwt-workaround-for-same-origin-policy-restrictio/1778144#1778144 1 Answer by Moishe for What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)? Moishe 2009-11-22T07:53:56Z 2009-11-22T07:53:56Z <p>Why not just use the <a href="http://code.google.com/docreader/#p=gwt-google-apis&amp;s=gwt-google-apis&amp;t=MapsGettingStarted" rel="nofollow">GWT Maps API</a>? I think you can use the <a href="http://gwt-google-apis.googlecode.com/svn/javadoc/maps/1.0/com/google/gwt/maps/client/geocode/Geocoder.html" rel="nofollow">Geocoder</a> class to do what you want.</p> http://stackoverflow.com/questions/1765080/how-to-access-google-gmail-gchat-reader-user-icons/1777675#1777675 0 Answer by Moishe for How to access Google/Gmail/Gchat/Reader user icons Moishe 2009-11-22T02:53:25Z 2009-11-22T02:53:25Z <p>I don't know much about the Reader API (there's no official one, is there?) but if you have the contact's email address you can use the <a href="http://code.google.com/apis/contacts/" rel="nofollow">Contacts API</a> to retrieve a photo for that contact.</p> http://stackoverflow.com/questions/1735765/any-great-books-of-algorithm-puzzles-to-practice-whiteboard-coding-with/1761096#1761096 1 Answer by Moishe for Any great books of algorithm puzzles to practice whiteboard coding with? Moishe 2009-11-19T05:31:33Z 2009-11-19T05:31:33Z <p>Check out the Materials section of MIT's <a href="http://courses.csail.mit.edu/iap/interview/" rel="nofollow">Hacking a Google Interview</a> course.</p> <p>Also for some really good advice check out CareerCup's <a href="http://www.careercup.com/slides" rel="nofollow">tech interviewing slides</a>.</p> http://stackoverflow.com/questions/1739678/validating-user-input-with-javascript/1739697#1739697 1 Answer by Moishe for Validating user input with JavaScript Moishe 2009-11-16T02:12:35Z 2009-11-16T02:12:35Z <p>You can use the onKeyDown event. If you return false from your event handler, no key press event is fired and the key is "eaten".</p> <p>Here are the docs from Sun: <a href="http://docs.sun.com/source/816-6408-10/handlers.htm#1120313" rel="nofollow">http://docs.sun.com/source/816-6408-10/handlers.htm#1120313</a></p> http://stackoverflow.com/questions/1726406/ghost-form-submissions/1726521#1726521 1 Answer by Moishe for "ghost" form submissions Moishe 2009-11-13T01:10:37Z 2009-11-13T01:10:37Z <p>Is it possible that all those emails were generate by a bot crawling your site?</p> <p>Can you reproduce the problem by calling curl on any of your pages?</p> <p>Do any actions require a POST, or are you taking action with a GET?</p> http://stackoverflow.com/questions/1726462/memory-leak-analysis/1726515#1726515 0 Answer by Moishe for Memory Leak Analysis Moishe 2009-11-13T01:08:22Z 2009-11-13T01:08:22Z <ol> <li><p>See the "Who called HeapAlloc" entry on this page: <a href="http://www.windbg.info/doc/1-common-cmds.html" rel="nofollow">http://www.windbg.info/doc/1-common-cmds.html</a></p></li> <li><p>See this page: <a href="http://www.microsoft.com/whdc/DevTools/Debugging/debugstart.mspx" rel="nofollow">http://www.microsoft.com/whdc/DevTools/Debugging/debugstart.mspx</a> for info about the symbol server.</p></li> </ol> http://stackoverflow.com/questions/1720606/when-career-conflicts-with-company/1720735#1720735 4 Answer by Moishe for When career conflicts with company Moishe 2009-11-12T08:25:43Z 2009-11-12T08:25:43Z <p>Creating a really good product -- where really good includes shipping to customers, and working -- trumps whatever technology was used to create that product. This is true for your career at a particular company and outside it.</p> <p>If there's a legitimate customer benefit to using newer stuff and you can demonstrate that, then it's worth pushing for, but you need to weigh in the high value of stuff that already works.</p> <p>I've found that code talks. If you can write up something in your spare time that demonstrates things that simply cannot be done with your existing technology stack, that will count for a lot.</p> <p>But again you need to balance that against time you could be spending making the existing product awesome.</p> http://stackoverflow.com/questions/1720453/preparation-for-a-c-interview/1720704#1720704 1 Answer by Moishe for Preparation for a c++ interview Moishe 2009-11-12T08:17:38Z 2009-11-12T08:17:38Z <p>The necessary (but not sufficient) part of doing well on an interview about C++ is being good at writing code in C++. The only way to be good at writing code in C++ is to do it, a lot.</p> <p>Good interviewers will be able to discern if you know how your language of choice works without asking what I call "vocabulary" questions (what does keyword 'x' mean). They'll ask you to implement something that will be much easier if you know particular features of the language (templates, polymorphism, overloading, etc). This isn't stuff you can cram for, it's stuff you have to know in your bones, and again the way to get that is to write lots of code.</p> <p>An ancillary skill you'll need is interviewing well to showcase your skill in C++. Thankfully this requires far less practice. I strongly suggest getting together with friends and practicing interviews with a whiteboard -- search this site and the rest of the web for known interview questions, and answer them at the whiteboard (in C++ in this case), in front of your friends. Take turns. Grill each other. Get so that you can easily write code in front of other people, on a whiteboard, with no IDE to help you out. That'll let you show off your real skill.</p> http://stackoverflow.com/questions/1720170/tips-on-rendering-html-on-client/1720224#1720224 1 Answer by Moishe for Tips on rendering html on client Moishe 2009-11-12T06:05:49Z 2009-11-12T06:05:49Z <p>Try to deliver as much state as you can in the initial request, so you don't have to round-trip before you show any data to the user.</p> <p>Measure how long it's taking to show a working UI to your user, so you can spot regressions.</p> <p>Prepare to spend lots of time experimenting.</p> http://stackoverflow.com/questions/1715257/xmpp-chat-sent-received-message-synchronization/1720019#1720019 1 Answer by Moishe for XMPP chat sent/received message synchronization Moishe 2009-11-12T05:08:07Z 2009-11-12T05:08:07Z <p>The RFC says the "thread" element SHOULD (see <a href="http://tools.ietf.org/html/rfc2119" rel="nofollow">http://tools.ietf.org/html/rfc2119</a>) be returned in replies. It may be that this client just didn't implement it.</p> http://stackoverflow.com/questions/1719935/communication-between-java-and-c/1720004#1720004 2 Answer by Moishe for communication between Java and C# Moishe 2009-11-12T05:03:59Z 2009-11-12T05:03:59Z <p>XMPP isn't what you want. It's designed for passing messages between computers with a central server.</p> <p>I'd recommend using sockets to pass data between the apps. See the System.Net.Sockets.Socket class in C# and the java.net.Socket class in Java.</p> http://stackoverflow.com/questions/1719837/best-approach-to-parse-text-files-that-contain-multiple-types-of-delimiters/1719904#1719904 1 Answer by Moishe for Best approach to parse text files that contain multiple types of delimiters? Moishe 2009-11-12T04:35:31Z 2009-11-12T04:35:31Z <p>You could write a class that parses a file something like this:</p> <pre><code>interface MyParser { public MyParser(char delimiter, List&lt;String&gt; fields); Map&lt;String,String&gt; ParseFile(InputStream file); } </code></pre> <p>You'd pass the delimiter and an ordered list of fields to the constructor, then ask it to parse a file. You'd get back a map of field names (from the ordered list) to values.</p> <p>The implementation of ParseFile would probably use split with the delimiter and then iterate through the array returned by split and the list of fields concurrently, creating the map as it went.</p> http://stackoverflow.com/questions/1713663/passing-variable-with-javacript-function/1713721#1713721 0 Answer by Moishe for Passing variable with javacript function Moishe 2009-11-11T07:56:39Z 2009-11-11T07:56:39Z <p>If you have access to the variable in question when you set the click handler,</p> <pre><code>detLink.onclick = function() { GetDetails(foo); } </code></pre> <p>If you don't,</p> <pre><code>detLink.id = uniqueId; detLink.onclick = function() { var foo = globalData[this.id]; GetDetails(foo); } // somewhere else in your code, where you know the value of the variable globalData[detLink.id] = foo; </code></pre> http://stackoverflow.com/questions/1713604/what-is-rgb-formula-for-a-gradient-going-from-white-to-blue/1713620#1713620 1 Answer by Moishe for What is rgb formula for a gradient going from white to blue? Moishe 2009-11-11T07:32:06Z 2009-11-11T07:32:06Z <p>Set R &amp; G to (255 - the value of the button).</p> <p>255,255,255 = white 0,0,255 = blue</p> http://stackoverflow.com/questions/1713554/threads-processes-vs-multithreading-multi-core-multiprocessor-how-they-are/1713600#1713600 0 Answer by Moishe for Threads & Processes Vs MultiThreading & Multi-Core/MultiProcessor : How they are mapped? Moishe 2009-11-11T07:26:58Z 2009-11-11T07:26:58Z <ol> <li><p>Broadly speaking, yeah, but "parallel" can mean different things.</p></li> <li><p>It depends what tasks you want to run in parallel.</p></li> <li><p>Not necessarily. Some (indeed most) threads spend a lot of time doing nothing. Might as well switch away from them to a thread that wants to do something.</p></li> <li><p>The OS handles thread switching. It will delegate to different cores if it wants to. If there's only one core it'll divide time between the different threads and processes.</p></li> <li><p>The number of threads is limited by software and hardware. Threads consume processor and memory in varying degrees depending on what they're doing. The thread management software may impose its own limits as well.</p></li> </ol> http://stackoverflow.com/questions/1713540/what-is-the-complexity-of-this-algorithm/1713556#1713556 0 Answer by Moishe for What is the complexity of this algorithm? Moishe 2009-11-11T07:11:44Z 2009-11-11T07:11:44Z <p>If you have code that reads:</p> <pre><code>for i := 2 to n </code></pre> <p>Then that code will be O(n) best case.</p> <p>I'm curious why you think it might be constant time?</p> http://stackoverflow.com/questions/1713307/how-do-you-get-a-data-value-associated-with-a-specific-col-row-from-a-2-d-array-i/1713360#1713360 1 Answer by Moishe for How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe 2009-11-11T06:04:36Z 2009-11-11T06:50:04Z <p>If you just have one row array and one column array then you have something like this</p> <pre><code> foo bar baz sna fu </code></pre> <p>but what you really want is something like this</p> <pre><code> foo bar baz sna rah boo fu man chu </code></pre> <p>You'd declare this something like:</p> <pre><code>class MyClass { String myArray[][] = new String[3][3]; MyClass() { // assign data into myArray } String getAt(int i, int j) { if ((i &gt;= 0) &amp;&amp; (i &lt; myArray.length) &amp;&amp; (j &gt;= 0) &amp;&amp; (j &lt; myArray[i].length)) { return myArray[i][j]; } return null; } } </code></pre> http://stackoverflow.com/questions/1712952/is-there-a-known-implementation-of-an-indexed-linked-list/1713441#1713441 0 Answer by Moishe for Is there a known implementation of an indexed linked list? Moishe 2009-11-11T06:33:11Z 2009-11-11T06:33:11Z <p>Your gut is correct on this.</p> <p>Linked lists are O(1) insertion/deletion because the operation you perform to insert or remove something is just switching a couple of pointers (one or two on the object you're inserting, and one or two on one or two other objects). This doesn't change by the size of the list, obviously.</p> <p>A skip list will give you O(logn) lookup, but since you're maintaining an index it also means O(logn) insertion/deletion, because that index needs to be kept up to date.</p> <p>Any parallel data structure you use for lookup will need to be maintained, so your complexity will scale by that index's complexity.</p> <p>Do you have a particular problem in mind you're trying to solve?</p> <p>For instance, you can get O(n) insertion, removal and lookup if you can guarantee a perfect hash. But you need to know some things about your data ahead of time for that to work.</p> http://stackoverflow.com/questions/1705922/whats-happening-when-switching-themes-in-sugar-crm-or-similar-kind-of-application/1706006#1706006 1 Answer by Moishe for Whats happening when switching themes in Sugar CRM or similar kind of application Moishe 2009-11-10T06:33:08Z 2009-11-10T06:33:08Z <p>It looks like the CSS styles for various classes are dynamically changed. You can verify this in Firebug by inspecting a particular element, looking at for instance its background color, then switching the theme. You'll see the background color (or whatever) change. The data for all themes is likely sent down in the initial page render.</p> http://stackoverflow.com/questions/1705952/is-possible-to-debug-dynamic-loading-javascript-by-some-debugger-like-webkit-fir/1705989#1705989 0 Answer by Moishe for Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool? Moishe 2009-11-10T06:27:35Z 2009-11-10T06:27:35Z <p>In Firebug, you should be able to see that script after the page is loaded and the script is injected. When you do, you can set a breakpoint in the appropriate place, and it'll be preserved when you refresh the page.</p> http://stackoverflow.com/questions/1699313/how-to-remove-html-tag-in-java/1699349#1699349 1 Answer by Moishe for How to remove HTML tag in Java Moishe 2009-11-09T06:13:38Z 2009-11-09T06:13:38Z <p>No. Regular expressions can not by definition parse HTML.</p> <p>You could use a regex to s/&lt;[^>]*>// or something naive like that but it's going to be insufficient, especially if you're interested in removing the contents of tags.</p> <p>As another poster said, use an actual HTML parser.</p> http://stackoverflow.com/questions/1698954/static-functions-in-jscript/1698991#1698991 1 Answer by Moishe for static functions in JScript? Moishe 2009-11-09T03:48:20Z 2009-11-09T06:03:09Z <p>The standard in code that I use and write is:</p> <pre><code>MyAwesomeClass = function() { this.memberVariable_ = "some-value"; }; MyAwesomeClass.staticFunction = function(x) { return x + 1; }; MyAwesomeClass.prototype.instanceFunction = function(y) { this.memberVariable_ += y; }; </code></pre> <p>So to use this class you'd do something like:</p> <pre><code>// Call an instance method myClassInstance = new MyAwesomeClass(); myClassInstance.instanceFunction(foo); // Call a static method var baz = MyAwesomeClass.staticFunction(bar); </code></pre> <p>The thing to remember about Javascript is that the class itself is an object, so you're setting properties of that object to functions. The 'prototype' property is the special case for instance methods.</p> http://stackoverflow.com/questions/1696085/resume-question-regarding-relocation/1697313#1697313 0 Answer by Moishe for Resume question regarding relocation Moishe 2009-11-08T17:50:36Z 2009-11-08T17:50:36Z <p>Good programmers are scarce everywhere. Honesty about your location and your plans will count much more than your location; hiring managers will appreciate transparency.</p> http://stackoverflow.com/questions/1697020/whats-the-difference-between-a-derived-object-and-a-base-object-in-c/1697085#1697085 0 Answer by Moishe for What's the difference between a derived object and a base object in c++? Moishe 2009-11-08T16:42:49Z 2009-11-08T16:42:49Z <p>Are you asking about the respective objects' representation in memory?</p> <p>Both the base class and the derived class will have a table of pointers to their virtual functions. Depending on which functions have been overridden, the value of entries in that table will change.</p> <p>If B adds more virtual functions that aren't in the base class, B's table of virtual methods will be larger (or there may be a separate table, depending on compiler implementation).</p> http://stackoverflow.com/questions/1507295/how-to-answer-what-are-your-strengths-and-what-are-your-weakness-question-during/1695696#1695696 1 Answer by Moishe for How to answer what are your strengths and what are your weakness question during Interview ? Moishe 2009-11-08T07:47:35Z 2009-11-08T07:47:35Z <p>I had a friend answer this question by saying, "my biggest weakness is I can't take questions like this seriously."</p> <p>This is an awful question, for all the reasons noted here. You can say exactly what the interviewer wants to hear without the interviewer being able to tell that that's what you're doing.</p> <p>(btw, my friend got the job)</p> http://stackoverflow.com/questions/1691064/what-is-a-good-coding-platform-to-use-for-telephone-coding-interview/1695654#1695654 1 Answer by Moishe for What is a good (coding) platform to use for telephone coding interview? Moishe 2009-11-08T07:23:31Z 2009-11-08T07:42:31Z <p>I've heard good things about EtherPad but haven't used it myself.</p> <p>Generally I would look for something that:</p> <ul> <li>doesn't require signup (creating a new account can be big overhead)</li> <li>doesn't require an invite (Google Wave might really well, but invites<br> are unpredictable right now)</li> <li>doesn't require extra setup (eg. inviting someone to chat etc)</li> </ul> <p>EtherPad seems to satisfy all these requirements.</p> <p>Failing that, I think you can actually glean a ton of good information in a phone interview without seeing written code. Candidates can describe pseudo-code and algorithms over the phone and being able to hold a solution in your head well enough to verbalize it is actually IMO pretty good signal about facility with programming &amp; algorithms.</p> http://stackoverflow.com/questions/1517999/what-types-of-topics-and-questions-can-be-expected-when-interviewing-for-entry-l/1695674#1695674 0 Answer by Moishe for What types of topics, and questions can be expected when interviewing for entry level programming/IT positions? Moishe 2009-11-08T07:35:32Z 2009-11-08T07:35:32Z <p>Check out the MIT "<a href="http://courses.csail.mit.edu/iap/interview/" rel="nofollow">Hacking a Google Interview</a>" course, especially the "materials" tab. I wish I'd had access to this sort of thing before my first technical interview at Microsoft way back when.</p> <p>If you're interviewing at a big tech company like Google, Microsoft, Amazon, etc. expect to write lots of code on the whiteboard, solving problems that can be approached from "first principles" (ie., if you know how a computer works and you're smart you should be able to get the solution to the problem) rather than "quiz" problems (do you know what such-and-such word means?). Also expect some questions about designing systems, trade-offs of different data structures or storage types, etc.</p> <p>Assuming that you're a really good programmer already, the best thing you can do to prep is practice interviewing. Get some friends together and take turns at the whiteboard answering some of the sample questions from that MIT course.</p> http://stackoverflow.com/questions/1695616/how-to-gracefully-handle-iframe-breaker/1695642#1695642 0 Answer by Moishe for How to gracefully handle iframe breaker? Moishe 2009-11-08T07:14:13Z 2009-11-08T07:14:13Z <p>Are you talking about an embedded iframe setting top.location? There's no way to prevent that as far as I know.</p> <p>If you're worried about the contents of an iframe doing something you don't want, you could consider sanitizing the contents of that frame and hosting it yourself. Obviously this is very tricky, but it's pretty much the only true solution. See <a href="http://code.google.com/p/google-caja/" rel="nofollow">Caja</a> for a project that does this. This limits what you can actually host of course (if the code you're hosting uses XHR you're outta luck, for instance).</p> http://stackoverflow.com/questions/1801459/algorithm-how-to-delete-duplicate-elements-in-a-list-efficiently/1801475#1801475 Comment by Moishe on Algorithm - How to delete duplicate elements in a list efficiently? Moishe 2009-11-26T04:35:25Z 2009-11-26T04:35:25Z I was about to downvote based on your first sentence &quot;if no ordering you're stuck with O(n^2)&quot; b/c you can solve it with a hashtable. Then I saw your last section about the ArrayList of a HashSet and, well, there ya go. Maybe downvoters didn't read your whole response...? http://stackoverflow.com/questions/1795375/pathfinding-with-weighted-routes Comment by Moishe on Pathfinding with weighted routes Moishe 2009-11-25T08:23:35Z 2009-11-25T08:23:35Z Doesn't the &quot;movement only towards destination&quot; restriction negate the possibility of looping? http://stackoverflow.com/questions/1786144/c-passing-const-string-references-in-methods/1786168#1786168 Comment by Moishe on C++ passing const string references in methods? Moishe 2009-11-23T22:52:12Z 2009-11-23T22:52:12Z Maybe my C++ is too rusty. But if you do: &quot;std::string&amp; name; name = inTextureName;&quot; and then inTextureName goes out of scope, won't name be pointing at something random on the stack? http://stackoverflow.com/questions/1785811/programmatically-check-if-a-number-is-a-palindrome/1785880#1785880 Comment by Moishe on Programmatically check if a number is a palindrome Moishe 2009-11-23T21:27:53Z 2009-11-23T21:27:53Z You can do this without allocating memory by eliminating the array, if you understand what the string conversion is doing. That's what I was trying to show. http://stackoverflow.com/questions/1767850/code-golf-perfect-tic-tac-toe Comment by Moishe on Code Golf: Perfect Tic-Tac-Toe Moishe 2009-11-20T02:15:15Z 2009-11-20T02:15:15Z I think &quot;artificial-intelligence&quot; isn't a correct tag for this. There are only 2^9 possible board combos (2^7 with 4-way rotation, 2^6 with mirroring). The whole table (input &amp; output) can fit into 96 bytes. &quot;A curious game, the only winning move is not to play.&quot; http://stackoverflow.com/questions/1720737/from-an-interview-removing-rows-and-columns-in-an-nn-matrix-to-maximize-the-sum/1720840#1720840 Comment by Moishe on From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Moishe 2009-11-13T07:31:52Z 2009-11-13T07:31:52Z Upvoted for concise example where it doesn't work http://stackoverflow.com/questions/1720737/from-an-interview-removing-rows-and-columns-in-an-nn-matrix-to-maximize-the-sum/1720787#1720787 Comment by Moishe on From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Moishe 2009-11-13T05:31:13Z 2009-11-13T05:31:13Z Can you give an example where you'd be throwing out &quot;good values&quot; on other columns when you delete a row? I'm pretty sure it doesn't work that way. http://stackoverflow.com/questions/1720737/from-an-interview-removing-rows-and-columns-in-an-nn-matrix-to-maximize-the-sum/1726612#1726612 Comment by Moishe on From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Moishe 2009-11-13T05:29:11Z 2009-11-13T05:29:11Z I said, &quot;where n is the size of the board&quot;. If n is the dimension along one axis it's n^2. http://stackoverflow.com/questions/1713307/how-do-you-get-a-data-value-associated-with-a-specific-col-row-from-a-2-d-array-i Comment by Moishe on How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe 2009-11-11T06:59:17Z 2009-11-11T06:59:17Z Are you trying to implement a sparse 2d array? You could use a Map&lt;Pair&lt;int,int&gt;,int&gt; to do that. http://stackoverflow.com/questions/1713307/how-do-you-get-a-data-value-associated-with-a-specific-col-row-from-a-2-d-array-i/1713405#1713405 Comment by Moishe on How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe 2009-11-11T06:57:29Z 2009-11-11T06:57:29Z Not sure what 'colArray' does in this code. http://stackoverflow.com/questions/1713307/how-do-you-get-a-data-value-associated-with-a-specific-col-row-from-a-2-d-array-i/1713370#1713370 Comment by Moishe on How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe 2009-11-11T06:51:19Z 2009-11-11T06:51:19Z Even with a linked list, you need a column for every row. You need m x n collections, not 2. http://stackoverflow.com/questions/1705952/is-possible-to-debug-dynamic-loading-javascript-by-some-debugger-like-webkit-fir/1705989#1705989 Comment by Moishe on Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool? Moishe 2009-11-11T06:47:38Z 2009-11-11T06:47:38Z You're right. That doesn't work. I tried it with eval() and Firebug will let you set a breakpoint when you use that. Is there a reason you can't use eval() and need to set a script tag? Even more generally, is there a reason you can't serve this dynamic javascript as a separate .js file on your server? What problem are you trying to solve? http://stackoverflow.com/questions/1712952/is-there-a-known-implementation-of-an-indexed-linked-list/1713020#1713020 Comment by Moishe on Is there a known implementation of an indexed linked list? Moishe 2009-11-11T06:34:30Z 2009-11-11T06:34:30Z I think what you're describing is the first step towards a skip list. http://stackoverflow.com/questions/1705922/whats-happening-when-switching-themes-in-sugar-crm-or-similar-kind-of-application/1706006#1706006 Comment by Moishe on Whats happening when switching themes in Sugar CRM or similar kind of application Moishe 2009-11-10T15:19:44Z 2009-11-10T15:19:44Z Just conjecture, they could use XHR to post the new theme back and/or retrieve existing themes. http://stackoverflow.com/questions/1695616/how-to-gracefully-handle-iframe-breaker/1695642#1695642 Comment by Moishe on How to gracefully handle iframe breaker? Moishe 2009-11-08T15:53:03Z 2009-11-08T15:53:03Z Caja re-writes javascript to sanitize it and only allow it access to a subset of the DOM. One of the things the cajoled code is not allowed access to is 'top'. This is a good solution when the author of the iframe you're embedding knows their content is going to be embedded, because you need some standards around what you'll expose to their code. A good example of this is Apache Shindig (<a href="http://incubator.apache.org/shindig/" rel="nofollow">incubator.apache.org/shindig</a>), which allows gadget embedding and cajoling.