User Nicholas Riley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T12:32:22Zhttp://stackoverflow.com/feeds/user/6372http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1913613/xml-dom-minidom-python-issue/1913666#19136662Answer by Nicholas Riley for xml.dom.minidom python issueNicholas Riley2009-12-16T10:14:52Z2009-12-16T10:14:52Z<p>The <code><title></code> node contains a text node as a subnode. Maybe you want to iterate through the subnodes instead? Something like this:</p>
<pre><code>from xml.dom.minidom import *
resp = "<title> This is a test! </title>"
rssDoc = parseString(resp)
titles = rssDoc.getElementsByTagName('title')
moo = ""
for t in titles:
for child in t.childNodes:
if child.nodeType == child.TEXT_NODE:
moo += child.data
else:
moo += "not text "
print moo
</code></pre>
<p>For learning xml.dom.minidom you might also check out the <a href="http://www.diveintopython.org/xml%5Fprocessing/parsing%5Fxml.html" rel="nofollow">section in Dive Into Python</a>.</p>
http://stackoverflow.com/questions/1911965/emacs-how-can-i-copy-the-end-of-the-line-starting-one-line-above-the-cursor/1912011#19120111Answer by Nicholas Riley for [emacs] How can I copy the end of the line starting one line above the cursor?Nicholas Riley2009-12-16T03:09:37Z2009-12-16T04:10:24Z<p>Try something like this.</p>
<pre><code>(defun dupchar ()
(interactive)
(let ((char-above (save-excursion
(line-move -1)
(following-char))))
(unless (eq char-above ?\n)
(insert char-above))))
(define-key global-map [(meta \")] 'dupchar)
</code></pre>
<p>A few comments on the function you wrote:</p>
<ol>
<li><p>You need to use <code>(interactive)</code>
otherwise you can't bind the
function to a key.</p></li>
<li><p>It's not a good idea to just
randomly <code>setq</code> things—that creates
a global variable. In this case you
don't need a variable at all; you
can make use of the return value
from <code>save-excursion</code>. (In the later version of this I needed to use a let.)</p></li>
<li><p>Parentheses call a function in
(e)lisp, so you need to use <code>-1</code>
instead of <code>(-1)</code>.</p></li>
<li><p>The 2nd-4th arguments to <code>'line-move</code> will default to <code>nil</code>, so there's no need to specify them.</p></li>
</ol>
<p>(Note: I modified this to stop at the end of the line; it's again hard to understand what you wrote, but this is my best guess.)</p>
http://stackoverflow.com/questions/1912089/ruby-task-application-tap-python-alternative/1912102#19121020Answer by Nicholas Riley for Ruby task application (tap) python alternativeNicholas Riley2009-12-16T03:36:13Z2009-12-16T03:36:13Z<p>Could you explain what the tools in the question you linked to don't do for you?</p>
<p>If you want to (ab)use a Python-based software build tool, you could try <a href="http://www.blueskyonmars.com/projects/paver/" rel="nofollow">Paver</a> or <a href="http://www.buildout.org/" rel="nofollow">Buildout</a>.</p>
<p>On the heavyweight side there's <a href="http://www.scons.org/" rel="nofollow">SCons</a>, but I've not heard particularly good things about it.</p>
http://stackoverflow.com/questions/1912076/whats-the-file-format-used-by-gcc-in-osx/1912091#19120911Answer by Nicholas Riley for What's the file format used by gcc in OSX? Nicholas Riley2009-12-16T03:32:27Z2009-12-16T03:32:27Z<p>The "file is not of required architecture" indicates that you're trying to link object files with different architectures: probably x86_64 and i386. As it appears your nasm output is i386, try using <code>-arch i386</code> with gcc. You can also use <code>file</code> to display the architecture of a given object file or library.</p>
<pre><code>% touch foo.c ; gcc -c foo.c
% file foo.o
foo.o: Mach-O 64-bit object x86_64
% gcc -c -arch i386 foo.c
% file foo.o
foo.o: Mach-O object i386
</code></pre>
http://stackoverflow.com/questions/1911769/iphone-app-with-audio-files-is-just-too-big-how-do-i-reduce-the-size/1912059#19120593Answer by Nicholas Riley for iPhone app with audio files is just too big. How do I reduce the size?Nicholas Riley2009-12-16T03:22:42Z2009-12-16T03:22:42Z<p>You could consider downloading (some of) the MP3 files after your app is installed. For low bitrate you're better off recompressing with AAC though (perhaps at 48-64 kbps); it provides better quality than MP3 at the same size. Also consider mono instead of stereo if it makes no difference.</p>
http://stackoverflow.com/questions/1909651/svnssh-not-having-to-do-ssh-add-every-time-mac-os/1912042#19120420Answer by Nicholas Riley for SVN+SSH, not having to do ssh-add every time? (Mac OS)Nicholas Riley2009-12-16T03:18:31Z2009-12-16T03:18:31Z<p>First, move your private key file into <code>~/.ssh</code>. This is not strictly necessary but it's the standard place for such things.</p>
<p>Then run <code>ssh-add -K ~/.ssh/privateKey.txt</code>. It'll prompt for your passphrase if necessary, then add it to your Keychain.</p>
<p>After that, you shouldn't have to do anything else. A slightly longer explanation is available <a href="http://www-uxsup.csx.cam.ac.uk/~aia21/osx/leopard-ssh.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1894069/how-do-you-get-a-member-of-an-enum-in-jython/1911356#19113560Answer by Nicholas Riley for How do you get a member of an enum in jython?Nicholas Riley2009-12-15T23:58:19Z2009-12-15T23:58:19Z<p>Just invoke the name method. For example:</p>
<pre><code>>>> from java.lang import *
>>> s = Thread.currentThread().getState()
>>> s
RUNNABLE
>>> type(s)
<type 'java.lang.Thread$State'>
>>> s.name()
u'RUNNABLE'
</code></pre>
http://stackoverflow.com/questions/1887320/get-data-back-from-jython-scripts-using-jsr-223/1911270#19112701Answer by Nicholas Riley for Get data back from Jython scripts using JSR-223Nicholas Riley2009-12-15T23:38:45Z2009-12-15T23:47:56Z<p>This is a Python language issue more than a Jython or JSR 223 issue. Python differentiates between expressions (which have values) and statements (which don't). The script you're passing is a statement. If you passed an expression, it'd have a value.</p>
<p>The reason you're seeing something different with Ruby and JavaScript is that compound statements have the value of the last statement evaluated. For example, compare Ruby:</p>
<pre><code>>> (2 ; 3) + 5
=> 8
>> (x = 5) + 7
=> 12
</code></pre>
<p>with Python:</p>
<pre><code>>>> (2 ; 3) + 5
File "<stdin>", line 1
(2 ; 3) + 5
^
SyntaxError: invalid syntax
>>> (x = 5) + 7
File "<stdin>", line 1
(x = 5) + 7
^
SyntaxError: invalid syntax
</code></pre>
<p>JavaScript seems to be somewhere in between. Like Ruby, assignments evaluate to the value assigned. However, the last evaluated statement in a block is returned but not usable as part of an expression:</p>
<pre><code>> { 2 ; 3 }
3
> { 2 ; 3 } + 5
5
> (x = 5) + 7
12
</code></pre>
http://stackoverflow.com/questions/1872051/emacs-navigation-in-non-truncate-mode/1872087#18720871Answer by Nicholas Riley for Emacs: Navigation in non-truncate modeNicholas Riley2009-12-09T06:58:11Z2009-12-09T06:58:11Z<p>You could implement <code>C-v</code> in terms of <code>C-n</code>, something like this:</p>
<pre><code>(defun scroll-up-keep-position ()
(interactive)
(next-line (window-height)))
(global-set-key [(control v)] 'scroll-up-keep-position)
</code></pre>
http://stackoverflow.com/questions/1868677/objective-c-how-to-get-current-screen-resolution/1868687#18686872Answer by Nicholas Riley for Objective C - how to get current screen resolution?Nicholas Riley2009-12-08T17:53:06Z2009-12-08T17:53:06Z<p>Check out <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSScreen%5FClass/Reference/Reference.html" rel="nofollow">NSScreen</a>.</p>
http://stackoverflow.com/questions/1829706/how-to-query-x11-display-resolution/1829753#18297534Answer by Nicholas Riley for How to query X11 display resolution?Nicholas Riley2009-12-01T23:43:44Z2009-12-01T23:58:37Z<p>If Xinerama is in use, try <a href="http://linux.die.net/man/3/xineramaqueryscreens" rel="nofollow"><code>XineramaQueryScreens</code></a>. Otherwise, you may be able to assume a single screen and use <code>(X)WidthOfScreen</code>/<code>(X)HeightOfScreen.</code></p>
<p>(Also see the other answer. It's remotely possible someone is using the old X screen model where your screens are <code>:x.0</code>, <code>:x.1</code>, etc.)</p>
http://stackoverflow.com/questions/1758460/macos-howto-change-the-system-temp-folder-programatically/1760936#17609363Answer by Nicholas Riley for MacOS - howto change the SYSTEM temp folder (programatically) ?Nicholas Riley2009-11-19T04:47:15Z2009-11-19T04:47:15Z<p><code>NSTemporaryDirectory()</code> uses <code>confstr(_CS_DARWIN_USER_TEMP_DIR)</code>, not <code>$TMPDIR</code>. I don't know of an API to <em>set</em> <code>confstr(3)</code>s, so I think you'll need to override either <code>NSTemporaryDirectory</code> or <code>confstr$UNIX2003</code> with <a href="http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man1/dyld.1.html" rel="nofollow"><code>DYLD_INSERT_LIBRARIES</code></a> or a similar mechanism.</p>
<p>But really, this is a tremendous hack; your application should not assume it is the only instance running in the temporary directory if this is not the case. It should do its own uniquing with <code>mkdtemp(3)</code> or similar.</p>
http://stackoverflow.com/questions/1754380/programmatically-login-to-os-x/1760876#17608761Answer by Nicholas Riley for programmatically login to OS XNicholas Riley2009-11-19T04:29:17Z2009-11-19T04:29:17Z<p>You'll need to write an <a href="http://developer.apple.com/mac/library/documentation/Security/Reference/AuthorizationPluginRef/Reference/reference.html" rel="nofollow">authorization plugin</a>. You can think of your task as something like using a smartcard reader to log in.</p>
http://stackoverflow.com/questions/1757902/is-there-any-assembly-language-debugger-for-os-x/1757943#17579430Answer by Nicholas Riley for Is there any assembly language debugger for OS X?Nicholas Riley2009-11-18T18:07:39Z2009-11-18T18:07:39Z<p><a href="http://www.hex-rays.com/idapro/" rel="nofollow">IDA Pro</a> does work on the Mac after a fashion (UI still runs on Windows; see <a href="http://www.hex-rays.com/idapro/macdemo/index.htm" rel="nofollow">an example</a>).</p>
http://stackoverflow.com/questions/1740411/trim-file-extension-uitableview/1740473#17404730Answer by Nicholas Riley for Trim file extension UITableViewNicholas Riley2009-11-16T06:43:50Z2009-11-16T06:43:50Z<p>Try <code>-[NSString stringByDeletingPathExtension]</code> (in NSPathUtilities.h).</p>
http://stackoverflow.com/questions/1740412/how-to-bring-nswindow-to-front-and-to-the-current-space/1740440#17404403Answer by Nicholas Riley for How to bring NSWindow to front and to the current Space ?Nicholas Riley2009-11-16T06:35:10Z2009-11-16T06:35:10Z<p>Perhaps you want:</p>
<pre><code> [self.window setCollectionBehavior: NSWindowCollectionBehaviorCanJoinAllSpaces];
</code></pre>
<p>Experiment with the other collection behaviors... I found <code>NSWindowCollectionBehaviorMoveToActiveSpace</code> was a bit buggy in 10.5 but it might be better now.</p>
http://stackoverflow.com/questions/1739837/how-to-control-the-text-color-of-an-nstextfield-when-it-is-displaying-a-placehold/1740319#17403192Answer by Nicholas Riley for How to control the text color of an NSTextField when it is displaying a placeholder marker? Nicholas Riley2009-11-16T05:56:08Z2009-11-16T06:10:58Z<p>Use an attributed string specifying the color you want, like this:</p>
<pre><code>NSDictionary *blueDict = [NSDictionary dictionaryWithObject: [NSColor blueColor]
forKey: NSForegroundColorAttributeName];
NSAttributedString *blueString = [[[NSAttributedString alloc] initWithString: @"test"
attributes: blueDict] autorelease];
</code></pre>
<p>Then you can either set the placeholder attributed string directly:</p>
<pre><code>[[field cell] setPlaceholderAttributedString: blueString];
</code></pre>
<p>or do it through a binding, for example:</p>
<pre><code>[field2 bind: @"value" toObject: [NSUserDefaults standardUserDefaults]
withKeyPath: @"foo"
options: [NSDictionary dictionaryWithObject: blueString forKey: NSNullPlaceholderBindingOption]];
</code></pre>
http://stackoverflow.com/questions/1740165/installing-trac-with-subversion-1-6/1740192#17401921Answer by Nicholas Riley for Installing Trac with Subversion 1.6Nicholas Riley2009-11-16T05:15:10Z2009-11-16T05:15:10Z<p>It may be that the Subversion Python bindings are compiled against a too-old version of Subversion, but given FS format 2 is <a href="http://svn.collab.net/repos/svn/trunk/subversion/libsvn%5Frepos/repos.h" rel="nofollow">pre-1.0,</a> it's possible something else is wrong. You can get the Subversion client library version like this:</p>
<pre><code>>>> import svn.client
>>> svn.client.svn_client_version().major
1
>>> svn.client.svn_client_version().minor
6
>>> svn.client.svn_client_version().patch
5
</code></pre>
http://stackoverflow.com/questions/1712798/nsdateformat-super-simple-where-am-i-screwing-up/1712901#17129013Answer by Nicholas Riley for NSDateFormat, super simple! Where am I screwing up?Nicholas Riley2009-11-11T03:53:47Z2009-11-11T03:53:47Z<p>Are you sure <code>startValue</code> is a date and not a string? Try examining its class.</p>
http://stackoverflow.com/questions/1697706/executing-for-each-in-bash/1697834#16978348Answer by Nicholas Riley for Executing for-each in bashNicholas Riley2009-11-08T20:29:32Z2009-11-08T20:29:32Z<p>Sounds like you want to use xargs then.</p>
<pre><code>$ echo foo bar | xargs -n 1 cowsay
_____
< foo >
-----
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
_____
< bar >
-----
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
</code></pre>
http://stackoverflow.com/questions/1697761/how-to-parse-a-custom-string-using-optparse/1697776#16977762Answer by Nicholas Riley for How to parse a custom string using optparse?Nicholas Riley2009-11-08T20:13:10Z2009-11-08T20:13:10Z<p>Use the <a href="http://docs.python.org/library/shlex.html" rel="nofollow">shlex module</a> to split the input first.</p>
<pre><code>>>> import shlex
>>> shlex.split(raw_input())
this is "a test" of shlex
['this', 'is', 'a test', 'of', 'shlex']
</code></pre>
http://stackoverflow.com/questions/1697043/mailing-list-to-review-git-commits/1697697#16976971Answer by Nicholas Riley for Mailing list to review Git commitsNicholas Riley2009-11-08T19:53:30Z2009-11-08T19:53:30Z<p><a href="http://code.google.com/p/gerrit/" rel="nofollow">Gerrit</a> uses email pretty extensively for notifications; see the <a href="http://source.android.com/submit-patches/workflow" rel="nofollow">Android workflow</a> for an example.</p>
http://stackoverflow.com/questions/1688831/os-x-do-sections-in-the-text-segment-get-modified-by-other-programs/1692094#16920942Answer by Nicholas Riley for OS X: Do sections in the __TEXT segment get modified by other programs?Nicholas Riley2009-11-07T05:26:01Z2009-11-08T19:47:14Z<p>Segments are essentially a virtual memory construct: they're typically aligned on page boundaries, so they may end up including a bit more than your application's code. Given the <code>__TEXT</code> segment usually starts at the beginning of a Mach-O file, this generally includes the Mach-O headers, too.</p>
<p>In OS X 10.3 and earlier, prebinding could affect the <code>__TEXT</code> segment (which is described in detail <a href="http://www.adhocconference.com/papers/2003/SigningPrebound.pdf" rel="nofollow">here</a>). In later versions, code signing can also modify the <code>__TEXT</code> segment.</p>
<p>You may want to investigate using OS X's built-in code-signing mechanism (the cause of, and solution to, your problem?). Some recommended references:</p>
<ul>
<li><a href="http://developer.apple.com/mac/library/technotes/tn2007/tn2206.html" rel="nofollow">Technical Note TN2206: Mac OS X Code Signing In Depth</a></li>
<li><a href="http://www.rogueamoeba.com/utm/2008/03/07/code-signing-and-you/" rel="nofollow">Code Signing and You</a> (ignore the iPhone bits)</li>
<li><a href="http://www.red-sweater.com/blog/514/development-phase-code-signing" rel="nofollow">Development Phase Code Signing</a></li>
</ul>
<p>You may find <a href="http://pypi.python.org/pypi/macholib/" rel="nofollow">macholib</a> useful in exploring. (It's included with recent OS X versions to support py2app.) Here's a simple script I used to extract a <code>__TEXT</code> segment.</p>
<pre><code>from macholib.MachO import MachO
m = MachO('foo')
__TEXT = (cmd for load_cmd, cmd, data in m.headers[0].commands
if getattr(cmd, 'segname', '').rstrip('\0') == '__TEXT').next()
print '__TEXT segment: offset %x size %x' % (__TEXT.fileoff, __TEXT.filesize)
f = open('foo', 'rb')
f.seek(__TEXT.fileoff)
open('foo__TEXT', 'wb').write(f.read(__TEXT.filesize))
</code></pre>
<p>Of course, you can also use <code>otool -lv</code>, but the output is a bit messy and hard to parse.</p>
http://stackoverflow.com/questions/1693780/applescript-to-launch-itunes-with-a-specific-library/1693973#16939732Answer by Nicholas Riley for Applescript to launch iTunes with a specific libraryNicholas Riley2009-11-07T18:33:40Z2009-11-07T18:33:40Z<p>iTunes doesn't allow you to do this with AppleScript, but you can write directly into iTunes' preferences, where it stores an alias to the currently selected library (or nothing, if you're using a library in the default location).</p>
<p>First, you'll need to obtain the alias data for your selected library location. Open iTunes holding down the Option key, select your library and quit iTunes. Then, in Terminal, run:</p>
<pre><code>defaults read com.apple.itunes 'alis:1:iTunes Library Location' | pbcopy
</code></pre>
<p>This will copy the library alias data to the clipboard.</p>
<p>Finally, here's the script:</p>
<pre><code>property otherLibraryLocation : "" -- paste location between the quotes
property libraryLocationPref : "com.apple.iTunes 'alis:1:iTunes Library Location'"
-- first, quit iTunes if it's running
tell application "System Events"
if exists (application process "iTunes") then
tell application "iTunes" to quit
end if
end tell
-- then, set the location
do shell script "defaults write " & libraryLocationPref & " " & quoted form of otherLibraryLocation
-- uncomment the following line to use the default iTunes library instead
-- do shell script "defaults delete " & libraryLocationPref
-- finally, relaunch iTunes
tell application "iTunes" to activate
</code></pre>
<p>Paste the library location between the quotes in the first line of the script, and you should be all set. To return to the original library, uncomment the line including <code>defaults delete</code>.</p>
http://stackoverflow.com/questions/1691799/instance-variable-naming-conventions-in-cocoa/1691926#16919267Answer by Nicholas Riley for Instance variable naming conventions in CocoaNicholas Riley2009-11-07T03:48:17Z2009-11-07T04:02:50Z<p>I tend to use non-prefixed <strong>instance variable</strong> names (note that "member variable" is a C++ism as it's suggestive of structures and classes being mainly interchangeable, which is not the case in Objective-C), and in cases where ambiguity arises, I use the Smalltalk convention of naming the <strong>parameter</strong> by its type with "a" or "an", e.g.:</p>
<pre><code>- (void)setFoo:(SOFoo *)aFoo;
{
foo = aFoo;
}
</code></pre>
<p>(of course, in modern ObjC you'd use a property for this.)</p>
<p>Using <code>theFoo</code> instead of <code>aFoo</code> is also somewhat common; see the answers to <a href="http://stackoverflow.com/questions/549962/instance-variable-method-argument-naming-in-objective-c">this question</a>.</p>
<p>The Google convention makes sense if you're really worried about conflicts. If you use an <a href="http://cocoawithlove.com/2008/06/hidden-xcode-build-debug-and-template.html#textmacros" rel="nofollow">Xcode text macro</a> or tool like <a href="http://www.obdev.at/products/completion-dictionary/index.html" rel="nofollow">Completion Dictionary</a> or <a href="http://www.kevincallahan.org/software/coding%5Fstyles.html" rel="nofollow">Accessorizer</a> to generate your directives, it's pretty simple to adopt.</p>
<p>Note that the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/KeyValueCoding/Concepts/Compliant.html#//apple%5Fref/doc/uid/20002172" rel="nofollow">Cocoa key-value coding guidelines</a> pretty much assume either (a) you do not prefix/suffix your instance variable names, or (b) you implement (or synthesize) non-prefixed/suffixed accessors for them. As someone else mentioned, do not use the _ prefix; it's reserved for Apple's use in their frameworks.</p>
http://stackoverflow.com/questions/1679657/cant-run-netbeans-after-changing-java-to-1-6-on-mac/1691946#16919460Answer by Nicholas Riley for Can't Run Netbeans after changing Java to 1.6 on macNicholas Riley2009-11-07T04:00:11Z2009-11-07T04:00:11Z<p>You should never, ever delete anything in <code>/System</code> (except the contents of <code>/System/Library/Caches</code> if needed for troubleshooting). Reinstall Java 6 (with Apple's latest Java update) before you do anything else, then if you want to change the VM NetBeans uses, either use Java Preferences or add to <code>~/.netbeans/«version»/etc/netbeans.conf</code>:</p>
<pre><code>netbeans_jdkhome="/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home"
</code></pre>
http://stackoverflow.com/questions/1685020/python-tkinter-prompt/1685050#16850502Answer by Nicholas Riley for Python Tkinter PromptNicholas Riley2009-11-06T02:30:05Z2009-11-06T02:30:05Z<p>Yes, use <a href="http://www.pythonware.com/library/tkinter/introduction/x1164-data-entry.htm" rel="nofollow">tkSimpleDialog.askstring</a>. Unfortunately this isn't in the main Python docs, so it's a bit hard to find.</p>
http://stackoverflow.com/questions/1684871/good-search-tool/1684892#16848920Answer by Nicholas Riley for Good Search Tool?Nicholas Riley2009-11-06T01:46:58Z2009-11-06T01:46:58Z<p><a href="http://www.barebones.com/" rel="nofollow">TextWrangler and its big brother BBEdit</a> have some pretty decent multi-file search and replace tools.</p>
<p>If you just want to search, particularly through source files, <a href="http://betterthangrep.com/" rel="nofollow">ack</a> is terrific.</p>
http://stackoverflow.com/questions/1679986/zip-file-created-with-sharpziplib-cannot-be-opened-on-os-x/1680606#16806061Answer by Nicholas Riley for zip file created with SharpZipLib cannot be opened on os xNicholas Riley2009-11-05T13:30:38Z2009-11-05T13:30:38Z<p>What's going on with the <code>.cpgz</code> file is that Archive Utility is being launched by a file with a <code>.zip</code> extension. Archive Utility examines the file and thinks it isn't compressed, so it's compressing it. For some bizarre reason, <code>.cpgz</code> (CPIO archiving + gzip compression) is the default. You can set a different default in Archive Utility's Preferences.</p>
<p>If you do indeed discover this is a problem with OS X's zip decoder, please file a <a href="http://bugreport.apple.com/" rel="nofollow">bug</a>. You can also try using the <code>ditto</code> command-line tool to unpack it; you may get a better error message. Of course, OS X also ships <code>unzip</code>, the Info-ZIP utility, but I'd expect that to work.</p>
http://stackoverflow.com/questions/1657652/convert-subversion-repository-to-mercurial/1657674#16576742Answer by Nicholas Riley for Convert Subversion repository to MercurialNicholas Riley2009-11-01T17:04:09Z2009-11-01T17:04:09Z<p>Try <a href="http://bitbucket.org/durin42/hgsubversion/wiki/Home" rel="nofollow">hgsubversion</a> instead; it's a lot more robust. I've had a lot of bizarre issues interacting with Subversion's CLI on Windows (mostly resolved by using CMD instead of another shell).</p>
http://stackoverflow.com/questions/1919044/is-there-a-better-way-to-iterate-over-two-lists-getting-one-element-from-each-li/1919055#1919055Comment by Nicholas Riley on Is there a better way to iterate over two lists, getting one element from each list for each iteration?Nicholas Riley2009-12-17T02:08:50Z2009-12-17T02:08:50ZIn Python 2.x you might consider itertools.izip instead (zip does the same thing in Python 3.x).http://stackoverflow.com/questions/1911965/emacs-how-can-i-copy-the-end-of-the-line-starting-one-line-above-the-cursor/1912011#1912011Comment by Nicholas Riley on [emacs] How can I copy the end of the line starting one line above the cursor?Nicholas Riley2009-12-16T06:04:16Z2009-12-16T06:04:16ZOK, well pick another binding then :-)http://stackoverflow.com/questions/1911965/emacs-how-can-i-copy-the-end-of-the-line-starting-one-line-above-the-cursor/1912011#1912011Comment by Nicholas Riley on [emacs] How can I copy the end of the line starting one line above the cursor?Nicholas Riley2009-12-16T05:57:17Z2009-12-16T05:57:17ZAll I can say is that it works for me. Maybe there's some issue typing M-" on your machine? You can try M-x dupchar and see if it works instead. For an example of it in action on my machine, see <a href="http://vimeo.com/8211826" rel="nofollow">vimeo.com/8211826</a>.http://stackoverflow.com/questions/1911965/emacs-how-can-i-copy-the-end-of-the-line-starting-one-line-above-the-cursor/1912011#1912011Comment by Nicholas Riley on [emacs] How can I copy the end of the line starting one line above the cursor?Nicholas Riley2009-12-16T04:12:03Z2009-12-16T04:12:03ZI'm sorry, I still don't understand. What result are you getting? What result do you expect?http://stackoverflow.com/questions/1911965/emacs-how-can-i-copy-the-end-of-the-line-starting-one-line-above-the-cursor/1912011#1912011Comment by Nicholas Riley on [emacs] How can I copy the end of the line starting one line above the cursor?Nicholas Riley2009-12-16T03:55:59Z2009-12-16T03:55:59ZWhat do you want it to do at the end of the line?http://stackoverflow.com/questions/1912089/ruby-task-application-tap-python-alternative/1912102#1912102Comment by Nicholas Riley on Ruby task application (tap) python alternativeNicholas Riley2009-12-16T03:40:33Z2009-12-16T03:40:33ZAnyway, if what you're doing doesn't vary that much in principle from building software, you can probably just use an existing tool and ignore the standard "recipes". Or write your own. :-)http://stackoverflow.com/questions/1912089/ruby-task-application-tap-python-alternative/1912102#1912102Comment by Nicholas Riley on Ruby task application (tap) python alternativeNicholas Riley2009-12-16T03:39:49Z2009-12-16T03:39:49ZYeah, I realized that about 10 seconds after posting the answer. Ah well.http://stackoverflow.com/questions/1890228/continuous-integration-and-app-engineComment by Nicholas Riley on Continuous Integration and App EngineNicholas Riley2009-12-16T03:15:06Z2009-12-16T03:15:06ZThe per-request limitations of GAE seem fundamentally incompatible with the needs of a continuous integration tool. Why do you want to do this?http://stackoverflow.com/questions/1911965/emacs-how-can-i-copy-the-end-of-the-line-starting-one-line-above-the-cursorComment by Nicholas Riley on [emacs] How can I copy the end of the line starting one line above the cursor?Nicholas Riley2009-12-16T03:08:04Z2009-12-16T03:08:04ZPlease try to get some help with your English next time you ask a question - it is very hard to understand what you wrote above.http://stackoverflow.com/questions/1905645/whats-an-easy-way-to-have-terminal-use-a-different-color-based-on-ssh-host-name/1905665#1905665Comment by Nicholas Riley on What's an easy way to have terminal use a different color based on ssh host name?Nicholas Riley2009-12-15T23:30:21Z2009-12-15T23:30:21ZSince the Terminal profiles are menu items, a convenient way to spawn them from the keyboard is to use ⌘? to search for a menu item, then start typing.http://stackoverflow.com/questions/1910356/bash-configure-no-such-file-or-directory-mysql-install-on-osx10-6/1910375#1910375Comment by Nicholas Riley on -bash: ./configure: No such file or directory - mysql install on OSX10.6Nicholas Riley2009-12-15T21:02:18Z2009-12-15T21:02:18Zyou'd actually get "permission denied" if you tried to execute that. He's probably just in the wrong directory, or perhaps needs to run autoreconf.http://stackoverflow.com/questions/1878710/struct-objects-in-pythonComment by Nicholas Riley on struct objects in pythonNicholas Riley2009-12-10T05:25:58Z2009-12-10T05:25:58ZIf you don't want to use a dictionary and you don't want to predeclare the fields, how do you want to store the data? The only other common structure I can think of is an alist which would give you O(n) lookup, but I can't see that being an advantage in this case. (Do note that small dictionaries in Python are rather efficiently stored already.)http://stackoverflow.com/questions/2933/an-executable-python-app/2937#2937Comment by Nicholas Riley on An executable Python appNicholas Riley2009-12-09T21:33:04Z2009-12-09T21:33:04Z...but PyQt is still GPL.http://stackoverflow.com/questions/1871549/python-determine-if-running-inside-virtualenv/1871692#1871692Comment by Nicholas Riley on Python: Determine if running inside virtualenvNicholas Riley2009-12-09T05:14:03Z2009-12-09T05:14:03ZThis only works if the virtualenv is activated via the bin/activate script. If you use one of the other commands in the bin directory instead, it doesn't set the environment variable.http://stackoverflow.com/questions/1855969/nsview-in-nsmenu-how-to-make-key-for-accepting-keyboard-commands-specifical/1856164#1856164Comment by Nicholas Riley on NSView in NSMenu -- how to make "key" for accepting keyboard commands [specifically, return]Nicholas Riley2009-12-06T18:53:50Z2009-12-06T18:53:50ZYup, that's about what I was going to answer when I got distracted by something else that could potentially solve my problem. Keyboard behavior with a menu displayed is quite tricky because the menu itself intercepts most key equivalents for navigation.