User Patrick McElhaney - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:03:40Z http://stackoverflow.com/feeds/user/437 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/350308/how-to-know-if-a-page-is-currently-being-read-by-the-user-with-javascript/350395#350395 2 Answer by Patrick McElhaney for How to know if a page is currently being read by the user with Javascript? Patrick McElhaney 2008-12-08T18:28:31Z 2009-12-14T00:42:35Z <p>First check when the window loses and gains focus.</p> <pre><code>window.onblur = function () { /* stop */ }; window.onfocus = function () { /* start */ }; </code></pre> <p>Also, for various reasons, the user may stop reading the page without causing it to lose focus (e.g. he gets up and walks away from the computer). In that case, you have to assume after a period of inactivity (no mouse or keyboard events) that the users' attention has left the page. The code to do that is described in another answer.</p> http://stackoverflow.com/questions/690147/why-does-ie-make-password-boxes-smaller-than-text-boxes 6 Why does IE make password boxes smaller than text boxes? Patrick McElhaney 2009-03-27T15:11:38Z 2009-11-28T20:12:22Z <p>See the simple form below. It's just a text box on top of a password box. If you look at it in Internet Explorer 7 (and 8, and probably others) the text box is 10 pixels wider than the password box. </p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&gt; &lt;title&gt;IE Text vs. Password test&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form action="test"&gt; &lt;p&gt; &lt;input type="text"&gt;&lt;br&gt; &lt;input type="password"&gt; &lt;/p&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Is there a way to "fix" that globally, either through CSS or by adding something to the HTML? </p> http://stackoverflow.com/questions/165314/how-do-i-get-my-hands-on-a-dvorak-keyboard 0 How do I get my hands on a Dvorak keyboard? Patrick McElhaney 2008-10-03T01:13:04Z 2009-11-23T16:46:54Z <p>I've always assumed that before I can use the Dvorak layout I need to purchase a Dvorak keyboard. But I can't find one on Amazon. Is it simply a matter of popping the keys off a Qwerty keyboard and moving them around?</p> http://stackoverflow.com/questions/19907/what-do-most-users-consider-acceptable-load-times-on-a-website/19971#19971 10 Answer by Patrick McElhaney for What do most users consider acceptable load times on a website? Patrick McElhaney 2008-08-21T13:58:35Z 2009-11-19T00:02:53Z <p>Jakob Nielsen has <a href="http://www.useit.com/papers/responsetime.html" rel="nofollow">studied the matter extensively</a>. </p> <blockquote> <p><strong>1.0 second</strong> is about the limit for the user's flow of thought to stay uninterrupted, even though the user will notice the delay. Normally, no special feedback is necessary during delays of more than 0.1 but less than 1.0 second, but the user does lose the feeling of operating directly on the data.</p> <p><strong>10 seconds</strong> is about the limit for keeping the user's attention focused on the dialogue. For longer delays, users will want to perform other tasks while waiting for the computer to finish, so they should be given feedback indicating when the computer expects to be done. Feedback during the delay is especially important if the response time is likely to be highly variable, since users will then not know what to expect.</p> </blockquote> http://stackoverflow.com/questions/163302/how-do-i-ignore-a-directory-in-modrewrite/163530#163530 2 Answer by Patrick McElhaney for How do I ignore a directory in mod_rewrite? Patrick McElhaney 2008-10-02T17:22:50Z 2009-11-02T18:31:24Z <p>Try putting this before any other rules.</p> <pre><code>RewriteRule ^vip - [L,NC] </code></pre> <p>It will match any URI beginning <code>vip</code>. </p> <ul> <li>The <code>-</code> means do nothing. </li> <li>The <code>L</code> means this should be last rule; ignore everything following. </li> <li>The <code>NC</code> means no-case (so "VIP" is also matched).</li> </ul> <p>Note that it matches anything <em>beginning</em> <code>vip</code>. The expression <code>^vip$</code> would match <code>vip</code> but not <code>vip/</code> or <code>vip/index.html</code>. The <code>$</code> may have been your downfall. If you really want to do it right, you might want to go with <code>^vip(/|$)</code> so you don't match <code>vip-page.html</code> </p> http://stackoverflow.com/questions/17903/should-developers-be-specialists-or-generalists/18092#18092 37 Answer by Patrick McElhaney for Should developers be specialists or generalists? Patrick McElhaney 2008-08-20T14:24:15Z 2009-10-30T12:27:30Z <p><strong>Both.</strong> Being a specialist means you know a lot about a particular subject. It doesn't mean you know nothing about anything else. </p> <p>That's what Chad Fowler says in <a href="http://www.pragprog.com/titles/mjwti/my-job-went-to-india" rel="nofollow">My Job Went To India</a>.</p> <p>The two relevant chapters are free downloads (PDF):</p> <ul> <li><a href="http://media.pragprog.com/titles/mjwti/generalist.pdf" rel="nofollow">Be a Generalist</a></li> <li><a href="http://media.pragprog.com/titles/mjwti/specialist.pdf" rel="nofollow">Be a Specialist</a></li> </ul> <p>(The book has been superseded by <a href="http://www.pragprog.com/titles/cfcar2/the-passionate-programmer" rel="nofollow">The Passionate Programmer</a>. It's chapters 7 and 8 in that book. The two links above, from the first edition, are still available as of this writing.)</p> http://stackoverflow.com/questions/10564/how-can-i-set-up-an-editor-to-work-with-git-on-windows 13 How can I set up an editor to work with Git on Windows? Patrick McElhaney 2008-08-14T01:43:04Z 2009-10-15T19:28:15Z <p>I'm trying out Git on Windows. I got to the point of trying "git commit" and I got this error:</p> <blockquote> <p>Terminal is dumb but no VISUAL nor EDITOR defined. Please supply the message using either -m or -F option.</p> </blockquote> <p>So I figured out I need to have an environment variable called EDITOR. No problem. I set it to point to Notepad.</p> <p>That worked, almost. The default commit message opens in Notepad. But Notepad doesn't support bare line feeds. </p> <p>I went out and got <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a>. But I can't figure out how to get Notepad++ set up as the %EDITOR% in such a way that it works with Git as expected.</p> <p>I'm not married to Notepad++. At this point I couldn't care less what editor I use. I just want to be able to type my commit messages without using -m.</p> <p><strong>So, for those of you using Git on Windows: What (free) tool do you use to edit your commit message, and what do you get when you type echo %EDITOR% at the command prompt?</strong></p> http://stackoverflow.com/questions/947195/jquery-ui-sortable-how-can-i-cancel-the-click-event-on-an-item-thats-dragged 5 jQuery UI Sortable -- How can I cancel the click event on an item that's dragged/sorted? Patrick McElhaney 2009-06-03T20:56:12Z 2009-10-06T18:51:30Z <p>I have a <a href="http://docs.jquery.com/UI/Sortable" rel="nofollow">jQuery UI Sortable</a> list. The sortable items also have a click event attached. Is there a way to prevent the click event from firing after I drag an item?</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" charset="utf-8"&gt; $().ready( function () { $('#my_sortable').sortable({ update: function() { console.log('update') }, delay: 30 }); $('#my_sortable li').click(function () { console.log('click'); }); }); &lt;/script&gt; &lt;style type="text/css" media="screen"&gt; #my_sortable li { border: 1px solid black; display: block; width: 100px; height: 100px; background-color: gray; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;ul id="my_sortable"&gt; &lt;li id="item_1"&gt;A&lt;/li&gt; &lt;li id="item_2"&gt;B&lt;/li&gt; &lt;li id="item_3"&gt;C&lt;/li&gt; &lt;/ul&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1158953/four-variations-of-jquery-ready-whats-the-difference 6 Four variations of jQuery ready() -- what's the difference? Patrick McElhaney 2009-07-21T12:42:40Z 2009-10-06T18:49:30Z <p>I've seen four different ways to tell jQuery to execute a function when the document is ready. Are these all equivalent? </p> <pre><code>$(document).ready(function () { alert('$(document).ready()'); }); $().ready(function () { alert('$().ready()'); }); $(function () { alert('$()'); }); jQuery(function ($) { alert('jQuery()'); }); </code></pre> http://stackoverflow.com/questions/1395627/please-help-me-debug-this-javascript/1399457#1399457 1 Answer by Patrick McElhaney for Please help me debug this javascript Patrick McElhaney 2009-09-09T12:42:14Z 2009-09-09T12:42:14Z <p>My fresh set of eyes see two <code>for</code> loops, which you say are running infinitely.</p> <pre><code>for(var i = 0; i &lt; routeData.length; i++) for(var j = 0; j &lt; trainData.length; j++) </code></pre> <p>Let's assume the first loop is infinite. If that's the case <code>i &lt; routeData.length</code> is always true. I can only think of two ways that would be possible.</p> <ul> <li><p><code>i</code> is decremented somewhere in the body of the loop, so that its value doesn't increase to reach <code>routeData.length</code>. But I don't see that happening, and I think that would be easy to spot.</p></li> <li><p><code>routeData.length</code> is increasing, so that <code>i</code> never catches up. It's possible that the <code>drawTrack</code> function could be adding elements to <code>routeData</code>, increasing its length.</p></li> </ul> <p>The problem could also be in the second loop (or both); the same reasoning applies.</p> <p>I think ultimately you're going to find a problem in the <code>drawTrack</code> function. Either it's appending to one of the arrays or it contains its own infinite loop. </p> http://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important/62653#62653 8 Answer by Patrick McElhaney for What is the Dependency Inversion Principle and why is it important? Patrick McElhaney 2008-09-15T13:06:12Z 2009-08-31T18:36:37Z <p><em>High level modules should not depend on low level modules. Low level modules should not depend on high level modules. Instead, both should depend on abstractions.</em></p> <p>Say for example, you have a Calendar class and you need to be notified before an upcoming appointment.</p> <p>Following DIP, Calendar should not be concerned with sending messages, not even delegating to a low-level module that sends messages. Instead, it should simply announce that an appointment is coming up. Thus, you might create an AppointmentListener for Calendar to call. </p> <p>A subclass of AppointmentListener would respond to a new appointment by sending a message via Messenger. </p> <pre><code>messenger.send( 'Upcoming Appointment:' + appt.time(), 'Don\'t forget:\n\n' + appt.details() ) </code></pre> <p>Thus, Calendar doesn't doesn't depend on Messenger, and needn't know anything about sending messages. And Messenger doesn't know anything about calendars or appointments. It just sends messages, given the subject and body.</p> <p><hr /></p> <p><strong>Note:</strong> I rewrote this answer -- starting with the same example, but modifying the solution -- after reading <a href="http://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important/1113937#1113937">derekgreer's excellent explanation</a>. </p> http://stackoverflow.com/questions/1252749/how-to-show-images-links-on-div-hover/1252840#1252840 3 Answer by Patrick McElhaney for How to show images/links on DIV hover? Patrick McElhaney 2009-08-10T01:52:11Z 2009-08-10T15:14:09Z <p>Try this:</p> <pre><code>.comment .button { visibility: hidden; } .comment:hover .button { visibility: visible; } </code></pre> <p>Assuming your HTML is something like this:</p> <pre><code>&lt;div class="comment"&gt; &lt;a ...&gt;&lt;img class="vote button" ...&gt;&lt;/a&gt; &lt;a ...&gt;&lt;img class="flag button" ...&gt;&lt;/a&gt; &lt;!-- #if author --&gt; &lt;a ...&gt;&lt;img class="delete button" ...&gt;&lt;/a&gt; &lt;!-- #endif --&gt; &lt;span class="comment-text"&gt;...&lt;/span&gt; &lt;/div&gt; </code></pre> <p><hr /></p> <p><a href="http://stackoverflow.com/users/26210/andrew-moore">Andrew</a> noted that this pure CSS solution won't work in IE6. And as <a href="http://stackoverflow.com/users/53030/noel-walters">Noel</a> pointed out, hovering just isn't an option in mobile browsers. You can use progressive enhancement to have the buttons always visible in those cases.</p> <pre><code>&lt;style type="text/css" media="screen"&gt; .comment .button { visibility: hidden; } .comment:hover .button { visibility: visible; } &lt;/style&gt; &lt;!--[if lt IE 7]&gt; &lt;style type="text/css" media="screen"&gt; .comment .button { visibility: visible; } &lt;/style&gt; &lt;![endif]--&gt; </code></pre> <p>The screen <a href="http://www.w3.org/TR/CSS2/media.html#media-types" rel="nofollow">media type</a> should cause the styles to only apply to full-screen browsers (not mobile devices). </p> <p>IE6 will understand the first style, making the buttons hidden, but not the second, making them visible again on hover. The third style is in a <a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">conditional comment</a>, which non-IE browsers and IE7+ will ignore. It overrides the first style, making the buttons visible always. </p> http://stackoverflow.com/questions/1252746/jquery-removing-columns-and-rows/1252760#1252760 2 Answer by Patrick McElhaney for jQuery removing columns and rows.. Patrick McElhaney 2009-08-10T01:06:59Z 2009-08-10T01:06:59Z <p>Add a class to the 6th tr.</p> <pre><code>jQuery('table.ladder tr:eq(5)').addClass('yourNewClass'); </code></pre> <p>Remove the 7th tr.</p> <pre><code>jQuery('table.ladder tr:eq(6)').remove(); </code></pre> http://stackoverflow.com/questions/1247783/good-limits-for-code-refactoring/1247797#1247797 6 Answer by Patrick McElhaney for Good limits for code refactoring Patrick McElhaney 2009-08-08T02:36:12Z 2009-08-08T02:36:12Z <p>See these questions.</p> <ul> <li><a href="http://stackoverflow.com/questions/374262/is-there-a-recommended-number-of-lines-of-code-per-file">Is there a recommended number of lines of code per file?</a></li> <li><a href="http://stackoverflow.com/questions/129599/best-rule-for-maximum-function-size">Best rule for maximum function size?</a> </li> <li><a href="http://stackoverflow.com/questions/968851/if-while-nestings-how-much-is-too-much">if / while nestings… how much is too much?</a> </li> <li><a href="http://stackoverflow.com/questions/174968/how-many-parameters-are-too-many">How many parameters are too many?</a> </li> </ul> http://stackoverflow.com/questions/1246474/strange-behavior-from-setinterval/1246496#1246496 4 Answer by Patrick McElhaney for Strange behavior from setInterval() Patrick McElhaney 2009-08-07T19:13:51Z 2009-08-07T19:20:23Z <p>You're resetting <code>today</code> each time the function is called, so while the time changes, the difference between "today" and "today, 1983" is always the same. </p> <p>Moving the assignment of <code>today</code> out of the interval, so it's only set once, worked for me. I see the number changing every second.</p> <pre><code>$(function () { today = new Date(); var x = setInterval(function(){ started = new Date(); started.setYear(1983); difference = today - started; document.getElementById("txt").innerHTML = difference; }, 1000); }); </code></pre> http://stackoverflow.com/questions/1241276/jquery-bind-event-firing-the-event/1241297#1241297 3 Answer by Patrick McElhaney for jQuery Bind event firing the event Patrick McElhaney 2009-08-06T20:38:14Z 2009-08-06T21:06:57Z <p>You need to pass a function that will be called when the click event happens. The way you had it, you were calling the function immediately, and telling JQuery to call whatever value is returned from that function. </p> <pre><code>$(LinkName).bind("click", function () { ExpandFrame(LinkName, i); } ); </code></pre> http://stackoverflow.com/questions/1239151/jquery-how-do-i-select-a-value-from-a-dropdownlist-case-insensitive/1239264#1239264 2 Answer by Patrick McElhaney for JQuery: How do I select a value from a dropdownlist case insensitive? Patrick McElhaney 2009-08-06T14:29:18Z 2009-08-06T14:29:18Z <p>Here's another approach: find the matching value in its actual case, "StackOverflow," and call <code>val()</code> with that. </p> <pre><code> var matchingValue = $('#select option').filter(function () { return this.value.toLowerCase() == 'stackoverflow'; } ).attr('value'); $('#select').val(matchingValue); </code></pre> <p>Of course, the literal <code>'stackoverflow'</code> should be replaced with a variable.</p> http://stackoverflow.com/questions/1234453/variable-assignments-using-jquery-failing-in-safari/1234493#1234493 3 Answer by Patrick McElhaney for variable assignments using jQuery failing in Safari? Patrick McElhaney 2009-08-05T16:59:53Z 2009-08-05T17:22:46Z <p>Try changing the variable to something other than "status."</p> <p>It's confusing your variable with <code>window.status</code> (the status bar text). When I typed <code>var status = $('#status')</code> into the debugging console, the statusbar changed to [Object object]. <del>Must be a bug in Safari.</del></p> <p>If you put the code inside a function, so that <code>status</code> becomes a function-local variable, it should work. </p> http://stackoverflow.com/questions/1228745/jquery-selector-help/1228757#1228757 7 Answer by Patrick McElhaney for jQuery selector help Patrick McElhaney 2009-08-04T17:09:49Z 2009-08-04T17:09:49Z <p>Use <a href="http://docs.jquery.com/Selectors/lt" rel="nofollow">lt()</a></p> <pre><code>$('tr:lt(5) input[type=text]') </code></pre> <p>Note that it's lt(5), not lt(6), since the indexes are 0-based.</p> http://stackoverflow.com/questions/1227631/using-jquery-to-check-if-a-link-is-internal-or-external/1227670#1227670 3 Answer by Patrick McElhaney for Using jQuery to check if a link is internal or external Patrick McElhaney 2009-08-04T13:53:03Z 2009-08-04T13:53:03Z <p>You could use the <a href="http://docs.jquery.com/Selectors/attributeStartsWith#attributevalu" rel="nofollow"><code>attribute^=value</code></a> syntax to find hrefs that start with <code>http</code> or <code>/</code>:</p> <pre><code>$('a[href^=http]') // external $('a[href^=/]') // internal </code></pre> http://stackoverflow.com/questions/1224133/is-it-possible-to-do-value-in-jquery/1224191#1224191 9 Answer by Patrick McElhaney for Is it possible to do ".value +=" in JQuery ? Patrick McElhaney 2009-08-03T19:32:03Z 2009-08-03T21:05:29Z <p>You could go back to the original DOM element.</p> <pre><code> $("#abc").get(0).value += "test"; </code></pre> <p>Otherwise, you'd have to write a plugin</p> <pre><code> $.fn.appendVal = function (newPart) { return this.each(function(){ $(this).val( $(this).val() + newPart); }); }; $("#abc").appendVal("test"); </code></pre> http://stackoverflow.com/questions/1214234/javascript-date-parsing-bug-fails-for-dates-in-june/1214284#1214284 3 Answer by Patrick McElhaney for Javascript date parsing bug - fails for dates in June (??) Patrick McElhaney 2009-07-31T19:04:40Z 2009-07-31T19:17:57Z <p>It's because today is July 31. Grant explained the problem. Here's what I believe is a simpler solution. Initialize your date on Jan 1.</p> <pre><code>var date = new Date(2009,0,1,0,0,0); </code></pre> http://stackoverflow.com/questions/1212554/can-i-get-a-query-row-by-index-in-coldfusion/1212664#1212664 11 Answer by Patrick McElhaney for Can I get a query row by index in ColdFusion? Patrick McElhaney 2009-07-31T13:51:26Z 2009-07-31T13:51:26Z <p>You can't get a row. You have to get a specific column.</p> <pre><code>&lt;cfset x = QueryName.columnName[5]&gt; </code></pre> http://stackoverflow.com/questions/1209368/cfml-design-pattern-resources/1209463#1209463 1 Answer by Patrick McElhaney for CFML Design Pattern resources? Patrick McElhaney 2009-07-30T21:23:37Z 2009-07-31T02:19:17Z <p>I've found the <a href="http://blog.objectmentor.com/articles/2009/02/12/getting-a-solid-start" rel="nofollow">SOLID</a> principles more helpful than anything else. If you understand the SOLID principles, you'll write better code in any language, and be able to use design patterns more effectively.</p> http://stackoverflow.com/questions/1207278/filtering-questions-by-answer-count/1208658#1208658 1 Answer by Patrick McElhaney for Filtering Questions by Answer Count Patrick McElhaney 2009-07-30T19:03:52Z 2009-07-30T19:03:52Z <p>Try this:</p> <pre><code>function filterByAnswer(number) { $('.question-summary').filter( function () { var answers = $(this).find('.status').children('.mini-counts, strong').text(); return parseInt(answers, 10) &lt; number; }).hide(); } </code></pre> http://stackoverflow.com/questions/1207278/filtering-questions-by-answer-count/1207474#1207474 0 Answer by Patrick McElhaney for Filtering Questions by Answer Count Patrick McElhaney 2009-07-30T15:43:47Z 2009-07-30T15:43:47Z <p>You could reuse the values of <code>$('.status .mini-counts',this)</code> and <code>$('.status strong',this)</code>.</p> <pre><code> var $miniCounts = $('.status .mini-counts',this); if($miniCounts) { var answers = $miniCounts.text(); } else { var $strong = $('.status strong',this); if($strong) { var answers = $strong.text(); } } </code></pre> http://stackoverflow.com/questions/1206031/is-the-cfdump-tag-modifiable/1206578#1206578 5 Answer by Patrick McElhaney for Is the CFDUMP tag modifiable? Patrick McElhaney 2009-07-30T13:22:59Z 2009-07-30T14:58:16Z <p>You can copy the dump.cfm file to dumporiginal.cfm, and then make a new dump.cfm that calls dumporiginal.cfm.</p> <pre><code>&lt;!--- So that it won't execute twice if you have a closing slash (&lt;cfdump ... /&gt;) ---&gt; &lt;cfif thisTag.executionMode neq "start"&gt; &lt;cfexit method="exitTag" /&gt; &lt;/cfif&gt; &lt;!--- defaults for optional attributes, taken from the docs http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_d-e_08.html ---&gt; &lt;cfparam name="attributes.expand" default="yes" /&gt; &lt;cfparam name="attributes.format" default="html" /&gt; &lt;cfparam name="attributes.hide" default="all" /&gt; &lt;cfparam name="attributes.keys" default="9999" /&gt; &lt;cfparam name="attributes.label" default="" /&gt; &lt;cfparam name="attributes.metainfo" default="yes" /&gt; &lt;cfparam name="attributes.output" default="browser" /&gt; &lt;cfparam name="attributes.show" default="all" /&gt; &lt;cfparam name="attributes.showUDFs" default="yes" /&gt; &lt;cfparam name="attributes.top" default="9999" /&gt; &lt;!--- Hide the password, but store its value to put it back at the end ---&gt; &lt;cfif isStruct(attributes.var) and structKeyExists(attributes.var, 'password')&gt; &lt;cfset originalPassword = attributes.var.password /&gt; &lt;cfset attributes.var.password = "{hidden by customized cfdump}"/&gt; &lt;/cfif&gt; &lt;!--- Call the original cfdump. Which attributes you pass depends on CF version. ---&gt; &lt;cfswitch expression="#listFirst(server.coldfusion.productVersion)#"&gt; &lt;cfcase value="6"&gt; &lt;cfdumporiginal var = "#attributes.var#" expand = "#attributes.expand#" hide = "#attributes.hide#" label = "#attributes.label#" &gt; &lt;/cfcase&gt; &lt;cfcase value="7"&gt; &lt;cfdumporiginal var = "#attributes.var#" expand = "#attributes.expand#" hide = "#attributes.hide#" label = "#attributes.label#" top = "#attributes.top#" &gt; &lt;/cfcase&gt; &lt;cfdefaultcase&gt; &lt;cfdumporiginal var = "#attributes.var#" expand = "#attributes.expand#" format = "#attributes.format#" hide = "#attributes.hide#" keys = "#attributes.keys#" label = "#attributes.label#" metainfo = "#attributes.metainfo#" output = "#attributes.output#" show = "#attributes.show#" showUDFs = "#attributes.showUDFs#" top = "#attributes.top#" &gt; &lt;/cfdefaultcase&gt; &lt;/cfswitch&gt; &lt;!--- Restore the password, in case it's read after cfdump call ---&gt; &lt;cfif isDefined("originalPassword")&gt; &lt;cfset attributes.var.password = originalPassword /&gt; &lt;/cfif&gt; </code></pre> http://stackoverflow.com/questions/1194089/making-jquery-statements-shorter/1194225#1194225 1 Answer by Patrick McElhaney for Making jQuery statements shorter Patrick McElhaney 2009-07-28T13:50:38Z 2009-07-28T13:50:38Z <p>There are a few things to do. The most obvious one that comes to mind is to use variables.</p> <pre><code>var $option2 = $("#content #second_nav ul.options_2"); var $option3 = $("#content #second_nav ul.options_3"); var $option4 = $("#content #second_nav ul.options_4"); </code></pre> <p>You can then sub in the variables wherever you have that long selector.</p> <pre><code>$option2.css('display', 'none'); $option3.css('display', 'none'); $option4.css('display', 'none'); </code></pre> <p>Should help with performance, readabilty, and duplication.</p> http://stackoverflow.com/questions/1190376/a-simple-htaccess-redirect/1190468#1190468 1 Answer by Patrick McElhaney for A simple htaccess redirect Patrick McElhaney 2009-07-27T20:37:58Z 2009-07-27T20:48:27Z <p>It sounds like you have the XML files, and you want to make URIs without the XML extension work.</p> <pre><code># translate /rss to /rss.xml RewriteRule ^rss$ /rss.xml # translate /anydirectory/rss to /anydirectory/rss.xml RewriteRule ^(.+)/rss$ /$1/rss.xml </code></pre> <p>The code you tried suggests the opposite. </p> <pre><code># translate /rss.xml to /rss RewriteRule ^rss\.xml$ /rss # translate /anydirectory/rss to /anydirectory/rss.xml RewriteRule ^(.+)/rss\.xml$ /$1/rss </code></pre> http://stackoverflow.com/questions/1184544/jquery-and-sifr-on-hover-delay-and-show/1184584#1184584 1 Answer by Patrick McElhaney for jQuery and sIFR. On hover - delay and show Patrick McElhaney 2009-07-26T13:24:22Z 2009-07-26T13:24:22Z <p>You could use setTimeout.</p> <pre><code>$(document).ready(function() { //delcare a variable to hold the timeout var to; $('.text').hide(); $('.box').mouseover( function() { $(this).children('.text').show(); // do sIFR code after 1000 milliseconds to = setTimeout(function () { /* sIFR code goes here */ }, 1000); }); $('.box').mouseout( function() { // If mouseout happens before the delay ends // you probably don't want sIFR code to run. clearTimeout(to); $(this).children('.text').hide(); } ); }); </code></pre> http://stackoverflow.com/questions/15502/essential-concepts-to-remember-to-be-a-better-programmer/15565#15565 Comment by Patrick McElhaney on Essential concepts to remember to be a better programmer Patrick McElhaney 2009-11-04T20:12:48Z 2009-11-04T20:12:48Z It's impossible to answer such a big question in a little text box. Code Complete encompasses pretty much all of the advice given here and more. It's not my favorite programming book, but if you're specifically looking for <i>memorizable details</i> such as <i>data structures</i>, nothing else comes close. http://stackoverflow.com/questions/163302/how-do-i-ignore-a-directory-in-modrewrite/166442#166442 Comment by Patrick McElhaney on How do I ignore a directory in mod_rewrite? Patrick McElhaney 2009-11-02T18:28:30Z 2009-11-02T18:28:30Z I've edited the post to include your rephrased question. http://stackoverflow.com/questions/1444409/in-javascript-how-can-i-replace-text-in-an-html-page-without-affecting-the-tags/1444893#1444893 Comment by Patrick McElhaney on In JavaScript, how can I replace text in an HTML page without affecting the tags? Patrick McElhaney 2009-09-18T18:31:28Z 2009-09-18T18:31:28Z What I liked about <code>i--&gt;0</code> is that I first read it as i→0, or &quot;i approaches zero.&quot; http://stackoverflow.com/questions/1444409/in-javascript-how-can-i-replace-text-in-an-html-page-without-affecting-the-tags/1444893#1444893 Comment by Patrick McElhaney on In JavaScript, how can I replace text in an HTML page without affecting the tags? Patrick McElhaney 2009-09-18T14:40:08Z 2009-09-18T14:40:08Z <code>i--&gt;0</code> Clever. I've never seen that before. http://stackoverflow.com/questions/1006650/dummy-smtp-server-for-testing-apps-that-send-email/1069682#1069682 Comment by Patrick McElhaney on Dummy SMTP Server for testing apps that send email Patrick McElhaney 2009-09-10T14:18:33Z 2009-09-10T14:18:33Z I finally got around to trying these. Unfortunately, both keep crashing. http://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important/1113937#1113937 Comment by Patrick McElhaney on What is the Dependency Inversion Principle and why is it important? Patrick McElhaney 2009-08-31T14:22:40Z 2009-08-31T14:22:40Z I've rewritten my answer now. Hopefully it's an improvement. Would love to hear your thoughts if you're still around. http://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important/1113937#1113937 Comment by Patrick McElhaney on What is the Dependency Inversion Principle and why is it important? Patrick McElhaney 2009-08-31T13:45:27Z 2009-08-31T13:45:27Z Thanks. I see now how my answer misses the point. The difference between <b>MyService → [ILogger ⇐ Logger]</b> and <b>[MyService → IMyServiceLogger] ⇐ Logger</b> is subtle but important. http://stackoverflow.com/questions/883795/jquery-validation-plugin-breaks-when-changing-from-jquery-1-2-6-to-1-3-2 Comment by Patrick McElhaney on jQuery: Validation plugin breaks when changing from jquery 1.2.6 to 1.3.2 Patrick McElhaney 2009-08-25T20:22:23Z 2009-08-25T20:22:23Z I had the same problem and after finding this question realized I was using an old version of the validate plugin. The latest version of the plugin (1.5.5) works fine. http://stackoverflow.com/questions/366719/objectively-good-oo-design-principles Comment by Patrick McElhaney on Objectively Good OO Design Principles Patrick McElhaney 2009-08-11T12:56:51Z 2009-08-11T12:56:51Z See <a href="http://stackoverflow.com/questions/98695/design-principles" rel="nofollow" title="design principles">stackoverflow.com/questions/98695/&hellip;</a> http://stackoverflow.com/questions/1252749/how-to-show-images-links-on-div-hover/1252840#1252840 Comment by Patrick McElhaney on How to show images/links on DIV hover? Patrick McElhaney 2009-08-10T17:27:57Z 2009-08-10T17:27:57Z I have 3.0.11 in Windows, and it works there. A friend just verified it on 3.5.1/Win. Here's the complete file I'm using to test: <a href="http://pastie.textmate.org/578735" rel="nofollow">pastie.textmate.org/578735</a> http://stackoverflow.com/questions/1252749/how-to-show-images-links-on-div-hover/1252840#1252840 Comment by Patrick McElhaney on How to show images/links on DIV hover? Patrick McElhaney 2009-08-10T15:34:53Z 2009-08-10T15:34:53Z What version of Firefox? Works for me on 3.5.2 / Mac. http://stackoverflow.com/questions/1254848/error-using-double-quotes-in-a-string-in-javascript/1254866#1254866 Comment by Patrick McElhaney on Error using double quotes in a string in javascript Patrick McElhaney 2009-08-10T13:32:37Z 2009-08-10T13:32:37Z Paul doesn't have enough rep yet. You need 50 reputation points to leave comments. http://stackoverflow.com/questions/1247086/jquery-draggable-sortable-strange-mouse-offset-behaviour Comment by Patrick McElhaney on jQuery draggable + sortable: strange mouse offset behaviour Patrick McElhaney 2009-08-07T21:41:42Z 2009-08-07T21:41:42Z Please post your Javascript/JQuery and relevant HTML code. If you can isolate the problem in a separate HTML file and cut and paste the whole thing, that would be ideal. http://stackoverflow.com/questions/1246474/strange-behavior-from-setinterval/1246496#1246496 Comment by Patrick McElhaney on Strange behavior from setInterval() Patrick McElhaney 2009-08-07T19:31:02Z 2009-08-07T19:31:02Z You were kind enough to tolerate my &quot;int is a reserved word,&quot; so I guess we're even. ;-) http://stackoverflow.com/questions/1246474/strange-behavior-from-setinterval/1246496#1246496 Comment by Patrick McElhaney on Strange behavior from setInterval() Patrick McElhaney 2009-08-07T19:24:20Z 2009-08-07T19:24:20Z I expanded my explanation. Hopefully makes more sense now. :-)