User ScottKoon - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:59:28Zhttp://stackoverflow.com/feeds/user/1538http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1500959/how-do-i-encode-an-http-link-something-very-easily-with-javascript/1500985#1500985-1Answer by ScottKoon for How do I encode an HTTP link... something very easily with javascript?ScottKoon2009-09-30T22:32:00Z2009-09-30T22:32:00Z<p>encodeURI(ENCODED-URL);</p>
http://stackoverflow.com/questions/621396/javascript-permission-denied-error-in-ie-x/1184677#11846770Answer by ScottKoon for Javascript "Permission Denied" Error in IE.xScottKoon2009-07-26T14:07:44Z2009-07-26T14:07:44Z<p>I've run into that error before in IE. Most often, it was because I was fetching data from another domain using XmlHttpRequest. Check the "allow data from other domains" setting in IE's Internet Options, make sure it's allowed and then see if you get the same error.</p>
http://stackoverflow.com/questions/1162246/object-alternate-content-containing-a-script-tag-wont-document-write-in-ie/1173902#11739021Answer by ScottKoon for <object> alternate content containing a script tag won't document.write in IEScottKoon2009-07-23T19:19:02Z2009-07-23T19:19:02Z<p>Maybe you should reverse the problem? Instead of having the Flickr badge inside of your object tag, you should replace the object tag with your Flickr badge src link if the user doesn't have Silverlight installed?</p>
<p>(using jQuery for brevity) </p>
<pre><code>$(document).ready(function() {
if(!Silverlight.IsInstalled()) {
$("#SilverlightObject").replaceWith("<div id="flickrbadge"><h3 class="subheading">Flickr Photos<a target="_blank" href="http://www.flickr.com/photos/tags/monkey/">View All</a></h3><script src="http://www.flickr.com/badge_code_v2.gne?count=8&amp;display=latest&amp;size=s&amp;layout=x&amp;source=all_tag&amp;tag=monkey" type="text/javascript"></script></div>");
})
</code></pre>
<p>Of course, rather than having the big long string, you could just put the Flickr badge div+content on the page with display:none set and then grab it from the DOM and insert it where you want it. The downside to that is that the script will download and execute even if you don't use it, causing extra requests to be made.</p>
http://stackoverflow.com/questions/953071/whats-a-easy-way-to-truncate-an-array-with-jquery/953177#9531770Answer by ScottKoon for What's a easy way to truncate an array with Jquery?ScottKoon2009-06-04T21:21:15Z2009-06-04T21:21:15Z<p>If you want to selectively pull elements out of an array, you can use the <a href="http://docs.jquery.com/Utilities/jQuery.grep#arraycallbackinvert" rel="nofollow">jQuery.Grep</a> method.</p>
<p>(from the jQuery docs)</p>
<p>var arr = [ 1, 9, 3, 8, 6, 1, 5, 9, 4, 7, 3, 8, 6, 9, 1 ];</p>
<p>$("div").text(arr.join(", "));</p>
<p>arr = jQuery.grep(arr, function(n, i){
return (n != 5 && i > 4);
});
$("p").text(arr.join(", "));</p>
<p>arr = jQuery.grep(arr, function (a) { return a != 9; });
$("span").text(arr.join(", "));</p>
http://stackoverflow.com/questions/107464/is-javascript-object-oriented13Is JavaScript object-oriented?ScottKoon2008-09-20T07:03:04Z2009-04-08T18:43:34Z
<p>There have been some questions about whether or not JavaScript is an object-oriented language. Even a statement, "just because a language has objects doesn't make it OO."</p>
<p>Is JavaScript an object-oriented language?</p>
http://stackoverflow.com/questions/410558/why-are-exceptions-said-to-be-so-bad-for-input-validation/484445#4844451Answer by ScottKoon for Why are Exceptions said to be so bad for Input Validation?ScottKoon2009-01-27T17:49:31Z2009-01-27T17:49:31Z<p>When I see exceptions being thrown for validation errors I often see that the method throwing the exception is performing lots of validations all at once. e.g.</p>
<pre><code>public bool isValidDate(string date)
{
bool retVal = true;
//check for 4 digit year
throw new FourDigitYearRequiredException();
retVal = false;
//check for leap years
throw new NoFeb29InANonLeapYearException();
retVal = false;
return retVal;
}
</code></pre>
<p>This code tends to be pretty fragile and hard to maintain as the rules pile up over the months and years. I usually prefer to break up my validations into smaller methods that return bools. It makes it easier to tweak the rules.</p>
<pre><code>public bool isValidDate(string date)
{
bool retVal = false;
retVal = doesDateContainAFourDigitYear(date);
retVal = isDateInALeapYear(date);
return retVal;
}
public bool isDateInALeapYear(string date){}
public bool doesDateContainAFourDigitYear(string date){}
</code></pre>
<p>As has been mentioned already, returning an error struct/object containing information about the error is a great idea. The most obvious advantage being that you can collect them up and display all of the error messages to the user at once instead of making them play Whack-A-Mole with the validation.</p>
http://stackoverflow.com/questions/315183/jquery-move-javascript-to-the-bottom-of-the-page/315773#315773-2Answer by ScottKoon for JQuery: Move Javascript to the bottom of the Page? ScottKoon2008-11-24T22:46:34Z2008-11-24T22:46:34Z<p>Most of the time, the reason to move your JavaScript to the bottom of the page is to ensure that any DOM elements the JavaScript might reference have been created before the JavaScript is run. This also ensures that the page has time to render before running any JavaScript.</p>
<p>In this case, I wouldn't worry about moving the JavaScript down lower on the page.</p>
http://stackoverflow.com/questions/315712/how-to-add-event-handler-with-arguments-to-an-array-of-elements-in-javascript/315756#3157560Answer by ScottKoon for How to Add Event Handler with Arguments to an Array of Elements in Javascript?ScottKoon2008-11-24T22:38:01Z2008-11-24T22:38:01Z<p>First, remember your execution scope in the click event. The <em>this</em> keyword in that context refers to the element being clicked on. Is there any way you can determine the dao_id from the element that is clicked on?</p>
http://stackoverflow.com/questions/213128/how-do-you-specify-font-sizes-in-css-so-that-they-match-mockups-and-allow-resizin2How do you specify font sizes in CSS so that they match mockups and allow resizing?ScottKoon2008-10-17T17:46:09Z2008-11-03T14:20:21Z
<p>We're running into issues with how we specify font sizes. If we specify the font sizes using pt, they don't always look the same across browsers/platforms. If we specify font sizes using px, IE6 users can't resize the text.</p>
http://stackoverflow.com/questions/164809/what-are-the-most-relevant-oss-projects-for-net/164846#1648468Answer by ScottKoon for What are the most relevant OSS projects for .NET?ScottKoon2008-10-02T22:14:12Z2008-10-02T22:14:12Z<p>I'd say the testing frameworks, NUnit, MB-Unit, and xUnit.net</p>
<p>SubText, dasBlog, dotNetNuke</p>
<p>Mono</p>
<p>MonoRail</p>
<p>jQuery</p>
<p>The IoC/DI frameworks - Ninject, StructureMap, Castle Windsor</p>
http://stackoverflow.com/questions/142939/what-is-the-most-common-type-of-code-written/142971#1429710Answer by ScottKoon for What is the most common type of code written?ScottKoon2008-09-27T04:18:15Z2008-09-27T04:18:15Z<pre><code>int myMagicNumber
</code></pre>
http://stackoverflow.com/questions/142948/how-can-i-use-functional-programming-in-the-real-world/142969#14296911Answer by ScottKoon for How can I use functional programming in the real world?ScottKoon2008-09-27T04:16:57Z2008-09-27T04:16:57Z<p>F# does not contain any magic pixie dust that will pass functions off to different CPU's or machines. What F#/Haskell and other functional programming languages do is make it easier for you to write functions that can be processed independent of the thread or CPU they were created on.</p>
<p>I don't feel right posting a link here to a podcast I participate in, seems a little off, but in the Herding Code episode where we talked with Matt Podwysocki we asked the same question and he gave some interesting answers. There are also a lot of good links relating to functional programming in that episode. I found one link titles "<a href="http://www.math.chalmers.se/~rjmh/Papers/whyfp.html" rel="nofollow">Why Functional Programming Matters</a>" That may provide some answers for you.</p>
http://stackoverflow.com/questions/137150/is-there-a-way-to-add-a-subversion-section-to-the-right-click-menu-for-textmate/137166#1371661Answer by ScottKoon for Is there a way to add a Subversion section to the right click menu for TextMate ?ScottKoon2008-09-26T00:48:01Z2008-09-26T00:48:01Z<p>I don't think so. I'd recommend the <a href="http://ciaranwal.sh/2008/07/30/svnmate-update-for-subversion-15" rel="nofollow">SVNMate bundle</a> though.</p>
http://stackoverflow.com/questions/137031/how-can-i-programmatically-determine-if-i-have-write-privileges-using-c-in-net/137144#1371442Answer by ScottKoon for How can I programmatically determine if I have write privileges using C# in .Net?ScottKoon2008-09-26T00:41:21Z2008-09-26T00:41:21Z<p>Check out this forum post.</p>
<p><a href="http://bytes.com/forum/thread389514.html" rel="nofollow">http://bytes.com/forum/thread389514.html</a></p>
<p>It describes using the objects in the <a href="http://msdn.microsoft.com/en-us/library/system.security.accesscontrol(VS.80).aspx" rel="nofollow">System.Security.AccessControl</a> namespace to get a list of the ACL permissions for a file. It's only available in .NET 2.0 and higher. I think it also assumes that you have an SMB network. I'm not sure what it would do if you were using a non-Windows network.</p>
<p>If you aren't on .NET 2.0 or higher, it's the usual pInvoke and Win32 API jazz.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/128867#12886726Answer by ScottKoon for Hidden Features of JavaScript?ScottKoon2008-09-24T18:17:04Z2008-09-24T18:17:04Z<p>I'd have to say self-executing functions.</p>
<pre><code>(function() { alert("hi there");})();
</code></pre>
http://stackoverflow.com/questions/114872/how-expensive-are-js-function-calls-compared-to-allocating-memory-for-a-variable/117253#1172533Answer by ScottKoon for How expensive are JS function calls (compared to allocating memory for a variable)?ScottKoon2008-09-22T20:06:50Z2008-09-22T20:06:50Z<p>Caching the property lookup might help some, but c<a href="http://www.robertnyman.com/2008/04/11/javascript-loop-performance/" rel="nofollow">aching the length of the array before starting the loop has proven to be faster.</a></p>
<p>So declaring a variable in the loop that holds the value of the scale_select.length would speed up the entire loop some.</p>
<pre><code>var scale_select = document.getElementsByName('scale_select');
for (var i = 0, al=scale_select.length; i < al; i++)
scale_select[i].onclick = vSetScale;
</code></pre>
http://stackoverflow.com/questions/95875/how-to-check-if-a-variable-is-an-object-in-javascript/95971#959710Answer by ScottKoon for How to check if a variable is an object in Javascript?ScottKoon2008-09-18T19:22:21Z2008-09-18T19:22:21Z<p>You can also just use a shortcut <code>if(obj)</code></p>
http://stackoverflow.com/questions/87021/ruby-code-for-quick-and-dirty-xml-serialization/90353#903530Answer by ScottKoon for Ruby code for quick-and-dirty XML serialization?ScottKoon2008-09-18T05:46:03Z2008-09-18T05:46:03Z<p>Could you try <a href="http://www.rubyinside.com/parse-xml-quickly-and-easily-with-hpricot-166.html" rel="nofollow">parsing the XML with hpricot</a> and using the output to build a plain old Ruby object? [DISCLAIMER]I haven't tried this.</p>
http://stackoverflow.com/questions/73227/what-is-the-difference-between-lambdas-and-delegates-in-the-net-framework13What is the difference between lambdas and delegates in the .NET Framework?ScottKoon2008-09-16T14:55:05Z2008-09-16T23:00:12Z
<p>I get asked this question a lot and I thought I'd solicit some input on how to best describe the difference.</p>
http://stackoverflow.com/questions/67734/execute-javascript-from-within-a-c-assembly6Execute JavaScript from within a C# assemblyScottKoon2008-09-15T22:50:40Z2008-09-16T06:26:13Z
<p>I'd like to execute JavaScript code from within a C# assembly and have the results of the JavaScript code returned to the calling C# code.</p>
<p>It's easier to define things that I'm not trying to do:</p>
<ul>
<li><p>I'm not trying to call a JavaScript
function on a web page from my code
behind.</p></li>
<li><p>I'm not trying to load a WebBrowser
control.</p></li>
<li><p>I don't want to have the JavaScript
perform an AJAX call to a server.</p></li>
</ul>
<p>What I want to do is write unit tests in JavaScript and have then unit tests output JSON, even plain text would be fine. Then I want to have a generic C# class/executible that can load the file containing the JS, run the JS unit tests, scrap/load the results, and return a pass/fail with details during a post-build task.</p>
<p>I think it's possible using the old ActiveX ScriptControl, but it seems like there ought to be a .NET way to do this without using SilverLight, the DLR, or anything else that hasn't shipped yet. Anyone have any ideas?</p>
<p>update: <a href="http://blogs.msdn.com/brada/articles/239857.aspx" rel="nofollow">From Brad Abrams blog</a></p>
<p>namespace Microsoft.JScript.Vsa
{
[Obsolete("There is no replacement for this feature. Please see the ICodeCompiler documentation for additional help. <a href="http://go.microsoft.com/fwlink/?linkid=14202" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=14202</a>")]</p>
<p>Clarification:
We have unit tests for our JavaScript functions that are written in JavaScript using the JSUnit framework. Right now during our build process, we have to manually load a web page and click a button to ensure that all of the JavaScript unit tests pass. I'd like to be able to execute the tests during the post-build process when our automated C# unit tests are run and report the success/failure alongside of out C# unit tests and use them as an indicator as to whether or not the build is broken.</p>
http://stackoverflow.com/questions/63918/what-is-the-best-online-javascript-css-html-xhtml-dom-reference/64179#641790Answer by ScottKoon for What is the best online javascript/css/html/xhtml/dom reference?ScottKoon2008-09-15T15:56:50Z2008-09-15T15:56:50Z<p><a href="http://blooberry.com" rel="nofollow">blooberry.com</a> is a great HTML/CSS reference site. </p>
http://stackoverflow.com/questions/53802/what-is-the-best-tool-to-benchmark-my-javascript/54633#546332Answer by ScottKoon for What is the best tool to benchmark my JavaScript?ScottKoon2008-09-10T16:43:54Z2008-09-10T16:43:54Z<p>In FireBug and FireBug Lite you can call the console.time() and console.timeEnd() methods in your code to start and end a timer around a particular piece of code. The Profiler tool in FireBug will measure how long each function takes. I've used it a lot to narrow down which lines of a particularly slow function are causing the slowdown</p>
http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why/31596#315960Answer by ScottKoon for What JavaScript library would you choose for a new project and why?ScottKoon2008-08-28T03:21:13Z2008-08-28T03:21:13Z<p>I think it depends on the project. If you plan on manipulating groups of elements a lot, JQuery wins hands down. If you want a solid basis to build a JavaScript library on, Prototype is an excellent choice.</p>
http://stackoverflow.com/questions/15302/what-do-the-getutc-methods-on-the-date-object-do2What do the getUTC* methods on the date object do?ScottKoon2008-08-18T22:14:34Z2008-08-23T15:26:20Z
<p>What does it mean when you get or create a date in UTC format in JavaScript?</p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/22526#225260Answer by ScottKoon for Best Debugging Tools for JavaScript/xulrunner DevelopmentScottKoon2008-08-22T14:41:11Z2008-08-22T14:41:11Z<p>I did a Google search for (Xul IDE) and the first hit was a listing on the Mozilla wiki of different XUL IDE.s I also found an app called <a href="http://www.redbacksystems.com/xulustudio/" rel="nofollow">XULU studio</a> in the results.</p>
<p><a href="https://wiki.mozilla.org/XUL:IDE" rel="nofollow">https://wiki.mozilla.org/XUL:IDE</a></p>
http://stackoverflow.com/questions/20376/javascript-profiler-in-ie/21917#219171Answer by ScottKoon for JavaScript Profiler in IEScottKoon2008-08-22T07:09:05Z2008-08-22T07:09:05Z<p>We use Firebugs console.log, console.time and console.timeEnd (I think) a lot.</p>
<p>Firebug also has a built in profiler.</p>
http://stackoverflow.com/questions/21280/am-i-missing-something-about-linq/21331#213315Answer by ScottKoon for Am I missing something about LINQ?ScottKoon2008-08-21T22:18:05Z2008-08-21T22:18:05Z<p>So the really, really big deal about LINQ has nothing to do with Linq to SQL. It's about the enhancements it brought to the C# language itself.</p>
http://stackoverflow.com/questions/21288/which-c-net-dependency-injection-frameworks-are-worth-looking-into/21296#212963Answer by ScottKoon for Which C#/.NET Dependency Injection frameworks are worth looking into?ScottKoon2008-08-21T22:00:12Z2008-08-21T22:00:12Z<p>Ninject is great. It seems really fast, but I haven't done any comparisons. I know Nate, the author, did some comparisons between Ninject and other DI frameworks and is looking for more ways to improve the speed of Ninject.</p>
<p>I've heard lots of people I respect say good things about StructureMap and CastleWindsor. Those, in my mind, are the big three to look at right now.</p>
http://stackoverflow.com/questions/17107/whats-the-best-way-to-code-a-desktop-application-like-menu-bar-in-javascript/17375#173750Answer by ScottKoon for What's the best way to code a desktop application-like menu bar in Javascript?ScottKoon2008-08-20T03:25:10Z2008-08-20T03:25:10Z<blockquote>
<p>but the biggest problem seems to be
getting onclick (as opposed to hover)
events to work as intended.</p>
</blockquote>
<p>So maybe you should explain what problems you are having with the onclick events in your menu. In my experience, the hardest part is getting the styles right in all browsers. handling the events is a piece of cake.</p>
http://stackoverflow.com/questions/17107/whats-the-best-way-to-code-a-desktop-application-like-menu-bar-in-javascript/17123#171236Answer by ScottKoon for What's the best way to code a desktop application-like menu bar in Javascript?ScottKoon2008-08-19T22:42:19Z2008-08-19T22:42:19Z<p><a href="http://extjs.com/deploy/dev/examples/menu/menus.html" rel="nofollow">ExtJS</a> and <a href="http://developer.yahoo.com/yui/menu/" rel="nofollow">YUI</a> have the best menu widgets in my opinion. Both are easy to setup and use and are skinnable. ExtJS will integrate with JQuery.</p>
<p>The second idea is to use CSS to create your menus if you don't want to use a 3rd party library.A list apart has a <a href="http://www.alistapart.com/articles/horizdropdowns" rel="nofollow">great primer on creating CSS menus</a>.</p>
http://stackoverflow.com/questions/1676731/asp-net-mvc-v2-debugging-model-binding-issues-bugComment by ScottKoon on ASP.net MVC v2 - Debugging Model Binding Issues - BUG?ScottKoon2009-11-11T16:39:48Z2009-11-11T16:39:48ZInterfaces can't inherit, only classes can. Interfaces specify implementation requirements. If you say IFoo : IBar, you are telling the compiler "Any class that implements the IFoo interface must also implement the IBar interface". http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420Comment by ScottKoon on Why do I need an IoC container as opposed to straightforward DI code?ScottKoon2009-10-07T18:35:51Z2009-10-07T18:35:51ZIn Joel's defense, DI and IoC may be very difficult to grasp in Z80 Assembly or when using templates with COM in multi-threaded code.http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420Comment by ScottKoon on Why do I need an IoC container as opposed to straightforward DI code?ScottKoon2009-10-07T16:50:33Z2009-10-07T16:50:33ZYou are very wrong.http://stackoverflow.com/questions/1240057/integrating-automated-web-testing-into-build-process/1240133#1240133Comment by ScottKoon on Integrating Automated Web Testing Into Build ProcessScottKoon2009-08-08T04:17:01Z2009-08-08T04:17:01ZJetty is, I believe, an AppServer like JBoss, WebSphere or Tomcat. It's a host for the application.http://stackoverflow.com/questions/1162246/object-alternate-content-containing-a-script-tag-wont-document-write-in-ie/1173902#1173902Comment by ScottKoon on <object> alternate content containing a script tag won't document.write in IEScottKoon2009-07-23T19:23:53Z2009-07-23T19:23:53ZYou could also reverse the solution and just add the object tag if they have SL installed. <a href="http://stackoverflow.com/questions/281246/how-can-i-dynamically-add-an-object-tag-with-javascript-in-ie" rel="nofollow" title="how can i dynamically add an object tag with javascript in ie">stackoverflow.com/questions/281246/…</a>http://stackoverflow.com/questions/1162246/object-alternate-content-containing-a-script-tag-wont-document-write-in-ie/1173902#1173902Comment by ScottKoon on <object> alternate content containing a script tag won't document.write in IEScottKoon2009-07-23T19:21:29Z2009-07-23T19:21:29Zerrrr, the quotes should be properly escaped too but meh.http://stackoverflow.com/questions/390693/does-anyone-beside-me-just-not-get-asp-net-mvc/390783#390783Comment by ScottKoon on Does anyone beside me just NOT get ASP.NET MVC?ScottKoon2009-04-23T18:37:16Z2009-04-23T18:37:16ZWhy is this marked as "The answer" when the poster didn't even know anything about the MVC pattern when he answered?http://stackoverflow.com/questions/61088/hidden-features-of-javascript/128867#128867Comment by ScottKoon on Hidden Features of JavaScript?ScottKoon2009-03-31T19:08:19Z2009-03-31T19:08:19ZIt's not about the alert, it's about defining and executing a function all at once. You could have that self-executing function return a value and pass the function as a param to another function.http://stackoverflow.com/questions/315183/jquery-move-javascript-to-the-bottom-of-the-page/315773#315773Comment by ScottKoon on JQuery: Move Javascript to the bottom of the Page? ScottKoon2009-02-20T21:39:12Z2009-02-20T21:39:12ZHmmm, then there's an argument to be made about compressing the scripts and linking to them rather than putting them inline.http://stackoverflow.com/questions/410558/why-are-exceptions-said-to-be-so-bad-for-input-validation/484445#484445Comment by ScottKoon on Why are Exceptions said to be so bad for Input Validation?ScottKoon2009-01-27T22:14:37Z2009-01-27T22:14:37ZFundamentally yes, Except that the system treats exceptions differently. Exceptions stop/interrupt the flow of your code, you have to stop and deal with an exception. http://stackoverflow.com/questions/114807/should-i-learn-become-proficient-in-javascript/114840#114840Comment by ScottKoon on Should I learn/become proficient in Javascript?ScottKoon2008-09-22T20:08:08Z2008-09-22T20:08:08ZI'd argue, based on the usage of JavaScript vs. C#, VB.NET, and Java that JavaScrit <i>is</i> the mainstream language. ;)http://stackoverflow.com/questions/107464/is-javascript-object-oriented/108773#108773Comment by ScottKoon on Is JavaScript object-oriented?ScottKoon2008-09-21T03:06:12Z2008-09-21T03:06:12ZHow does prototypal inheritance sacrifice encapsulation?http://stackoverflow.com/questions/107464/is-javascript-object-orientedComment by ScottKoon on Is JavaScript object-oriented?ScottKoon2008-09-21T02:59:26Z2008-09-21T02:59:26Zis there a way to refine the question?http://stackoverflow.com/questions/107464/is-javascript-object-oriented/107781#107781Comment by ScottKoon on Is JavaScript object-oriented?ScottKoon2008-09-21T02:55:49Z2008-09-21T02:55:49ZHonestly, that show perpetuated several mischaracterizations about JavaScript and was the reason I asked this question here. I wanted a place I could point to the next time someone made the claim that JavaScript isn't object oriented.http://stackoverflow.com/questions/67734/execute-javascript-from-within-a-c-assembly/67768#67768Comment by ScottKoon on Execute JavaScript from within a C# assemblyScottKoon2008-09-15T23:04:31Z2008-09-15T23:04:31ZI've thought about that or using Selenium to run the tests. But it's still an extra step.