User Jeremy Michael Cantrell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:44:57Zhttp://stackoverflow.com/feeds/user/18866http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118096/how-can-i-parse-a-comma-delimited-string-into-a-list-caveat5How can i parse a comma delimited string into a list (caveat)?Jeremy Michael Cantrell2008-09-22T22:54:10Z2009-11-25T17:23:04Z
<p>I need to be able to take a string like:</p>
<pre><code>'''foo, bar, "one, two", three four'''
</code></pre>
<p>into:</p>
<pre><code>['foo', 'bar', 'one, two', 'three four']
</code></pre>
<p>I have an feeling (with hints from #python) that the solution is going to involve the shlex module.</p>
http://stackoverflow.com/questions/249283/virtualenv-on-ubuntu-with-no-site-packages3Virtualenv on Ubuntu with no site-packagesJeremy Michael Cantrell2008-10-30T04:32:52Z2009-11-03T22:20:07Z
<p>I've been using virtualenv lately while developing in python. I like the idea of a segregated development environment using the --no-site-packages option, but doing this while developing a PyGTK app can be a bit tricky. The PyGTK modules are installed on Ubuntu by default, and I would like to make a virtualenv (with --no-site-packages) aware of specific modules that are located elsewhere on the system.</p>
<p>What's the best way to do this? Or should I just suck it up and drop the --no-site-packages option?</p>
http://stackoverflow.com/questions/778317/need-a-better-way-to-manage-database-schema-changes4Need a better way to manage database schema changesJeremy Michael Cantrell2009-04-22T17:24:47Z2009-09-23T16:23:47Z
<p>Currently, we manage database (SQL Server) changes with a series of numbered scripts. One folder holds scripts that can only be run once (table alters, data initialization, etc). Another holds all scripts that can be run multiple times without fear of them destroying anything (stored procedures, functions, etc).</p>
<p>Typically, when we need to make a change to the database, we'll create a script for the change, number it, stick it in the appropriate folder, and commit it. When we do pushes, I keep notes on the last number that was run, and run all of the subsequent scripts. I know there's a better way to do this, but I wanted to get your opinion on methods that work for you. I'm OK with a commercial solution, but an open source or free one would be preferred.</p>
<p>My motivation for this is that I don't want to have to think about what's changed, and I want to cut as much human error out of the process as possible.</p>
<p>EDIT: Just to clarify, this is an ASP.NET app, with SQL Server. We currently do version control with Subversion.</p>
http://stackoverflow.com/questions/1424533/testing-for-gui-in-bashrc/1427565#14275652Answer by Jeremy Michael Cantrell for Testing for GUI in .bashrcJeremy Michael Cantrell2009-09-15T14:31:02Z2009-09-15T14:31:02Z<p>Using bash conventions:</p>
<pre><code>if [[ $DISPLAY ]]; then
export EDITOR=gedit
else
export EDITOR=emacs
fi
</code></pre>
http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job63When did you know it was time to leave your job?Jeremy Michael Cantrell2008-09-24T20:00:38Z2009-08-20T23:58:17Z
<p>Every job has its ups and downs, but sometimes it just isn't worth it to stick around. I'm currently in one of the "down" points with my current job and debating whether or not to start testing the waters for something else.</p>
<p>What are your experiences? How did you know it was time to leave? Do you ultimately feel like it was the right decision?</p>
http://stackoverflow.com/questions/1300002/recommended-settings-for-2-tier-server-environment0Recommended settings for 2-tier server environment [closed]Jeremy Michael Cantrell2009-08-19T13:40:25Z2009-08-19T13:50:44Z
<p>I'm trying to setup a 2-tier server environment in Windows Server 2008, which I'm finding is a little different from XP or Server 2003. The web tier is using IIS and ASP.NET 3.5 and the database tier is using SQL Server 2008. The only services that I'm using there is the database engine, Integration services, and Reporting services.</p>
<p>What user account should the various Windows services be running as? Are there any other settings that I should be aware of when setting this up?</p>
http://stackoverflow.com/questions/439611/how-to-check-for-deletions-on-a-linq-to-sql-entityset1How to check for deletions on a LINQ to SQL EntitySetJeremy Michael Cantrell2009-01-13T16:14:32Z2009-07-29T03:24:35Z
<p>I have an entity that has a collection of associated entities in an EntitySet. Ultimately, I'm trying to report on some changes that have been made to this entity. I will most likely use the GetModifiedMembers() method to do this, and I'm guessing I can just do the same with each entity in the EntitySet, but I'm not sure how to tell if there have been any deletions in that EntitySet.</p>
<p>What's the best way to do this?</p>
http://stackoverflow.com/questions/1063125/linux-tool-to-parse-csv-files/1064592#10645920Answer by Jeremy Michael Cantrell for Linux Tool To Parse CSV filesJeremy Michael Cantrell2009-06-30T16:09:08Z2009-06-30T16:09:08Z<p>My gut reaction would be to write a script wrapper around Python's csv module (if there isn't already such a thing).</p>
http://stackoverflow.com/questions/1064136/does-vim-have-an-auto-comment-feature-based-on-the-files-syntax/1064568#10645681Answer by Jeremy Michael Cantrell for Does Vim have an auto-comment feature based on the file's syntax?Jeremy Michael Cantrell2009-06-30T16:05:12Z2009-06-30T16:05:12Z<p>I highly recommend <a href="http://www.vim.org/scripts/script.php?script%5Fid=1218" rel="nofollow">NERD Commenter</a>.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/106868#1068686Answer by Jeremy Michael Cantrell for Hidden features of PythonJeremy Michael Cantrell2008-09-20T02:55:10Z2009-06-27T23:12:42Z<p><strong>First-class functions</strong></p>
<p>It's not really a hidden feature, but the fact that functions are first class objects is simply great. You can pass them around like any other variable.</p>
<pre><code>>>> def jim(phrase):
... return 'Jim says, "%s".' % phrase
>>> def say_something(person, phrase):
... print person(phrase)
>>> say_something(jim, 'hey guys')
'Jim says, "hey guys".'
</code></pre>
http://stackoverflow.com/questions/1043375/vim-tabs-and-buffers/1045505#10455053Answer by Jeremy Michael Cantrell for Vim tabs and buffersJeremy Michael Cantrell2009-06-25T18:30:14Z2009-06-25T18:30:14Z<p>I keep godlygeek's explanation bookmarked for just this question.</p>
<p><a href="http://vim.pastey.net/115548" rel="nofollow">godlygeek on Vim's tabs/windows/buffers</a></p>
http://stackoverflow.com/questions/1037605/prefered-terminal-scripting-language/1039005#10390050Answer by Jeremy Michael Cantrell for Prefered terminal scripting languageJeremy Michael Cantrell2009-06-24T15:14:12Z2009-06-24T15:14:12Z<p>Bash is the preferred scripting language for these kinds of tasks. It's pretty ubiquitous, and it's intended to be a glue language, in the sense that you can glue together a bunch of commands that you would normally do in the terminal pretty much unchanged.</p>
http://stackoverflow.com/questions/1031015/using-vi-vim-or-gvim-as-ide/1034129#10341293Answer by Jeremy Michael Cantrell for Using VI, VIM, or GVIM as IDEJeremy Michael Cantrell2009-06-23T17:55:38Z2009-06-23T17:55:38Z<p>I'm not trying to be inflammatory with this response, but I want to save you some headache. This is the same answer I give to all the people that ask similar questions in #vim.</p>
<p>Vim is not an IDE. It's an editor. It was never intended to be an IDE, and any attempts to make it conform to this will only cause you problems. There are some plugins that try to provide an IDE-like feel to Vim, but these are horrible.</p>
<p>I do, on the other hand, recommend some plugins that will help you get some extended functionality from Vim. These might suit your needs.</p>
<ul>
<li><a href="http://www.vim.org/scripts/script.php?script%5Fid=273" rel="nofollow">taglist</a> - Great for navigating your code by function/method/class</li>
<li><a href="http://www.vim.org/scripts/script.php?script%5Fid=1658" rel="nofollow">NERDTree</a> - A wonderful filesystem navigation plugin</li>
</ul>
http://stackoverflow.com/questions/1008819/find-a-specific-substring-using-transact-sql0Find a specific substring using Transact-SQLJeremy Michael Cantrell2009-06-17T18:34:41Z2009-06-17T19:26:59Z
<p>I need to pull a specific substring from a string of the form:</p>
<pre><code>foo=abc;bar=def;baz=ghi
</code></pre>
<p>For example, how would I get the value of "bar" from that string?</p>
http://stackoverflow.com/questions/1007666/how-do-i-build-a-list-of-all-possible-tuples-from-this-table/1007741#10077416Answer by Jeremy Michael Cantrell for How do I build a list of all possible tuples from this table?Jeremy Michael Cantrell2009-06-17T15:22:28Z2009-06-17T15:22:28Z<p>The best way to get this is going to be using itertools.product(). For example:</p>
<pre><code>import itertools
group1 = ['a', 'b']
group2 = ['c', 'd']
print list(itertools.product(group1, group2))
#==> [('a', 'c'), ('a', 'd'), ('b', 'c'), ('b', 'd')]
</code></pre>
<p>This function accepts multiple arguments (i.e. multiple columns).</p>
<p>For more help on iterools.product() see <a href="http://docs.python.org/library/itertools.html#itertools.product" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/137580/how-can-i-perform-a-head-request-with-the-mechanize-library0How can I perform a HEAD request with the mechanize library?Jeremy Michael Cantrell2008-09-26T03:20:19Z2009-05-23T20:24:34Z
<p>I know how to do a HEAD request with httplib, but I have to use mechanize for this site. </p>
<p>Essentially, what I need to do is grab a value from the header (filename) without actually downloading the file.</p>
<p>Any suggestions how I could accomplish this?</p>
http://stackoverflow.com/questions/504511/how-to-organize-asp-net-wizard-control-with-many-databinds0How to organize ASP.NET Wizard control with many databindsJeremy Michael Cantrell2009-02-02T19:21:30Z2009-05-08T19:00:01Z
<p>I've got a wizard control that databound controls on each step. I can't databind them all at once because they are dependent on the previous step. So, essentially what I've got at each step is a save to the database of the previous step, and an initialization of the current step.</p>
<p>Are there any recommendations as to how best to organize my code? It works, but it's not very readable, and extremely brittle.</p>
<p>Please help! :)</p>
<p>EDIT: I should add that I've seen most of the wizard control tutorials out there, but none of them seem to address what I'm trying to do. In particular, the need to save and retrieve data between steps, and how to keep it from retrieving that same data again if the step is revisited.</p>
http://stackoverflow.com/questions/764312/how-do-i-modify-sys-path-from-htaccess-to-allow-modpython-to-see-django/764769#7647691Answer by Jeremy Michael Cantrell for How do I modify sys.path from .htaccess to allow mod_python to see Django?Jeremy Michael Cantrell2009-04-19T03:15:58Z2009-04-19T03:15:58Z<p>You're using mod_python wrong. It was never intended to serve python web applications. You should be using WSGI for this... or at least FastCGI.</p>
http://stackoverflow.com/questions/762515/vim-remap-key-to-toggle-line-numbering/762633#7626333Answer by Jeremy Michael Cantrell for Vim: remap key to toggle line numberingJeremy Michael Cantrell2009-04-18T00:31:46Z2009-04-18T00:31:46Z<p>This is what I use (with a different key binding):</p>
<pre><code>nmap <f2> :set number! number?<cr>
</code></pre>
<p>The "number!" toggles the setting and "number?" reports the state.</p>
http://stackoverflow.com/questions/645363/should-i-use-git-to-deploy-websites/740695#7406956Answer by Jeremy Michael Cantrell for Should I use git to deploy websites?Jeremy Michael Cantrell2009-04-11T19:54:00Z2009-04-11T19:54:00Z<p>I use git to track my website, and I deploy it like this:</p>
<pre><code>git archive --format=tar --prefix="homepage/" master | gzip | ssh webserver "tar xvz -C ~/public_html"
</code></pre>
<p>This deserves a little explanation. The archive command for git will export the files for the master branch, which gets compressed with gzip to minimize network traffic. It's received remotely over ssh, which is decompressed into the final destination directory.</p>
<p>The deploy script that I use has a little more going on, but this is the most important piece.</p>
http://stackoverflow.com/questions/727761/python-str-and-lists/727944#7279440Answer by Jeremy Michael Cantrell for Python __str__ and listsJeremy Michael Cantrell2009-04-07T23:11:57Z2009-04-07T23:11:57Z<p>I agree with the previous answer about using list comprehensions to do this, but you could certainly hide that behind a function, if that's what floats your boat.</p>
<pre><code>def is_list(value):
if type(value) in (list, tuple): return True
return False
def list_str(value):
if not is_list(value): return str(value)
return [list_str(v) for v in value]
</code></pre>
<p>Just for fun, I made list_str() recursively str() everything contained in the list.</p>
http://stackoverflow.com/questions/697776/abstracting-the-conversion-between-id3-tags-m4a-tags-flac-tags/699218#6992183Answer by Jeremy Michael Cantrell for abstracting the conversion between id3 tags, m4a tags, flac tags...Jeremy Michael Cantrell2009-03-30T22:04:09Z2009-03-30T22:04:09Z<p>I needed this exact thing, and I, too, realized quickly that mutagen is not a distant enough abstraction to do this kind of thing. Fortunately, the authors of mutagen needed it for their media player <a href="http://code.google.com/p/quodlibet/" rel="nofollow">QuodLibet</a>.</p>
<p>I had to dig through the QuodLibet source to find out how to use it, but once I understood it, I wrote a utility called <strong>sequitur</strong> which is intended to be a command line equivalent to <strong>ExFalso</strong> (QuodLibet's tagging component). It uses this abstraction mechanism and provides some added abstraction and functionality.</p>
<p>If you want to check out the source, <a href="http://jeremycantrell.com/files/python-qlcli.tar.gz" rel="nofollow">here's a link to the latest tarball</a>. The package is actually a set of three command line scripts and a module for interfacing with QL. If you want to install the whole thing, you can use:</p>
<pre><code>easy_install QLCLI
</code></pre>
<p>One thing to keep in mind about exfalso/quodlibet (and consequently sequitur) is that they actually implement audio metadata properly, which means that all tags support multiple values (unless the file type prohibits it, which there aren't many that do). So, doing something like:</p>
<pre><code>print qllib.AudioFile('foo.mp3')['artist']
</code></pre>
<p>Will not output a single string, but will output a list of strings like:</p>
<pre><code>[u'The First Artist', u'The Second Artist']
</code></pre>
<p>The way you might use it to copy tags would be something like:</p>
<pre><code>import os.path
import qllib # this is the module that comes with QLCLI
def update_tags(mp3_fn, flac_fn):
mp3 = qllib.AudioFile(mp3_fn)
flac = qllib.AudioFile(flac_fn)
# you can iterate over the tag names
# they will be the same for all file types
for tag_name in mp3:
flac[tag_name] = mp3[tag_name]
flac.write()
mp3_filenames = ['foo.mp3', 'bar.mp3', 'baz.mp3']
for mp3_fn in mp3_filenames:
flac_fn = os.path.splitext(mp3_fn)[0] + '.flac'
if os.path.getmtime(mp3_fn) != os.path.getmtime(flac_fn):
update_tags(mp3_fn, flac_fn)
</code></pre>
http://stackoverflow.com/questions/676600/vim-replace-selected-text/677918#6779181Answer by Jeremy Michael Cantrell for Vim replace selected textJeremy Michael Cantrell2009-03-24T15:27:53Z2009-03-24T20:03:25Z<p>I have this in my vimrc:</p>
<pre><code>function! GetVisual() range
let reg_save = getreg('"')
let regtype_save = getregtype('"')
let cb_save = &clipboard
set clipboard&
normal! ""gvy
let selection = getreg('"')
call setreg('"', reg_save, regtype_save)
let &clipboard = cb_save
return selection
endfunction
vmap <leader>z :%s/<c-r>=GetVisual()<cr>/
</code></pre>
<p>This will grab the visual selection and start a substitution command with it.</p>
<p>EDIT: I should point out that this does not work with multiline visual selections. While GetVisual() doesn't have a problem returning it, I'm not sure how to properly put it into the command line. If anyone has any tips on how I might do this, please comment.</p>
http://stackoverflow.com/questions/670363/bash-why-does-test-assign-the-listing-of-the-current-directory-to-test/675963#6759631Answer by Jeremy Michael Cantrell for BASH - Why does TEST=' .* ' assign the listing of the current directory to TEST?Jeremy Michael Cantrell2009-03-24T02:26:32Z2009-03-24T02:26:32Z<p>It actually assigns ".*" to TEST. It only expands to the file listing when you echo it.</p>
http://stackoverflow.com/questions/621025/what-convention-do-you-use-for-backup-file-names/675209#6752090Answer by Jeremy Michael Cantrell for What convention do you use for backup file names?Jeremy Michael Cantrell2009-03-23T20:56:54Z2009-03-23T20:56:54Z<p>Most of the time I use:</p>
<pre><code>$FILENAME.bak-$(date +%Y%m%d%H%M%S)
</code></pre>
http://stackoverflow.com/questions/648675/use-case-for-nested-multiple-list-comprehensions-or-generator-expressions-when-i/648721#6487211Answer by Jeremy Michael Cantrell for Use case for nested/multiple list comprehensions or generator expressions. When is it more elegant?Jeremy Michael Cantrell2009-03-15T22:40:38Z2009-03-15T22:40:38Z<p>Since they are generator expressions, you can bind each to it's own name to make it more readable without any change in performance. Changing it to a nested loop would likely be detrimental to performance.</p>
<pre><code>irange = (i for i in xrange(10))
jrange = (j for j in irange)
krange = (k for k in jrange)
</code></pre>
<p>It really doesn't matter which you choose, I think the multi-line example is more readable, in general.</p>
http://stackoverflow.com/questions/646438/are-there-any-reasons-why-a-c-developer-should-learn-emacs-vim/647077#6470773Answer by Jeremy Michael Cantrell for Are there any reasons why a C# developer should learn Emacs/VIM?Jeremy Michael Cantrell2009-03-15T01:31:06Z2009-03-15T01:31:06Z<p>I also work for a Microsoft only shop, but, at home, I only use Linux. Suffice it to say that I use Vim exclusively for editing at home. At work, I use Visual Studio for all development, but I use Vim for many tasks that require complex text manipulation. Even if I didn't use Vim at home, it would still be incredibly useful to me for what I do at work. Our IT guy thinks I'm some sort of magician when he sees me doing my Vim acrobatics. That's got to be worth something, right? ;)</p>
http://stackoverflow.com/questions/58584/in-vim-what-is-the-best-way-to-select-delete-or-comment-out-large-portions-of/570665#5706651Answer by Jeremy Michael Cantrell for In Vim, what is the best way to select, delete, or comment out large portions of multi-screen text?Jeremy Michael Cantrell2009-02-20T18:08:39Z2009-02-20T18:08:39Z<p>For commenting out lines, I would suggest one of these plugins:</p>
<p><a href="http://www.vim.org/scripts/script.php?script_id=23" rel="nofollow">EnhancedCommentify</a></p>
<p><a href="http://www.vim.org/scripts/script.php?script_id=1218" rel="nofollow">NERD Commenter</a></p>
<p>I find myself using NERD more these days, but I've used EnhancedCommentify for years.</p>
http://stackoverflow.com/questions/566656/how-can-i-read-rss-in-vim/570654#5706541Answer by Jeremy Michael Cantrell for How can I read RSS in VIM?Jeremy Michael Cantrell2009-02-20T18:04:52Z2009-02-20T18:04:52Z<p>Vim is a text editor, not an RSS reader.</p>
http://stackoverflow.com/questions/524585/what-is-your-favorite-colorscheme-for-programming-in-vim/551916#5519161Answer by Jeremy Michael Cantrell for What is your favorite colorscheme FOR PROGRAMMING in Vim?Jeremy Michael Cantrell2009-02-16T00:26:10Z2009-02-16T00:26:10Z<p>My #1 pick is Inkpot, but this one has some similar qualities. It would likely be my second choice:</p>
<p><a href="http://www.vim.org/scripts/script.php?script_id=2140" rel="nofollow">xoria256</a></p>
<p><img src="http://ix4.piccy.info.nyud.net/i3/4b/63/8815c1fbed0dfdf2a3a6af1bc83c.png" alt="xoria256" /></p>
http://stackoverflow.com/questions/1424533/testing-for-gui-in-bashrc/1424552#1424552Comment by Jeremy Michael Cantrell on Testing for GUI in .bashrcJeremy Michael Cantrell2009-09-28T18:32:53Z2009-09-28T18:32:53ZFYI. [ is actually a command. If you're using bash, the preferred method is [[.http://stackoverflow.com/questions/1300061/debugging-in-visual-studio-2008-in-windows-7/1300097#1300097Comment by Jeremy Michael Cantrell on Debugging in Visual Studio 2008 in Windows 7Jeremy Michael Cantrell2009-08-19T14:31:39Z2009-08-19T14:31:39ZThat's true, but I would like to run IIS.http://stackoverflow.com/questions/1008819/find-a-specific-substring-using-transact-sql/1008861#1008861Comment by Jeremy Michael Cantrell on Find a specific substring using Transact-SQLJeremy Michael Cantrell2009-06-18T13:56:24Z2009-06-18T13:56:24ZTo your credit, I do realize that this is terrible to do in Transact-SQL, but, at this point, I don't see a way around it.http://stackoverflow.com/questions/1008819/find-a-specific-substring-using-transact-sql/1008861#1008861Comment by Jeremy Michael Cantrell on Find a specific substring using Transact-SQLJeremy Michael Cantrell2009-06-17T18:51:55Z2009-06-17T18:51:55ZIt works as long as you pad the beginning of @str with a ';'. Fix it accommodate potentially not having a leading ';' and I'll mark it as the answer.http://stackoverflow.com/questions/1008819/find-a-specific-substring-using-transact-sql/1008861#1008861Comment by Jeremy Michael Cantrell on Find a specific substring using Transact-SQLJeremy Michael Cantrell2009-06-17T18:44:34Z2009-06-17T18:44:34ZI should mention, though, that "bar" could just as easily be at the beginning or end of this string. I don't think your solution accounts for that.http://stackoverflow.com/questions/1008819/find-a-specific-substring-using-transact-sql/1008861#1008861Comment by Jeremy Michael Cantrell on Find a specific substring using Transact-SQLJeremy Michael Cantrell2009-06-17T18:43:06Z2009-06-17T18:43:06ZI agree, but I just need something that works right now.http://stackoverflow.com/questions/1008819/find-a-specific-substring-using-transact-sqlComment by Jeremy Michael Cantrell on Find a specific substring using Transact-SQLJeremy Michael Cantrell2009-06-17T18:40:45Z2009-06-17T18:40:45ZI agree. I would not have designed it this way, but I'm having to work with existing code.http://stackoverflow.com/questions/855464/recommended-online-resources-for-learning-bash-scripting/855471#855471Comment by Jeremy Michael Cantrell on Recommended online resources for learning bash scriptingJeremy Michael Cantrell2009-05-13T01:14:55Z2009-05-13T01:14:55ZI would give you +1 for the Advanced Bash Scripting Guide, but -1 for shell-fu. The majority of stuff on there is horrible.http://stackoverflow.com/questions/778317/need-a-better-way-to-manage-database-schema-changes/778364#778364Comment by Jeremy Michael Cantrell on Need a better way to manage database schema changesJeremy Michael Cantrell2009-04-22T17:41:12Z2009-04-22T17:41:12ZYes, we do version control with subversion. That's not the problem I'm trying to solve, though.http://stackoverflow.com/questions/767040/save-last-working-directory-on-bash-logout/767135#767135Comment by Jeremy Michael Cantrell on Save last working directory on Bash logoutJeremy Michael Cantrell2009-04-20T18:48:29Z2009-04-20T18:48:29Z+1 This is much more bash-specific than the accepted answer.http://stackoverflow.com/questions/142764/how-do-i-upgrade-python-2-5-2-to-python-2-6rc2-on-ubuntu-linux-8-04/142770#142770Comment by Jeremy Michael Cantrell on How do I upgrade python 2.5.2 to python 2.6rc2 on ubuntu linux 8.04?Jeremy Michael Cantrell2009-04-19T13:53:48Z2009-04-19T13:53:48ZActually, the correct way (if you're targeting a specific version) is #!/usr/bin/env python2.6http://stackoverflow.com/questions/764632/what-does-emacs-do-better-than-vim-what-features-does-it-have-that-vim-lacksComment by Jeremy Michael Cantrell on What does emacs DO better than vim? What features does it have that vim lacks?Jeremy Michael Cantrell2009-04-19T03:08:54Z2009-04-19T03:08:54ZI don't see a question...http://stackoverflow.com/questions/764600/how-can-you-export-your-bashrc-to-zshrcComment by Jeremy Michael Cantrell on How can you export your .bashrc to .zshrc?Jeremy Michael Cantrell2009-04-19T03:05:51Z2009-04-19T03:05:51ZDon't let this zsh-hater get you down. Zsh is great!http://stackoverflow.com/questions/763480/python-beginner-how-to-prevent-finally-from-executingComment by Jeremy Michael Cantrell on Python Beginner: How to Prevent 'finally' from executing?Jeremy Michael Cantrell2009-04-18T15:26:56Z2009-04-18T15:26:56ZYou're aware that always executing is the whole purpose of "finally"?http://stackoverflow.com/questions/757338/what-is-the-fastest-way-to-reverse-a-comma-separated-list-in-vim/757396#757396Comment by Jeremy Michael Cantrell on What is the fastest way to reverse a comma-separated list in vim?Jeremy Michael Cantrell2009-04-16T18:55:29Z2009-04-16T18:55:29ZJust remove the range (%). :s will operate on the current line unless you give it a range.