toby

2,349
Reputation
211 views

Registered User

Name toby
Member for 1 year
Seen 5 hours ago
Website
Location Atlanta, GA USA
Age
Some favorite languages: Javascript, Python, Ruby, Haskell, ActionScript.
Nov
30
accepted How to access the value of an object from inside a method of the same object in Javascript?
Nov
30
answered How to access the value of an object from inside a method of the same object in Javascript?
Nov
12
awarded  Popular Question
Nov
2
answered jQuery: find next table-row
Oct
18
awarded  Popular Question
Oct
16
asked Drag n Drop a Marker onto Another Overlay in Google Maps/Flex
Oct
14
answered How to programmatically list all controllers in Rails
Oct
3
awarded  Nice Answer
Oct
2
answered How to use Vector in Flex?
Oct
2
comment How to use Vector in Flex?
Ah! I just didn't set <target-player> in the flex config. Helpful link is opensource.adobe.com/wiki/display/…. I just ended up using a local config. Thanks. I'll go try out describeType.
Oct
2
asked How to use Vector in Flex?
Sep
28
answered Queueing setTimeout in javascript
Sep
25
comment Readably print out a python dict() sorted by key
+1 YAML for readability.
Sep
25
awarded  Nice Question
Sep
22
comment Are there legitimate uses for JavaScript’s “with” statement?
With reading values there's a clear precedence rule: attributes on the object are checked before variables outside the scope. This isn't any different from variables scoping in functions. The real problem with assignment and 'with', as I understand it, lies in the fact that whether or not the attribute assignment occurs depends on whether the attribute exists on the current object in question, which is a runtime property and cannot be deduced easily by looking at the code.
Sep
22
comment Are there legitimate uses for JavaScript’s “with” statement?
This problem only surfaces when you are assigning values to attribute of the object. But what if you are using it only to read values? I contend that it's okay to use it in that case.
Sep
22
answered Are there legitimate uses for JavaScript’s “with” statement?
Sep
22
answered How can I return an AJAX-retrieved value to the parent function of the current function in JavaScript?
Sep
16
comment Flex-Ajax Bridge issue on Safari
I face the same problem too.
Sep
10
answered Questionnaire for Clients
Sep
10
comment sql complex group query
MaxiWheat: yeah oops. Rabid: the question IS tagged mysql
Sep
10
answered sql complex group query
Sep
10
comment Matisse or Jigloo ?
Agreed. GUI builders for Swing are big bolted-on hacks because Swing just was not designed with GUI builders in mind from the beginning. Leaky abstractions are bound to appear. I don't know if GridBagLayout is the most elegant choice, but I would definitely learn to do everything thing by hand really well before consider doing it another way.
Sep
10
comment Matisse or Jigloo ?
Up voted for using pencil + paper.
Sep
10
awarded  Yearling
Sep
9
comment Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?
in shortcuts.js, that is.
Sep
9
comment Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?
@roosteronacid: On IE8, I had to make a one-line fix: add "var code;" after the line: "var func = function(e) {". IE8 is seems to be stricter with js.
Sep
9
comment Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?
I tried this out and it worked on IE8, Chrome, Safari, Opera and FF for me - for the F5 key.
Sep
9
asked Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?
Sep
7
awarded  Popular Question
Sep
2
comment Instantiate an object by calling constructor with parameter list using apply?
I tried this, but had to modify it to work: var newInstance = {}; Person.apply(newInstance, args);
Sep
2
asked Instantiate an object by calling constructor with parameter list using apply?
Aug
31
revised Yet another question on mocking…
added 10 characters in body
Aug
31
answered Yet another question on mocking…
Aug
31
accepted Passing in variables ByRef in Actionscript 3
Aug
26
comment Good Case For Interfaces
amazon.com/Design-Patterns-Object-Oriented-Addiso…
Aug
26
comment Good Case For Interfaces
It is extra overhead if you create your own interfaces, because you have to create and maintain more code. For each method you want to pull into the interface, you must duplicate the method signature. Then, every time you need to change the method signature, you will need to change it in at least two places.
Aug
26
answered Good Case For Interfaces
Aug
26
revised Passing in variables ByRef in Actionscript 3
added 340 characters in body
Aug
26
answered Passing in variables ByRef in Actionscript 3
Aug
26
accepted What is the best way to store a unique URL Slug?
Aug
13
comment Selecting by ID attribute using JQuery in ASP.NET
If you have to change the ID of the element in the generated page, you'd have to change the output on the asp side. So this is more of an ASP question than a jquery question.
Aug
12
comment Search zip-codes fast with jQuery
Kelly - You are correct. I was wrong, and I am sorry for being misleading. The speed of the 2 are comparable, as Ross of flickr states in his article. Also, you were very apt to point out incremental parsing as a reason to use split(), that is what I did in a project to avoid freezing the browser.
Aug
12
comment Search zip-codes fast with jQuery
Also, see this great artical on this topic: code.flickr.com/blog/2009/…
Aug
12
comment Search zip-codes fast with jQuery
Chetan - You are right, looping through the lines of data is O(n), and so is parsing the JSON. But in practice, split() is many times faster than eval() - the function used to parse JSON, which is essentially calling the Javascript interpreter. Looping through an array to find a match is slower than a map, but if you want to do partial matching, that's what you have to do, short of creating an index. But it looks like mofle just wants an exact match, for which a map will suffice, which was my last example.
Aug
11
revised Search zip-codes fast with jQuery
edited body
Aug
11
revised Search zip-codes fast with jQuery
added 306 characters in body; deleted 120 characters in body
Aug
11
answered Search zip-codes fast with jQuery
Aug
11
answered Scala: How to define “generic” function parameters?
Aug
10
comment Scala: How to define “generic” function parameters?
This is certainly doable, but not as nice.