User toby - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:49:01Zhttp://stackoverflow.com/feeds/user/5304http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1822258/how-to-access-the-value-of-an-object-from-inside-a-method-of-the-same-object-in-j/1822266#18222661Answer by toby for How to access the value of an object from inside a method of the same object in Javascript?toby2009-11-30T20:40:32Z2009-11-30T20:40:32Z<p>Your code doesn't work because toLowerCase() is a method of String, but not of Number. So, when you try to call toLowerCase() on the number 1, it doesn't work. A solution would be just to convert the number to string first:</p>
<pre><code>Object.prototype.toBool = function ()
{
switch(String(this).toLowerCase())
{
case "true": case "yes": case "1": return true;
case "false": case "no": case "0": case null: return false;
default: return Boolean(string);
}
}
</code></pre>
http://stackoverflow.com/questions/1662092/jquery-find-next-table-row/1662117#16621171Answer by toby for jQuery: find next table-rowtoby2009-11-02T15:55:00Z2009-11-02T15:55:00Z<p>Maybe the parent element didn't have its id set? To get to the next row from the image I believe you can do:</p>
<pre><code>$(this).parent('tr').next('tr')
</code></pre>
http://stackoverflow.com/questions/620045/how-to-refactor-code-inside-curly-braces-in-flex0how to refactor code inside curly braces in flextoby2009-03-06T19:09:27Z2009-10-21T14:22:40Z
<p><a href="http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FBook%5FParts&file=databinding%5F091%5F03.html" rel="nofollow">Data binding in ActionScript</a> is really cool. But what if I want to refactor a big switch or if statement inside the curly braces into a function, for example:</p>
<pre>
{person.gender == 'male' ? 'Mr.' : 'Ms.'}
</pre>
<p>into:</p>
<pre>
{salutation(person)}
</pre>
<p>The compiler doesn't let me do that. I know about properties and I could write getters and setters on the person object. But since I am using inlined JSON objects now that's not convenient(I think). What are other good ways to refactor this code?</p>
<p>To answer Matt's comment. The data type of person is just plain Object. It was decoded from JSON format coming from a service call.</p>
http://stackoverflow.com/questions/1580244/drag-n-drop-a-marker-onto-another-overlay-in-google-maps-flex0Drag n Drop a Marker onto Another Overlay in Google Maps/Flextoby2009-10-16T20:33:59Z2009-10-16T20:33:59Z
<p>I am trying to put together some code that allows the use to drag a marker onto a polyline in the Flex version of Google Maps. This is not so easy. I am close, but not there yet. Here's what I've tried so far:</p>
<h1>Attempt 1</h1>
<p>On MOUSE_DOWN of a marker, I save a reference to the marker, then whenever the pointer moves over the map, I move the marker right under the pointer - this achieves the drag-n-drop of the marker (see <a href="http://github.com/airportyh/help/tree/master/dnd%5Fmap/attempt%5F1/" rel="nofollow">code - Map.as, app.mxml)</a>), however, when the marker is dragged above the polyline, I don't get the ROLL_OVER event on the polyline fired, and when the mouse button is released, I don't get the MOUSE_UP event on the polyline fired, because the marker itself is on top of the polyline at that point, blocking the event from the polyline overlay.</p>
<h1>Attempt 2</h1>
<p>I put an invisible pane on top of the map, and drew a dot on that pane underneath the pointer as a marker is dragged - to indicate dragging - rather than moving the marker itself (<a href="http://github.com/airportyh/help/tree/master/dnd%5Fmap/attempt%5F2/" rel="nofollow">code Map.as, app.mxml</a>). However, the dot blocks the events from the map overlays as well, and so the polyline does not get those events fired either. However, a side-effect of this approach is that when you release the mouse on top of a polyline, a ROLL_OVER event is fired on it - I could use this to detect a drop, but not to detect hovering over the polyline though, which I would really like to do.</p>
<p>Any help/fresh ideas on this is greatly appreciated.</p>
http://stackoverflow.com/questions/1564278/how-to-programmatically-list-all-controllers-in-rails/1564337#15643370Answer by toby for How to programmatically list all controllers in Railstoby2009-10-14T05:10:42Z2009-10-14T05:10:42Z<p>You could certainly list the files in the controllers directory.</p>
http://stackoverflow.com/questions/1510231/how-to-use-vector-in-flex0How to use Vector in Flex?toby2009-10-02T15:23:38Z2009-10-13T09:18:32Z
<p>I am trying to use the new Vector class introduced in Flash 10. Tried compiling the code using mxmlc but am getting this error message:</p>
<pre><code>Error: Type was not found or was not a compile-time constant: Vector.
public var selectedRoutes:Vector.<Route>;
^
</code></pre>
<ol>
<li>What could be the problem? </li>
<li>What is the general consensus about the viability of using this feature?</li>
<li>Can you do introspection of the Vector with describeType and get the type the Vector contains at runtime?</li>
</ol>
http://stackoverflow.com/questions/1510231/how-to-use-vector-in-flex/1510568#15105681Answer by toby for How to use Vector in Flex?toby2009-10-02T16:21:56Z2009-10-02T16:21:56Z<p>I tried a describeType on a Vector declaration:</p>
<p>trace(describeType(Vector.<Route>))</p>
<p>The result was:</p>
<p><type name="<strong>AS3</strong>.vec::Vector.&lt;components::Route>" base="Class" isDynamic="true" isFinal="false" isStatic="true"><br/> <extendsClass type="Class"/><br/> <extendsClass type="Object"/><br/> <accessor name="prototype" access="readonly" type="<em>" declaredBy="Class"/><br/> <factory type="<strong>AS3</strong>.vec::Vector.&lt;components::Route>"><br/> <extendsClass type="<strong>AS3</strong>.vec::Vector.&lt;</em>>"/><br/> <extendsClass type="Object"/><br/> <accessor name="fixed" access="readwrite" type="Boolean" declaredBy="<strong>AS3</strong>.vec::Vector.&lt;<em>>"/><br/> <accessor name="length" access="readwrite" type="uint" declaredBy="<strong>AS3</strong>.vec::Vector.&lt;</em>>"/><br/> </factory><br/></type></p>
<p>So, yes, it does provide the type information. You can pick it out from either the <em>type</em> tag's name or from the <em>factory</em> tag's type.</p>
http://stackoverflow.com/questions/1489885/queueing-settimeout-in-javascript/1489894#14898940Answer by toby for Queueing setTimeout in javascripttoby2009-09-28T23:43:45Z2009-09-28T23:43:45Z<p>I would use a blinking effect. For jquery there's <a href="http://docs.jquery.com/UI/Effects/Pulsate" rel="nofollow">pulsate</a>, hope that works for you.</p>
http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement/1462102#14621023Answer by toby for Are there legitimate uses for JavaScript's "with" statement?toby2009-09-22T19:27:03Z2009-09-22T19:27:03Z<p>I have been using the with statement as a simple form of scoped import. Let's say you have a markup builder of some sort. Rather than writing:</p>
<pre><code>markupbuilder.div(
markupbuilder.p('Hi! I am a paragraph!',
markupbuilder.span('I am a span inside a paragraph')
)
)
</code></pre>
<p>You could instead write:</p>
<pre><code>with(markupbuilder){
div(
p('Hi! I am a paragraph!',
span('I am a span inside a paragraph')
)
)
}
</code></pre>
<p>For this use case, I am not doing any assignment, so I don't have the ambiguity problem associated with that.</p>
http://stackoverflow.com/questions/1461895/how-can-i-return-an-ajax-retrieved-value-to-the-parent-function-of-the-current-fu/1461953#14619530Answer by toby for How can I return an AJAX-retrieved value to the parent function of the current function in JavaScript?toby2009-09-22T18:54:28Z2009-09-22T18:54:28Z<p>Use <a href="http://marijn.haverbeke.nl/cps/" rel="nofollow">continuation passing style</a></p>
http://stackoverflow.com/questions/1403395/questionnaire-for-clients/1405573#14055730Answer by toby for Questionnaire for Clientstoby2009-09-10T14:22:20Z2009-09-10T14:22:20Z<p>While your intention is good, I think there are 2 places where your approach is flawed. The first is that you are trying to solve the problem using a questionnaire. Understanding your client's specific business needs will take more than that, you will need to first have a basic understanding of their business and then ask follow up questions specific to that to gain a deeper understanding. The better you understand your client, the better chance you have, a questionnaire could act as a starting point, but you might as well just start by talking to them. Second, if you want to build a product that will meet the client's needs, there's bond to be design changes. Building usable software requires a feedback/update cycle between the user and the engineer/designer,
it is impossible to get everything right the first time, even if you have great foresight. Joel had a good answer on this topic that I think is consistent with what I want to say and is worth a <a href="https://stackoverflow.fogbugz.com/default.asp?W29053" rel="nofollow">read</a>(search for tick 31:20) or a <a href="http://blog.stackoverflow.com/2009/05/podcast-54/" rel="nofollow">listen</a>.</p>
http://stackoverflow.com/questions/1403354/sql-complex-group-query/1403379#14033790Answer by toby for sql complex group querytoby2009-09-10T04:36:48Z2009-09-10T04:36:48Z<pre><code>select id, type, group_concat(link) from table
</code></pre>
<p>Try that.</p>
http://stackoverflow.com/questions/1400528/is-there-a-way-to-capture-override-ctrl-r-or-f5-on-ie-using-javascript2Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?toby2009-09-09T15:53:07Z2009-09-09T17:27:58Z
<p>I want to capture the <kbd>Ctrl</kbd>-<kbd>R</kbd> or <kbd>F5</kbd> shortcut on the browser to prevent it from performing a browser refresh, but instead perform a custom refresh. </p>
<p>I was able to capture <kbd>Ctrl</kbd>-<kbd>R</kbd> on Safari and FF using:</p>
<pre><code>document.onkeypress = function(e){
if ((e.ctrlKey || e.metaKey) && e.keyCode == 114) // Ctrl-R
e.preventDefault();
}
</code></pre>
<p>But that doesn't work on IE. Is there any way to do this on IE?</p>
http://stackoverflow.com/questions/1368437/instantiate-an-object-by-calling-constructor-with-parameter-list-using-apply1Instantiate an object by calling constructor with parameter list using apply?toby2009-09-02T15:35:43Z2009-09-03T01:05:21Z
<p>Given a function/type declaration like this:</p>
<pre><code>function Person(name, ... other args ...){
this.name
... other init code ...
}
</code></pre>
<p>I would like to be able to call the Person constructor with an array of arguments to be applied to it. I could do:</p>
<pre><code>Person.apply(this, args)
</code></pre>
<p>Except that this doesn't instantiate a person, it merely calls it as a function. Is there any way you call it in this way but in the "new" context, i.e behaving like:</p>
<pre><code>new Person(...)
</code></pre>
http://stackoverflow.com/questions/1358628/yet-another-question-on-mocking/1358783#13587831Answer by toby for Yet another question on mocking....toby2009-08-31T18:35:12Z2009-08-31T18:40:29Z<p>Breaking encapsulation and thus making your tests more tightly coupled to your code can definitely be a disadvantage of using mocks. You don't want your tests to be brittle against refactoring. This is a fine line on which you have to walk. I personally avoid using mocks unless it is really hard, awkward, or slow otherwise.
Looking at your code, first, I would use the BDD style: your test method should test a specific behavior of the method and should be named as such(maybe something like AddEventShouldSaveASnapshot). Second, a rule of thumb is to only verify that the expected behavior happened, rather than to catalogue every single method call that should have happened.</p>
http://stackoverflow.com/questions/1335586/good-case-for-interfaces/1335916#13359163Answer by toby for Good Case For Interfacestoby2009-08-26T16:20:46Z2009-08-26T16:20:46Z<p>Interfaces are not 'required for' at all, it's a design decision. I think you need to convince yourself, why, on a case-by-case basis, it is beneficial to use an interface, because there IS an overhead in adding an interface. On the other hand, to counter the argument against interfaces because you can 'simply' use inheritance: inheritance has its draw backs, one of them is that - at least in C# and Java - you can only use inheritance once(single inheritance); but the second - and maybe more important - is that, inheritance requires you to understand the workings of not only the parent class, but all of the ancestor classes, which makes extension harder but also more brittle, because a change in the parent class' implementation could easily break the subclasses. This is the crux of the "composition over inheritance" argument that the GOF book taught us.</p>
http://stackoverflow.com/questions/1335539/passing-in-variables-byref-in-actionscript-3/1335609#13356091Answer by toby for Passing in variables ByRef in Actionscript 3toby2009-08-26T15:33:55Z2009-08-26T15:39:50Z<p>ActionScript 3 passes params by reference by default, like Java - except for primitive types. But what you are trying to have it do isn't passing by reference. The parameter passed in is a reference to an object(in the case when it's not a primitive type), which you may well modify inside of the function.</p>
<p>But, to answer your question. Here is a solution:</p>
<pre><code>function populateIfNull(variableName, value){
this[variableName] = this[variableName] || value
}
</code></pre>
<p>Which you can use like:</p>
<pre><code>populateIfNull('name', 'Bob')
populateIfNull('age', 20)
</code></pre>
http://stackoverflow.com/questions/1263205/search-zip-codes-fast-with-jquery/1263248#12632480Answer by toby for Search zip-codes fast with jQuerytoby2009-08-11T22:09:00Z2009-08-11T22:23:59Z<p>For large data sets, JSON parsing would be slow. I suggest you use a simple custom format instead, like the one you have is fine:</p>
<pre><code>2407;ELVERUM
2425;TRYSIL
</code></pre>
<p>Then you can parse like:</p>
<pre><code>var data = dataContent.split('\n').map(function(line){ return line.split(';'); })
</code></pre>
<p>Where data is now an array of 2-element arrays: first being the zipcode and second the name. Then to search through, you would do something like:</p>
<pre><code>var foundItems = data.filter(function(p){ return p[0].indexOf(query) != -1; });
</code></pre>
<p>Which gets you an array of matches. If you are only interested in exact matches, using a map would perform better. In which case, in place of the first line, you might do this to build the mapping:</p>
<pre><code>var map = {};
dataContent.split('\n').forEach(function(line){
var p = line.split(';');
map[p[0]] = p[1];
});
</code></pre>
http://stackoverflow.com/questions/1252915/scala-how-to-define-generic-function-parameters4Scala: How to define "generic" function parameters?toby2009-08-10T02:42:31Z2009-08-11T16:02:03Z
<p>I am trying to learn Scala now, with a little bit of experience in Haskell. One thing that stood out as odd to me is that all function parameters in Scala <em>must</em> be annotated with a type - something that Haskell does not require. Why is this? To try to put it as a more concrete example: an add function is written like this:</p>
<pre><code>def add(x:Double, y:Double) = x + y
</code></pre>
<p>But, this only works for doubles(well, ints work too because of the implicit type conversion). But what if you want to define your own type that defines its own <em>+</em> operator. How would you write an add function which works for any type that defines a <em>+</em> operator?</p>
http://stackoverflow.com/questions/1252915/scala-how-to-define-generic-function-parameters/1261346#12613460Answer by toby for Scala: How to define "generic" function parameters?toby2009-08-11T16:02:03Z2009-08-11T16:02:03Z<p>In order to solidify the concept of using <em>implicit</em> for myself, I wrote an example that does not require scala 2.8, but uses the same concept. I thought it might be helpful for some.
First, you define an generic-abstract class <em>Addable</em>:</p>
<pre><code>scala> abstract class Addable[T]{
| def +(x: T, y: T): T
| }
defined class Addable
</code></pre>
<p>Now you can write the <em>add</em> function like this:</p>
<pre><code>scala> def add[T](x: T, y: T)(implicit addy: Addable[T]): T =
| addy.+(x, y)
add: [T](T,T)(implicit Addable[T])T
</code></pre>
<p>This is used like a type class in Haskell. Then to <em>realize</em> this generic class for a specific type, you would write(examples here for Int, Double and String):</p>
<pre><code>scala> implicit object IntAddable extends Addable[Int]{
| def +(x: Int, y: Int): Int = x + y
| }
defined module IntAddable
scala> implicit object DoubleAddable extends Addable[Double]{
| def +(x: Double, y: Double): Double = x + y
| }
defined module DoubleAddable
scala> implicit object StringAddable extends Addable[String]{
| def +(x: String, y: String): String = x concat y
| }
defined module StringAddable
</code></pre>
<p>At this point you can call the <em>add</em> function with all three types:</p>
<pre><code>scala> add(1,2)
res0: Int = 3
scala> add(1.0, 2.0)
res1: Double = 3.0
scala> add("abc", "def")
res2: java.lang.String = abcdef
</code></pre>
<p>Certainly not as nice as Haskell which will essentially do all of this for you. But, that's where the trade-off lies.</p>
http://stackoverflow.com/questions/1240382/simplest-way-to-check-if-a-string-converted-to-a-number-is-actually-a-number-in-a/1240426#12404260Answer by toby for Simplest way to check if a string converted to a number is actually a number in actionscripttoby2009-08-06T17:51:36Z2009-08-06T17:51:36Z<pre><code>typeof('7') == 'string'
typeof(7) == 'number'
</code></pre>
<p>Does that help?</p>
http://stackoverflow.com/questions/1239167/printing-html-pages-differes-from-browser-to-browser/1239213#12392130Answer by toby for Printing HTML pages differes from browser to browsertoby2009-08-06T14:23:23Z2009-08-06T14:23:23Z<p>If you want precise printing, I'd suggest you output PDFs instead. As for html, you want to use a separate css file for printing, but still, just have to test each individual browser you want to support.</p>
http://stackoverflow.com/questions/1234712/javascript-replace-with-reference-to-matched-group/1234725#12347251Answer by toby for Javascript replace with reference to matched group?toby2009-08-05T17:51:14Z2009-08-05T17:51:14Z<pre><code>"hello _there_".replace(/_(.*?)_/, function(a, b){
return '<div>' + b + '</div>';
})
</code></pre>
<p>Oh, or you could also:</p>
<pre><code>"hello _there_".replace(/_(.*?)_/, "<div>$1</div>")
</code></pre>
http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/1228619#12286191Answer by toby for What's with the love of dynamic Languagestoby2009-08-04T16:44:54Z2009-08-04T16:44:54Z<p>I believe that the "new found love" for dynamically-typed languages have less to do with whether statically-typed languages are better or worst - in the absolute sense - than the rise in popularity of <em>certain</em> dynamic languages. Ruby on Rails was obviously a big phenomenon that cause the resurgence of dynamic languages. The thing that made rails so popular and created so many converts from the static camp was mainly: <em>very</em> terse and DRY code and configuration. This is especially true when compared to Java web frameworks which required mountains of XML configuration. Many Java programmers - smart ones too - converted over, and some even evangelized ruby and other dynamic languages. For me, three distinct features allow dynamic languages like Ruby or Python to be more terse:</p>
<ol>
<li>Minimalist syntax - the big one is that type annotations are not required, but also the the language designer designed the language from the start to be terse</li>
<li>inline function syntax(or the lambda) - the ability to write inline functions and pass them around as variables makes many kinds of code more brief. In particular this is true for list/array operations. The roots of this ideas was obviously - LISP.</li>
<li>Metaprogramming - metaprogramming is a big part of what makes rails tick. It gave rise to a new way of refactoring code that allowed the client code of your library to be much more succinct. This also originate from LISP.</li>
</ol>
<p>All three of these features are not exclusive to dynamic languages, but they certainly are not present in the popular static languages of today: Java and C#. You might argue C# has #2 in delegates, but I would argue that it's not widely used at all - such as with list operations.</p>
<p>As for more advanced static languages... Haskell is a wonderful language, it has #1 and #2, and although it doesn't have #3, it's type system is so flexible that you will probably not find the lack of meta to be limiting. I believe you can do metaprogramming in OCaml at compile time with a language extension. Scala is a very recent addition and is very promising. F# for the .NET camp. But, users of these languages are in the minority, and so they didn't really contribute to this change in the programming languages landscape. In fact, I very much believe the popularity of Ruby affected the popularity of languages like Haskell, OCaml, Scala, and F# in a positive way, in addition to the other dynamic languages.</p>
http://stackoverflow.com/questions/1145077/in-flex-how-to-use-command-shortcuts-in-the-browser1In Flex, how to use command-shortcuts in the browser?toby2009-07-17T18:57:42Z2009-07-17T20:40:50Z
<p>I tried catching the command key shortcuts using the keyDown event and checking for KeyboardEvent.ctrlKey, but the browser(Safari) seemed to have intercepted all those key events because the shortcuts I am trying to use coincides with the safari ones. Is there anyway to override this behavior?</p>
http://stackoverflow.com/questions/1101292/how-to-get-the-top-position-of-an-element/1101296#11012960Answer by toby for How to get the top position of an element?toby2009-07-09T00:55:05Z2009-07-09T00:55:05Z<p>Try:
<code>$('#mytable').attr('offsetTop')</code></p>
http://stackoverflow.com/questions/1098349/reading-non-inline-css-style-info-from-javascript/1098376#10983760Answer by toby for Reading non-inline CSS style info from Javascripttoby2009-07-08T14:16:01Z2009-07-08T14:16:01Z<p>That's just how css works. There's no straight-forward way to get the computed css attributes of an element within Javascript, that I know of, short of browser specific utilities.</p>
http://stackoverflow.com/questions/1094690/parsing-a-string-in-ruby-regexp/1094747#10947470Answer by toby for Parsing a String in Ruby (Regexp?)toby2009-07-07T20:41:57Z2009-07-07T20:41:57Z<pre><code> s = 'Purchases 10384839,Purchases 10293900,Purchases 20101024'
myarray = s.split(',').map{|item|
item = item.split(' ')
{:type => item[0], :id => item[1]}
}
</code></pre>
http://stackoverflow.com/questions/1089825/what-to-do-with-over-complicated-inherited-code/1089856#10898569Answer by toby for What to do with over-complicated inherited code toby2009-07-07T00:36:19Z2009-07-07T00:36:19Z<p>I heard a podcast on Hanselminutes on this topic just the other day <a href="http://www.hanselminutes.com/default.aspx?showID=183" rel="nofollow">talking with Michael Feathers</a>, who has a book on this: <a href="http://www.objectmentor.com/resources/articles/WorkingEffectivelyWithLegacyCode.pdf" rel="nofollow">Working Effectively with Legacy Code</a>. I encourage a read. I myself have dealt with a lot of bad legacy code in the past, and generally think that you should refactor/rewrite the bad parts gradually, being careful that you don't cause too much breakage, and be strategic about what to refactor/rewrite. I also encourage the this read from Joel: <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">Things you Should Never Do, Part I</a></p>
http://stackoverflow.com/questions/60569/how-do-i-create-an-in-memory-handle-in-haskell3How do I create an in-memory Handle in haskell?toby2008-09-13T14:30:08Z2009-06-26T03:50:26Z
<p>I want something that looks like a file Handle but is really backed by an in-memory buffer to use for IO redirects. How can I do this?</p>
http://stackoverflow.com/questions/1510231/how-to-use-vector-in-flex/1510278#1510278Comment by toby on How to use Vector in Flex?toby2009-10-02T16:04:06Z2009-10-02T16:04:06ZAh! I just didn't set <target-player> in the flex config. Helpful link is <a href="http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+10" rel="nofollow">opensource.adobe.com/wiki/display/…</a>. I just ended up using a local config. Thanks. I'll go try out describeType.http://stackoverflow.com/questions/1479649/readably-print-out-a-python-dict-sorted-by-key/1479691#1479691Comment by toby on Readably print out a python dict() sorted by keytoby2009-09-25T21:32:54Z2009-09-25T21:32:54Z+1 YAML for readability.http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement/61676#61676Comment by toby on Are there legitimate uses for JavaScript's "with" statement?toby2009-09-22T19:46:41Z2009-09-22T19:46:41ZWith 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.http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement/61676#61676Comment by toby on Are there legitimate uses for JavaScript's "with" statement?toby2009-09-22T19:33:52Z2009-09-22T19:33:52ZThis 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.http://stackoverflow.com/questions/1182708/flex-ajax-bridge-issue-on-safariComment by toby on Flex-Ajax Bridge issue on Safaritoby2009-09-16T18:26:02Z2009-09-16T18:26:02ZI face the same problem too.http://stackoverflow.com/questions/1403354/sql-complex-group-query/1403379#1403379Comment by toby on sql complex group querytoby2009-09-10T14:15:55Z2009-09-10T14:15:55ZMaxiWheat: yeah oops. Rabid: the question IS tagged mysqlhttp://stackoverflow.com/questions/1356311/matisse-or-jigloo/1400556#1400556Comment by toby on Matisse or Jigloo ? toby2009-09-10T04:24:25Z2009-09-10T04:24:25ZAgreed. 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.http://stackoverflow.com/questions/1356311/matisse-or-jigloo/1376357#1376357Comment by toby on Matisse or Jigloo ? toby2009-09-10T04:16:08Z2009-09-10T04:16:08ZUp voted for using pencil + paper.http://stackoverflow.com/questions/1400528/is-there-a-way-to-capture-override-ctrl-r-or-f5-on-ie-using-javascript/1400676#1400676Comment by toby on Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?toby2009-09-09T17:56:41Z2009-09-09T17:56:41Zin shortcuts.js, that is.http://stackoverflow.com/questions/1400528/is-there-a-way-to-capture-override-ctrl-r-or-f5-on-ie-using-javascript/1400676#1400676Comment by toby on Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?toby2009-09-09T17:55:46Z2009-09-09T17:55:46Z@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.http://stackoverflow.com/questions/1400528/is-there-a-way-to-capture-override-ctrl-r-or-f5-on-ie-using-javascript/1400553#1400553Comment by toby on Is there a way to capture/override Ctrl-R or F5 on IE using Javascript?toby2009-09-09T16:51:10Z2009-09-09T16:51:10ZI tried this out and it worked on IE8, Chrome, Safari, Opera and FF for me - for the F5 key. http://stackoverflow.com/questions/1368437/instantiate-an-object-by-calling-constructor-with-parameter-list-using-apply/1368459#1368459Comment by toby on Instantiate an object by calling constructor with parameter list using apply?toby2009-09-02T17:54:07Z2009-09-02T17:54:07ZI tried this, but had to modify it to work:
var newInstance = {};
Person.apply(newInstance, args);http://stackoverflow.com/questions/1335586/good-case-for-interfaces/1335916#1335916Comment by toby on Good Case For Interfacestoby2009-08-26T19:33:07Z2009-08-26T19:33:07Z<a href="http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612" rel="nofollow">amazon.com/Design-Patterns-Object-Oriented-Addiso…</a>http://stackoverflow.com/questions/1335586/good-case-for-interfaces/1335670#1335670Comment by toby on Good Case For Interfacestoby2009-08-26T16:28:59Z2009-08-26T16:28:59ZIt 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.http://stackoverflow.com/questions/1274806/selecting-by-id-attribute-using-jquery-in-asp-netComment by toby on Selecting by ID attribute using JQuery in ASP.NETtoby2009-08-13T22:16:15Z2009-08-13T22:16:15ZIf 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.