User Gavin Gilmour - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:13:13Z http://stackoverflow.com/feeds/user/126893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1865958/iframe-based-ie6-javascript-memory-leak 0 iframe based IE6 javascript memory leak? Gavin Gilmour 2009-12-08T10:03:57Z 2009-12-08T18:13:44Z <p>Hi,</p> <p>I'm loading in content using an iframe via a menu with jquery which is updating the 'src' attribute of the iframe to then load in the desired page. Each of the pages have their own javascript includes and heavy content.</p> <p>The code is as follows:-</p> <pre><code>$(document).ready(function() { loadPage('main.php'); }); function loadPage(url) { $('#applicationFrame').attr('src', url); } </code></pre> <p>And the iframe on the index page looks as follows:-</p> <pre><code>&lt;iframe id="applicationFrame" application="yes" trusted="yes" frameborder="0" /&gt; </code></pre> <p><em>(Side note: I realise that the iframe here is taking nonstandard attributes, but this is an internal intranet application running in one of these Microsoft HTA's in which they do mean something.)</em></p> <p>Anyway, the menu items are just calling javascript:loadPage('whatever.php') in order to load in whatever content is needed.</p> <p>The problem I'm facing is that on each subsequent page click of the menu the frames are leaking memory until eventually the entire app slows to a crawl. sIEve reports the following:-</p> <p><img src="http://img37.imageshack.us/img37/3997/leaks.png" alt="leaks" title=""></p> <p>The leaks column is ascending here with every click (21 -> 44 -> 65) etc.</p> <p>Examining the leaks inspector shows:</p> <p><img src="http://img527.imageshack.us/img527/4430/inspector.png" alt="inspector" title=""></p> <p>Which looks to me like it is just the entire iframed content which has leaked.</p> <p>Is there anyway to avoid this? Am I missing something? I've found a similar issue <a href="http://www.dojotoolkit.org/forum/general/general-discussion/using-dojo-iframes-solving-memory-leak" rel="nofollow">here</a> that the dojo framework has had, but trying the suggested solutions hasn't seemed to work. I've also tried a bunch of other things as pasted <a href="http://pastebin.com/m739c7e83" rel="nofollow">here</a> but to no resolve.</p> <p>This only seems to (surprise) affect IE6 which is really the only target audience of the application.</p> http://stackoverflow.com/questions/1852268/when-you-decide-to-stop-writing-code-what-will-be-your-next-move/1852288#1852288 1 Answer by Gavin Gilmour for When you decide to stop writing code, what will be your next move? Gavin Gilmour 2009-12-05T14:05:55Z 2009-12-05T14:05:55Z <p>Telling people to write code.</p> http://stackoverflow.com/questions/1513288/after-using-jquery-css-method-how-do-you-change-it-back-to-normal/1513310#1513310 6 Answer by Gavin Gilmour for After using JQuery ".css" method, how do you change it back to normal? Gavin Gilmour 2009-10-03T09:23:46Z 2009-10-03T09:23:46Z <p>You can't without explicitly setting it back to the old property values.</p> <p>I'd probably use a separate class e.g.:</p> <pre><code>.alternativeFrame { position: absolute; left: 50px; } </code></pre> <p>And then use addClass and removeClass:-</p> <pre><code>$('#frame').addClass('alternativeFrame'); $('#frame').removeClass('alternativeFrame'); </code></pre> <p>Or just:-</p> <pre><code>$('#frame').toggleClass('alternativeFrame'); </code></pre> <p>Also remember that you can chain your selectors together for ease and speed, so for your first example you can end up doing:-</p> <pre><code>$('#frame').css("position","absolute").css("left",50); </code></pre> http://stackoverflow.com/questions/1464477/session-unexpectedly-lost 0 Session unexpectedly lost? Gavin Gilmour 2009-09-23T07:33:39Z 2009-09-23T07:38:34Z <p>Hi, I'm at a loss with an annoying issue to do with exporting a report. Basically, a button is pressed and a report is generated server side using the following javascript:-</p> <pre><code>__callExportController(true, { op: 'build', type: exportType }, function(data) { var outputURL = './reportinc/export_controller.php?op=output&amp;filename='; var reportFilename = data['filename']; var reportTitle = data['title']; if (reportFilename &amp;&amp; reportTitle) { var resultURL = outputURL + reportFilename + '&amp;title=' + reportTitle; /* Initiate the download dialog */ if (!$('#exportFrame').length) { var hiddenIFrame = document.createElement('iframe'); hiddenIFrame.setAttribute('id','exportFrame'); document.body.appendChild(hiddenIFrame); } $('#exportFrame').attr('src', resultURL); } else { error('No filename or report title specified!'); } }); </code></pre> <p>The 'build' operation of the export controller builds the report to a temporary file on the server. If that succeeds, the 'output' operation is called to output that file to a hidden iframe in order to get the download prompt to the user. Internet Explorer 6/7 are the only browsers in use here.</p> <p>This is the output handler on the server which the iframe will be requesting with the successfully built filename:-</p> <pre><code>/* Output handler */ case 'output':{ $filename = $_GET['filename']; header('Content-Description: File Transfer'); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); header("Content-Type: application/pdf"); /** * NOTE: It appears this is required for some versions of adobe! * http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=15400 */ header("Cache-Control: private"); header("Pragma: cache"); header("Content-Disposition: attachment; filename=\"file.pdf\""); header('Content-Length: ' . filesize($filename)); /* Flush the headers immediately for larger files */ ob_clean(); flush(); readfile($filename); @unlink($filename); } </code></pre> <p>The issue I'm having is: whilst this works fine once, the session appears to be destroyed after the first successful file download. That is, when the user navigates away to another page they appear to be generated a new session id. This also requires the user to have to 're-login' if basic authentication is in use with the next action they take.</p> <p>The issue seems very intermittent and it seems to happen at times and not at other times.</p> <p>Has anyone any ideas? Should I be adding more headers or something to prevent the users session from being destroyed?</p> http://stackoverflow.com/questions/1445686/remove-colon-using-vi/1445710#1445710 0 Answer by Gavin Gilmour for Remove colon using VI Gavin Gilmour 2009-09-18T16:53:14Z 2009-09-18T16:53:14Z <p>It's not really part of the command, since it should let you use any delimiter you like.</p> <p>I'd probably try:-</p> <pre><code>%s/\d\{2}:\d{2}:\d{2}//g </code></pre> http://stackoverflow.com/questions/1445529/why-does-this-javascript-jquery-json-parsing-code-not-work/1445554#1445554 1 Answer by Gavin Gilmour for Why does this javascript/jQuery JSON parsing code not work? Gavin Gilmour 2009-09-18T16:16:31Z 2009-09-18T16:22:57Z <p>Your datepicker code will (potentially) be getting executed before the ajax call completes. At the minimum, try moving the datepicker portion of the code into the $.post callback:-</p> <pre><code>if ($("#calendar").length) { var dates; $.post("/dates/jsondates.php",function(data) { for(var i=0; i&lt;data.length; i++) { data[i].start = new Date(data[i].start); data[i].end = new Date(data[i].end); } dates = data; $("#calendar").datepicker( { beforeShowDay: function(date) { for(var i=0; i&lt;dates.length; i++) { if(dates[i].start&lt;date&lt;dates[i].end) { return new Array(0, "booked", dates[i].comment); } } return new Array(1); } }); }, "json"); } </code></pre> <p>Edit: As an aside, and if it was me, I'd probably split it up into some sort of caller function to get the date data and feed it a callback. E.g:-</p> <pre><code>function __callDateController(callback) { $.post("/dates/jsondates.php",function(data) { for(var i=0; i&lt;data.length; i++) { data[i].start = new Date(data[i].start); data[i].end = new Date(data[i].end); } if (callback !== undefined) { callback(data); } }, "json"); } </code></pre> <p>And then feed it a callback for your date picker to deal with:-</p> <pre><code>__callDateController(function(dates) { $("#calendar").datepicker( { beforeShowDay: function(date) { for(var i=0; i&lt;dates.length; i++) { if(dates[i].start&lt;date&lt;dates[i].end) { return new Array(0, "booked", dates[i].comment); } } return new Array(1); } }); }); </code></pre> http://stackoverflow.com/questions/1383225/how-to-disable-all-listbox-in-a-form/1383236#1383236 3 Answer by Gavin Gilmour for how to disable all listbox in a form Gavin Gilmour 2009-09-05T12:32:22Z 2009-09-05T18:48:47Z <pre><code>$('#formId select').attr('disabled', 'disabled'); </code></pre> <p>Edit: oops, thought I saw a jquery tag. Anyway:-</p> <pre><code>for (i = 0; i &lt; theform.length; i++) { var formElement = theform.elements[i]; if (formElement.tagName === "SELECT") { formElement.disabled = true; } } </code></pre> http://stackoverflow.com/questions/1349854/useful-javascript-libraries-including-jquery-and-beyond/1349872#1349872 3 Answer by Gavin Gilmour for Useful JavaScript libraries? including JQuery and beyond... Gavin Gilmour 2009-08-28T23:29:23Z 2009-08-28T23:29:23Z <p>I'd say <a href="http://www.prototypejs.org/" rel="nofollow">prototype</a> and <a href="http://mootools.net/" rel="nofollow">mootools</a> mainly.</p> http://stackoverflow.com/questions/1330532/vim-search-for-pattern-into-quickfix/1330556#1330556 5 Answer by Gavin Gilmour for VIM search for pattern into quickfix Gavin Gilmour 2009-08-25T19:52:23Z 2009-08-25T19:52:23Z <p>Use <a href="http://vimdoc.sourceforge.net/htmldoc/quickfix.html#:caddexpr" rel="nofollow">caddexpr</a>:-</p> <pre><code>g/&lt;pattern&gt;/caddexpr expand("%") . ":" . line(".") . ":" . getline(".") </code></pre> http://stackoverflow.com/questions/1330227/code-isnt-compatible-with-ie/1330256#1330256 3 Answer by Gavin Gilmour for Code isn't compatible with IE? Gavin Gilmour 2009-08-25T18:54:41Z 2009-08-25T18:54:41Z <p>Not the answer you're after, but I'd <a href="http://net.tutsplus.com/javascript-ajax/create-a-tabbed-interface-using-jquery/" rel="nofollow">seriously recommend</a> looking into the <a href="http://docs.jquery.com/UI/Tabs" rel="nofollow">jQueryui tabs widget</a> if you can. It's made my life <em>a lot</em> easier dealing with this stuff at least.</p> http://stackoverflow.com/questions/1330005/how-do-pass-in-a-limit-to-a-query-run-inside-a-mysql-5-stored-procedure/1330099#1330099 3 Answer by Gavin Gilmour for How do pass in a limit to a query run inside a mysql 5 stored procedure? Gavin Gilmour 2009-08-25T18:25:33Z 2009-08-25T18:25:33Z <p>The issue is that the number behind limit must be a constant and can't be a parameter which according to <a href="http://bugs.mysql.com/bug.php?id=11918" rel="nofollow">this bug report</a> remains unfixed in later versions of MySQL. You could try the (ugly as hell) workaround <a href="http://code.techinterviews.com/mysql-5x-passing-limits-as-stored-procedure-function-paramters/5" rel="nofollow">outlined here</a>:-</p> <pre><code>CREATE PROCEDURE sp ( IN LimitStart_ INT, IN LimitCnt_ INT ) BEGIN SET @lim = CONCAT(' LIMIT ', LimitStart_, ',', LimitCnt_); SET @q = "SELECT mycol FROM mytable"; SET @q = CONCAT(@q, @lim); PREPARE st FROM @q; EXECUTE st; DEALLOCATE PREPARE st; END; </code></pre> http://stackoverflow.com/questions/1324252/list-of-profanities-for-censorship-filter/1324282#1324282 0 Answer by Gavin Gilmour for List of Profanities for Censorship Filter Gavin Gilmour 2009-08-24T19:34:35Z 2009-08-24T19:34:35Z <p><a href="http://www.jivesoftware.com/jivespace/docs/DOC-1906" rel="nofollow">First google hit</a> and it appears to have it in a few different formats.</p> <p>Edit:- ...might have misunderstood this question?!</p> http://stackoverflow.com/questions/1323841/why-this-code-is-not-working/1323852#1323852 11 Answer by Gavin Gilmour for why this code is not working ? Gavin Gilmour 2009-08-24T18:06:55Z 2009-08-24T18:15:45Z <p>$('displayPrice') isn't a valid selector. You're wanting $('#displayPrice').</p> <p>After the fact, but for what it's worth it is normally a good idea to separate out your javascript handling code and placing it into a ready event e.g:-</p> <pre><code>$(document).ready(function() { $("input[name='price']").click(function() { $('#displayPrice').html($(this).val()); }); }); </code></pre> http://stackoverflow.com/questions/1323790/have-nautilus-open-file-into-new-gvim-buffer/1323818#1323818 1 Answer by Gavin Gilmour for Have nautilus open file into new gvim buffer? Gavin Gilmour 2009-08-24T18:01:05Z 2009-08-24T18:01:05Z <p>You're really just wanting to launch gVim with the --remote-tab-silent option. From <a href="http://vimdoc.sourceforge.net/htmldoc/remote.html#--remote-silent" rel="nofollow">the manual</a>:-</p> <pre><code> *--remote-tab-silent* --remote-tab-silent Like --remote-silent but open each file in a new tabpage. </code></pre> <p>Also just check out --remote-silent if you're not wanting a new tab and want to create a new buffer.</p> http://stackoverflow.com/questions/1319005/php-web-app-design/1319025#1319025 0 Answer by Gavin Gilmour for PHP Web-App Design Gavin Gilmour 2009-08-23T17:08:31Z 2009-08-23T17:08:31Z <p>If what you mean is site structure, code layout, etc then <a href="http://stackoverflow.com/questions/1080981/php-site-structure/1081019#1081019">this</a> answer might help.</p> http://stackoverflow.com/questions/1318470/change-wrap-width-in-a-text-file-using-vim/1318484#1318484 0 Answer by Gavin Gilmour for Change wrap width in a text file using Vim Gavin Gilmour 2009-08-23T12:48:57Z 2009-08-23T12:54:37Z <p>I can't see exactly what the issue is due to the formatting of your post, but you might want to checkout the 'formatoptions' setting in vim's help, specifically :he fo-table which contains a bunch of customization flags.</p> <p><a href="http://vim.wikia.com/wiki/Word%5Fwrap%5Fwithout%5Fline%5Fbreaks" rel="nofollow">This link</a> might be useful.</p> http://stackoverflow.com/questions/1317224/identifying-a-dom-by-something-other-than-id-ie-its-href-tag-in-jquery/1317230#1317230 1 Answer by Gavin Gilmour for Identifying a DOM by something other than id (ie: it's href tag) in jquery Gavin Gilmour 2009-08-22T22:37:22Z 2009-08-22T22:37:22Z <p>Check out the <a href="http://docs.jquery.com/Selectors/attributeEquals#attributevalue" rel="nofollow">attribute selectors</a>:-</p> <pre><code>$("[href='whatever']").slideUp(); </code></pre> http://stackoverflow.com/questions/1317175/quick-problem-extracting-numbers-from-a-string/1317184#1317184 1 Answer by Gavin Gilmour for Quick Problem - Extracting numbers from a string Gavin Gilmour 2009-08-22T22:15:35Z 2009-08-22T22:15:35Z <p>Use <a href="http://www.regular-expressions.info/javascript.html" rel="nofollow">regular expressions</a>:-</p> <pre><code>var test = "javascript:change(5);" var number = new RegExp("\\d+", "g") var match = test.match(number); alert(match); </code></pre> http://stackoverflow.com/questions/1315667/how-do-you-get-a-javascript-function-to-only-be-running-one-instance-at-any-one-p/1315682#1315682 3 Answer by Gavin Gilmour for How do you get a javascript function to only be running one instance at any one point? Gavin Gilmour 2009-08-22T10:07:09Z 2009-08-22T10:16:22Z <p>If it's just the one function being called in different areas, sounds like you're just wanting some sort of basic semaphore test, e.g:</p> <pre><code>isRunning = false; function whatever() { if (!isRunning) { isRunning = true; $.ajax(...., function() { isRunning = false; }); } } </code></pre> <p>This <a href="http://stackoverflow.com/questions/555191/javascript-semaphore-test-and-set-lock">question</a> looks slightly related.</p> <p>RE your edit: It's also worth noting that whatever javascript solution you put in place here to avoid a barrage of requests should additionally be considered on the server side.</p> http://stackoverflow.com/questions/1314383/how-to-check-if-a-querystring-value-is-present-via-javascript/1314393#1314393 0 Answer by Gavin Gilmour for How to check if a querystring value is present via javascript Gavin Gilmour 2009-08-21T21:55:15Z 2009-08-21T21:55:15Z <p>I've used <a href="http://adamv.com/dev/javascript/querystring" rel="nofollow">this library</a> before which does a pretty good job of what you're after. Specifically:-</p> <pre><code>qs.contains(name) Returns true if the querystring has a parameter name, else false. if (qs2.contains("name1")){ alert(qs2.get("name1"));} </code></pre> http://stackoverflow.com/questions/1314365/jquery-set-the-selected-text/1314371#1314371 3 Answer by Gavin Gilmour for jQuery set the selected text Gavin Gilmour 2009-08-21T21:46:33Z 2009-08-21T21:46:33Z <p><a href="http://webdevel.blogspot.com/2008/02/jquery-quick-tip-select-text-on-focus.html" rel="nofollow">Couple</a> of links <a href="http://jquery-howto.blogspot.com/2009/04/select-text-in-input-box-on-user-select.html" rel="nofollow">here</a>.</p> <pre><code>$("#myInputField").focus(function(){ // Select input field contents this.select(); }); // Add this behavior to all text fields $("input[type=text]").focus(function(){ // Select field contents this.select(); }); </code></pre> http://stackoverflow.com/questions/1314213/what-is-a-safe-way-to-read-the-php-request-superglobal/1314239#1314239 4 Answer by Gavin Gilmour for What is a safe way to read the PHP $_REQUEST superglobal? Gavin Gilmour 2009-08-21T21:09:53Z 2009-08-21T21:09:53Z <p>It's probably also worth noting (if you're that concerned about security) that it is fairly bad practice to not know where your data is coming from. You should probably either use $_GET, $_POST or $_SESSION depending on the method of delivery.</p> http://stackoverflow.com/questions/1307618/multiple-mysql-insert-statements-in-one-query-php/1307652#1307652 2 Answer by Gavin Gilmour for Multiple mysql INSERT statements in one query php. Gavin Gilmour 2009-08-20T17:20:33Z 2009-08-20T17:20:33Z <p>For what it's worth, and depending on if you're inserting the same data into the same tables, <a href="http://dev.mysql.com/doc/refman/5.0/en/insert-speed.html" rel="nofollow">it's much better to insert multiple values with the one insert</a> e.g.</p> <pre><code>INSERT INTO a VALUES (1,23),(2,34),(4,33); INSERT INTO a VALUES (8,26),(6,29); </code></pre> http://stackoverflow.com/questions/1290117/printr-to-get-object-methods-in-php/1290137#1290137 3 Answer by Gavin Gilmour for print_r to get object methods in PHP? Gavin Gilmour 2009-08-17T20:09:28Z 2009-08-17T20:09:28Z <p>The <a href="http://nz.php.net/oop5.reflection" rel="nofollow">Reflection API</a> might be of interest to you (if it's not overkill). Specifically:-</p> <pre><code>&lt;?php Reflection::export(new ReflectionClass('View')); ?&gt; </code></pre> <p>Check out the manual for more in-depth examples.</p> http://stackoverflow.com/questions/1289385/to-delete-a-line-without-it-going-to-vims-clipboard/1289403#1289403 3 Answer by Gavin Gilmour for To delete a line without it going to Vim's clipboard Gavin Gilmour 2009-08-17T17:49:32Z 2009-08-17T17:49:32Z <p>Yank to the <a href="http://dailyvim.blogspot.com/2009/07/types-of-registers.html" rel="nofollow">black hole register</a>: "_</p> <p>So you'd be after "_dd</p> http://stackoverflow.com/questions/1284314/easterdate-in-javascript/1284335#1284335 2 Answer by Gavin Gilmour for easter_date() in JavaScript Gavin Gilmour 2009-08-16T13:48:23Z 2009-08-16T13:48:23Z <p>According to <a href="http://www.irt.org/articles/js052/index.htm" rel="nofollow">this</a>:-</p> <pre><code>function Easter(Y) { var C = Math.floor(Y/100); var N = Y - 19*Math.floor(Y/19); var K = Math.floor((C - 17)/25); var I = C - Math.floor(C/4) - Math.floor((C - K)/3) + 19*N + 15; I = I - 30*Math.floor((I/30)); I = I - Math.floor(I/28)*(1 - Math.floor(I/28)*Math.floor(29/(I + 1))*Math.floor((21 - N)/11)); var J = Y + Math.floor(Y/4) + I + 2 - C + Math.floor(C/4); J = J - 7*Math.floor(J/7); var L = I - J; var M = 3 + Math.floor((L + 40)/44); var D = L + 28 - 31*Math.floor(M/4); return padout(M) + '.' + padout(D); } function padout(number) { return (number &lt; 10) ? '0' + number : number; } </code></pre> <p>Example usage:-</p> <pre><code>document.write(Easter(1997)); </code></pre> http://stackoverflow.com/questions/1283761/why-make-objects-when-you-can-just-use-a-mysql-database/1283770#1283770 0 Answer by Gavin Gilmour for Why make Objects when you can just use a MySQL database? Gavin Gilmour 2009-08-16T08:26:33Z 2009-08-16T08:26:33Z <p>Additionally, <a href="http://stackoverflow.com/questions/1113716/orm-and-active-record-pattern-in-php">this</a> question might be somewhat informative.</p> http://stackoverflow.com/questions/1281996/jquery-automatic-form-post-data/1282001#1282001 1 Answer by Gavin Gilmour for [jquery] automatic form post data Gavin Gilmour 2009-08-15T14:24:48Z 2009-08-15T14:24:48Z <p>Assuming the fields are all part of a form, you'll be wanting to use <a href="http://docs.jquery.com/Ajax/serialize" rel="nofollow">$('form').serialize()</a></p> http://stackoverflow.com/questions/1281463/is-there-a-way-to-limit-number-of-submissions-for-a-php-form/1281467#1281467 0 Answer by Gavin Gilmour for Is there a way to limit number of submissions for a php form? Gavin Gilmour 2009-08-15T08:32:30Z 2009-08-15T08:32:30Z <p>If you're submitting the form via ajax <a href="http://ajaxpatterns.org/Submission%5FThrottling" rel="nofollow">this</a> is a pretty good resource.</p> http://stackoverflow.com/questions/1240441/what-technology-protocol-or-standard-are-you-most-excited-about-why/1240487#1240487 0 Answer by Gavin Gilmour for What technology protocol or standard are you most excited about? why? Gavin Gilmour 2009-08-06T18:02:38Z 2009-08-06T18:02:38Z <p>IMAP IDLE/Push IMAP</p> http://stackoverflow.com/questions/1865958/iframe-based-ie6-javascript-memory-leak/1866528#1866528 Comment by Gavin Gilmour on iframe based IE6 javascript memory leak? Gavin Gilmour 2009-12-09T09:32:06Z 2009-12-09T09:32:06Z I see it's also coming up as first result in a google for &quot;iframe memory leak ie6 javascript&quot; so hopefully will cause others a little less pain. http://stackoverflow.com/questions/1865958/iframe-based-ie6-javascript-memory-leak/1866528#1866528 Comment by Gavin Gilmour on iframe based IE6 javascript memory leak? Gavin Gilmour 2009-12-09T09:20:38Z 2009-12-09T09:20:38Z Wow, this works perfectly. Much appreciated for this, it has saved me tearing my hair out just that little bit less with IE6. http://stackoverflow.com/questions/1865958/iframe-based-ie6-javascript-memory-leak/1866528#1866528 Comment by Gavin Gilmour on iframe based IE6 javascript memory leak? Gavin Gilmour 2009-12-08T13:54:11Z 2009-12-08T13:54:11Z Hi, thanks for the response. I realise it is a pretty horrible issue to try and sort out. Oh, and thanks for the links which I've seen before. As for the menu items, I tried your suggestion of using the anchor tags which got my hopes up (I was just using onclick events before), though unfortunately it seems to be leaking the same way (but not as bad). Setting src=&quot;main.php&quot; as default has reduced the number of leaks on the first click which has changed to '1' rather than '21' in the screenshot which has helped. Problem still remains the more sections you click though. Ready to rewrite(!) http://stackoverflow.com/questions/1309724/status-bar-on-bottom-of-window-that-looks-like-interface-builder/1309922#1309922 Comment by Gavin Gilmour on Status bar on bottom of window that looks like interface builder Gavin Gilmour 2009-10-18T19:07:54Z 2009-10-18T19:07:54Z Good grief cheers for that. http://stackoverflow.com/questions/231767/can-somebody-explain-me-the-python-yield-statement/231855#231855 Comment by Gavin Gilmour on can somebody explain me the python yield statement? Gavin Gilmour 2009-10-16T19:39:54Z 2009-10-16T19:39:54Z Cracking answer. Cheers. http://stackoverflow.com/questions/1094102/php-sessions-cookies-not-storing-correctly-when-using-ie6-ie7 Comment by Gavin Gilmour on PHP Sessions/cookies not storing correctly when using IE6/IE7 Gavin Gilmour 2009-10-12T20:18:06Z 2009-10-12T20:18:06Z Not any help, but I've posted about something similar here: <a href="http://stackoverflow.com/questions/1464477/session-unexpectedly-lost" rel="nofollow" title="session unexpectedly lost">stackoverflow.com/questions/1464477/&hellip;</a> with no solution either. Drives me crazy. http://stackoverflow.com/questions/1464477/session-unexpectedly-lost/1464495#1464495 Comment by Gavin Gilmour on Session unexpectedly lost? Gavin Gilmour 2009-09-23T07:51:10Z 2009-09-23T07:51:10Z Hmmm, I'm pretty sure the session is being started everywhere and this is an internal intranet based application so cookies should <i>definitely</i> be enabled everywhere. It's particularly frustrating because it appears to be working fine now, very intermittent :( http://stackoverflow.com/questions/1447334/how-do-you-add-nerdtree-to-your-vimrc/1447618#1447618 Comment by Gavin Gilmour on How do you add NERDTree to your vimrc? Gavin Gilmour 2009-09-19T13:54:11Z 2009-09-19T13:54:11Z Thought I'd add that there is a :NERDTreeToggle built in mapping you can map to which makes your custom function rather redundant. http://stackoverflow.com/questions/1383225/how-to-disable-all-listbox-in-a-form/1383236#1383236 Comment by Gavin Gilmour on how to disable all listbox in a form Gavin Gilmour 2009-09-05T18:49:31Z 2009-09-05T18:49:31Z you're right of course, though I'd probably prefer Marius's answer entirely. damn frameworks turning the brain to mush! http://stackoverflow.com/questions/1329662/select-only-some-columns-from-a-table-on-a-left-join/1329674#1329674 Comment by Gavin Gilmour on Select only some columns from a table on a LEFT JOIN Gavin Gilmour 2009-08-25T17:18:39Z 2009-08-25T17:18:39Z Probably worth adding that it's a good idea to prefix them with the table they're from e.g. table1.column1, table2.column2 etc so stop ambiguity errors and just for general readability. http://stackoverflow.com/questions/1324252/list-of-profanities-for-censorship-filter/1324282#1324282 Comment by Gavin Gilmour on List of Profanities for Censorship Filter Gavin Gilmour 2009-08-24T19:41:27Z 2009-08-24T19:41:27Z &quot;profanity list&quot; :&gt; http://stackoverflow.com/questions/1323790/have-nautilus-open-file-into-new-gvim-buffer/1323818#1323818 Comment by Gavin Gilmour on Have nautilus open file into new gvim buffer? Gavin Gilmour 2009-08-24T19:30:24Z 2009-08-24T19:30:24Z I'm on a mac so I'm not 100%, but you could try this :- <a href="http://www.howtogeek.com/howto/ubuntu/add-open-with-gedit-to-the-right-click-menu-in-ubuntu/" rel="nofollow">howtogeek.com/howto/ubuntu/&hellip;</a> and use this script instead:- <a href="http://pastebin.com/m7abf308e" rel="nofollow">pastebin.com/m7abf308e</a> It might do the trick. http://stackoverflow.com/questions/687/keyboard-for-programmers/3959#3959 Comment by Gavin Gilmour on Keyboard for programmers Gavin Gilmour 2009-08-23T16:30:22Z 2009-08-23T16:30:22Z I agree with the positive sentiment here, this keyboard is pretty great. Though, I much prefer the wireless version since it does away with all the NUM PAD junk and is utterly tiny. http://stackoverflow.com/questions/1318791/how-do-search-for-complete-words-in-vim/1318793#1318793 Comment by Gavin Gilmour on How do search for complete words in vim? Gavin Gilmour 2009-08-23T15:29:14Z 2009-08-23T15:29:14Z No. You need to go into search mode first and then type the pattern. So try hitting the keys exactly:- /\&lt;string\&gt; http://stackoverflow.com/questions/1318791/how-do-search-for-complete-words-in-vim/1318797#1318797 Comment by Gavin Gilmour on How do search for complete words in vim? Gavin Gilmour 2009-08-23T15:27:09Z 2009-08-23T15:27:09Z Doing that assumes the words don't have punctuation attached. It also won't match words that might be at the end of a line.