User Moishe - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:34:17Zhttp://stackoverflow.com/feeds/user/23786http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1786144/c-passing-const-string-references-in-methods/1786168#1786168-1Answer by Moishe for C++ passing const string references in methods?Moishe2009-11-23T21:35:59Z2009-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#17858801Answer by Moishe for Programmatically check if a number is a palindromeMoishe2009-11-23T20:53:03Z2009-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 > 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#17781441Answer by Moishe for What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)?Moishe2009-11-22T07:53:56Z2009-11-22T07:53:56Z<p>Why not just use the <a href="http://code.google.com/docreader/#p=gwt-google-apis&s=gwt-google-apis&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#17776750Answer by Moishe for How to access Google/Gmail/Gchat/Reader user iconsMoishe2009-11-22T02:53:25Z2009-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#17610961Answer by Moishe for Any great books of algorithm puzzles to practice whiteboard coding with?Moishe2009-11-19T05:31:33Z2009-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#17396971Answer by Moishe for Validating user input with JavaScriptMoishe2009-11-16T02:12:35Z2009-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#17265211Answer by Moishe for "ghost" form submissionsMoishe2009-11-13T01:10:37Z2009-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#17265150Answer by Moishe for Memory Leak AnalysisMoishe2009-11-13T01:08:22Z2009-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#17207354Answer by Moishe for When career conflicts with companyMoishe2009-11-12T08:25:43Z2009-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#17207041Answer by Moishe for Preparation for a c++ interviewMoishe2009-11-12T08:17:38Z2009-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#17202241Answer by Moishe for Tips on rendering html on clientMoishe2009-11-12T06:05:49Z2009-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#17200191Answer by Moishe for XMPP chat sent/received message synchronizationMoishe2009-11-12T05:08:07Z2009-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#17200042Answer by Moishe for communication between Java and C#Moishe2009-11-12T05:03:59Z2009-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#17199041Answer by Moishe for Best approach to parse text files that contain multiple types of delimiters?Moishe2009-11-12T04:35:31Z2009-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<String> fields);
Map<String,String> 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#17137210Answer by Moishe for Passing variable with javacript function Moishe2009-11-11T07:56:39Z2009-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#17136201Answer by Moishe for What is rgb formula for a gradient going from white to blue?Moishe2009-11-11T07:32:06Z2009-11-11T07:32:06Z<p>Set R & 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#17136000Answer by Moishe for Threads & Processes Vs MultiThreading & Multi-Core/MultiProcessor : How they are mapped?Moishe2009-11-11T07:26:58Z2009-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#17135560Answer by Moishe for What is the complexity of this algorithm? Moishe2009-11-11T07:11:44Z2009-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#17133601Answer by Moishe for How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe2009-11-11T06:04:36Z2009-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 >= 0) && (i < myArray.length) &&
(j >= 0) && (j < 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#17134410Answer by Moishe for Is there a known implementation of an indexed linked list?Moishe2009-11-11T06:33:11Z2009-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#17060061Answer by Moishe for Whats happening when switching themes in Sugar CRM or similar kind of applicationMoishe2009-11-10T06:33:08Z2009-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#17059890Answer by Moishe for Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool?Moishe2009-11-10T06:27:35Z2009-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#16993491Answer by Moishe for How to remove HTML tag in JavaMoishe2009-11-09T06:13:38Z2009-11-09T06:13:38Z<p>No. Regular expressions can not by definition parse HTML.</p>
<p>You could use a regex to s/<[^>]*>// 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#16989911Answer by Moishe for static functions in JScript?Moishe2009-11-09T03:48:20Z2009-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#16973130Answer by Moishe for Resume question regarding relocationMoishe2009-11-08T17:50:36Z2009-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#16970850Answer by Moishe for What's the difference between a derived object and a base object in c++?Moishe2009-11-08T16:42:49Z2009-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#16956961Answer by Moishe for How to answer what are your strengths and what are your weakness question during Interview ?Moishe2009-11-08T07:47:35Z2009-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#16956541Answer by Moishe for What is a good (coding) platform to use for telephone coding interview?Moishe2009-11-08T07:23:31Z2009-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 & algorithms.</p>
http://stackoverflow.com/questions/1517999/what-types-of-topics-and-questions-can-be-expected-when-interviewing-for-entry-l/1695674#16956740Answer by Moishe for What types of topics, and questions can be expected when interviewing for entry level programming/IT positions?Moishe2009-11-08T07:35:32Z2009-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#16956420Answer by Moishe for How to gracefully handle iframe breaker?Moishe2009-11-08T07:14:13Z2009-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#1801475Comment by Moishe on Algorithm - How to delete duplicate elements in a list efficiently?Moishe2009-11-26T04:35:25Z2009-11-26T04:35:25ZI was about to downvote based on your first sentence "if no ordering you're stuck with O(n^2)" 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-routesComment by Moishe on Pathfinding with weighted routesMoishe2009-11-25T08:23:35Z2009-11-25T08:23:35ZDoesn't the "movement only towards destination" restriction negate the possibility of looping?http://stackoverflow.com/questions/1786144/c-passing-const-string-references-in-methods/1786168#1786168Comment by Moishe on C++ passing const string references in methods?Moishe2009-11-23T22:52:12Z2009-11-23T22:52:12ZMaybe my C++ is too rusty. But if you do: "std::string& name; name = inTextureName;" 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#1785880Comment by Moishe on Programmatically check if a number is a palindromeMoishe2009-11-23T21:27:53Z2009-11-23T21:27:53ZYou 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-toeComment by Moishe on Code Golf: Perfect Tic-Tac-ToeMoishe2009-11-20T02:15:15Z2009-11-20T02:15:15ZI think "artificial-intelligence" 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 & output) can fit into 96 bytes.
"A curious game, the only winning move is not to play."http://stackoverflow.com/questions/1720737/from-an-interview-removing-rows-and-columns-in-an-nn-matrix-to-maximize-the-sum/1720840#1720840Comment by Moishe on From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining valuesMoishe2009-11-13T07:31:52Z2009-11-13T07:31:52ZUpvoted for concise example where it doesn't workhttp://stackoverflow.com/questions/1720737/from-an-interview-removing-rows-and-columns-in-an-nn-matrix-to-maximize-the-sum/1720787#1720787Comment by Moishe on From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining valuesMoishe2009-11-13T05:31:13Z2009-11-13T05:31:13ZCan you give an example where you'd be throwing out "good values" 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#1726612Comment by Moishe on From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining valuesMoishe2009-11-13T05:29:11Z2009-11-13T05:29:11ZI said, "where n is the size of the board". 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-iComment by Moishe on How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe2009-11-11T06:59:17Z2009-11-11T06:59:17ZAre you trying to implement a sparse 2d array? You could use a Map<Pair<int,int>,int> 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#1713405Comment by Moishe on How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe2009-11-11T06:57:29Z2009-11-11T06:57:29ZNot 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#1713370Comment by Moishe on How do you get a data value associated with a specific col,row from a 2-d array in java? Moishe2009-11-11T06:51:19Z2009-11-11T06:51:19ZEven 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#1705989Comment by Moishe on Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool?Moishe2009-11-11T06:47:38Z2009-11-11T06:47:38ZYou'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#1713020Comment by Moishe on Is there a known implementation of an indexed linked list?Moishe2009-11-11T06:34:30Z2009-11-11T06:34:30ZI 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#1706006Comment by Moishe on Whats happening when switching themes in Sugar CRM or similar kind of applicationMoishe2009-11-10T15:19:44Z2009-11-10T15:19:44ZJust 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#1695642Comment by Moishe on How to gracefully handle iframe breaker?Moishe2009-11-08T15:53:03Z2009-11-08T15:53:03ZCaja 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.