User EoghanM - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T20:34:01Zhttp://stackoverflow.com/feeds/user/6691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1721603/jtemplates-html-in-variables0jTemplates: html in variablesEoghanM2009-11-12T11:33:49Z2009-11-12T12:37:29Z
<p>I'd like to include some html in a jTemplate variable - e.g.</p>
<pre><code><td class="numeric">{$T.total_price}</td>
</code></pre>
<p>Where total_price is:</p>
<pre><code>"$12<span>.00</span>"
</code></pre>
<p>Is there any way I can get the span to show up as html?</p>
http://stackoverflow.com/questions/1721603/jtemplates-html-in-variables/1721901#17219012Answer by EoghanM for jTemplates: html in variablesEoghanM2009-11-12T12:37:29Z2009-11-12T12:37:29Z<p>I got it with:</p>
<pre><code>$('#mhid')setTemplate(s, [], {filter_data: false});
</code></pre>
http://stackoverflow.com/questions/1472700/emacs-keyboard-macros-and-dired4Emacs: Keyboard Macros and DiredEoghanM2009-09-24T16:10:29Z2009-09-25T02:45:06Z
<p>Is there an emacs command which would apply a kbd macro to every file in dired?</p>
<p>e.g. <code>query-replace-regexp</code> has <code>dired-do-query-replace-regexp</code></p>
<p>I'm looking for a <code>dired-do-call-last-kbd-macro</code></p>
http://stackoverflow.com/questions/1207765/what-is-the-name-of-this-diagram/1207795#12077950Answer by EoghanM for What is the name of this diagram?EoghanM2009-07-30T16:39:10Z2009-07-30T16:39:10Z<p>Try <a href="http://writemaps.com/" rel="nofollow">http://writemaps.com/</a> if you want to generate a simple sitemap.</p>
<p>Otherwise you'll need to delve into visio or a visio equivalent.</p>
http://stackoverflow.com/questions/1044446/how-to-get-git-status-of-a-single-subfolder4How to get git-status of a single subfolder?EoghanM2009-06-25T15:01:30Z2009-07-10T19:46:04Z
<p>When I do git status in a subfolder of my repository it includes the status of parent folders also.</p>
<p>Is there a way to constrain git-status to just a particular folder?</p>
http://stackoverflow.com/questions/1038643/event-for-when-user-switches-browser-tabs2Event for when user switches browser tabsEoghanM2009-06-24T14:12:17Z2009-06-24T14:42:48Z
<p>I'm looking for an event which will fire whenever the user switches away from the page to another tab, and another event which fires when the user switches back to the tab again.</p>
<p>window.onblur and window.onfocus <a href="http://www.quirksmode.org/dom/events/index.html" rel="nofollow">don't seem to work correctly</a> across all browsers</p>
<p>Is there a proxy I could look at in order to synthesize this event?</p>
http://stackoverflow.com/questions/837064/how-to-detect-http-status-from-javascript1How to detect HTTP status from JavaScriptEoghanM2009-05-07T21:08:35Z2009-06-18T08:39:29Z
<p>I want to detect in a script, which could be deployed beyond my control, whether the page was delivered with a HTTP status of 200, 404 or 500 etc.</p>
<p>This can't be done, right?</p>
http://stackoverflow.com/questions/998312/embed-section-of-html-from-another-site/998492#9984920Answer by EoghanM for Embed section of HTML from another site?EoghanM2009-06-15T21:28:54Z2009-06-15T21:28:54Z<p>I'd recommend using a server side solution with Python; using urllib2 to request the page, then using <a href="http://www.crummy.com/software/BeautifulSoup/documentation.html" rel="nofollow">BeautifulSoup</a> to parse out the bit that you need. BeautifulSoup has a very flexible selection api with which you can craft heuristics for the section you are interested in.</p>
<p>To illustrate:</p>
<pre><code>soup = BeautifulSoup(html)
text = soup.find(text="Some text on the page that is unlikely to change")
print soup.parent.prettify()
</code></pre>
<p>That way if the webmaster later changes the markup on the page, your scraping script should still work.</p>
http://stackoverflow.com/questions/911085/django-python-environmenterror/983548#9835480Answer by EoghanM for Django/Python EnvironmentError?EoghanM2009-06-11T20:44:36Z2009-06-11T20:44:36Z<p>Another thing that gives this error is permissions - very hard to track down.</p>
<p>Solution for me was to move <code><myproject></code> to /var/www/<code><myproject></code>
and do chown -R root:root /var/www/<code><myproject></code></p>
http://stackoverflow.com/questions/751068/what-vcs-allows-me-to-add-changes-to-multiple-pending-commits-simultaneously3What VCS allows me to add changes to multiple pending commits simultaneously?EoghanM2009-04-15T10:26:10Z2009-05-28T11:14:36Z
<p>My workflow usually involves me making multiple changes to a file, each of which belongs to it's own conceptual unit of change across the project (= commit).</p>
<p>What I would like to be able to do is to add certain diffs (either a whole file, or only certain lines of a file) to a pending commit (which would probably have to be named) and to have multiple pending commits 'active' at the same time.</p>
<p>Then when all changes related to a particular pending commit are complete across all files, I can commit the named commit!</p>
<p>Any ideas of which VCS would be a good candidate for this?</p>
http://stackoverflow.com/questions/867936/python-elegant-way-of-dual-multiple-iteration-over-the-same-list1Python: Elegant way of dual/multiple iteration over the same listEoghanM2009-05-15T10:35:14Z2009-05-15T21:41:22Z
<p>I've written a bit of code like the following to compare items with other items further on in a list. Is there a more elegant pattern for this sort of dual iteration?</p>
<pre><code>jump_item_iter = (j for j in items if some_cond)
try:
jump_item = jump_item_iter.next()
except StopIteration:
return
for item in items:
if jump_item is item:
try:
jump_item = jump_iter.next()
except StopIteration:
return
# do lots of stuff with item and jump_item
</code></pre>
<p>I don't think the "<code>except StopIteration</code>" is very elegant</p>
<p>Edit:</p>
<p>To hopefully make it clearer, I want to visit each item in a list and pair it with the next item further on in the list (jump_item) which satisfies some_cond.</p>
http://stackoverflow.com/questions/301750/404-hijacking2404 HijackingEoghanM2008-11-19T12:28:33Z2009-05-15T01:03:41Z
<p>Certain <a href="http://www.avg.com/special-toolbar-404-dns-error-tlbrc.tpl-mcr1" rel="nofollow">malware such as AVG</a> hijack 404 pages in order to display a page in the browser riddled with their own ads.
The only work around I've found is to abandon 404 http status codes for custom error pages in my webapp.</p>
<p>Is there any other work around?</p>
<p>Edit:</p>
<p>Anybody know of any other toolbars/programs that also hijack 404 pages without checking whether they are generic error pages or not?</p>
<p>Is there a way to detect the presence of AVG from the query string or otherwise? (I assume not)</p>
<p>I've created a <a href="http://www.petitiononline.com/avg404/petition.html" rel="nofollow">petition to AVG</a> on this.</p>
http://stackoverflow.com/questions/835834/elixir-sqlalchemy-relations-between-3-tables-with-composite-primary-keys1Elixir (SqlAlchemy): relations between 3 tables with composite primary keysEoghanM2009-05-07T16:50:58Z2009-05-14T23:34:12Z
<p>I've 3 tables:</p>
<ul>
<li>A Company table with <code>(company_id)</code> primary key</li>
<li>A Page table with <code>(company_id, url)</code> primary key & a foreign key back to Company</li>
<li>An Attr table with <code>(company_id, attr_key)</code> primary key & a foreign key back to Company.</li>
</ul>
<p>My question is how to construct the ManyToOne relation from Attr back to Page using the existing columns in Attr, i.e. <code>company_id</code> and <code>url</code>? </p>
<pre><code>from elixir import Entity, has_field, setup_all, ManyToOne, OneToMany, Field, Unicode, using_options
from sqlalchemy.orm import relation
class Company(Entity):
using_options(tablename='company')
company_id = Field(Unicode(32), primary_key=True)
has_field('display_name', Unicode(255))
pages = OneToMany('Page')
class Page(Entity):
using_options(tablename='page')
company = ManyToOne('Company', colname='company_id', primary_key=True)
url = Field(Unicode(255), primary_key=True)
class Attr(Entity):
using_options(tablename='attr')
company = ManyToOne('Company', colname='company_id', primary_key=True)
attr_key = Field(Unicode(255), primary_key=True)
url = Field(Unicode(255)) #, ForeignKey('page.url'))
# page = ManyToOne('Page', colname=["company_id", "url"])
# page = relation(Page, backref='attrs', foreign_keys=["company_id", "url"], primaryjoin=and_(url==Page.url_part, company_id==Page.company_id))
</code></pre>
<p>I've commented out some failed attempts.</p>
<p>In the end, Attr.company_id will need to be a foreignkey to both Page and Company (as well as a primary key in Attr).</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/749314/i-want-a-toggling-div-elemenet-to-overlap-the-underlaying-content-with-z-index/843551#8435510Answer by EoghanM for I want a toggling div elemenet, to overlap the underlaying content with z-index. How can I achieve this?EoghanM2009-05-09T16:07:00Z2009-05-09T16:12:41Z<p>Try:</p>
<pre><code>#container { position: relative; }
#more { position: absolute; display: none; background-color: White;}
<div id="container">
Lorum <a href="#">click for more</a>
<div id="more">
Lorum
</div>
<div id="under">
Underneath text
</div>
</div>
</code></pre>
<p>On event '<code>click for more</code>' set <code>#more</code> to <code>display: block;</code></p>
<p>The z-index is implied in this case as <code>#more</code> is before <code>#under</code> in the document tree, and hence has a higher z-index</p>
http://stackoverflow.com/questions/836957/software-development-track-vs-web-design-development-track/837043#8370432Answer by EoghanM for Software Development Track vs Web Design Development TrackEoghanM2009-05-07T21:03:59Z2009-05-07T21:03:59Z<p>First of all, Web Development <em>is</em> software development :)
On the web there are no installation required for people to use your application, this is why the web is the only real platform worth developing on.</p>
<p>I've worked in .net development previously, and most of the work I did was writing in-house software for corporations that not many people have used. I'd say go with what you enjoy most and the career will look after itself.</p>
http://stackoverflow.com/questions/793848/sqlalchemy-mappedcollection-problem/836855#8368550Answer by EoghanM for SQLAlchemy - MappedCollection problemEoghanM2009-05-07T20:29:12Z2009-05-07T20:29:12Z<p>You have:</p>
<pre><code>backref='item'
</code></pre>
<p>Is this a typo for </p>
<pre><code>backref='name'
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/812135/emacs-modes-command-attempted-to-use-minibuffer-while-in-minibuffer/820107#8201070Answer by EoghanM for Emacs Modes: "Command attempted to use minibuffer while in minibuffer"EoghanM2009-05-04T13:30:57Z2009-05-04T13:30:57Z<p>Can anyone improve on the following?</p>
<p>I've given up and just want to set \C-w to cancel any previous minibuffer before opening a new one (like doing \C-g\C-w)</p>
<p>So far thanks to Trey I've got:</p>
<pre><code>(defun cancel-completing-read ()
(if (> (minibuffer-depth) 0) (exit-minibuffer))
(completing-read "My-x " obarray 'commandp t nil 'extended-command-history nil nil))
(defun cancel-and-execute-command (command)
(interactive (list (cancel-completing-read)))
(call-interactively (symbol-function (intern command))))
(global-set-key "\M-x" 'cancel-and-execute-command)
</code></pre>
<p>What command should I use in the place of <code>exit-minibuffer</code> above?</p>
<p>I've tried</p>
<pre><code>keyboard-escape-quit
exit-minibuffer
keyboard-quit
</code></pre>
http://stackoverflow.com/questions/812135/emacs-modes-command-attempted-to-use-minibuffer-while-in-minibuffer4Emacs Modes: "Command attempted to use minibuffer while in minibuffer"EoghanM2009-05-01T16:37:00Z2009-05-04T13:30:57Z
<p>Scenario:</p>
<ul>
<li>I start to type M-x to type a command</li>
<li>I switch to another emacs window/buffer because I realise I'm executing the command in the wrong window</li>
<li>I start to type M-x again to execute the command in the correct window</li>
</ul>
<p>Result: I get the dreaded "Command attempted to use minibuffer while in minibuffer"</p>
<p>This happens to me multiple times a day while using emacs, and not just in this scenario. This behaviour is highly user-hostile (ref. Modes and Pseudo-modes in <code>The Humane Interface</code> by Jef Raskin)</p>
<p>Is there a way to customize emacs behaviour so that instead of giving this error, it just cancels the first minibuffer and replaces it with a new one?</p>
http://stackoverflow.com/questions/815540/emacs-keep-region-selected-after-operation2Emacs: keep region selected after operationEoghanM2009-05-02T20:22:21Z2009-05-02T23:31:48Z
<p>In emacs, after an operation such as <code>comment-region</code>, the selected region is automatically deselected.</p>
<p>Is there any way of disabling this behaviour?</p>
http://stackoverflow.com/questions/814996/is-this-a-bug-with-variable-access-in-google-application-engine-django/815124#8151241Answer by EoghanM for Is this a bug with variable access in Google Application Engine + Django?EoghanM2009-05-02T16:22:40Z2009-05-02T16:22:40Z<p>Maybe try:</p>
<pre><code>for cat in cats:
for item in ['apple', 'table', 'computer']:
cat.pages.append(item)
</code></pre>
<p>If cat.pages is something funky in GAE like an instrumented list, your original code would have replaced it wholesale with a run-of-the-mill python list.</p>
http://stackoverflow.com/questions/812192/emacs-preventing-gud-pdb-from-controlling-windows1Emacs: Preventing gud & pdb from controlling windowsEoghanM2009-05-01T16:47:33Z2009-05-01T22:11:55Z
<p>I'm using pdb to debug Python programs and am unhappy with it's behaviour. </p>
<p>I have the screen divided into multiple emacs windows, and when I execute pdb, it (randomly?) replaces one of the windows with the output of the *gud* debugger. </p>
<p>Also, when a breakpoint is encountered, even if the debugging buffer is already visible in a window, it usually puts this buffer into <em>another</em> window, and replaces another of my windows with the contents of the source file. (incidentally I like that it jumps to the correct line in the source file)</p>
<p>How can I disable gud/pdb from managing my windows for me? Is it possible in emacs to prevent all programattic manipulation of windows & screen layout?</p>
<p>Edit: I found the answer that partially solves this in another post: <a href="http://stackoverflow.com/questions/43765/pin-emacs-buffers-to-windows-for-cscope/65992#65992">toggle dedicated windows</a></p>
http://stackoverflow.com/questions/812693/cant-dynamically-add-rows-to-a-table-in-ie/812741#8127411Answer by EoghanM for Can't dynamically add rows to a <TABLE> in IE?EoghanM2009-05-01T18:57:01Z2009-05-01T20:52:40Z<p>Edit: now works in IE! insertSiblingNodesAfter uses the parentNode of the sibling, which happens to be a tbody in IE</p>
<p><hr /></p>
<p>It's hard to know what quirks are in store when you try to manipulate the DOM cross-browser. I'd recommend that you use an existing library that has been fully tested across all major browsers, and accounts for quirks.</p>
<p>Personally I use MochiKit, you can dive into DOM manipulation here:
<a href="http://mochikit.com/doc/html/MochiKit/DOM.html" rel="nofollow">http://mochikit.com/doc/html/MochiKit/DOM.html</a></p>
<p>Your final function might look something like this:</p>
<pre><code>function addEmployee(employeeName, employeeJob) {
var trs = getElementsByTagAndClassName("tr", null, "employeetable");
insertSiblingNodesAfter(trs[trs.length-1], TR({}, TD({}, employeeName), TD({}, employeeJob));
alert("code executed!");
}
</code></pre>
http://stackoverflow.com/questions/768243/interactive-emacs-lisp-function-to-swap-two-words-with-eachother1Interactive emacs lisp function to swap two words with eachotherEoghanM2009-04-20T13:27:22Z2009-05-01T18:46:59Z
<p>My first foray into the quirky world of emacs lisp is a function which takes two strings and swaps them with eachother:</p>
<pre><code>(defun swap-strings (a b)
"Replace all occurances of a with b and vice versa"
(interactive "*sFirst Swap Word: \nsSecond Swap Word: ")
(save-excursion
(while (re-search-forward (concat a "\\|" b) nil t)
(if (equal (match-string 0) a)
(replace-match b)
(replace-match a)))))
</code></pre>
<p>This works - but I'm stuck on the following:</p>
<ul>
<li>how to prompt the user for confirmation before each replacement? (I can't get <code>perform-replace</code> to work)</li>
<li>how to escape the strings <code>a</code> and <code>b</code> so they don't get interpreted as regexes if they contain any regex characters?</li>
</ul>
<p>Edit: The final copy-pastable code I've been using for some time is:</p>
<pre><code>(defun swap-words (a b)
"Replace all occurances of a with b and vice versa"
(interactive "*sFirst Swap Word: \nsSecond Swap Word: ")
(save-excursion
(while (re-search-forward (concat (regexp-quote a) "\\|" (regexp-quote b)))
(if (y-or-n-p "Swap?")
(if (equal (match-string 0) a)
(replace-match (regexp-quote b))
(replace-match (regexp-quote a))))
)))
</code></pre>
<p>Unfortunately, it doesn't highlight upcoming matches on the page like I-search does.</p>
http://stackoverflow.com/questions/333634/http-head-request-in-javascript-ajax3HTTP HEAD Request in Javascript/Ajax?EoghanM2008-12-02T11:02:37Z2009-05-01T06:37:59Z
<p>Is it possible to do a HTTP Head request solely using an XMLHTTPRequest in JavaScript?</p>
<p>My motivation is to conserve bandwidth.</p>
<p>If not, is it possible to fake it?</p>
http://stackoverflow.com/questions/808748/ajax-cross-site-scripting-between-own-domains/809240#8092401Answer by EoghanM for AJAX cross site scripting between own domainsEoghanM2009-04-30T21:39:55Z2009-04-30T21:39:55Z<p>You could try a technique known as <a href="http://en.wikipedia.org/wiki/AJAST%5F%28Programming%29" rel="nofollow">'Ajast'</a>.</p>
<p>Basically your javascript on domain A adds additional <code><script></code> tags as needed to the page. These script tags point to javascript files on domain B (which need not be static .js) allowing you to load data from domain B.</p>
http://stackoverflow.com/questions/671403/memory-efficiency-one-large-dictionary-or-a-dictionary-of-smaller-dictionaries/801780#8017802Answer by EoghanM for Memory efficiency: One large dictionary or a dictionary of smaller dictionaries?EoghanM2009-04-29T10:37:13Z2009-04-29T10:37:13Z<p>If your dictionary is so big that it does not fit into memory, you might want to have a look at <a href="http://www.ibm.com/developerworks/aix/library/au-zodb/" rel="nofollow">ZODB</a>, a very mature object database for Python.</p>
<p>The 'root' of the db has the same interface as a dictionary, and you don't need to load the whole data structure into memory at once e.g. you can iterate over only a portion of the structure by providing start and end keys.</p>
<p>It also provides transactions and versioning.</p>
http://stackoverflow.com/questions/692384/good-library-for-date-ranges-periods1Good library for date ranges & periodsEoghanM2009-03-28T07:31:16Z2009-03-28T14:47:29Z
<p>This question is kind of a subset of <a href="http://stackoverflow.com/questions/90308/what-languages-do-date-time-and-calendar-operations-really-well">90308</a></p>
<p>I'm looking for a good date library in any language which can handle periodic concepts</p>
<p>Date Ranges/sets which are independent of year:</p>
<pre><code> dr = 1 May - 31 August
(4 May 2010) in dr
</code></pre>
<p>true</p>
<pre><code> (4 May 2011) in dr
</code></pre>
<p>true</p>
<pre><code> (4 March 2012) in dr
</code></pre>
<p>false</p>
<p>Day sets:</p>
<pre><code> ds = m tu w sa su
(Mon, 4 May 2010) in ds
</code></pre>
<p>true</p>
<pre><code> (Thurs, 7 May 2010) in ds
</code></pre>
<p>false</p>
<p>Also nice set-like operations of the above such as intersection, union and inverse</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/673572/how-to-specify-the-repository-in-apache-dav-svn1How to specify the repository in apache dav svn?EoghanM2009-03-23T14:26:55Z2009-03-23T14:38:11Z
<p>I have the following setup:</p>
<pre><code><VirtualHost *:80>
ServerName svn.project1.com
<Location />
DAV svn
SVNPath /svn
</Location>
</VirtualHost>
<VirtualHost *:80>
ServerName svn.project2.com
<Location />
DAV svn
SVNPath /svn
</Location>
</VirtualHost>
</code></pre>
<p>When I navigate to either <a href="http://svn.project1.com/" rel="nofollow">http://svn.project1.com/</a> or <a href="http://svn.project1.com/" rel="nofollow">http://svn.project1.com/</a> it gives a directory listing with both repositories:</p>
<pre><code>Revision 1270: /
* project1/
* project2/
Powered by Subversion version 1.4.4 (r25188)
</code></pre>
<p>How do I get both hosts to point to their respective repositories?</p>
<p>I want to be able to use urls like:</p>
<pre><code>http://svn.project1.com/trunk/
</code></pre>
<p>Instead of:</p>
<pre><code>http://svn.project1.com/project1/trunk/
</code></pre>
<p>And thus prevent access to e.g. project2 from project1 viz:</p>
<pre><code>http://svn.project1.com/project2/
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/292101/browser-neutral-way-to-add-options-to-a-select-element-in-javascript/634961#6349610Answer by EoghanM for Browser Neutral Way to add options to a select element in javascriptEoghanM2009-03-11T15:07:13Z2009-03-11T15:07:13Z<p>If you want to add an option to the <strong>start</strong> of the dropdown, the following variation should do it:</p>
<pre><code> try{
list.add(optionTag, 0);
} catch (err) {
// Firefox is dumb for once: http://www.quirksmode.org/dom/w3c_html.html#selects
list.add(optionTag, list.options[0]);
}
</code></pre>
http://stackoverflow.com/questions/512355/portable-relative-urls-folder-to-domain-root1Portable relative URLs - folder to domain rootEoghanM2009-02-04T17:16:38Z2009-02-04T17:23:37Z
<p>I want to write URL that work regardless whether the base URL is either of:</p>
<blockquote>
<p><a href="http://example.com/myfolder/" rel="nofollow">http://example.com/myfolder/</a></p>
<p><a href="http://example.com/" rel="nofollow">http://example.com/</a></p>
</blockquote>
<p>E.g.</p>
<pre><code><a href="other.html">Other</a>
</code></pre>
<p>Should go to </p>
<blockquote>
<p><a href="http://example.com/myfolder/other.html" rel="nofollow">http://example.com/myfolder/other.html</a></p>
<p><a href="http://example.com/other.html" rel="nofollow">http://example.com/other.html</a></p>
</blockquote>
<p>respectively,</p>
<p>But instead in both cases they go to:</p>
<blockquote>
<p><a href="http://example.com/other.html" rel="nofollow">http://example.com/other.html</a></p>
</blockquote>
<p>This is not a problem if the base URLs are</p>
<blockquote>
<p><a href="http://example.com/myfolder/index.html" rel="nofollow">http://example.com/myfolder/index.html</a></p>
<p><a href="http://example.com/index.html" rel="nofollow">http://example.com/index.html</a></p>
</blockquote>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1628269/mochikit-or-prototype-for-javascript-framework/1628290#1628290Comment by EoghanM on Mochikit or Prototype for JavaScript Framework?EoghanM2009-12-14T12:41:33Z2009-12-14T12:41:33Zprototype search term != prototypejshttp://stackoverflow.com/questions/572263/how-do-i-create-a-django-form-that-displays-a-checkbox-label-to-the-right-of-the/574460#574460Comment by EoghanM on How do I create a Django form that displays a checkbox label to the right of the checkbox?EoghanM2009-12-03T13:31:03Z2009-12-03T13:31:03ZCan you provide the code for pretty_checkbox? My own preferred markup for this is <label for="check"><input type="checkbox" name="check" id="check" />&nbsp;Check this</label>http://stackoverflow.com/questions/255202/how-do-i-view-git-diff-output-with-visual-diff-program/255212#255212Comment by EoghanM on How do I view 'git diff' output with visual diff program?EoghanM2009-10-15T08:09:09Z2009-10-15T08:09:09Z--no-ext-diff doesn't seem to work with this method.http://stackoverflow.com/questions/1038643/event-for-when-user-switches-browser-tabs/1038817#1038817Comment by EoghanM on Event for when user switches browser tabsEoghanM2009-06-30T10:27:32Z2009-06-30T10:27:32ZCool, I might take a look at how those are implemented in jQueryhttp://stackoverflow.com/questions/1044446/how-to-get-git-status-of-a-single-subfolderComment by EoghanM on How to get git-status of a single subfolder?EoghanM2009-06-29T07:47:28Z2009-06-29T07:47:28ZIf there is more than a screenfull worth of output from the normal "git status" commandhttp://stackoverflow.com/questions/1049396/checkboxes-will-not-check-in-ie7-using-javascript-and-yet-no-errorsComment by EoghanM on Checkboxes will not check in IE7 using Javascript, and yet no errorsEoghanM2009-06-26T14:45:32Z2009-06-26T14:45:32Z-1 for assuming everyone will find your reference to women funny.http://stackoverflow.com/questions/1044446/how-to-get-git-status-of-a-single-subfolder/1044619#1044619Comment by EoghanM on How to get git-status of a single subfolder?EoghanM2009-06-26T13:05:39Z2009-06-26T13:05:39ZThis is the method I was using... the following also gets the status headings: git status |grep "main\|:\$" ... unfortunately you lose colouring.http://stackoverflow.com/questions/1044446/how-to-get-git-status-of-a-single-subfolderComment by EoghanM on How to get git-status of a single subfolder?EoghanM2009-06-26T12:56:25Z2009-06-26T12:56:25Zno, "git status ." gives sibling folders as e.g. "../sibling"http://stackoverflow.com/questions/837064/how-to-detect-http-status-from-javascript/1011511#1011511Comment by EoghanM on How to detect HTTP status from JavaScriptEoghanM2009-06-18T18:35:29Z2009-06-18T18:35:29ZYes this is the solution I ended up going for - additionally I made a HTTP HEAD request to forestall having the client download the entire page twice.
Why I want to do this? Think a .js file that I'm writing for website administrators to install on their website.http://stackoverflow.com/questions/606882/can-i-change-emacs-find-file-history/607866#607866Comment by EoghanM on Can I change emacs find-file historyEoghanM2009-06-03T15:37:22Z2009-06-03T15:37:22ZThis solution has the nasty side effect that the down and uparrows are not complementary, e.g. if you cycle past the file you want using the uparrow, pressing the downarrow does not get go back 1 in the list you have just cycled through!http://stackoverflow.com/questions/867936/python-elegant-way-of-dual-multiple-iteration-over-the-same-list/870027#870027Comment by EoghanM on Python: Elegant way of dual/multiple iteration over the same listEoghanM2009-05-21T19:19:13Z2009-05-21T19:19:13ZI think this doesn't work as there is no way to know when to call jump_item_iter.next() and when to reuse the previous value of jump_item_iter.next()http://stackoverflow.com/questions/867936/python-elegant-way-of-dual-multiple-iteration-over-the-same-list/870027#870027Comment by EoghanM on Python: Elegant way of dual/multiple iteration over the same listEoghanM2009-05-20T16:28:09Z2009-05-20T16:28:09ZAre you missing the line <code>jump_item_iter = items</code> before the loop body?http://stackoverflow.com/questions/867936/python-elegant-way-of-dual-multiple-iteration-over-the-same-listComment by EoghanM on Python: Elegant way of dual/multiple iteration over the same listEoghanM2009-05-15T14:20:00Z2009-05-15T14:20:00ZYes, odwl, that would be expected output.http://stackoverflow.com/questions/867936/python-elegant-way-of-dual-multiple-iteration-over-the-same-list/867991#867991Comment by EoghanM on Python: Elegant way of dual/multiple iteration over the same listEoghanM2009-05-15T11:57:04Z2009-05-15T11:57:04ZI suppose I could better put the question:
I want to visit each item in a list and pair it with the next item further on in the list which meets a certain condition.
I'll update the questionhttp://stackoverflow.com/questions/867936/python-elegant-way-of-dual-multiple-iteration-over-the-same-list/868152#868152Comment by EoghanM on Python: Elegant way of dual/multiple iteration over the same listEoghanM2009-05-15T11:55:21Z2009-05-15T11:55:21ZI'm trying to avoid nested loops as I only need to visit each 'item' once.