User Matthew Crumley - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T12:40:41Z http://stackoverflow.com/feeds/user/2214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1895635/javascript-singleton-question/1895675#1895675 0 Answer by Matthew Crumley for javascript singleton question Matthew Crumley 2009-12-13T05:52:51Z 2009-12-13T05:59:39Z <p>The point of using the "pseudo constructor" is that it creates a new variable scope. You can declare local variables inside the function that are available inside any nested functions but not from the global scope.</p> <p>There are actually two ways of doing it. You can call the function with <code>new</code> like in your example, or just call the function directly. There are slight differences in how you would write the code, but they are essentially equivalent.</p> <p>Your second example could be written like this:</p> <pre><code>var singleton = new function () { var privateVariable = 42; // This can be accessed by dothis and dothat this.dothis = function () { return privateVariable; }; this.dothat = function () {}; }; // Parentheses are allowed, but not necessary unless you are passing parameters </code></pre> <p>or</p> <pre><code>var singleton = (function () { var privateVariable = 42; // This can be accessed by dothis and dothat return { dothis: function () { return privateVariable; }, dothat: function () {} }; })(); // Parentheses are required here since we are calling the function </code></pre> <p>You could also pass arguments to either function (you would need to add parentheses to the first example).</p> http://stackoverflow.com/questions/296861/test-if-an-object-is-defined-in-actionscript/296921#296921 5 Answer by Matthew Crumley for Test if an object is defined in actionscript Matthew Crumley 2008-11-17T21:06:55Z 2009-12-10T19:53:24Z <blockquote> <p><strong>test if an object is defined</strong></p> </blockquote> <p>This works in AS2 and AS3, and is the most reliable way to test if an object has a value.</p> <pre><code>if (obj != null) { doSomethingWith(obj); } </code></pre> <p>Its also the most reliable way to test an object's property and read it in the same expression:</p> <pre><code>if (arr[0] != null &amp;&amp; arr[0]&gt;5) { doSomethingWith(arr[0]); } </code></pre> <blockquote> <p><strong>test if an object is null</strong></p> </blockquote> <p>There's a difference between null and undefined, but if you don't care you can just do a normal comparison between either one because they compare equal:</p> <pre><code>if (obj == null) { doSomethingWith(obj); } </code></pre> <p>is the same as</p> <pre><code>if (obj == undefined) { doSomethingWith(obj); } </code></pre> <p>If you care about the difference, use the === or !== operator, which won't convert them.</p> <pre><code>if (obj === undefined) { // obj was never assigned a value } else if (obj === null) { // obj was explicitly set to null } else { doSomethingWith(obj); } </code></pre> http://stackoverflow.com/questions/1832534/javascript-canvas-putimagedata-not-writing-modified-data/1833514#1833514 1 Answer by Matthew Crumley for javascript canvas putImageData not writing modified data Matthew Crumley 2009-12-02T15:11:48Z 2009-12-02T15:42:44Z <p>Your inner loop is comparing and incrementing i instead of e.</p> <p>You also have e and i switched when you calculate the index. It should be (with the 4 factored out):</p> <pre><code>var index = 4 * (i*id.width + e); </code></pre> http://stackoverflow.com/questions/1819607/server-side-javascript-best-practices/1822224#1822224 1 Answer by Matthew Crumley for Server side Javascript best practices? Matthew Crumley 2009-11-30T20:30:24Z 2009-11-30T20:30:24Z <p>I would look at <a href="http://wiki.commonjs.org/wiki/CommonJS" rel="nofollow">CommonJS</a> (formerly ServerJS). It's very much a work in progress, but they have a standardized module system with several implementations. There are already some useful libraries written to the CommonJS spec, like <a href="http://github.com/tlrobinson/narwhal" rel="nofollow">Narwhal</a>.</p> http://stackoverflow.com/questions/849785/get-un-translated-un-rotated-x-y-coordinate-of-a-point-from-a-javascript-canva/850422#850422 2 Answer by Matthew Crumley for Get un-translated, un-rotated (x,y) coordinate of a point from a Javascript canvas Matthew Crumley 2009-05-11T22:45:21Z 2009-11-23T21:03:12Z <p>There's no way right now to get the current transformation matrix, so you would need to keep track of any rotations/translations/scaling yourself.</p> <p>To actually perform the transformation, you need to multiply the transformation matrix by the point (as a column vector).</p> <p>You could override the methods that affect the transformation to store your own copy of the matrix. I haven't tested this code, but something like this should work:</p> <pre><code>var contextPrototype = CanvasRenderingContext2D.prototype; contextPrototype.xform = Matrix.I(3); contextPrototype.realSave = contextPrototype.save; contextPrototype.save = function() { if (!this.xformStack) { this.xformStack = []; } this.xformStack.push(this.xform.dup()); this.realSave(); } contextPrototype.realRestore = contextPrototype.restore; contextPrototype.restore = function() { if (this.xformStack &amp;&amp; this.xformStack.length &gt; 0) { this.xform = this.xformStack.pop(); } this.realRestore(); } contextPrototype.realScale = contextPrototype.scale; contextPrototype.scale = function(x, y) { this.xform = this.xform.multiply($M([ [x, 0, 0], [0, y, 0], [0, 0, 1] ])); this.realScale(x, y); } contextPrototype.realRotate = contextPrototype.rotate; contextPrototype.rotate = function(angle) { var sin = Math.sin(angle); var cos = Math.cos(angle); this.xform = this.xform.multiply($M([ [cos, -sin, 0], [sin, cos, 0], [ 0, 0, 1] ])); this.realRotate(angle); } contextPrototype.realTranslate = contextPrototype.translate; contextPrototype.translate = function(x, y) { this.xform = this.xform.multiply($M([ [1, 0, x], [0, 1, y], [0, 0, 1] ])); this.realTranslate(x, y); } contextPrototype.realTransform = contextPrototype.transform; contextPrototype.transform = function(m11, m12, m21, m22, dx, dy) { this.xform = this.xform.multiply($M([ [m11, m21, dx], [m12, m22, dy], [ 0, 0, 1] ])); this.realTransform(m11, m12, m21, m22, dx, dy); } contextPrototype.realSetTransform = contextPrototype.setTransform; contextPrototype.setTransform = function(m11, m12, m21, m22, dx, dy) { this.xform = $M([ [m11, m21, dx], [m12, m22, dy], [ 0, 0, 1] ]); this.realSetTransform(m11, m12, m21, m22, dx, dy); } </code></pre> <p>I used the <a href="http://sylvester.jcoglan.com/" rel="nofollow">Sylvester matrix library</a> for convenience, but you could do your own multiplication.</p> <p>To get the transformed point, just multiply the transformation matrix by the point:</p> <pre><code>// Get the transformed point as [x, y] contextPrototype.getTransformedPoint = function(x, y) { var point = this.xform.multiply($V([x, y, 1])); return [point.e(1), point.e(2)]; } </code></pre> http://stackoverflow.com/questions/1779858/how-do-i-escape-a-string-for-a-shell-command-in-nodejs-v8-javascript-engine/1780120#1780120 4 Answer by Matthew Crumley for How do I escape a string for a shell command in nodejs (V8 Javascript engine)? Matthew Crumley 2009-11-22T21:51:00Z 2009-11-22T21:51:00Z <p>There is a way to write to an external command: <code>process.createChildProcess</code> (<a href="http://nodejs.org/api.html#%5Fchild%5Fprocesses" rel="nofollow">documentation</a>) returns an object with a <code>write</code> method. <code>createChildProcess</code> isn't as convenient though, because it doesn't buffer stdout and stderr, so you will need event handlers to read the output in chunks.</p> <pre><code>var stdout = "", stderr = ""; var child = process.createChildProcess("someCommand"); child.addListener("output", function (data) { if (data !== null) { stdout += data; } }); child.addListener("error", function (data) { if (data !== null) { stderr += data; } }); child.addListener("exit", function (code) { if (code === 0) { sys.puts(stdout); } else { // error } }); child.write("This goes to someCommand's stdin."); </code></pre> http://stackoverflow.com/questions/1750666/parsing-xfn-data-with-jquery/1752051#1752051 0 Answer by Matthew Crumley for Parsing XFN data with Jquery Matthew Crumley 2009-11-17T21:42:49Z 2009-11-17T21:42:49Z <p>You could use the <code>[attribute~=value]</code> selector. It selects based on space-separated values exactly like how xfn and CSS classes work, i.e. <code>[class~=className]</code> is exactly the same as <code>.className</code>.</p> <pre><code>xfn_me = $("a[rel~=me]").length; </code></pre> <p>I couldn't find it in the jQuery documentation, but it works in 1.3 at least.</p> http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1718638#1718638 24 Answer by Matthew Crumley for What's your take on the programming language Go? Matthew Crumley 2009-11-11T22:48:18Z 2009-11-12T02:45:57Z <p>The gopher is probably the best programming language mascot ever.</p> <p><img src="http://golang.org/doc/logo-153x55.png" alt="alt text" title="Gopher logo"></p> http://stackoverflow.com/questions/1718717/go-variable-declared-and-not-used-compilation-error/1718801#1718801 4 Answer by Matthew Crumley for Go: "variable declared and not used" compilation error Matthew Crumley 2009-11-11T23:22:34Z 2009-11-11T23:22:34Z <p>You could try this:</p> <pre><code>cwd, _ := os.Getwd(); </code></pre> <p>but it seems like it would be better to keep the error like in Jurily's answer so you know if something went wrong.</p> http://stackoverflow.com/questions/1710424/referencing-a-javascript-value-before-it-is-declared-can-someone-explain-this/1710847#1710847 0 Answer by Matthew Crumley for referencing a javascript value before it is declared - can someone explain this Matthew Crumley 2009-11-10T20:09:10Z 2009-11-10T20:09:10Z <p>The reason #3 doesn't change window.onload is that functions are called by reference, not by name. When you set <code>window.onload = testprint</code>, it assigns reference to the current value of <code>testprint</code> (door #2, as explained by CMS) to <code>window.onload</code>. Changing <code>testprint</code>'s value later doesn't affect <code>window.onload</code>'s value.</p> <p>Door #4 doesn't override door #2 (unless, as you said, you move it to the first script block) because it's in a different script block, so it gets parsed after the first block is completed.</p> http://stackoverflow.com/questions/1695670/java-script-function-call-on-body-load/1695679#1695679 3 Answer by Matthew Crumley for Java Script function call on body load Matthew Crumley 2009-11-08T07:40:04Z 2009-11-08T07:40:04Z <p>Each time you call <code>setTimeout</code> it adds another call to the queue. In other words, you aren't replacing the current timeout. To fix it, you will need to cancel the existing timeout event before you start another one by calling <code>clearTimeout</code> with the value of the previous call to <code>setTimeout</code>.</p> <pre><code>var timeoutID = null; function timeout() { if (timeoutID !== null) { clearTimeout(timeoutID); } timeoutID = setTimeout(logout, 60000); } </code></pre> <p>I also changed the call to <code>setTimeout</code> to pass a reference to the <code>logout</code> function instead of a string. It's best to avoid passing a string since it uses <code>eval</code> and isn't necessary.</p> http://stackoverflow.com/questions/1671016/whats-the-most-impressive-thing-youve-seen-done-with-javascript/1671917#1671917 4 Answer by Matthew Crumley for Whats the most impressive thing you've seen done with JavaScript? Matthew Crumley 2009-11-04T05:58:45Z 2009-11-04T05:58:45Z <p><a href="https://bespin.mozilla.com/" rel="nofollow">Bespin</a> is a text editor from Mozilla Labs that's written in JavaScript and does all its own drawing using a custom canvas-based graphics toolkit.</p> http://stackoverflow.com/questions/1658299/how-to-resize-a-html-canvas-object-after-creating-using-createelement/1658489#1658489 0 Answer by Matthew Crumley for How to resize a HTML Canvas object after creating using createElement()? Matthew Crumley 2009-11-01T21:53:10Z 2009-11-01T21:53:10Z <p>Thomas' answer is correct, but it sound's like you also want to keep the existing content on the canvas. When you change the canvas size, it automatically gets cleared and reset to it's default state. Because of that, you will either need to redraw the contents, or copy the contents to another canvase (using <code>drawImage</code>), resize the canvas, then copy the contents back (again, using <code>drawImage</code>).</p> http://stackoverflow.com/questions/1635419/excanvas-for-dynamically-created-canvas-elements/1635541#1635541 0 Answer by Matthew Crumley for Excanvas for dynamically created canvas elements Matthew Crumley 2009-10-28T06:49:59Z 2009-10-28T06:49:59Z <p>From <a href="http://code.google.com/p/explorercanvas/wiki/Instructions" rel="nofollow">the documentation</a>:</p> <blockquote> <p>If you have created your canvas element dynamically it will not have the getContext method added to the element. To get it working you need to call initElement on the G_vmlCanvasManager object.</p> </blockquote> <pre><code>var el = document.createElement('canvas'); G_vmlCanvasManager.initElement(el); var ctx = el.getContext('2d'); </code></pre> http://stackoverflow.com/questions/1606797/use-of-apply-with-new-operator-is-this-possible/1608546#1608546 5 Answer by Matthew Crumley for Use of .apply() with 'new' operator. Is this possible? Matthew Crumley 2009-10-22T16:52:38Z 2009-10-23T17:46:04Z <p>Here's a generalized solution that can call any constructor with an array of arguments:</p> <pre><code>function construct(constructor, args) { function F() { return constructor.apply(this, args); } F.prototype = constructor.prototype; return new F(); } </code></pre> <p>An object created by calling <code>construct(Class, [1, 2, 3])</code> would be identical to an object created with <code>new Class(1, 2, 3)</code>.</p> <p>You could also make a more specific version so you don't have to pass the constructor every time. This is also slightly more efficient, since it doesn't need to create a new instance of the inner function every time you call it.</p> <pre><code>var createSomething = (function() { function F(args) { return Something.apply(this, args); } F.prototype = Something.prototype; return function(args) { return new F(args); } })(); </code></pre> <p>The reason for creating and calling the outer anonymous function like that is to keep function <code>F</code> from polluting the global namespace. It's sometimes called the module pattern.</p> http://stackoverflow.com/questions/1589541/javascript-rhino-can-i-use-a-regular-expression-in-an-e4x-query-to-select-cert/1590463#1590463 0 Answer by Matthew Crumley for JavaScript / Rhino: Can I use a regular expression in an E4X query to select certain nodes only? Matthew Crumley 2009-10-19T19:00:45Z 2009-10-20T06:51:49Z <p>This is how you <strong>should</strong> be able to do it, but it doesn't work in Rhino:</p> <pre><code>xml.row.*.( /foo-[1-4]/.test(name()) ) // or localName() </code></pre> <p>For now, as far as I know, you will need to use a loop.</p> <p><strong>If you don't mind getting an array instead of an XMLList</strong>, and your version of Rhino supports array comprehensions, you could use this:</p> <pre><code>[foo for each (foo in xml.row.*) if (/foo-[1-4]/.test(foo.name()))] </code></pre> <p>It still uses a loop, but it's a little more declarative at least.</p> <p><strong>Edit:</strong> Like Elijah Grey mentioned in the comments, if you are using namespaces you would need to either call <code>localName()</code> or <code>name().localName</code>. Of course, to be completely correct, you would need to compare the namespace URI as well.</p> <p>Also, apparently, SpiderMonkey (Firefox) requires you to prefix function calls with <code>function::</code> in filter predicates, so the filter would look like this:</p> <pre><code>/foo-[1-4]/.test(function::name()) // or function::localName() </code></pre> <p>Typically, Rhino follows what SpiderMonkey does, so when it supports function calls in predicates, you may need the <code>function::</code> prefix.</p> http://stackoverflow.com/questions/1580863/javascript-how-to-create-a-new-instance-of-a-class-without-using-the-new-keyword/1580961#1580961 2 Answer by Matthew Crumley for JavaScript: How to create a new instance of a class without using the new keyword? Matthew Crumley 2009-10-16T23:57:27Z 2009-10-16T23:57:27Z <p>If you <em>really</em> don't want to use the <code>new</code> keyword, and you don't mind only supporting Firefox, you can set the prototype yourself. There's not really any point to this though, since you can just use Dave Hinton's answer.</p> <pre><code>// This is essentially what the new keyword does function factory(clazz) { var obj = {}; obj.__proto__ = clazz.prototype; var result = clazz.call(obj); return (typeof result !== 'undefined') ? result : obj; }; </code></pre> http://stackoverflow.com/questions/1572740/are-there-any-gui-toolkits-built-on-top-of-html-canvas-like-swing-swt-gtk-or-qt/1574058#1574058 1 Answer by Matthew Crumley for Are there any GUI toolkits built on top of HTML Canvas like swing,swt,gtk or qt? Matthew Crumley 2009-10-15T18:01:01Z 2009-10-15T18:01:01Z <p>Mozilla Labs' <a href="http://labs.mozilla.com/bespin/" rel="nofollow">Bespin</a> project currently uses their own toolkit called <a href="https://wiki.mozilla.org/Labs/Thunderhead" rel="nofollow">Thunderhead</a>. It's written by and for the Bespin developers, but it's a separate project that could be used for anything. You will need a (free) Bespin account to try it, since there aren't any other projects that I know of that use it.</p> <p>I've never used it, but I know it uses the DOM and a subset of CSS plus it's own CSS-like properties. I doubt the API is very stable though since it's experimental and evolves with the needs of the Bespin developers.</p> http://stackoverflow.com/questions/1501217/c-function-to-swap-values-in-2d-array/1501251#1501251 1 Answer by Matthew Crumley for C: Function to swap values in 2D array Matthew Crumley 2009-09-30T23:47:13Z 2009-09-30T23:47:13Z <p>If the array is a "real" 2D array, you need to specify the size of all but the first dimension:</p> <pre><code>void swap(int surface[][NUMBER_OF_COLUMNS], int x1, int y1, int x2, int y2) { ... } </code></pre> <p>There are a few potential problems with this. If your 2D arrays are really arrays of pointers (<code>int *surface[]</code>), that won't work, and you need to change the <code>surface</code> parameter to a pointer to a pointer:</p> <pre><code>void swap(int **surface, int x1, int y1, int x2, int y2) { ... } </code></pre> <p>Or, to make the function more general, you could change it to accept two int pointers (that could point anywhere) and swap them:</p> <pre><code>void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; } </code></pre> <p>and you would call it like this:</p> <pre><code>swap(&amp;surface[x1][y1], &amp;surface[x2][y2]); </code></pre> http://stackoverflow.com/questions/1476967/pros-and-cons-of-serverside-javascript-implementation/1477557#1477557 10 Answer by Matthew Crumley for pros and cons of serverside javascript implementation?? Matthew Crumley 2009-09-25T14:17:51Z 2009-09-29T18:01:55Z <p><strong>By using server side JS, can we implement the whole web application without using any server side languages (like C#,java etc).</strong></p> <p>It shouldn't be necessary to write code in any other languages, although many server-side JavaScript frameworks use the Rhino engine, which allows you to call any Java code.</p> <p><strong>Is it really a better approach??</strong></p> <p>I don't think JavaScript (as a language) is really a better or worse option than traditional server-side languages. It has advantages (along with other dynamic languages like Ruby and Python) like flexibility, fast prototyping (no pun intended), flexibility, etc. On the other hand, it doesn't have the library support that Java and C# have or static typing (I won't get into the debate over which is better here; I like both for different reasons).</p> <p>If you want the best of both, you can use JavaScript as a scripting language, embedded in your application. Rhino for Java, and JScript.NET make it easy to manipulate "native" objects in JavaScript. You could, for example, write your domain classes in Java or C#, and script them with JavaScript where you want more flexibility. If you are comfortable enough with JavaScript, writing in a single language may be simpler though.</p> <p>I've never written a "real" server-side application using JavaScript, so I can't really make a judgment about whether its better or worse than .NET (I've also never used JScript.NET). I have played around with a few frameworks for fun though and I'm currently rewriting my personal site using Helma NG. So far it's been a good experience (much better than PHP, which I've never really liked).</p> <p><strong>what are the advandages and disadvandages?</strong></p> <p>Advantanges:</p> <ul> <li>Only one language needed for server-side and client-side programming.</li> <li>Possibility for shared code, for things like form validation. Jaxer lets you run scripts on the client, server, or both.</li> <li>You get to program in JavaScript (assuming you like the language).</li> </ul> <p>Disadvantages:</p> <ul> <li>Many frameworks are experimental/not very mature.</li> <li>You have to program in JavaScript (assuming you don't like the language).</li> </ul> <p><strong>how this works well in terms of performance?</strong></p> <p>Performance should be approximately comparable to other scripting languages.</p> <p><strong>is there any real time implementation (public websites) only using server side JS(no other languages)?</strong></p> <p>I don't know of any large websites using JavaScript, but there may be some.</p> <p><strong>what are the alternatives available over Aptana jaxer (open source)??</strong></p> <p>Wikipedia has a <a href="http://en.wikipedia.org/wiki/Server-side%5FJavaScript" rel="nofollow">large list of options</a>, but it doesn't have much useful information. There are lots of options with a wide range in maturity and size.</p> <p>Here are a few that I'm familiar with (to varying degrees)</p> <ul> <li><a href="http://www.helma.org/" rel="nofollow">Helma</a> - Rhino (Java) based framework with active record.</li> <li><a href="http://dev.helma.org/wiki/Helma+NG/" rel="nofollow">Helma NG</a> - Helma Next Generation (experimental rewrite, under active development).</li> <li><a href="https://phobos.dev.java.net/" rel="nofollow">Phobos</a> - Has good support in <a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a>.</li> <li><a href="http://code.google.com/p/v8cgi/" rel="nofollow">v8cgi</a> - Small and simple, uses Google's V8 engine, probably not production-ready yet.</li> <li><a href="http://jaxer.org/" rel="nofollow">Jaxer</a> - Runs on Spidermonkey with a DOM implementation, so you can manipulate the page with frameworks like jQuery or Prototype. Has good IDE support in Aptana Studio.</li> </ul> <p><strong>how well we can implement &amp; maintain db transactions? can we do that in serverside JS..?</strong></p> <p>Rhino-based frameworks let you use Java classes, so you have full JDBC support. I haven't used Jaxer's database libraries, so I don't know anything about its capabilities.</p> <p><strong>is it possible to develop RESTFul and SOAP services in serverside JS..??</strong></p> <p>RESTful APIs shouldn't be any problem. I don't know of any specific support for SOAP, but it should be <em>possible</em>.</p> http://stackoverflow.com/questions/1487682/javascript-debuging-code-created-by-eval-and-new-function/1488157#1488157 1 Answer by Matthew Crumley for Javascript: Debuging code created by eval() and new Function() Matthew Crumley 2009-09-28T16:57:07Z 2009-09-28T16:57:07Z <p>The reason the debugger doesn't point to the line in the function, is that the function you are calling is not related at all (as far as JavaScript is concerned) to the <code>AObject.get</code> function. Eval has no way of knowing where the string defining the function came from. The debugger <em>should</em> be pointing to the line where you call eval, because that's where the function is defined, but it's apparently off by a line.</p> <p>To answer your question, I don't think there's a way to avoid eval (or Function, which would probably be preferable) unless you can move the function definition inside <code>temp</code> so it closes over "a" or add an "a" parameter to the <code>get</code> function.</p> http://stackoverflow.com/questions/1446198/how-can-i-search-inside-javascript-text-with-firebug/1446449#1446449 1 Answer by Matthew Crumley for How can I search inside javascript text with firebug? Matthew Crumley 2009-09-18T19:32:00Z 2009-09-18T19:32:00Z <p>If you switch to the script tab, it will search inside script tags. Just make sure the HTML file is selected in the file drop-down (it should be by default).</p> <p>If you don't need to use Firebug specifically, you can also search in the View Source window.</p> http://stackoverflow.com/questions/934012/get-image-data-in-javascript/934925#934925 3 Answer by Matthew Crumley for Get image data in Javascript? Matthew Crumley 2009-06-01T13:55:36Z 2009-09-17T12:25:52Z <p>You will need to create a canvas element with the correct dimensions and copy the image data with the <code>drawImage</code> function. Then you can use the <code>toDataURL</code> function to get a data: url that has the base-64 encoded image.</p> <p>It would be something like this. I've never written a Greasemonkey script, so you might need to adjust the code to run in that environment.</p> <pre><code>function getBase64Image(img) { // Create an empty canvas element var canvas = document.createElement("canvas"); canvas.width = img.width; canvas.height = img.height; // Copy the image contents to the canvas var ctx = canvas.getContext("2d"); ctx.drawImage(img, 0, 0); // Get the data-URL formatted image // Firefox supports PNG and JPEG. You could check img.src to guess the // original format, but be aware the using "image/jpg" will re-encode the image. var dataURL = canvas.toDataURL("image/png"); return dataURL.replace(/^data:image\/(png|jpg);base64,/, ""); } </code></pre> <p>I think getting a JPEG-formatted version requires a recent version of Firefox, so if you want to support that, you'll need to check the compatibility. If the encoding is not supported, it will default to "image/png".</p> http://stackoverflow.com/questions/1436413/check-xml-node-exists-by-value-using-jquery/1436421#1436421 0 Answer by Matthew Crumley for Check XML node exists by Value using JQuery Matthew Crumley 2009-09-17T02:22:16Z 2009-09-17T03:30:38Z <p>I'm leaving this here for reference, since it could be useful in slightly different circumstances, but, like karim79 mentioned, it matches anything that has 64 as a substring.</p> <p><hr /></p> <p>You should be able to use the <a href="http://docs.jquery.com/Selectors/contains#text" rel="nofollow">":contains(text)" pseudo-selector</a>:</p> <pre><code>$("SectionAnswers SourceAnswerID:contains('64')", Section) </code></pre> <p>That will select the SourceAnswerID elements, so you might need to use the <code>parent()</code> or <code>closest()</code> function to move up the hierarchy.</p> http://stackoverflow.com/questions/1428428/command-line-javascript-input-arguments-issues-while-minifying-javascript-in-gedi/1429114#1429114 1 Answer by Matthew Crumley for Command Line JavaScript Input Arguments Issues While Minifying JavaScript in Gedit. Matthew Crumley 2009-09-15T19:15:35Z 2009-09-15T19:15:35Z <p>The problem is that gedit is sending the document into your program's standard input, not as a command-line argument. The SpiderMonkey shell has a <code>readline()</code> function that reads a line from stdin, but it doesn't have a way of knowing when you reach EOF.</p> <p>If you compile SpiderMonkey with <code>File</code> support, you could probably do it, but I've never tried that.</p> <p>If you use the <a href="https://developer.mozilla.org/en/Rhino%5FShell" rel="nofollow">Rhino shell</a>, you can use Java classes directly like this:</p> <pre><code>function readStdin() { var stdin = new java.io.BufferedReader(new java.io.InputStreamReader(java.lang.System["in"])); var lines = []; var line; while ((line = stdin.readLine()) !== null) { lines.push(line); } return lines.join("\n"); } var body = readStdin(); </code></pre> http://stackoverflow.com/questions/1393056/html-canvas-draw-image-without-anti-aliasing/1394919#1394919 1 Answer by Matthew Crumley for HTML Canvas: draw image without anti-aliasing Matthew Crumley 2009-09-08T16:26:02Z 2009-09-08T16:26:02Z <p>The only way to convert an image into an ImageData object is to draw it to a canvas first, so you'll need to create a temporary canvas, draw the image on it, and get the image data from there.</p> <pre><code>function imageToImageData(image) { var canvas = document.createElement("canvas"); canvas.width = image.width; canvas.height = image.height; var ctx = canvas.getContext("2d"); ctx.drawImage(image, 0, 0); return ctx.getImageData(0, 0, canvas.width, canvas.height); } </code></pre> <p>Note though, that the same-origin policy prevents you from calling getImageData if you draw an image from a different domain to the canvas, so <strong>this will only work on images from the same domain as the document</strong>. If you need to draw images from other domains, your only option is to call <code>drawImage</code> on the context for you main canvas directly, making sure there are no transformations that will affect the accuracy.</p> http://stackoverflow.com/questions/1366599/throwing-a-javascript-exception-from-c-code-using-google-v8/1368296#1368296 3 Answer by Matthew Crumley for Throwing a JavaScript exception from C++ code using Google V8 Matthew Crumley 2009-09-02T15:08:46Z 2009-09-02T17:02:28Z <pre><code>return v8::ThrowException(v8::String::New("Exception message")); </code></pre> <p>You can also throw a more specific exception with the static functions in <code>v8::Exception</code>:</p> <pre><code>return v8::ThrowException(v8::Exception::RangeError(v8::String::New("..."))); return v8::ThrowException(v8::Exception::ReferenceError(v8::String::New("..."))); return v8::ThrowException(v8::Exception::SyntaxError(v8::String::New("..."))); return v8::ThrowException(v8::Exception::TypeError(v8::String::New("..."))); return v8::ThrowException(v8::Exception::Error(v8::String::New("..."))); </code></pre> http://stackoverflow.com/questions/1356283/what-are-some-real-world-uses-for-function-tostring-in-javascript/1357494#1357494 1 Answer by Matthew Crumley for What are some real world uses for function.toString() in javascript? Matthew Crumley 2009-08-31T13:33:45Z 2009-08-31T13:33:45Z <p>I've used it to automatically generate named-parameter versions of functions. For example, if you have a function</p> <pre><code>function f(a, b, c) { return a * b + c; } </code></pre> <p>you can extract the parameter names from <code>f.toString()</code> and use it to generate a function that you can call like this:</p> <pre><code>namedParametersF({ a: 2, b: 3, c: 4}); // f(2, 3, 4); </code></pre> <p>Here's an implementation of this idea:</p> <pre><code>// Get an array of parameter names from a function Function.parameters = function(f) { // Find the parameter list in f.toString() var m = /function[^\(]*\(([^\)]*)\)/.exec(f.toString()); if (!m) { throw new TypeError("Invalid function in parameters"); } var params = m[1].split(','); for (var i = 0; i &lt; params.length; i++) { // trim possible spaces params[i] = params[i].replace(/^\s*|\s*$/g, ''); } return params; }; // Convert f to a function that accepts named parameters Function.withNamedParameters = function(f) { var params = Function.parameters(f); return function(args) { var argsArray = new Array(params.length); for (var i = 0; i &lt; params.length; i++) { argsArray[i] = args[params[i]]; } return f.apply(this, argsArray); }; }; </code></pre> <p>I have a slightly more flexible implementation of this that can go the other direction (<code>Function.withPositionalParameters</code>) on GitHub: <a href="http://gist.github.com/132782" rel="nofollow">http://gist.github.com/132782</a>.</p> http://stackoverflow.com/questions/1331166/returning-an-javascript-objects-property-by-value-not-reference/1331281#1331281 3 Answer by Matthew Crumley for Returning an Javascript Object's property by Value NOT Reference Matthew Crumley 2009-08-25T22:03:23Z 2009-08-25T22:03:23Z <p>The easiest (and as far as I know, fastest) way to get a copy of an array is to use the slice method. Without any arguments, it defaults to <code>array.slice(0, array.length)</code>, so it will copy the entire array.</p> <p>Your getBar function would look like this:</p> <pre><code>this.getBar = function getBar(){ return this.bar.slice(); } </code></pre> <p>Note that this is a shallow copy, so any changes to the objects in the array will affect the original (adding and removing items won't affect it though).</p> http://stackoverflow.com/questions/1309258/javascript-substring-help/1309317#1309317 4 Answer by Matthew Crumley for javascript substring help. Matthew Crumley 2009-08-20T23:03:54Z 2009-08-20T23:03:54Z <p>Add 3 (the length of " - ") to the last index and leave off the second parameter. The default when you pass one parameter to substring is the go to the end of the string</p> <pre><code>var y = x.substring(x.lastIndexOf(" - ") + 3); </code></pre> http://stackoverflow.com/questions/1922581/writing-more-efficient-code-in-javascript/1922674#1922674 Comment by Matthew Crumley on writing more efficient code in javascript Matthew Crumley 2009-12-17T17:28:01Z 2009-12-17T17:28:01Z Don't use the name <code>Error</code> though, because that's the built-in &quot;class&quot; for exceptions. You could just use that class of course instead of writing your own. http://stackoverflow.com/questions/1921638/a-z2-4-not-limiting-to-between-2-4-characters/1921651#1921651 Comment by Matthew Crumley on [A-Z]{2,4} not limiting to between 2 & 4 characters Matthew Crumley 2009-12-17T16:13:54Z 2009-12-17T16:13:54Z Javascript regular expressions are based on Perl, not POSIX. I don't know if it's exactly the same as PCRE, but it's similar at least. http://stackoverflow.com/questions/1911918/should-i-do-money-calculations-in-javascript-or-as-an-ajax-call/1911957#1911957 Comment by Matthew Crumley on Should I do money calculations in Javascript or as an AJAX call? Matthew Crumley 2009-12-16T03:55:01Z 2009-12-16T03:55:01Z It's not really anything special about JavaScript. Any language that uses IEEE 754 floating point numbers (just about everything) has the same issues. http://stackoverflow.com/questions/1895635/javascript-singleton-question/1895675#1895675 Comment by Matthew Crumley on javascript singleton question Matthew Crumley 2009-12-14T20:42:09Z 2009-12-14T20:42:09Z Usually when I've seen the term &quot;singleton&quot; used in the context of JavaScript, it's used as a synonym of the module pattern, not the singleton design pattern from the GoF. Re-reading the question though, I'm not sure that's what he meant. http://stackoverflow.com/questions/1895635/javascript-singleton-question/1895675#1895675 Comment by Matthew Crumley on javascript singleton question Matthew Crumley 2009-12-13T18:19:00Z 2009-12-13T18:19:00Z @J5: It is a closure. I'm not sure what you're referring to at the end. Are you talking about <code>singleton</code>? As long as you declare it in the global scope, you can use it anywhere. http://stackoverflow.com/questions/1895635/javascript-singleton-question/1895647#1895647 Comment by Matthew Crumley on javascript singleton question Matthew Crumley 2009-12-13T06:02:15Z 2009-12-13T06:02:15Z The <code>prototype</code> property only applies to functions (constructors). Objects have an internal <code>[[Prototype]]</code> property that references the constructor's <code>prototype</code> object. To change the prototype, you need a reference to the function that constructed the object. http://stackoverflow.com/questions/1856264/multiplying-two-long-long-ints-c/1856329#1856329 Comment by Matthew Crumley on Multiplying two long long ints C Matthew Crumley 2009-12-06T19:41:23Z 2009-12-06T19:41:23Z That won't give an exact answer if there are too many digits though. It may be good enough depending on the use case, but I don't think that's the point of the assignment. http://stackoverflow.com/questions/1844282/this-keyword-in-ie/1844380#1844380 Comment by Matthew Crumley on "this" keyword in IE Matthew Crumley 2009-12-04T19:03:13Z 2009-12-04T19:03:13Z @bobince: Those are all good points. For me though, they don't outweigh the convenience that jQuery provides when I'm forced to write client-side JS. I switched to jQuery from Prototype for the reason you mentioned (among other things) and never had much reason to try anything else. Sorry if I caused you any additional trauma by reminding you of regex-based HTML parsing :-) http://stackoverflow.com/questions/1844282/this-keyword-in-ie/1844380#1844380 Comment by Matthew Crumley on "this" keyword in IE Matthew Crumley 2009-12-04T02:38:59Z 2009-12-04T02:38:59Z OK, I'll bite (even though this is off-topic), why don't you use jQuery? I promise I won't flame you ;-) http://stackoverflow.com/questions/1828455/unfamiliar-characters-used-in-javascript-encryption-script/1828511#1828511 Comment by Matthew Crumley on Unfamiliar characters used in JavaScript encryption script Matthew Crumley 2009-12-01T20:06:51Z 2009-12-01T20:06:51Z You may want to clarify that <code>2^n</code> means &quot;2 raised to the n power&quot;, not &quot;2 XOR n&quot;. http://stackoverflow.com/questions/1818805/browser-specific-jquery/1818844#1818844 Comment by Matthew Crumley on Browser Specific Jquery Matthew Crumley 2009-11-30T16:43:45Z 2009-11-30T16:43:45Z To other browsers, it's just an HTML comment, so they will ignore the script tag. http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/242412#242412 Comment by Matthew Crumley on What "already invented" algorithm did you invent? Matthew Crumley 2009-11-28T17:40:25Z 2009-11-28T17:40:25Z &quot;it's a haphazard, inconsistent thing&quot; It's like the PHP of the 70s and 80s! http://stackoverflow.com/questions/1809153/maximum-length-of-variable-name-in-javascript/1809206#1809206 Comment by Matthew Crumley on Maximum length of variable NAME in javascript Matthew Crumley 2009-11-27T17:18:22Z 2009-11-27T17:18:22Z This is correct. The ECMAScript spec doesn't mention any limits (at least that I've found) and variables are just (conceptually at least) properties of the function call's activation object (or the global object). Since properties can be arbitrary strings, the limit would be the maximum length of a string. http://stackoverflow.com/questions/1798290/no-array-filter-in-rhino Comment by Matthew Crumley on No Array.filter() in Rhino? Matthew Crumley 2009-11-26T23:29:55Z 2009-11-26T23:29:55Z When you start it interactively (i.e. without a file to run) it should print the version when it starts. http://stackoverflow.com/questions/1801835/bizarre-javascript-json-undefined-error/1801852#1801852 Comment by Matthew Crumley on Bizarre Javascript JSON undefined error Matthew Crumley 2009-11-26T07:02:24Z 2009-11-26T07:02:24Z <code>this</code> is the global scope, i.e. <code>this === window</code>.