User levik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T12:30:38Zhttp://stackoverflow.com/feeds/user/4465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/603069/what-does-the-regular-expression-mean5What does the "?:^" regular expression mean?levik2009-03-02T16:52:55Z2009-12-14T23:33:16Z
<p>I am looking at this sub-expression (this is in JavaScript):</p>
<pre><code>(?:^|.....)
</code></pre>
<p>I know that <strong>?</strong> means "zero or one times" when it follows a character, but not sure what it means in this context.</p>
http://stackoverflow.com/questions/1539367/remove-whitespace-and-line-breaks-between-html-elements-using-jquery/1539414#15394141Answer by levik for Remove whitespace and line breaks between HTML elements using jQuerylevik2009-10-08T17:44:00Z2009-10-08T17:44:00Z<p>You can probably do this better after setting HTML into a DOM node. Once the browser has parsed everything and built a DOM tree out of our markup, you can do a DOM walk and for every text node that you find, either remove it completely if it has no non-whitespace characters, or trim whitespace off the start and end of it if it does.</p>
http://stackoverflow.com/questions/1539033/problem-setting-center-on-google-map/1539168#15391681Answer by levik for Problem Setting Center on Google Maplevik2009-10-08T17:02:00Z2009-10-08T17:02:00Z<p>I suggest you debug your code. I only see one place where you're calling <code>map.addOverlay()</code> - add a breakpoint here and see if you ever call it, and if so, look at the call stack.</p>
<p>Pasting your entire application into a stackoverflow question is probably not the correct debugging technique :)</p>
http://stackoverflow.com/questions/94934/what-debug-logging-tools-are-available-from-javascript6What debug logging tools are available from Javascript?levik2008-09-18T17:52:47Z2009-10-06T23:09:09Z
<p>I'd like to create a "universal" debug logging function that inspects the JS namespace for well-known logging libraries.</p>
<p>For example, currently it supports Firebug's console.log:</p>
<pre><code>var console = window['console'];
if (console && console.log) {
console.log(message);
}
</code></pre>
<p>Obviously, this only works in Firefox if Firebug is installed/enabled (it'll also work on other browsers with <a href="http://getfirebug.com/lite.html" rel="nofollow">Firebug Lite</a>). Basically, I will be providing a JS library which I don't know what environment it will be pulled into, and I'd like to be able to figure out if there is a way to report debug output to the user.</p>
<p>So, perhaps jQuery provides something - I'd check that jQuery is present and use it. Or maybe there are well-known IE plugins that work that I can sniff for. But it has to be a fairly well-established and used mechanism. I can't check for every obscure log function that people create.</p>
<p>Please, only one library/technology per answer, so they can get vote-ranked. Also, using alert() is a good short-term solution but breaks down if you want robust debug logging or if blocking the execution is a problem.</p>
http://stackoverflow.com/questions/1523851/gwt-printing-to-pdf/1523877#15238771Answer by levik for GWT printing to PDFlevik2009-10-06T06:18:46Z2009-10-06T06:18:46Z<p>PDF printing is a capability often added to browsers, but there is no way to trigger it from GWT or any other Javascript framework. The best you can do is call the page's print functionality, and hope the user has a PDF printer driver installed and can figure out how to use it.</p>
<p>To be 100% certain and user-friendly, you will need to generate the PDF on the server though.</p>
http://stackoverflow.com/questions/1523823/hidden-divs-reducing-latency-with-style-display-none-javascript/1523859#15238591Answer by levik for Hidden divs - reducing latency with style display none + javascriptlevik2009-10-06T06:13:34Z2009-10-06T06:13:34Z<p>Include the css in an inline style block at the top of the page:</p>
<pre><code><style>
.hidden: { display: none; }
</style>
</code></pre>
<p>Then annotate your div with the needed class:</p>
<pre><code><div class="hidden"> ... </div>
</code></pre>
<p>The upshot of this approach is that to show the element, you don't need to set display to <code>block</code>, you can just add/remove the class from the element with JavaScript. This works out better because not every element needs display=block (tables and inline elements have different display modes).</p>
<p>Despite what another poster said, it's not bad practice. You should separate your CSS into presentational and functional markup - functional one controls such logical things as <strong>whether</strong> or not something gets shown, presentational one just determines <strong>how</strong> to show it. There is no issue putting functional CSS inline to avoid the page jumping around.</p>
http://stackoverflow.com/questions/1518576/unwanted-padding-bottom-of-a-div/1518602#15186020Answer by levik for Unwanted padding-bottom of a divlevik2009-10-05T07:08:35Z2009-10-05T07:08:35Z<p>It's entirely possible that what you think is bottom padding on the <code>div</code> is actually caused by another style rule - for example, padding on the <code>body</code> element, which is possible if you enable/disable browser quirks mode (playing with the DOCTYPE tends to have that effect).</p>
<p>If that is the case, it should be possible to override the default styling with a custom style rule.</p>
<p>Firebug can be a great help here as it shows which CSS styles affect which DOM element.</p>
http://stackoverflow.com/questions/1518528/what-is-the-reverse-of-arraylist-tostring-for-a-java-arraylist/1518578#15185783Answer by levik for What is the reverse of (ArrayList).toString for a Java ArrayList?levik2009-10-05T07:00:20Z2009-10-05T07:00:20Z<p>The short answer is "No". There is no simple way to re-import an Object from a String, since certain type information is lost in the <code>toString()</code> serialization.</p>
<p>However, for specific formats, and specific (known) types, you should be able to write code to parse a String manually:</p>
<pre><code>// Takes Strings like "[a, b, c]"
public List parse(String s) {
List output = new ArrayList();
String listString = s.substring(0, s.length - 1); // chop off brackets
for (String token : new StringTokenizer(listString, ",")) {
output.add(token.trim);
}
return output;
}
</code></pre>
<p>Reconstituting objects from their <strong>serialized</strong> form is generally called <strong>deserialization</strong></p>
http://stackoverflow.com/questions/1514151/implementing-isinstance-in-javascript/1514256#15142561Answer by levik for Implementing isInstance in Javascriptlevik2009-10-03T16:52:55Z2009-10-03T16:52:55Z<p>To leave the good design argument aside for a second and focus on your problem, the issue is that you set <code>isInstance()</code> to be a method on <code>Function</code>'s prototype. This means Objects that are <code>Function</code>s will have it, while Objects that are not (such as <code>Object1</code> and <code>Object2</code> in your example) will not.</p>
<p>I suggest that instead of trying to implement it as a method, you have it be a static function:</p>
<pre><code>function isInstance(object, ofClass) {
// Same logic as you have, except use
// object.prototype instead of this.prototype
}
</code></pre>
<p>You can then invoke it as</p>
<pre><code>isInstance(obj2, Object2);
</code></pre>
http://stackoverflow.com/questions/1514214/java-terminology-clarification/1514239#15142392Answer by levik for Java, terminology clarificationlevik2009-10-03T16:45:40Z2009-10-03T16:45:40Z<p>In this case, <code>A</code> is the <strong>reference</strong> type while <code>B</code> is the <strong>instance</strong> type</p>
http://stackoverflow.com/questions/1514061/how-can-i-disable-javascript-warnings-in-the-webbrowser-control/1514092#15140920Answer by levik for How can I disable JavaScript warnings in the WebBrowser control?levik2009-10-03T15:41:20Z2009-10-03T15:41:20Z<p>It's possible to work around this particular warning by having the link element be part of the page and visible.</p>
<p>Calling the <code>click()</code> method actually does more than execute an onclick handler and navigate the browser, it also focuses the element - just like when a real click happens. If the element is offscreen, this behavior is not possible.</p>
<p>Simply attach the link to the body to not have this warning show up.</p>
http://stackoverflow.com/questions/1514019/when-are-javascript-functions-executed/1514075#15140755Answer by levik for When are javascript functions executedlevik2009-10-03T15:36:14Z2009-10-03T15:36:14Z<p>As long as the script file is included above the function usage, the function will be available. The browser will halt rendering when it encounters a </p>
<pre><code><script src="..."></script>
</code></pre>
<p>tag. It will only resume processing the document page when the script is downloaded and parsed. So any function defined in the script will be available right after:</p>
<pre><code><script src="..."></script> <!-- Browser waits until this script is loaded -->
<script>
foo(); // if function foo was in the script above, it is ALWAYS available now
</script>
</code></pre>
<p>This is actually not always a desired behavior - sometimes you don't want to wait for a script to download as it may make your code seem slow. One technique is to have all the scripts load and execute at the bottom of the page before <code></body></code>, when all the HTML is already rendered.</p>
http://stackoverflow.com/questions/1511284/how-to-quickly-resort-a-list-with-only-one-changed-value/1511292#15112920Answer by levik for How to quickly resort a list with only one changed value?levik2009-10-02T19:08:42Z2009-10-02T19:08:42Z<p>You could just do one iteration of bubble sort: start from the beginning of the list, and iterate until you find the out of order element. Then move it in the appropriate direction until it falls in place. This will give you at worst 2N performance.</p>
http://stackoverflow.com/questions/1506704/inject-javascript-to-a-website/1506837#15068370Answer by levik for Inject Javascript to a websitelevik2009-10-01T22:25:33Z2009-10-01T22:25:33Z<p>While puttig JS into firebug as many suggest will work fine, you don't actually need firebug.</p>
<p>Putting </p>
<pre><code>javascript:handleSubmit(2500)
</code></pre>
<p>into the URL bar of your browser and clicking Go / pressing Enter should work.</p>
<p>Incidentally, most bookmarklets work on the same principle.</p>
http://stackoverflow.com/questions/1506803/good-resources-for-javascript-2d-game-programming/1506816#15068160Answer by levik for Good resources for Javascript 2d game programming?levik2009-10-01T22:19:13Z2009-10-01T22:19:13Z<p>How about <a href="http://www.javascriptgaming.com/" rel="nofollow">http://www.javascriptgaming.com/</a> ?</p>
<p>I wouldn't say Javascript is a bad language to learn gaming. It's now powerful and fast enough that you should be able to implement many 2D game clients in it. The current limitations make it a good platform to learn how to optimize you game - a benefit since computers today would normally allow you to make simple games pretty inefficiently and still "work" ok. Being in a more constrained environment gives you a good experience at optimization.</p>
http://stackoverflow.com/questions/1506714/question-about-javascript-graphic-animation-saving-and-restoring-a-sprite-back/1506807#15068071Answer by levik for Question about JavaScript graphic animation: saving and restoring a "sprite" backgroundlevik2009-10-01T22:17:27Z2009-10-01T22:17:27Z<p>Definitely turn your "game world" into a div with the map and track on the background image. You can then manipulate an <code><img></code> element (your train) to change its location:</p>
<pre><code>var train = document.createElement("img");
train.srx = "...";
train.style.position = "absolute";
document.getElementById("gameboard").appendChild(train);
function moveTrainTo(x, y) {
train.style.left = x + "px";
train.style.top = y + "px";
}
</code></pre>
http://stackoverflow.com/questions/1506659/wrapped-captcha-control-in-a-p-tag-how-to-shift-it-to-the-right/1506692#15066921Answer by levik for wrapped captcha control in a p tag, how to shift it to the right?levik2009-10-01T21:45:04Z2009-10-01T21:45:04Z<p>Did you try setting the style to a 50 pixel padding?</p>
<pre><code><p style="padding-left: 50px;"> ... </p>
</code></pre>
<p>If that doesn't work, you can always isert a 50 pixel image before the control.</p>
http://stackoverflow.com/questions/1479098/firefox-css-against-me/1479125#14791251Answer by levik for Firefox CSS Against me? ? levik2009-09-25T19:23:55Z2009-09-25T19:23:55Z<p>If you can get the CSS to look good for each individual browser, just serve different CSS files based on which browser is being used. You can check for IE/CSS on the server, or use a client-side trick.</p>
<p>If you are having specific problems with your CSS - you should ask questions about them, but asking people to "figure out why your site looks horrible" isn't likely to get you much help.</p>
http://stackoverflow.com/questions/1465145/introduction-to-unit-testing-in-javascript/1465297#14652972Answer by levik for introduction to unit-testing in javascriptlevik2009-09-23T10:55:37Z2009-09-23T10:55:37Z<p>Unit testing in general allows you to build up a battery of small tests that verify fine-grained bits of your code, especially edge cases. This is especially useful in Javascript where your application needs to run the same way on different browser platforms.</p>
<p>Creating a suite of such tests allow you to ensure that changes you make today don't break code you wrote yesterday (or a month ago).</p>
<p>For example, you may have a part of your application that walks all the DOM nodes in the document to find and bind to nodes it cares about. You decide to optimize this, perhaps by using the jquery selector. If you have a test that all the possible nodes can be found properly, you can quickly see if the changes you just made broke anything, on any of your target browsers.</p>
<p>You can also "fake out" XmlHttpRequest interactions with the server using various frameworks - this allows you to verify that your client code can react properly to all sorts of results and errors coming back from your backend.</p>
<p>Basically, as with other languages, unit tests in JS allow you to automate answering the question "did I just break anything" with these changes?</p>
http://stackoverflow.com/questions/1462919/form-that-makes-browser-redirect-when-accessed-by-either-a-regular-form-submit-or/1463216#14632160Answer by levik for Form that makes browser redirect when accessed by either a regular form submit or an Ajax request - is this possible?levik2009-09-22T23:45:57Z2009-09-22T23:45:57Z<p>Why not have your "ajax action" simply fill in the needed form fields and submit the form instead? This way you'll get exactly the same behavior as when submitting by hand.</p>
http://stackoverflow.com/questions/1462997/the-comparison-of-ems-to-pixels/1463032#14630324Answer by levik for The comparison of ems to pixelslevik2009-09-22T22:44:00Z2009-09-22T22:44:00Z<p>While as others have said, there is no set ratio - as it varies from font to font - it is possible to calculate this for a <strong>particular</strong> font face/size combination by using DHTML.</p>
<p>Simply create a div with</p>
<pre><code>style="width: 1em; visibility:hidden"
</code></pre>
<p>and append it to the place in the document you are interested about.</p>
<p>You can then find out its width by checking the div's <code>clientWidth</code> property</p>
http://stackoverflow.com/questions/1394610/opensocial-hi5-api/1462306#14623060Answer by levik for Opensocial + hi5 apilevik2009-09-22T20:11:26Z2009-09-22T20:11:26Z<p>I think you want to get started by grabbing the .Net client libraries from here: <a href="http://code.google.com/p/opensocial-net-client/" rel="nofollow">http://code.google.com/p/opensocial-net-client/</a></p>
<p>The package should have a sample app or two to get you started.</p>
<p>Look at the Hi5 specific links here: <a href="http://wiki.opensocial.org/index.php?title=REST%5Fand%5FRPC%5Fimplementations#hi5" rel="nofollow">http://wiki.opensocial.org/index.php?title=REST%5Fand%5FRPC%5Fimplementations#hi5</a> - you'll need them to have your application properly authenticate to get access to the data Hi5 has.</p>
http://stackoverflow.com/questions/1386846/can-anyone-suggest-a-good-open-source-html-parser-to-be-used-with-java/1419646#14196460Answer by levik for Can anyone suggest a good open source HTML parser to be used with java? levik2009-09-14T04:12:44Z2009-09-14T04:12:44Z<p><a href="http://nekohtml.sourceforge.net/" rel="nofollow">NekoHTML</a> is a good one - it will actually fix invalid HTML makrup and make it accessible using DOM-compatible APIs.</p>
http://stackoverflow.com/questions/1419598/function-not-defined-javascript/1419636#14196360Answer by levik for Function not defined javascriptlevik2009-09-14T04:08:56Z2009-09-14T04:08:56Z<p>There are a couple of things to check:</p>
<ul>
<li>In FireBug, see if there are any loading errors that would indicate that your script is badly formatted and the functions do not get registered.</li>
<li>You can also try typing "<code>proceedToSecond</code>" into the FireBug console to see if the function gets defined</li>
<li>One thing you may try is removing the space around the @type attribute to the <code>script</code> tag: it should be <code><script type="text/javascript"></code> instead of <code><script type = "text/javascript"></code></li>
</ul>
http://stackoverflow.com/questions/299619/get-the-absolute-path-of-the-currently-edited-file-in-eclipse0Get the absolute path of the currently edited file in Eclipselevik2008-11-18T18:12:00Z2009-09-02T23:50:20Z
<p>I'd like to write a plugin that does something with the currently edited file in Eclipse. But I'm not sure how to properly get the file's full path.</p>
<p>This is what I do now:</p>
<pre><code>IFile file = (IFile) window.getActivePage().getActiveEditor.getEditorInput().
getAdapter(IFile.class);
</code></pre>
<p>Now I have an IFile object, and I can retrieve it's path:</p>
<pre><code>file.getFullPath().toOSString();
</code></pre>
<p>However this still only gives me the path relative to the workspace. How can I get the absolute path from that?</p>
http://stackoverflow.com/questions/1344470/why-is-document-getelementbyidtableid-innerhtml-not-working-in-ie8/1344895#13448951Answer by levik for Why is document.getElementById('tableId').innerHTML not working in IE8?levik2009-08-28T03:33:01Z2009-08-28T03:33:01Z<p>Since TR's innerHTML is read-only as a few people have said, you are better off changing your markup to target the TD:</p>
<pre><code><table><tr><td id="changeme"> ... </td></tr></table>
</code></pre>
<p>Then you can set the content of the TD as you wish via innerHTML, and change other properties by setting them on the DOM node:</p>
<pre><code>var td = document.getElementById("changeme");
td.innerHTML = "New Content";
td.cssText = "color: red";
td.className = "highlighted";
</code></pre>
<p>You get the idea...</p>
<p>This saves you the overhead of destroying and creating an extra DOM element (the TD)</p>
http://stackoverflow.com/questions/1344605/how-do-you-organize-your-javascript-code/1344850#13448501Answer by levik for How do you organize your Javascript code?levik2009-08-28T03:13:18Z2009-08-28T03:20:56Z<p>For <em>really</em> JS-heavy applications, you should try to mimic Java. </p>
<ul>
<li>Have as little JS in your HTML as possible (preferably - just the call to the bootstrap function)</li>
<li>Break the code into logical units, keep them all in separate files </li>
<li>Use a script to concatenate/minify the files into a single bundle which you will serve as part of your app</li>
<li>Use JS namespaces to avoid cluttering up the global namespace:</li>
</ul>
<p> </p>
<pre><code>var myapp = {};
myapp.FirstClass = function() { ... };
myapp.FirstClass.prototype.method = function() { ... };
myapp.SecondClass = function() { ... };
</code></pre>
<p>Using all these techniques together will yield a very manageable project, even if you are not using any frameworks.</p>
http://stackoverflow.com/questions/1094863/dynamically-creating-object-with-properties-in-javascript/1095016#10950160Answer by levik for dynamically creating object with properties in javascriptlevik2009-07-07T21:35:40Z2009-07-07T21:35:40Z<p>Using the JSON notation as you demonstrate should work. It's just a matter of figuring out your syntax.</p>
<p>The notation allows you to create pretty complex structures in one statement:</p>
<pre><code>var continent = {
name: "North America",
countries: [
{ name: "USA",
states: ['AL', 'AK', 'AZ', ... ]
},
{ name: "Canada",
states: ['Ontario', 'Quebec', ... ]
}
]
}
</code></pre>
<p>And so on.</p>
<p>By the way, this also allows you to use the following shorthand for creating blank Objects:</p>
<pre><code>var myObj = {};
</code></pre>
http://stackoverflow.com/questions/1085364/why-is-style-multiline-comment-bad-in-java/1085536#10855365Answer by levik for Why is '//' style multiline comment bad (in Java)?levik2009-07-06T05:20:58Z2009-07-06T05:20:58Z<p>The idea is that a multiline text comment is one entity - which you want to logically keep together. Line breaks in such a comment are nothing more than places to wrap text, so breaking it up into many "separate" comments makes no sense. Therefore, you construct a single comment block around the whole thing - using /* */. </p>
<p>For commenting out code, each line is its own logical unit, so using consecutive "//"s is ok - sometimes. This is especially true if individual lines could be commented back "in" for some reason, but not all of them. Though if you want to comment out a whole block code where it will never make sense to partially comment it in/out, you may still prefer to use /* */ - again to group everything together logically and visually.</p>
http://stackoverflow.com/questions/1074531/how-to-capture-submit-form-response-different-domain/1074697#10746972Answer by levik for How to capture submit form response "different domain"?levik2009-07-02T14:24:01Z2009-07-02T14:24:01Z<p>For cross-domain communication there is no easy client-side way for you to retrieve results. Server-side support would be required - exposing additional services that you can hit on the client (for example by embedding a element into the page).</p>
<p>This allows you to make GET requests to the server and get the result as JSON. One way to do it would be:</p>
<ol>
<li>Client creates <code><script src="http://otherdomain.com/gettoken"></script></code></li>
<li><p>This returns something like </p>
<p>var myToken = "ABC123";</p></li>
<li>This value is inserted into the form, which is then submitted to the same server</li>
<li>The server stores the results of the form under the key of the specified token</li>
<li>Client creates <code><script src="http://otherdomain.com/getresult?token=ABC123"></script></code></li>
<li>Server fetches the form results for <code>ABC123</code> and returns then as JSON</li>
</ol>
http://stackoverflow.com/questions/1514019/when-are-javascript-functions-executed/1514033#1514033Comment by levik on When are javascript functions executedlevik2009-10-04T06:35:57Z2009-10-04T06:35:57ZThe question seems to be about whether slow async loading of a sourced script can create a situation where its functions are not available. The answer should be that since script loading loading is synchronous this is not an issue.http://stackoverflow.com/questions/1514019/when-are-javascript-functions-executed/1514033#1514033Comment by levik on When are javascript functions executedlevik2009-10-03T16:41:40Z2009-10-03T16:41:40ZHow does this answer the question?..http://stackoverflow.com/questions/1074149/how-can-i-check-if-user-passes-a-valid-date-in-javascript/1074227#1074227Comment by levik on How can I check if user passes a valid date in javascript?levik2009-07-02T14:34:15Z2009-07-02T14:34:15ZUsing selects is an awful solution. Now instead of typing "27" for day, I need to scroll down a whole list of numbers - the pulldown will open into a narrow tall rectangle on most platforms which is difficult to manage. On the other hand, having non-select based controls still subjects you to the parsing problem.http://stackoverflow.com/questions/981856/does-internet-explorer-remove-the-object-element-from-dom/981871#981871Comment by levik on Does Internet Explorer remove the <object> element from DOM?levik2009-06-11T15:41:12Z2009-06-11T15:41:12Zthanks, but I am not trying to embed Flash contenthttp://stackoverflow.com/questions/899020/expression-parsing-how-to-tokenizeComment by levik on Expression parsing: how to tokenizelevik2009-05-22T17:54:43Z2009-05-22T17:54:43Z@mmyers: No, not reallyhttp://stackoverflow.com/questions/898551/ajax-hidding-div-problem-in-ieComment by levik on ajax hidding div problem in IElevik2009-05-22T16:41:00Z2009-05-22T16:41:00ZYou really ought to work down your problem into a smaller reproducible case - not many people will want to read through a whole page's worth of HTML that you pasted into a question.http://stackoverflow.com/questions/891299/browser-native-json-support-window-json/891306#891306Comment by levik on Browser-native JSON support (window.JSON)levik2009-05-21T03:53:50Z2009-05-21T03:53:50ZI know the support is not widespread, but using this method should be a lot faster and safer than eval()ing a string, so I want to use it where it's available. Any idea on support from other browsers?http://stackoverflow.com/questions/800715/rearranging-table-in-javascript/800726#800726Comment by levik on Rearranging table in JavaScriptlevik2009-04-30T15:31:47Z2009-04-30T15:31:47ZThis may not work because browsers insert TBODY into the DOM regardless of markup, and IE is not smart enough to properly reparent a row from TABLE to TBODY when you use DOM operations.http://stackoverflow.com/questions/800715/rearranging-table-in-javascript/800841#800841Comment by levik on Rearranging table in JavaScriptlevik2009-04-30T15:28:52Z2009-04-30T15:28:52ZThat will (wrongly) return any rows of nested tables - which you don't want.http://stackoverflow.com/questions/708336/beginner-factory-pattern-in-java/708383#708383Comment by levik on Beginner: Factory Pattern in Javalevik2009-04-02T05:44:08Z2009-04-02T05:44:08ZIf your design is such that construction of a Test game requires a GUI call, that should be internalized into the Factory (see my updated sample). However that doesn't seem like a wise design decision to begin with. Whatever configures the factory could take care of the GUI stuff.http://stackoverflow.com/questions/708328/syntax-highlight-design-pattern/708408#708408Comment by levik on Syntax highlight design patternlevik2009-04-02T05:33:38Z2009-04-02T05:33:38ZProbably - though even with JS, the good editors will likely lex. The reg-ex ones, well, they get confused at times. I know I've seen this happen in some editors where they think a quote which is escaped is actually a string delimiter.http://stackoverflow.com/questions/708336/beginner-factory-pattern-in-java/708383#708383Comment by levik on Beginner: Factory Pattern in Javalevik2009-04-02T05:29:31Z2009-04-02T05:29:31ZIn this case, what you really want is a Factory that will generate a random number at the time you invoke getGame() if testMode is true. The idea is to not have your client code care what kind of game it wants to create - that behavior is all encapsulated by the factoryhttp://stackoverflow.com/questions/706384/boolean-html-attributes/706396#706396Comment by levik on Boolean HTML Attributeslevik2009-04-01T17:07:56Z2009-04-01T17:07:56ZThis changes the property, not the attribute. As I said - I'm kinda locked into setAttribute by other people's codehttp://stackoverflow.com/questions/706384/boolean-html-attributes/706407#706407Comment by levik on Boolean HTML Attributeslevik2009-04-01T17:06:50Z2009-04-01T17:06:50ZNo. Basically I return a value and this value gets passed to a setAttribute() call I do not control.http://stackoverflow.com/questions/706384/boolean-html-attributes/706416#706416Comment by levik on Boolean HTML Attributeslevik2009-04-01T17:06:10Z2009-04-01T17:06:10ZI know about removeAttribute(). Unfortunately the framework code I'm relying on makes calling it difficult.