Matthew Crumley
|
Registered User
|
I'm a programmer from the Tampa/St. Petersburg, Florida area.
My primary programming interests are ASP.NET/C#, JavaScript, PHP, and some C++ for fun.
|
|
2h |
comment |
What “already invented” algorithm did you invent? "it's a haphazard, inconsistent thing" It's like the PHP of the 70s and 80s! |
|
1d |
comment |
Maximum length of variable NAME in javascript 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. |
|
1d |
comment |
No Array.filter() in Rhino? When you start it interactively (i.e. without a file to run) it should print the version when it starts. |
|
2d |
comment |
Bizarre Javascript JSON undefined errorthis is the global scope, i.e. this === window. |
|
2d |
revised |
How can I catch everything after the underscore in a filepath with JavaScript? underscore wasn't showing up |
|
Nov 25 |
comment |
No Array.filter() in Rhino? What version of Rhino are you using? When I run it in 1.7 I get "function" for both cases (they are exactly equivalent by the way, unless you change Array). |
|
Nov 23 |
revised |
Get un-translated, un-rotated (x,y) coordinate of a point from a Javascript canvas added save and restore methods |
|
Nov 23 |
comment |
Get un-translated, un-rotated (x,y) coordinate of a point from a Javascript canvas Good point about save() and restore(). I'll add those. |
|
Nov 22 |
accepted | How do I escape a string for a shell command in nodejs (V8 Javascript engine)? |
|
Nov 22 |
answered | How do I escape a string for a shell command in nodejs (V8 Javascript engine)? |
|
Nov 19 |
comment |
jQuery: select random elements The general idea is good, but you shouldn't shuffle an array like that. Sorting is an inefficient way to shuffle an array, and an inconsistent comparison can cause problems (even potentially causing the sort to loop indefinitely). It's better to use a Fisher-Yates shuffle (en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle/…). |
|
Nov 19 |
comment |
jQuery - count number of rows in a table I've always wondered what the point of the size method was. Did length not exist originally and it's just there for backward compatibility? |
|
Nov 18 |
awarded | ● Popular Question |
|
Nov 18 |
comment |
PHP json_encode and javascript functions Yes, as long as you parse it with eval instead of using a strict JSON parser. |
|
Nov 17 |
accepted | Parsing XFN data with Jquery |
|
Nov 17 |
answered | Parsing XFN data with Jquery |
|
Nov 17 |
awarded | ● Nice Answer |
|
Nov 17 |
comment |
PHP json_encode and javascript functions That works, although it's not really JSON anymore. |
|
Nov 16 |
comment |
Does Javascript’s new operator do anything but make life difficult? Just to clarify the usage in beget for those who haven't read the book, since there's no (standard) way to set an object's prototype, new is the only way to do it. The beget function uses new to create an object with a specified prototype. ECMAScript 5 will have a built-in function called Object.create that does the same thing. |
|
Nov 14 |
awarded | ● Nice Answer |
|
Nov 13 |
comment |
Class keyword in Javascript class (along with lots of other java keywords) is a reserved word so that, theoretically, the language can add support without breaking existing programs. There's a full list at developer.mozilla.org/en/…. |
|
Nov 13 |
comment |
Comparations of Objects Just thought I'd add that if both operands reference the same object, they by definition have the same type. |
|
Nov 12 |
comment |
How to implement an Enterprise-grade JavaScript “framework” for web designers? I would say that jQuery is what the DOM/browser environment should have been. It doesn't change the language at all, just how you interact with the browser. I'm probably just being pedantic, but I do a lot of JavaScript programming that's not connected to a web browser at all, so jQuery doesn't really do anything there. |
|
Nov 12 |
comment |
What’s your take on the programming language Go? @mizipzor, := is for initialization (and only if you want to leave off var and the type), not assignment. You never have to use it if you don't want to. |
|
Nov 12 |
revised |
What’s your take on the programming language Go? added logo |
|
Nov 12 |
comment |
How might I extract the property values of a JavaScript object into an array? If you don't want to include properties from the object's prototype (there shouldn't be any if it's a plain object), you can filter them by checking dataObject.hasOwnProperty(o). |
|
Nov 11 |
accepted | Go: “variable declared and not used” compilation error |
|
Nov 11 |
answered | Go: “variable declared and not used” compilation error |
|
Nov 11 |
answered | What’s your take on the programming language Go? |
|
Nov 11 |
comment |
What’s your take on the programming language Go? That is a valid point, although lots of programmers coming from a C-family background have probably never used languages with := assignments. For me, I'd probably just use var x... anyway since that's what I'm used to. I don't see much benefit to the slightly shorter syntax. |
|
Nov 11 |
comment |
What’s your take on the programming language Go? I like having a separate operator, since it avoids the problem of accidentally creating a new variable because of a typo. It might take some getting used to though. |
|
Nov 11 |
comment |
What’s your take on the programming language Go? Using the := operator is optional though. It's just a shortcut for variable declaration/initialization, e.g. x := initialValue; is the same as var x = initialValue;. |
|
Nov 11 |
comment |
What’s the state of the Javascript language? Technically, "JavaScript" is Mozilla's implementation of ECMASCript, so they have complete control over it. I suspect the question is really about the ECMAScript "family" of languages though, i.e. JavaScript, JScript, etc. |
|
Nov 10 |
answered | referencing a javascript value before it is declared - can someone explain this |
|
Nov 8 |
accepted | Java Script function call on body load |
|
Nov 8 |
answered | Java Script function call on body load |
|
Nov 4 |
answered | Whats the most impressive thing you’ve seen done with JavaScript? |
|
Nov 1 |
answered | How to resize a HTML Canvas object after creating using createElement()? |
|
Oct 30 |
accepted | Are there any GUI toolkits built on top of HTML Canvas like swing,swt,gtk or qt? |
|
Oct 29 |
comment |
Excanvas for dynamically created canvas elements What version of excanvas are you using? Apparently VML changed in IE8, so you need at least rev. 43 to support it. You could also try turning on IE7 compatibility mode with the X-UA-Compatible header/meta tag. |
|
Oct 29 |
comment |
Using javascript to show a grey-scale version of an image on mouse-over SVG masks require Firefox 3.5, so you'll probably want to fall back on a canvas solution like what Anthony M. Powers submitted. |
|
Oct 28 |
comment |
JavaScript objects Technically, the Object constructor still gets called in the second case, but it will always use the built-in version. If you write your own Object function, it will get called in the first case, but not the second. |
|
Oct 28 |
answered | Excanvas for dynamically created canvas elements |
|
Oct 27 |
comment |
javascript deep json clone In comments you can format code by surrounding it with the back ` (backtick) character. It works in questions/answers too. |
|
Oct 24 |
accepted | Use of .apply() with ‘new’ operator. Is this possible? |
|
Oct 23 |
revised |
Use of .apply() with ‘new’ operator. Is this possible? added 308 characters in body |
|
Oct 22 |
answered | Use of .apply() with ‘new’ operator. Is this possible? |
|
Oct 20 |
comment |
ECMA Script/AS3 can’t do simple math! What gives? The 100's in the third line are exact. It's the 1.1 that's approximate (There's no finite way of representing 1/10 in binary). The reason trace(1.1) is correct, is because it's exact out to enough decimal places. Multiplying by 100 just shifts the error into the part that prints. |
|
Oct 20 |
revised |
JavaScript / Rhino: Can I use a regular expression in an E4X query to select certain nodes only? updated based on comments from Elijah Grey |
|
Oct 19 |
revised |
JavaScript / Rhino: Can I use a regular expression in an E4X query to select certain nodes only? added array comprehension option |
