User Shog9 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T00:54:44Z http://stackoverflow.com/feeds/user/811 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1830080/jquery-scrolltop-doesnt-seem-to-work-in-safari-or-chrome-windows/1877007#1877007 0 Answer by Shog9 for jQuery scrollTop() doesn't seem to work in Safari or Chrome (Windows) Shog9 2009-12-09T21:26:07Z 2009-12-09T21:26:07Z <p>Yeah, there appears to be a bug in Chrome when it comes to modifying the <code>body</code>, trying to make it into an offsetParent. As a work-around, I suggest you simply add another div to wrap the <code>#content</code> div, and make <em>that</em> scroll:</p> <pre><code>html, body { height: 100%; padding: 0; } html { width: 100%; background-color: #222; overflow: hidden; margin: 0; } body { width: 40em; margin: 0px auto; /* narrow center column layout */ background-color: white; position: relative; /* allow positioning children relative to this element */ } #scrollContainer /* wraps #content, scrolls */ { overflow: auto; /* scroll! */ position:absolute; /* make offsetParent */ top: 0; height: 100%; width: 100%; /* fill parent */ } #header { position: absolute; top: 0px; height: 50px; width: 38.5em; background-color: white; z-index: 1; /* sit above #content in final layout */ } #content { padding: 5px 14px 50px 5px; } </code></pre> <p>Tested in FF 3.5.5, Chrome 3.0.195.33, IE8<br> <a href="http://jsbin.com/oboqa" rel="nofollow">Live demonstration</a></p> http://stackoverflow.com/questions/1829611/why-should-i-use-string-length-0-over-string-when-checking-for-empty-str/1829636#1829636 8 Answer by Shog9 for Why should I use string.length == 0 over string == "" when checking for empty string in ECMAScript? Shog9 2009-12-01T23:18:14Z 2009-12-02T00:22:47Z <p>I actually prefer that technique in a number of languages, since it's sometimes hard to differentiate between an empty string literal <code>""</code> and several other strings (<code>" "</code>, <code>'"'</code>).</p> <p>But there's another reason to avoid <code>theString == ""</code> in ECMAScript: <code>0 == ""</code> evaluates to <code>true</code>, as does <code>false == ""</code> and <code>0.0 == ""</code>... </p> <p>...so unless you <em>know</em> that <code>theString</code> is <strong>actually a string</strong>, you might end up causing problems for yourself by using the weak comparison. Fortunately, you can avoid this with judicious use of the strict equal (<code>===</code>) operator:</p> <pre><code>if ( theString === "" ) // string is a string and is empty </code></pre> <h3>See also:</h3> <ul> <li><a href="http://stackoverflow.com/questions/154059/what-is-the-best-way-to-check-for-an-empty-string-in-javascript"><strong>What is the best way to check for an empty string in JavaScript?</strong></a></li> </ul> http://stackoverflow.com/questions/1822651/are-there-any-good-reasons-not-to-use-jquery-instead-of-plain-old-javascript/1822669#1822669 4 Answer by Shog9 for Are there any good reasons NOT to use jQuery instead of plain old JavaScript? Shog9 2009-11-30T21:57:07Z 2009-11-30T21:57:07Z <p>Lots of bad reasons. Two good ones:</p> <ol> <li><strong>You don't need it</strong>. There are plenty of things you might want to do with JavaScript that don't require or particularly benefit from jQuery.</li> <li><strong>You don't want it</strong>. Personally, I think jQuery is fantastic. Sets, function chaining, concise syntax... it all makes me happy. But, some folks have different tastes.</li> </ol> http://stackoverflow.com/questions/1820541/problem-loading-remote-script-with-jquery-multiple-times-in-firefox/1820585#1820585 1 Answer by Shog9 for Problem loading remote script with jQuery multiple times in Firefox Shog9 2009-11-30T15:45:11Z 2009-11-30T15:45:11Z <blockquote> <p>I can think of ugly workarounds (such as doing a $('head').append(' </blockquote> <p>Ugliness is subjective; personally, I find the technique you're trying to use (making a single script tag load multiple scripts) far uglier. </p> <p>But that's not really important. Adding a new script tag <em>works</em> - so if you're having trouble with what you're doing, just use the normal method and live with it.</p> <p>FWIW: Firefox probably doesn't respond because <em>you're not actually changing anything</em>... If you want to make this even uglier, append some do-nothing querystring parameter that changes each time through.</p> http://stackoverflow.com/questions/1817540/clicking-a-link-when-enter-key-is-pressed-using-jquery/1817583#1817583 1 Answer by Shog9 for Clicking a link when enter key is pressed using jQuery Shog9 2009-11-30T02:21:02Z 2009-11-30T02:21:02Z <p>You have a few major problems with this code...</p> <p>The first one, <a href="http://stackoverflow.com/questions/1817540/clicking-a-link-when-enter-key-is-pressed-using-jquery/1817554#181755">pygorex1 caught</a>: you need to specify the event argument if you wish to refer to it...</p> <p>The second one is in the same area of your code: you're trying to check for the key event in a handler for the <code>click</code> event!</p> <p>The third one can be found on this line:</p> <pre><code> //click the button and go to next page $("#button1").click(); </code></pre> <p>...which does nothing, since you have no event handlers on that link, and <a href="http://docs.jquery.com/Events/click" rel="nofollow">jQuery's <code>click()</code> function does not trigger the browser's default behavior</a>!</p> <p>Instead, try something like this:</p> <pre><code>// if a key is pressed and then released $("#drivingSchoolInput").live("keyup", function(e) { // ...and it was the enter key... if(e.keyCode == 13) { // ...navigate to the associated URL. document.location = $("#button1").attr('href'); } }); </code></pre> http://stackoverflow.com/questions/1817426/why-is-the-result-of-my-calculation-undefined/1817481#1817481 1 Answer by Shog9 for Why is the result of my calculation undefined? Shog9 2009-11-30T01:38:49Z 2009-11-30T01:38:49Z <p>You're working with strings. But treating them like numbers. JavaScript will convert a string representation of a number <em>to</em> an actual number, but only when it needs to... And the + operator doesn't require such a conversion, as it acts as the concatenation operator for strings.</p> <p>Therefore, this expression:</p> <pre><code>Math.round(Math.floor(i/10)*10)+scramble[i%10] </code></pre> <p>...is converting the first operand into a string and appending an element from the <code>scramble</code> array. You don't notice this for the first ten iterations, since when i&lt;10 the first expression evaluates to 0... But after that, you're suddenly prefixing each scramble element with "10", and trying to access <code>original</code> indexes >= 100... of which there are none defined.</p> <h3>Solution:</h3> <p>Convert your strings to numbers before using them. </p> <pre><code>Math.round(Math.floor(i/10)*10)+ Number(scramble[i%10]) </code></pre> http://stackoverflow.com/questions/1811114/how-might-i-use-jquery-to-show-the-first-8-elements/1811119#1811119 2 Answer by Shog9 for How might I use jQuery to show the first 8 elements? Shog9 2009-11-28T00:29:54Z 2009-11-28T00:40:17Z <p>Use <a href="http://docs.jquery.com/Selectors/lt" rel="nofollow">the less-than selector</a> to select all list items with indexes less than 8 (index 8 is the ninth list item). Then show them:</p> <pre><code>$("#mylist li:lt(8)").show(); </code></pre> <p>(assumes your list - <code>ol</code> or <code>ul</code> - has an <code>id</code> of <code>mylist</code>; adjust accordingly)</p> <p>You might need to do this in two steps, if some list items are initially visible:</p> <pre><code>$("#mylist li") // select all list items .hide() // hide them .filter("li:lt(8)") // now select just the first eight .show(); // ...and show them. </code></pre> <p>(actually, this is over-kill unless some items are shown and some are hidden - if you know for a fact that all items are initially visible, you can use <a href="http://docs.jquery.com/Selectors/gt" rel="nofollow">the greater-than selector</a> to simply hide items with index 8 and above - <a href="http://stackoverflow.com/questions/1811114/how-might-i-use-jquery-to-show-the-first-8-elements/1811139#1811139">as Corey demonstrates</a>)</p> http://stackoverflow.com/questions/455434/how-should-i-use-formatmessage-properly-in-c/455533#455533 10 Answer by Shog9 for How should I use FormatMessage() properly in C++? Shog9 2009-01-18T17:32:16Z 2009-11-26T00:36:04Z <p>Here's the proper way to get an error message back from the system for an <code>HRESULT</code>:</p> <pre><code>LPTSTR errorText = NULL; FormatMessage( // use system message tables to retrieve error text FORMAT_MESSAGE_FROM_SYSTEM // allocate buffer on local heap for error text |FORMAT_MESSAGE_ALLOCATE_BUFFER // Important! will fail otherwise, since we're not // (and CANNOT) pass insertion parameters |FORMAT_MESSAGE_IGNORE_INSERTS, NULL, // unused with FORMAT_MESSAGE_FROM_SYSTEM hresult, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR)&amp;errorText, // output 0, // minimum size for output buffer NULL); // arguments - see note if ( NULL != errorText ) { // ... do something with the string - log it, display it to the user, etc. // release memory allocated by FormatMessage() LocalFree(errorText); errorText = NULL; } </code></pre> <p>The key difference between this and David Hanak's answer is the use of the <code>FORMAT_MESSAGE_IGNORE_INSERTS</code> flag. MSDN is a bit unclear on how insertions should be used, but <a href="http://blogs.msdn.com/oldnewthing/archive/2007/11/28/6564257.aspx" rel="nofollow">Raymond Chen notes that you should never use them</a> when retrieving a system message, as you've no way of knowing which insertions the system expects. </p> <p>FWIW, if you're using Visual C++ you can make your life a bit easier by using the <a href="http://msdn.microsoft.com/en-us/library/0ye3k36s.aspx" rel="nofollow"><code>_com_error</code></a> class:</p> <pre><code>{ _com_error error(hresult); LPCTSTR errorText = error.ErrorMessage(); // do something with the error... //automatic cleanup when error goes out of scope } </code></pre> <p>Not part of MFC or ATL directly as far as i'm aware. </p> http://stackoverflow.com/questions/1735255/why-doesnt-my-ajax-script-work/1735351#1735351 2 Answer by Shog9 for Why doesn't my AJAX script work? Shog9 2009-11-14T19:35:53Z 2009-11-14T20:01:39Z <p>A few notes that I couldn't fit into a comment (some of these should have no effect on the success of your XMLHttpRequest call; others <em>might</em> - fix <em>all</em> of them):</p> <h3>The script</h3> <p>Nothing checks the return value of <code>make_request</code>, so <code>return false;</code> is sorta pointless (just... <code>return;</code>). Why not make <code>httpxml</code> a local variable instead of an implicit global, and return that? Then use the return value to indicate to the caller whether or not the function succeeded...</p> <p>The local variable <code>httpRequest</code> in <code>check_login()</code> is never used. Perhaps you intended to assign it the return value of <code>make_request()</code> (and... have <code>make_request()</code> actually return something useful?)</p> <p>You're not actually URL-encoding the values of <code>username</code> or <code>password</code>. (Pass them through <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FFunctions/encodeURIComponent" rel="nofollow"><code>encodeURIComponent()</code></a> to accomplish this easily)</p> <p>You should not need to set the <code>Content-Length</code> header explicitly. (And if you get it wrong, this could easily cause the request to fail)</p> <p><strong>And the worst script error:</strong> you're not canceling the default behavior for the submit button. Return <code>false</code> from <code>check_login()</code>, and change your event handler to <code>onclick="return check_login(username, password);</code></p> <h3>The markup</h3> <p>You've made your <code>&lt;form&gt;</code> tag self-closing (<code>&lt;form ... /&gt;</code>). And included a closing <code>&lt;/form&gt;</code> tag. It's unlikely that's what you want (and even less likely that'll behave reliably cross-browser)</p> <p>Your last cell (<code>&lt;td&gt;</code>) is defined outside of any row (<code>&lt;tr&gt;</code>).</p> <p>You close a <code>&lt;div&gt;</code> that was never opened.</p> http://stackoverflow.com/questions/244758/jquery-animation-smooth-size-transition/245316#245316 1 Answer by Shog9 for jQuery Animation - Smooth Size Transition Shog9 2008-10-28T23:56:42Z 2009-11-02T23:50:47Z <p>Try this jQuery plugin:</p> <pre><code>// Animates the dimensional changes resulting from altering element contents // Usage examples: // $("#myElement").showHtml("new HTML contents"); // $("div").showHtml("new HTML contents", 400); // $(".className").showHtml("new HTML contents", 400, // function() {/* on completion */}); (function($) { $.fn.showHtml = function(html, speed, callback) { return this.each(function() { // The element to be modified var el = $(this); // Preserve the original values of width and height - they'll need // to be modified during the animation, but can be restored once // the animation has completed. var finish = {width: this.style.width, height: this.style.height}; // The original width and height represented as pixel values. // These will only be the same as `finish` if this element had its // dimensions specified explicitly and in pixels. Of course, if that // was done then this entire routine is pointless, as the dimensions // won't change when the content is changed. var cur = {width: el.width()+'px', height: el.height()+'px'}; // Modify the element's contents. Element will resize. el.html(html); // Capture the final dimensions of the element // (with initial style settings still in effect) var next = {width: el.width()+'px', height: el.height()+'px'}; el .css(cur) // restore initial dimensions .animate(next, speed, function() // animate to final dimensions { el.css(finish); // restore initial style settings if ( $.isFunction(callback) ) callback(); }); }); }; })(jQuery); </code></pre> http://stackoverflow.com/questions/1633490/how-to-detect-programmatically-whether-code-is-running-in-shared-dll-or-exe/1633558#1633558 3 Answer by Shog9 for How to detect programmatically whether code is running in shared DLL or exe? Shog9 2009-10-27T20:47:49Z 2009-10-27T23:42:10Z <p>It's <strong>your</strong> class - <strong>you know</strong> where you're putting it. </p> <p>If you're not sharing it, then just pick an ID below 0xBFFF and be done with it. </p> <p>If your class belongs in a DLL that can be shared by multiple applications... Or can simply be shared by code that you don't control and therefore are unable to sort out IDs for... then use <a href="http://msdn.microsoft.com/en-us/library/ms649060.aspx" rel="nofollow"><code>GlobalAddAtom()</code></a> to get an ID (and remember to call <a href="http://msdn.microsoft.com/en-us/library/ms649061.aspx" rel="nofollow"><code>GlobalDeleteAtom()</code></a> after you <a href="http://msdn.microsoft.com/en-us/library/ms646327.aspx" rel="nofollow">unregister the hotkey</a>). </p> <p><hr /></p> <h3>Explanation</h3> <p>It's probably worth taking a minute to think about why there are two different ID ranges, and why the API docs recommend using <code>GlobalAddAtom()</code> to obtain an ID in the latter range for shared DLLs. Let's start with the documentation for the parameter to <code>RegisterHotKey()</code>:</p> <blockquote> <p><em>id</em><br /> &nbsp; &nbsp; [in] Specifies the identifier of the hot key. If the hWnd parameter is NULL, then the hot key is associated with the current thread rather than with a particular window. If a hot key already exists with the same hWnd and id parameters, see Remarks for the action taken.</p> </blockquote> <p>From this, we can surmise that hotkeys are uniquely identified by one of two potential pairs of information: a thread or window handle, and an arbitrary 16-bit number. If you specify a window handle (<code>HWND</code>), then <a href="http://msdn.microsoft.com/en-us/library/ms646279.aspx" rel="nofollow">the message</a> is sent to that window; otherwise, it's sent to the thread. </p> <p>So... If you only register <strong>one</strong> hotkey for a given window, the ID doesn't really matter<sup>1</sup>; no one else can register a hotkey for that window, and hotkey events for other windows will post to those windows. Similarly, if you only register one windowless hotkey for a given thread, you'll only get messages for that hotkey. <strong>If you control all of the code for your application, you can pick whatever IDs you want for your hotkeys</strong>, using whatever technique you want to assign them; no one else will step on them, because <strong>you own all the code</strong> that would be <em>able</em> to step on them!</p> <p>But what if you're writing a general-purpose routine that can be called by other code? You can't reliably pick a constant ID then, since the caller could potentially be using that ID already, and if they're also using the same window or thread, you'd end up redefining their hotkey. Or what if (as in your case) you don't know how many hotkeys will be registered until runtime? </p> <p><strong>You need a way to ensure that the ID you choose at runtime will be one that no one else is using.</strong> This is where <code>GlobalAddAtom()</code> comes into play: you pass it a string, and it gives you an ID guaranteed to correspond to that string and no other; this is effectively unique for the system, unless someone else passes the same string - and you can probably come up with a unique string; just use your company name, or your social security number, and a prefix that you increment for each new atom that you need. Or, if you're really paranoid, use a GUID.</p> <h3>The truth behind truths</h3> <p>With that out of the way, let me try to clear up a bit of confusion: Windows doesn't actually care whether or not the code that calls <code>RegisterHotKey()</code> is in a DLL. It <em>can't</em>. Consider the following routine:</p> <pre><code>void RegisterSuperHappyFunHotKey(HWND hWnd, int id, unsigned int fsModifiers, unsigned int vk) { RegisterHotKey(hWnd, id, fsModifiers, vk); } </code></pre> <p>This routine does <em>nothing</em> but forward its parameters on to the WinAPI function, none of which identify the calling module. If it lived in a DLL, it would behave the same as if it was compiled into the application itself. There's no reliable way for Windows to tell where the call originates, and the hotkey itself is tied to a window and thread (or a thread alone) either of which could be controlled by code in or out of a DLL. Now of course, you could have app- or library-specific requirements of your own: if your DLL creates a window and sets up a hotkey for it, then you'll want to take care of unregistering that hotkey when you destroy the window... But that's your own concern, to handle as you see fit.</p> <p>MSDN specifies the two ranges of IDs for one good reason: to encourage you, the DLL author, to avoid stepping on IDs used by an application author. If you're the application author, then <em>the world is your oyster</em> - you control (for the most part) which code gets loaded and executed in your application's process, and can therefore make the decisions as to which IDs you use <em>however you see fit</em>: starting at 0 and incrementing for each new hotkey is perfectly acceptable. But once you venture into the upper range of IDs, you'll have to use <code>GlobalAddAtom()</code> just as if you were a DLL - or you run the risk of colliding with an ID generated in this manner by third-party code loaded from a DLL. It's a... <a href="http://en.wikipedia.org/wiki/Social%5Fcontract" rel="nofollow">social contract</a> of sorts. </p> <h3>Summary:</h3> <p>The "shared DLL" bit is a red herring here; if you can know the IDs of all hotkeys registered by your application, then just pick a number below 0xBFFF and use it. If you can't, because your code will be used by multiple callers (as yours is...), then obtain an ID using <code>GlobalAddAtom()</code> and use that.</p> <h3>Recommendation</h3> <p>For these reasons, I recommend that you <strong>do</strong> use <code>GlobalAddAtom()</code> for the class you're designing, simply because it sounds as though you don't know at this time whether or not you'll be building it into an application of your own design (where you control the IDs being used) or a DLL to be loaded by some other app (where you <strong>do not</strong>). Don't worry - you're not violating the contract by <em>pretending</em> to be a DLL, so long as you follow the rules set forth for DLL callers. </p> <p><hr /></p> <p><sup>1</sup>ok, so there are a couple of system-defined hotkey IDs that you have to watch out for...</p> http://stackoverflow.com/questions/1627069/how-can-i-keep-a-music-player-in-the-page-footer-that-doesnt-reload-when-i-click/1627084#1627084 2 Answer by Shog9 for How can I keep a music player in the page footer that doesn't reload when I click a link to a subpage? Shog9 2009-10-26T20:15:11Z 2009-10-26T20:15:11Z <p><a href="http://stackoverflow.com/questions/554243/how-are-the-facebook-chat-windows-implemented">Do it like Facebook</a> - use JavaScript to intercept link navigation, load the content using XMLHttpResponse, and then update the portions of the page that need to change.</p> <p>This keeps the static integrity of the page for search engines, allows most of the site to still work just fine for users with scripting disabled, and avoids resetting the music for everyone else.</p> http://stackoverflow.com/questions/1602773/removing-firefox-star-icon-and-bookmark-icon/1602859#1602859 4 Answer by Shog9 for Removing Firefox Star Icon and Bookmark Icon Shog9 2009-10-21T18:55:43Z 2009-10-21T18:55:43Z <p><a href="https://developer.mozilla.org/en/DOM/window.open" rel="nofollow">From the MDC documentation for <code>window.open()</code></a>:</p> <blockquote> <p>Mozilla and Firefox users can force new windows to always render the location bar by setting dom.disable_window_open_feature.location to true in about:config or in their user.js file</p> <p>In Firefox 3, dom.disable_window_open_feature.location now defaults to true, forcing the presence of the Location Bar much like in IE7.</p> </blockquote> <p>This was done <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=337344" rel="nofollow">to help thwart phishing exploits</a>. You're better off (your <strong>users</strong> are better off) leaving it enabled, even if you have control over the machines on which the browser is running. </p> <p>You should really be designing your application such that knowing or bookmarking the URL won't help would-be cheaters. For instance: don't accept an answer to a question when an answer has been previously submitted.</p> http://stackoverflow.com/questions/1602777/what-is-java-net-idn-class-in-1-6/1602795#1602795 4 Answer by Shog9 for what is java.net.IDN class in 1.6 Shog9 2009-10-21T18:46:01Z 2009-10-21T18:46:01Z <p><a href="http://www.j2ee.me/javase/6/docs/api/java/net/IDN.html" rel="nofollow">From the documentation</a>:</p> <blockquote> <p>Provides methods to convert internationalized domain names (IDNs) between a normal Unicode representation and an ASCII Compatible Encoding (ACE) representation. </p> </blockquote> http://stackoverflow.com/questions/1596348/question-about-seo/1596378#1596378 0 Answer by Shog9 for Question about SEO Shog9 2009-10-20T18:10:21Z 2009-10-20T18:10:21Z <p>They're part of the page's HTML, just hidden initially. So... <em>probably</em>. </p> <p>If you really want to know what Google sees, you might be interested in <a href="http://googlewebmastercentral.blogspot.com/2009/10/fetch-as-googlebot-and-malware-details.html" rel="nofollow">the "Fetch as Googlebot" tool</a>...</p> http://stackoverflow.com/questions/1578194/designing-a-class-with-exceptions/1578232#1578232 2 Answer by Shog9 for Designing a class with **Exceptions** Shog9 2009-10-16T14:00:27Z 2009-10-16T14:34:05Z <blockquote> <p>Or should I not have both an exception method and a nonexception method?</p> </blockquote> <p><strong>That.</strong> Unless you really have <em>time to burn</em> maintaining two separate but mostly-identical methods. </p> <p>If you really need to allow for clients that won't consider errors exceptional, then just indicate them with a return value and be done with it... Otherwise, just write the exception-throwing version and let the odd error-eating client handle the exception.</p> http://stackoverflow.com/questions/1575462/handling-back-button/1575512#1575512 1 Answer by Shog9 for Handling back button Shog9 2009-10-15T22:40:36Z 2009-10-15T22:40:36Z <blockquote> <p>1) He might get one of those browser warning message about form submissions</p> </blockquote> <p>See: <a href="http://stackoverflow.com/questions/660329/prevent-back-button-from-showing-post-confirmation-alert">Post/Redirect/Get</a></p> <blockquote> <p>2) If he does go back, I want the file-upload module to behave differently (maybe show the images he uploaded, allowing him to change the one he wants)</p> </blockquote> <p>See: <a href="http://stackoverflow.com/questions/1575462/handling-back-button/1575501#1575501">da5id's answer</a>.</p> http://stackoverflow.com/questions/1562460/the-facebook-footer-bar-is-an-iframe-so-why-it-doesnt-it-reload-with-the-rest-o/1562558#1562558 3 Answer by Shog9 for The Facebook footer bar is an iframe, so why it doesn't it reload with the rest of the page? Shog9 2009-10-13T19:54:13Z 2009-10-13T21:40:58Z <p>Well, <a href="http://stackoverflow.com/questions/1562460/facebook-footer-bar-ajax/1562480#1562480">powtac pretty much gave you the answer</a>: Facebook doesn't reload the whole page when you click a link, it requests the new content via XMLHttpRequest and refreshes only those portions of the page that change. </p> <p>It's pretty slick about this: a naive implementation might not use real links at all, thus preventing you from opening, say, a different Facebook tab in a separate browser tab. </p> <p>This technique - intercepting link navigation - also allows Facebook to use <a href="http://stackoverflow.com/questions/765996/prompting-user-to-save-when-they-leave-a-page">custom prompts when you try to navigate away without saving</a>, and re-write paths as fragments, allowing it to track the current location in the URL without reloading the page.</p> <p>FWIW, this question has already been asked and answered - see: <a href="http://stackoverflow.com/questions/554243/how-are-the-facebook-chat-windows-implemented">How are the facebook chat windows implemented?</a></p> http://stackoverflow.com/questions/1557841/misusing-the-term-code-freeze/1557861#1557861 9 Answer by Shog9 for Misusing the term "Code Freeze" Shog9 2009-10-13T01:48:45Z 2009-10-13T01:54:10Z <blockquote> <p>Am I over analyzing this?</p> </blockquote> <p>Yes. </p> <p>Well, probably. Realistically, you should be thinking twice before making any code changes after the freeze. Bugs should have to pass some severity test, more so if the fix requires potentially-dangerous changes to the codebase or invalidates the testing that's been done. If you're not doing <em>that</em>, then yeah, you're just deluding yourselves. </p> <p>But if you're not gonna fix <em>any</em> bugs, then freezing the code is kinda pointless: just build and ship it. </p> <p>Ultimately, what matters is that you all understand what's meant by the label, not the label itself. One big happy Humpty-Dumpty...</p> http://stackoverflow.com/questions/1516947/css-menu-under-google-ads/1516951#1516951 3 Answer by Shog9 for css menu under Google Ads? Shog9 2009-10-04T17:40:11Z 2009-10-04T17:40:11Z <p>Well, near as I can tell, the ads appear later in the DOM and so naturally cover the popup list. You should be able to override this using <code>z-index</code>:</p> <pre><code>#nav li ul { z-index: 1; } </code></pre> http://stackoverflow.com/questions/1511795/is-it-possible-to-write-a-javascript-library-that-makes-all-browsers-standards-co/1511874#1511874 4 Answer by Shog9 for Is it possible to write a JavaScript library that makes all browsers standards compliant? Shog9 2009-10-02T21:26:35Z 2009-10-02T21:26:35Z <blockquote> <p>Plus, this would give an incentive for web browsers to follow the standards or be stuck with a slower browser due to all the JavaScript code being executed.</p> </blockquote> <p>Well... That's kind of the issue. Not every incompatibility <em>can</em> be smoothed out using JS tricks, and others will become too slow to be usable, or retain subtle incompatibilities. A classic example are the many scripts to fake support for translucency in PNG files on IE6: they worked for simple situations, but fell apart or became prohibitively slow for pages that used such images creatively and extensively.</p> <p>There's no free lunch.</p> <p>Others have pointed out specific situations where you can use a script to <a href="http://stackoverflow.com/questions/1511795/is-it-possible-to-write-a-javascript-library-that-makes-all-browsers-standards-co/1511844#1511844">fake features that aren't supported</a>, or a library to <a href="http://stackoverflow.com/questions/1511795/is-it-possible-to-write-a-javascript-library-that-makes-all-browsers-standards-co/1511801#1511801">abstract away differences</a>. My advice is to approach this problem piecemeal: write your code for a decent browser, restricting yourself as much as possible to the common set of supported functionality for critical features. Then bring in the hacks to patch up the browsers that fail, allowing yourself to drop functionality or degrade gracefully when possible on older / lesser browsers.</p> <p>Don't expect it to be too easy. If it was that simple, you wouldn't be getting paid for it... ;-)</p> http://stackoverflow.com/questions/1511618/why-isnt-the-callback-i-pass-to-jquerys-animate-method-called/1511666#1511666 3 Answer by Shog9 for Why isn't the callback I pass to jQuery's animate() method called? Shog9 2009-10-02T20:34:28Z 2009-10-02T20:34:28Z <p>Here's your problem:</p> <pre><code> parentElement.animate({ "height" : "hide", "opacity" : 0.0 }, { duration : "slow"}, "linear", callback); </code></pre> <p>That second parameter? <a href="http://docs.jquery.com/Effects/animate" rel="nofollow">It's supposed to be either a string or a number</a>. When you pass in an object, jQuery doesn't know what to do with it. Switch to this:</p> <pre><code> parentElement.animate({ "height" : "hide", "opacity" : 0.0 }, "slow", "linear", callback); </code></pre> <p>...and it'll work just fine.</p> http://stackoverflow.com/questions/1511368/jquery-url-location-and-click-event/1511378#1511378 2 Answer by Shog9 for JQuery - url location and click event Shog9 2009-10-02T19:30:49Z 2009-10-02T19:30:49Z <p>Why not just look at the <code>href</code> attribute of the link that was clicked?</p> <pre><code>$('#head_menu a').click(function(){ currentPage = this.href.split('#')[1]; }); </code></pre> http://stackoverflow.com/questions/1511301/vbscript-jscript-wscript-oh-my/1511327#1511327 1 Answer by Shog9 for VBScript! JScript! Wscript! ... oh my! Shog9 2009-10-02T19:16:14Z 2009-10-02T19:21:21Z <p>If you like JavaScript, you'll probably be ok with <a href="http://stackoverflow.com/questions/135203/whats-the-difference-between-javascript-and-jscript">JScript</a>. It's a decent language, and certainly more suitable for complex scripts than VBScript.</p> <p>However, Microsoft<sup>1</sup> <em>hates</em> JavaScript, so you'll encounter some APIs that are trivial to use with VBScript but painful to access using JScript. Consider yourself warned...</p> <p><a href="http://stackoverflow.com/questions/1511301/vbscript-jscript-wscript-oh-my/1511314#1511314">As snicker notes</a>, WScript is the engine that drives both.</p> <p><sup>1 <sub>Anthropomorphization used to note general lack-luster support; not to be interpreted as evidence of any official policy.</sub></sup></p> http://stackoverflow.com/questions/1493045/how-to-initialize-a-static-member/1493054#1493054 8 Answer by Shog9 for How to initialize a static member Shog9 2009-09-29T14:52:47Z 2009-09-29T14:52:47Z <p>You need to specify the type:</p> <pre><code>LoggerConcrete Logger::error = LoggerConcrete(LOG_DEBUG); LoggerConcrete Logger::write = LoggerConcrete(LOG_DEBUG); </code></pre> http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement 17 Are there legitimate uses for JavaScript's "with" statement? Shog9 2008-09-14T18:54:32Z 2009-09-23T04:20:04Z <p><a href="http://beta.stackoverflow.com/questions/61088/hidden-features-of-javascript#61118" rel="nofollow">Alan Storm's comments</a> in response to my answer regarding the <a href="http://developer.mozilla.org/index.php?title=En/Core_JavaScript_1.5_Reference/Statements/With" rel="nofollow"><code>with</code> statement</a> got me thinking. I've seldom found reason to use this particular language feature, and had never given much thought to how it might cause trouble. Now, i'm curious as to how i might make effective use of <code>with</code>, while avoiding its pitfalls...</p> <p>So my question is, where have you found the <code>with</code> statement useful?</p> http://stackoverflow.com/questions/1452380/good-jquery-interview-questions/1455548#1455548 3 Answer by Shog9 for Good jQuery interview questions? Shog9 2009-09-21T16:54:34Z 2009-09-21T16:54:34Z <p>If you want to see how well they work with jQuery, then do what the others have suggested: make them write a program, and then get them to explain how it works.</p> <p>But if you <em>really</em> just want to ask a question, then <strong>ask them how jQuery works</strong>. Here are some rough ideas:</p> <ul> <li><strong>What does the <code>jQuery()</code> function do?</strong> (there are four answer to this; subject should at least describe the selector-and-element-set mode)</li> <li><strong>How does jQuery respond when passed a selector that matches multiple elements?</strong></li> <li><strong>How does jQuery respond when passed a selector that does not match any elements?</strong> (pay close attention to the response to this and the previous question: subject should demonstrate clear understanding of jQuery's set-based design)</li> <li><strong>How does the <code>jQuery.live()</code> function operate?</strong> (assuming subject demonstrates a basic understanding of event bubbling, follow-up questions on the advantages and limitations of this approach are in order)</li> <li><strong>How might you implement the <a href="http://docs.jquery.com/Selectors/child#parentchild" rel="nofollow"><code>&gt;</code></a> selector (or a selector of your choice) <em>without</em> using jQuery?</strong> (should at least cover brute-force DOM traversal, bonus points for a <code>getElementsByTagName()</code> path, additional bonus for use of new Selectors API when available)</li> </ul> <p>Note that if you do go this route, you'd better have a <em>solid</em> understanding of jQuery yourself first...</p> http://stackoverflow.com/questions/1434937/namespace-functions-versus-static-methods-on-a-class/1434952#1434952 3 Answer by Shog9 for Namespace + functions versus static methods on a class Shog9 2009-09-16T19:18:30Z 2009-09-16T20:03:37Z <ul> <li>If you need static data, use static methods.</li> <li>If they're template functions and you'd like to be able to specify a set of template parameters for all functions together then use static methods in a template class.</li> </ul> <p>Otherwise, use namespaced functions.</p> <p><hr /></p> <p>In response to the comments: yes, static methods and static data tend to be over-used. That's why I offered only two, <em>related</em> scenarios where I think they can be helpful. In the OP's specific example (a set of math routines), if he wanted the ability to specify parameters - say, a core data type and output precision - that would be applied to all routines, he might do something like:</p> <pre><code>template&lt;typename T, int decimalPlaces&gt; class MyMath { // routines operate on datatype T, preserving at least decimalPlaces precision }; // math routines for manufacturing calculations typedef MyMath&lt;double, 4&gt; CAMMath; // math routines for on-screen displays typedef MyMath&lt;float, 2&gt; PreviewMath; </code></pre> <p>If you don't need that, then <em>by all means</em> use a namespace.</p> http://stackoverflow.com/questions/1429298/why-doesnt-this-simple-jquery-toggle-animation-work-properly/1429525#1429525 1 Answer by Shog9 for Why doesn't this simple jQuery toggle animation work properly? Shog9 2009-09-15T20:45:07Z 2009-09-15T20:45:07Z <h3>The problem</h3> <p>You're floating everything that might otherwise give that <code>div</code> height. So when jQuery goes to animate it, and it checks the height to see if it should shrink or expand it, it sees 0 and decides to expand. Every time. </p> <h3>One solution</h3> <p>An easy (and common) fix for this is to simply put something <em>after</em> the floating children, set to clear them and therefore force the parent to have height - for instance:</p> <pre><code>&lt;div id="notexid" style="clear:both;"&gt; &lt;div class="item" &gt; &lt;span class="label"&gt;&lt;label for="note"&gt;Label 1&lt;/label&gt;&lt;/span&gt; &lt;span class="content"&gt; &lt;textarea id="test" name="test" cols="30" rows="2" &gt;&lt;/textarea&gt; &lt;/span&gt; &lt;/div&gt; &lt;br clear="all"&gt; &lt;!-- you could probably find something less useless... --&gt; &lt;/div&gt; </code></pre> <p>But that's ugly. You have to modify your markup, and keep adding these extra trailing elements, regardless of whether or not you have any use for them.</p> <h3>A better solution</h3> <p>Instead, I suggest modifying your styles to reduce the number of floating elements:</p> <pre><code>*.item &gt; *.label { display:block; float:left; width:150px; } *.item &gt; *.content { display:block; width:220px; overflow:hidden; } </code></pre> <p>Now, only the labels float. The content sits and takes up space normally, letting the labels float nearby. Note the addition of the <code>overflow:hidden</code> style: this keeps oversized children from breaking out of the <code>content</code> blocks and ruining your layout.</p> http://stackoverflow.com/questions/1413230/is-passing-multiple-sets-of-arguments-as-an-array-in-javascript-faster-than-multi/1413358#1413358 2 Answer by Shog9 for Is passing multiple sets of arguments as an array in JavaScript faster than multiple function calls? Shog9 2009-09-11T21:25:02Z 2009-09-11T22:04:12Z <p>If the second routine is faster, it's probably because it doesn't do what it is supposed to do. Have a look at this snippet:</p> <pre><code> for (var i=0; i &lt; args.length; i++) { hover_selector = $(args[i][0]); class_name = args[i][1]; add_link = args[i][2]; hover_item = $(hover_selector) hover_selector.each(function(){ $(this).hover( function () { </code></pre> <p>Two problems here:</p> <ol> <li>You're using implicit global variables.</li> <li><strong>Blocks in JavaScript do not introduce a new scope.</strong></li> </ol> <p>Either of these would cause the same bug, together they just make it doubly certain that it will occur: the closures created for the <code>hover()</code> event handler functions contain only the values of the final loop iteration. When these handlers are finally called, <code>class_name</code> will always be <code>"selected"</code>, and <code>add_link</code> will always be <code>true</code>. In contrast, your original function would be called with a different set of parameters each time, which would be captured in the function's scope by the event handlers, and consequently work as expected.</p> <p><hr /></p> <p>As for the style... It's messy. You've encased the entire function body in a loop, removed descriptive arguments, and greatly complicating the calling of the function. </p> <p>Fortunately, you can address the issue I point out above, simplify the function, <em>and</em> simplify how it is called all in one go:</p> <pre><code>// For starters, I've eliminated explicit parameters completely. // args wasn't descriptive, and all JavaScript functions have an implicit // arguments array already - so let's just use that. function mouse_function_three () { // use jQuery's array iteration routine: // this takes a function as an argument, thereby introducing scope and // avoiding the problem identified previously $.each(arguments, function() { var class_name = this.class_name; var add_link = this.add_link; var selected = $(this.hover_selector); // no need to use selected.each() - jQuery event binding routines // always bind to all selected elements selected.hover(function() { $(this).addClass(class_name); }, function() { $(this).removeClass(class_name); }); // bring this out of the hover handler to avoid re-binding if ( add_link ) { $(selected).click(function(){ var href = $(this).find('a').attr('href'); window.location.href = href; }); } }); // each set of arguments } </code></pre> <p>You'd then call this new routine like so:</p> <pre><code>console.time('f3'); mouse_function_three( {hover_selector: '#newsletter .right', class_name: 'hovered', add_link: true}, {hover_selector: '.block-couple div.right', class_name: 'hovered', add_link: false}, {hover_selector: '.bulletin', class_name: 'selected', add_link: true} ); console.timeEnd('f3'); </code></pre> <p>Note that these changes may very well eliminate any speed difference from your initial attempt, as the code effectively does the very same thing, but with the additional step of packing and then extracting parameters...</p> http://stackoverflow.com/questions/263352/in-c-should-i-use-string-empty-or-string-empty-or Comment by Shog9 on In C#, should I use string.Empty or String.Empty or “” ? Shog9 2009-12-10T00:26:46Z 2009-12-10T00:26:46Z Voting to delete this. <i>EXACT</i> duplicate indeed! http://stackoverflow.com/questions/1864948/why-hasnt-a-faster-better-language-than-c-come-out Comment by Shog9 on Why hasn't a faster, "better" language than C come out? Shog9 2009-12-10T00:24:16Z 2009-12-10T00:24:16Z @dmckee: not sure... I know we've covered &quot;Why does anything still use C++&quot;, &quot;Why doesn't everything use C++&quot;, &quot;Why isn't everything re-written in C#&quot;, and &quot;Why does everyone hate Haskell&quot;... But don't recall this one. http://stackoverflow.com/questions/1869691/which-c-compiler-errors-are-undocumented Comment by Shog9 on Which C# compiler errors are undocumented? Shog9 2009-12-09T16:29:41Z 2009-12-09T16:29:41Z @Desty: so flag it then. That's what the &quot;flag comment&quot; feature is for. http://stackoverflow.com/questions/1869691/which-c-compiler-errors-are-undocumented Comment by Shog9 on Which C# compiler errors are undocumented? Shog9 2009-12-09T03:30:30Z 2009-12-09T03:30:30Z Re-written, re-opened. Seems like it could be a useful enough topic... <b>@Leppie:</b> I left CS0224 in as an example, but it might be more effective to move it into its own answer. http://stackoverflow.com/questions/1871227/why-am-i-getting-a-code-signing-error Comment by Shog9 on Why am I getting a code signing error? Shog9 2009-12-09T03:03:21Z 2009-12-09T03:03:21Z @Adam: Beats me. @mwyzq: what <i>was</i> the error? http://stackoverflow.com/questions/1852647/is-this-wpf-progressbar-odd-render-behaviour-a-bug Comment by Shog9 on Is this WPF ProgressBar Odd render behaviour a Bug? Shog9 2009-12-07T22:55:59Z 2009-12-07T22:55:59Z Chalk it up to a learning experience... For future reference, any number of edits (but not rollbacks!) made within a single 5-minute window count as a single revision. http://stackoverflow.com/questions/1834560/how-might-i-count-the-number-of-users-online Comment by Shog9 on How might I count the number of users online? Shog9 2009-12-02T17:52:39Z 2009-12-02T17:52:39Z Closer to: <a href="http://stackoverflow.com/questions/568835/script-to-tell-me-who-and-how-many-users-are-online" rel="nofollow" title="script to tell me who and how many users are online">stackoverflow.com/questions/568835/&hellip;</a> http://stackoverflow.com/questions/1829611/why-should-i-use-string-length-0-over-string-when-checking-for-empty-str/1829636#1829636 Comment by Shog9 on Why should I use string.length == 0 over string == "" when checking for empty string in ECMAScript? Shog9 2009-12-02T02:55:53Z 2009-12-02T02:55:53Z @Crescent Fresh: question is largely a duplicate of the one I linked to in &quot;See also&quot;. I didn't realize that prior to writing the answer, but after examining it I consider it adequate and don't particularly want to gain further rep from this. If anyone has an alternate solution or disputes this one, it would be helpful if they brought that information into the original question... http://stackoverflow.com/questions/1827172/are-frameworks-too-vulnerable-to-exploits Comment by Shog9 on Are frameworks too vulnerable to exploits? Shog9 2009-12-01T20:54:46Z 2009-12-01T20:54:46Z @evolve: if you're interested in extended discussion, you might want to have a look at this: <a href="http://meta.stackoverflow.com/questions/13198/where-can-i-find-interesting-programming-discussions" rel="nofollow" title="where can i find interesting programming discussions">meta.stackoverflow.com/questions/13198/&hellip;</a> http://stackoverflow.com/questions/1827172/are-frameworks-too-vulnerable-to-exploits Comment by Shog9 on Are frameworks too vulnerable to exploits? Shog9 2009-12-01T16:10:10Z 2009-12-01T16:10:10Z Are you kidding me? Best practices and design patterns are <i>even more</i> vulnerable to exploits! Over the years, they've been linked with nearly all exploited code, most likely due to the extreme amount of publicity granted them thus destroying any hope of security through obscurity. No, i'm afraid that the only way to be truly invulnerable is to code while drunk and blindfolded. http://stackoverflow.com/questions/1827128/how-do-i-access-the-individual-styles-of-a-css-rule-set-using-javascript Comment by Shog9 on How do I access the individual styles of a CSS rule-set using JavaScript? Shog9 2009-12-01T16:06:25Z 2009-12-01T16:06:25Z Check this out: <a href="http://stackoverflow.com/questions/324486/how-do-you-read-css-rule-values-with-javascript" rel="nofollow" title="how do you read css rule values with javascript">stackoverflow.com/questions/324486/&hellip;</a> http://stackoverflow.com/questions/1822651/are-there-any-good-reasons-not-to-use-jquery-instead-of-plain-old-javascript Comment by Shog9 on Are there any good reasons NOT to use jQuery instead of plain old JavaScript? Shog9 2009-11-30T22:12:46Z 2009-11-30T22:12:46Z @Shoko: It's easy to forget at times, but... There's more to JavaScript than DOM manipulation and AJAX. jQuery makes sense as a library, but doesn't really bring anything to the language core. Browsers <i>are</i> implementing native selector engines though, so there's a core part of jQuery moving into the browser. http://stackoverflow.com/questions/1757389/authsub-token-from-google-youtube-api-is-always-returned-as-invalid/1757682#1757682 Comment by Shog9 on AuthSub token from Google/YouTube API is always returned as invalid Shog9 2009-11-30T19:07:48Z 2009-11-30T19:07:48Z Hey, Miriam: you can edit your question or post a comment; posting an answer should be something you do only when you have an actual answer... Consider removing this until you get the reply you're waiting on. http://stackoverflow.com/questions/1821725/server-is-extermely-slow Comment by Shog9 on Server is extermely slow Shog9 2009-11-30T19:04:06Z 2009-11-30T19:04:06Z Try <a href="http://serverfault.com" rel="nofollow">serverfault.com</a> http://stackoverflow.com/questions/1820541/problem-loading-remote-script-with-jquery-multiple-times-in-firefox/1820585#1820585 Comment by Shog9 on Problem loading remote script with jQuery multiple times in Firefox Shog9 2009-11-30T15:58:11Z 2009-11-30T15:58:11Z You can delete them after they've loaded... But CMS's solution already does that, and it's built in to jQuery - so if that's what you're after, just go with it. :-)