User Gorgapor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T22:14:07Zhttp://stackoverflow.com/feeds/user/3757http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol6When do I use the PHP constant "PHP_EOL"?Gorgapor2008-09-24T17:34:39Z2009-12-11T01:17:31Z
<p>When is it a good idea to use <a href="http://us3.php.net/manual/en/reserved.constants.php" rel="nofollow"><code>PHP_EOL</code></a>? I sometimes see this in code samples of PHP. Does this handle DOS/Mac/Unix endline issues? Most of the PHP I write is for generating HTML, and I use <code><br/></code> instead of actual newlines, so haven't used this constant before.</p>
http://stackoverflow.com/questions/1120148/disabling-python-nosetests/1843106#18431060Answer by Gorgapor for Disabling Python nosetests Gorgapor2009-12-03T21:39:10Z2009-12-03T21:39:10Z<p>Nose already has a builtin decorator for this:</p>
<pre><code>from nose.tools import nottest
@nottest
def test_my_sample_test()
#code here ...
</code></pre>
<p>Also check out the other goodies that nose provides: <a href="http://somethingaboutorange.com/mrl/projects/nose/0.11.1/testing%5Ftools.html" rel="nofollow">http://somethingaboutorange.com/mrl/projects/nose/0.11.1/testing%5Ftools.html</a></p>
http://stackoverflow.com/questions/1331587/how-should-i-associate-server-side-data-with-client-side-ui-elements-in-html/1842235#18422350Answer by Gorgapor for How should I associate server-side data with client-side UI elements in HTML?Gorgapor2009-12-03T19:16:34Z2009-12-03T19:16:34Z<p>Here is how I would do this:</p>
<ul>
<li><p>When rendering the page server-side, generate the flag link as a normal link, so that it would work fine if you didn't have javascript enabled.</p>
<p><code><a class="flag_link" href="/comment/123/flag/"><img src="flag.gif" /></a></code></p></li>
<li><p>Then, in the javascript, add a click event to do this by ajax instead. I'll use jQuery for my example, but the same thing is not hard to do without it.</p></li>
</ul>
<p><code><script></code></p>
<pre>
$('a.flag_link').click(function() {
$.get($(this).attr('href'), function() {
alert('you flagged this comment');
});
});
</pre>
<p><code></script></code></p>
<p>Of course, you'll do something more user-friendly than an alert to signal success.</p>
http://stackoverflow.com/questions/1504724/a-git-hook-for-whenever-i-change-branches/1810193#18101931Answer by Gorgapor for A git hook for whenever I change branches?Gorgapor2009-11-27T18:46:39Z2009-11-30T13:23:54Z<p>Just copying and updating a good solution by Apreche that was buried in the comments:</p>
<p>Save this shell script to the file <code>/path/to/repo/.git/hooks/post-checkout</code>, and make it executable.</p>
<pre><code>#! /bin/sh
# Start from the repository root.
cd ./$(git rev-parse --show-cdup)
# Delete .pyc files and empty directories.
find . -name "*.pyc" -delete
find . -type d -empty -delete
</code></pre>
http://stackoverflow.com/questions/1772031/is-there-a-way-to-parse-html-with-lxml-but-manipulate-it-with-minidom0Is there a way to parse html with lxml, but manipulate it with minidom?Gorgapor2009-11-20T17:25:15Z2009-11-20T17:36:50Z
<p>I have an application where I've been using html5lib to liberally parse html. I use the minidom interface, because I need a real DOM API and ElementTree is not appropriate for what I'm doing.</p>
<p>Here's how I do this:</p>
<pre><code>parser = html5lib.XHTMLParser(tree=html5lib.treebuilders.getTreeBuilder('dom'))
parser.parse(html)
</code></pre>
<p>However, parsing huge files is becoming a performance bottleneck, and lxml parsing is about 80 times faster than html5lib (I benchmarked it).</p>
<p>How do I parse with lxml or a similarly fast bad-html-tolerant library, and manipulate with a DOM-compatible API?</p>
http://stackoverflow.com/questions/1772031/is-there-a-way-to-parse-html-with-lxml-but-manipulate-it-with-minidom/1772108#17721081Answer by Gorgapor for Is there a way to parse html with lxml, but manipulate it with minidom?Gorgapor2009-11-20T17:36:50Z2009-11-20T17:36:50Z<p>Think I found a solution:</p>
<pre><code>from xml.dom.pulldom import SAX2DOM
import lxml.sax
def parse_lxml_dom(html):
tree = lxml.html.document_fromstring(html)
handler = SAX2DOM()
lxml.sax.saxify(tree, handler)
return handler.document
</code></pre>
<p>However, this is only about 7 times faster than html5lib. The saxify call takes quite a while.</p>
http://stackoverflow.com/questions/237079/how-to-get-file-creation-modification-date-times-in-python/1526089#15260895Answer by Gorgapor for How to get file creation & modification date/times in Python?Gorgapor2009-10-06T14:51:26Z2009-10-06T14:56:39Z<p>The best function to use for this is <a href="http://docs.python.org/library/os.path.html#os.path.getmtime" rel="nofollow">os.path.getmtime()</a>. Internally, this just uses <code>os.stat(filename).st_mtime</code>.</p>
<p>The datetime module is the best manipulating timestamps, so you can get the modification date as a <code>datetime</code> object like this:</p>
<pre><code>import os
import datetime
def modification_date(filename):
t = os.path.getmtime(filename)
return datetime.datetime.fromtimestamp(t)
</code></pre>
<p>Usage example:</p>
<pre><code>>>> d = modification_date('/var/log/syslog')
>>> print d
2009-10-06 10:50:01
>>> print repr(d)
datetime.datetime(2009, 10, 6, 10, 50, 1)
</code></pre>
http://stackoverflow.com/questions/1455839/how-do-i-skip-a-section-of-code-when-unittesting-in-django0How do I skip a section of code when unittesting in Django?Gorgapor2009-09-21T17:49:54Z2009-09-21T18:04:01Z
<p>In my Django application, I have a section of code that uploads a file to Amazon S3, and I would like to skip this section during unittests. Unittests happen to run with <code>DEBUG=False</code>, so I can't test for <code>settings.DEBUG == True</code> to skip this section. Any ideas?</p>
http://stackoverflow.com/questions/1455642/how-to-build-sqlite-for-python-2-4/1455663#14556630Answer by Gorgapor for How to build sqlite for Python 2.4?Gorgapor2009-09-21T17:15:01Z2009-09-21T17:15:01Z<p>If you don't have root privileges, I would recommend installing a more recent version of Python in your home directory and then adding your local version to your <code>PATH</code>. It seems easier to go that direction than to try to make sqlite work with an old version of Python.</p>
<p>You will also be doing yourself a favor by using a recent version of Python, because you'll have access to the numerous recent improvements in the language.</p>
http://stackoverflow.com/questions/1453465/django-use-archiveindex-with-datefield-from-a-related-model/1455589#14555891Answer by Gorgapor for Django: use archive_index with date_field from a related modelGorgapor2009-09-21T17:01:03Z2009-09-21T17:01:03Z<p>From digging through the Django source code, the generic view <code>archive_index</code> does not appear to support related fields that are <code>GenericRelation</code>s.</p>
<p>This is because the queryset method <code>dates</code> does not support generic relations. Consider filing this as a bug / feature request on the Django bug tracker.</p>
http://stackoverflow.com/questions/1454984/how-to-define-properties-in-init/1455178#14551781Answer by Gorgapor for How to define properties in __init__Gorgapor2009-09-21T15:39:25Z2009-09-21T16:29:28Z<p>Why are you defining properties at <code>__init__</code> time? It's confusing and clever, so you better have a really good reason. The loop problem that Stef pointed out is just one example of why this should be avoided.</p>
<p>If you need to redifine which properties a subclass has, you can just do <code>del self.<property name></code> in the subclass <code>__init__</code> method, or define new properties in the subclass.</p>
<p>Also, some style nitpicks:</p>
<ul>
<li>Indent to 4 spaces, not 2</li>
<li>Don't mix quote types unnecessarily</li>
<li>Use underscores instead of camel case for method names. <code>PropNames</code> -> <code>prop_names</code></li>
<li><code>PropNames</code> doesn't really need to be a method</li>
</ul>
http://stackoverflow.com/questions/1455160/how-to-set-ignorecase-flag-for-part-of-regular-expression-in-python/1455303#14553035Answer by Gorgapor for How to set ignorecase flag for part of regular expression in Python?Gorgapor2009-09-21T16:01:10Z2009-09-21T16:25:27Z<p>As far as I could find, the python regular expression engine does not support partial ignore-case. Here is a solution using a case-insensitive regular expression, which then tests if the token is uppercase afterward.</p>
<pre><code>#! /usr/bin/env python
import re
token_re = re.compile(r'use\s+([a-z0-9]+)\s+code', re.IGNORECASE)
def find_token(s):
m = token_re.search(s)
if m is not None:
token = m.group(1)
if token.isupper():
return token
if __name__ == '__main__':
for s in ['Use HELLO1 code',
'USE hello1 CODE',
'this does not match',
]:
print s, '->',
print find_token(s)
</code></pre>
<p>Here is the program's output:</p>
<pre><code>Use HELLO1 code -> HELLO1
USE hello1 CODE -> None
this does not match -> None
</code></pre>
http://stackoverflow.com/questions/1455109/whats-a-django-python-solution-for-providing-a-one-time-url-for-people-to-downlo/1455393#14553933Answer by Gorgapor for What's a Django/Python solution for providing a one-time url for people to download files?Gorgapor2009-09-21T16:20:04Z2009-09-21T16:20:04Z<p>Neat idea. However, I would warn against the single-download method, because there is no guarantee that their first download attempt will be successful. Perhaps use a time-expiration method instead?</p>
<p>But it is certainly possible to do this with Django. Here is an outline of the basic approach:</p>
<ul>
<li>Set up a django url for serving these files</li>
<li>Use a GET parameter which is a unique string to identify which file to get.</li>
<li>Keep a database table which has a <code>FileField</code> for the file to download. This table maps the unique strings to the location of the file on the file system.</li>
<li>To serve the file as a download, set the response headers in the view like this:</li>
</ul>
<p>(<code>path</code> is the location of the file to serve)</p>
<pre><code>with open(path, 'rb') as f:
response = HttpResponse(f.read())
response['Content-Type'] = 'application/octet-stream';
response['Content-Disposition'] = 'attachment; filename="%s"' % 'insert_filename_here'
return response
</code></pre>
<p>Since we are using this Django page to serve the file, the user cannot find out the original file location.</p>
http://stackoverflow.com/questions/1454874/allowing-user-to-rollback-from-db-audit-trail-with-sqlalchemy/1455056#14550560Answer by Gorgapor for Allowing user to rollback from db audit trail with SQLAlchemyGorgapor2009-09-21T15:18:37Z2009-09-21T15:18:37Z<p>Although I haven't used SQLAlchemy specifically, I can give you some general tips that can be easily implemented in any ORM:</p>
<ul>
<li>Separate out the versioned item into two tables, say <code>Document</code> and <code>DocumentVersion</code>. <code>Document</code> stores information that will never change between versions, and <code>DocumentVersion</code> stores information that does change.</li>
<li>Give each <code>DocumentVersion</code> a "parent" reference. Make a foreign key to the same table, pointing to the previous version of the document.</li>
<li>Roll back to previous versions by updating a reference from <code>Document</code> to the "current" version. Don't delete versions from the bottom of the chain.</li>
<li>When they make newer versions after rolling back, it will create another branch of versions.</li>
</ul>
<p>Example, create A, B, C, rollback to B, create D, E:</p>
<pre><code>(A)
|
(B)
| \
(C) (D)
|
(E)
</code></pre>
http://stackoverflow.com/questions/1413049/managing-user-configuration-files-across-multiple-computers/1441296#14412963Answer by Gorgapor for Managing user configuration files across multiple computersGorgapor2009-09-17T20:54:04Z2009-09-21T15:02:43Z<p>I keep a folder at <code>~/config/</code> which is a bzr repository. I push/pull the repository between my various computers to sync it up. I have an install script which I use to make symlinks to my home directory:</p>
<pre><code>#! /bin/sh
# link all files to the home directory, asking about overwrites
cd `dirname $0`
SCRIPT_DIR=`pwd`
SCRIPT_NAME=`basename $0`
FILES=`bzr ls --versioned --non-recursive`
cd $HOME
for FILE in $FILES; do
ln --symbolic --interactive $SCRIPT_DIR/$FILE
done
rm $TARGET_DIR/$SCRIPT_NAME
</code></pre>
<p>If you want to use git instead of bzr, you can instead use:</p>
<pre><code>FILES=`git ls-tree --name-only HEAD`
</code></pre>
<p>(I had to <a href="http://stackoverflow.com/questions/1441317/how-to-list-versioned-files-in-git/1448166#1448166">ask SO</a> to figure that out)</p>
http://stackoverflow.com/questions/1441317/how-to-list-versioned-files-in-git1How to list versioned files in git?Gorgapor2009-09-17T20:58:30Z2009-09-21T14:53:37Z
<p>I would like to list the versioned files in the root directory of a git repository. To do the same thing in bazaar, you run:</p>
<pre><code>bzr ls --versioned --non-recursive
</code></pre>
<p>How do I do this in git?</p>
http://stackoverflow.com/questions/1440181/how-do-i-backport-a-commit-in-git3How do I backport a commit in git?Gorgapor2009-09-17T17:18:13Z2009-09-18T21:12:41Z
<p>So, I have a maintenance branch and a master branch in my project. If I make a commit in the maintenance branch and want to merge it forward to the master branch, that's easy:</p>
<pre><code>git checkout master; git merge maintenance
</code></pre>
<p>But if I want to go the other way around, i.e. apply a commit made to master back to my maintenance branch, how do I do that? Is this considered cherry-picking? Will it cause problems or conflicts if I merge the maintenance branch forward again?</p>
http://stackoverflow.com/questions/1438753/how-do-programming-languages-handle-huge-number-arithmetic/1438828#14388283Answer by Gorgapor for How do programming languages handle huge number arithmeticGorgapor2009-09-17T13:15:33Z2009-09-17T13:15:33Z<p>There are lots of specialized techniques for doing calculations on numbers larger than the register size. Some of them are outlined in this wikipedia article on <a href="http://en.wikipedia.org/wiki/Arbitrary-precision%5Farithmetic" rel="nofollow">arbitrary precision arithmetic</a></p>
<p>Low level languages, like C and C++, leave large number calculations to the library of your choice. One notable one is the <a href="http://gmplib.org/" rel="nofollow">GNU Multi-Precision library</a>. High level languages like Python, and others, integrate this into the core of the language, so normal numbers and very large numbers are identical to the programmer.</p>
http://stackoverflow.com/questions/1396117/how-to-create-a-view-that-explodes-a-csv-field-into-multiple-rows/1396282#13962820Answer by Gorgapor for How to create a view that explodes a csv field into multiple rows?Gorgapor2009-09-08T20:53:31Z2009-09-08T20:53:31Z<p>I would say that this should be handled in application code if possible. Since it is a CSV field, I'm assuming that the number of entries is small, say, <1000 per database row. So, the memory and cpu costs wouldn't be prohibitive to split on commas and iterate as needed.</p>
<p>Is there a compelling reason this has to be done in postgres instead of the application? If so, perhaps you could write a psql procedure to fill a temporary table with the results of splitting each row. Here's an example of using comma splitting: <a href="http://archives.postgresql.org/pgsql-novice/2004-04/msg00117.php" rel="nofollow">http://archives.postgresql.org/pgsql-novice/2004-04/msg00117.php</a></p>
http://stackoverflow.com/questions/1368724/how-does-django-determine-if-an-uploaded-image-is-valid/1368795#13687950Answer by Gorgapor for How does Django determine if an uploaded image is valid?Gorgapor2009-09-02T16:32:53Z2009-09-02T16:32:53Z<p>I looked into the Django source, in <code>django/forms/fields.py</code>, in the <code>ImageField</code> class. Django actually does use PIL to determine when an image is valid.</p>
http://stackoverflow.com/questions/1368594/is-it-a-good-idea-to-build-a-web-user-interface-using-flash/1368764#13687644Answer by Gorgapor for Is it a good idea to build a web user interface using Flash?Gorgapor2009-09-02T16:27:00Z2009-09-02T16:27:00Z<p>Please don't use flash for this.</p>
<p>If you're looking to make an "innovative, engaging interface", the right tools for this are HTML, CSS, and jQuery. You can make some very nice, very usable interfaces that are easily maintainable and accessible.</p>
<p>Here are some usability ideas to consider:</p>
<ul>
<li>If you need some eye candy, try jQuery UI. You can get draggable windows, animated transitions, and other neat effects. A little bit of this goes a long way.</li>
<li>Use autocomplete boxes to speed up selecting from large sets of data</li>
<li>Generate complex charts and graphs server-side, and load them with ajax. Precompute them if possible to improve response time.</li>
</ul>
http://stackoverflow.com/questions/1368364/what-non-web-oriented-python-frameworks-exist/1368638#13686381Answer by Gorgapor for What non web-oriented python frameworks exist?Gorgapor2009-09-02T16:08:23Z2009-09-02T16:08:23Z<p>Python's core language and standard library are an amazing framework by themselves.</p>
<p>Only languages which are deficient in some way need a framework for efficient development of applications (ex: Javascript needs jQuery or prototype).</p>
<p>The general approach with python is:</p>
<ol>
<li>Check the standard library; it probably has what you need.</li>
<li>If there's some large component that isn't in the standard library, there's probably a specific library that help with it.</li>
</ol>
http://stackoverflow.com/questions/1368331/show-only-most-recent-date-from-joined-mysql-table/1368410#13684104Answer by Gorgapor for Show only most recent date from joined MySQL tableGorgapor2009-09-02T15:31:09Z2009-09-02T15:44:05Z<p>This can be done with a subquery:</p>
<pre><code>SELECT d.docID, docTitle, c.dateAdded, c.content
FROM document d LEFT JOIN content c ON c.docID = d.docID
WHERE dateAdded IS NULL
OR dateAdded = (
SELECT MAX(dateAdded)
FROM content c2
WHERE c2.docID = d.docID
)
</code></pre>
<p>This is known as a <a href="http://dev.mysql.com/doc/refman/5.0/en/example-maximum-column-group-row.html" rel="nofollow">"groupwise maximum"</a> query</p>
<p>Edit: Made the query return all document rows, with NULLs if there is no related content.</p>
http://stackoverflow.com/questions/1368302/how-bad-is-my-query/1368333#13683334Answer by Gorgapor for How bad is my query?Gorgapor2009-09-02T15:15:29Z2009-09-02T15:15:29Z<p>If there is a good way in your chosen language to avoid building SQL yourself, use that instead. I like Python and Django, and the Django ORM makes it very easy to filter results based on user input.</p>
<p>If you are committed to building the SQL yourself, be sure to sanitize user inputs against SQL injection, and try to encapsulate SQL building in a separate module from your filter logic.</p>
<p>Also, query performance should not be your concern until it becomes a problem, which it probably won't until you have thousands or millions of rows. And when it does come time to optimize, adding a few indexes on columns used for WHERE and JOIN goes a long way.</p>
http://stackoverflow.com/questions/1367956/count-columns-in-a-html-table-with-php/1367961#13679612Answer by Gorgapor for Count columns in a HTML table with phpGorgapor2009-09-02T14:13:48Z2009-09-02T14:49:24Z<p>As others have mentioned, if you have guaranteed valid HTML, and the table is guaranteed to have equal length rows, you can use simple string manipulation. Split the string on <code><tr></code>, then count the number of <code><td></code> in each piece:</p>
<pre><code>function count_table_columns($html) {
$html = strtolower($html);
$rows = split('<tr>', $html);
foreach($rows as $row) {
if(!trim($row)) { continue; }
return substr_count($row, '<td>');
}
}
</code></pre>
<p>If there is the possibility of malformed HTML, use an HTML parser to parse the table, then iterate through the <code><tr></code> nodes, and count the subnodes of type <code><td></code>.</p>
<p>Here's one HTML parser to consider:
<a href="http://sourceforge.net/projects/simplehtmldom/" rel="nofollow">http://sourceforge.net/projects/simplehtmldom/</a></p>
http://stackoverflow.com/questions/1367883/default-parameter-values-are-evaluated-once/1367928#13679286Answer by Gorgapor for default parameter values are evaluated ONCEGorgapor2009-09-02T14:06:48Z2009-09-02T14:06:48Z<p><code>props</code> should not have a default value like that. Do this instead:</p>
<pre><code>class a(object):
def __init__(self, props=None):
if props is None:
props = {}
self.props = props
</code></pre>
<p>This is a common python <a href="http://www.ferg.org/projects/python%5Fgotchas.html#contents%5Fitem%5F6rops" rel="nofollow">"gotcha"</a>.</p>
http://stackoverflow.com/questions/1365963/diff-django-model-objects-with-manytomany-fields/1367520#13675201Answer by Gorgapor for Diff django model objects with ManyToMany fieldsGorgapor2009-09-02T12:51:15Z2009-09-02T13:12:48Z<p>First of all, you don't need to use deepcopy for this. Re-querying the sender from the database returns a "fresh" object.</p>
<pre><code>def pre_save(sender, **kwargs):
pk = kwargs['instance'].pk
instance = sender.objects.get(pk=pk)
tracking[sender] = instance
</code></pre>
<p>You can get a list of all the many-to-many fields for a class, and check the values related to the current instance:</p>
<pre><code>for field in sender._meta.local_many:
values = field.value_from_object(instance).objects.all()
# Now values is a list of related objects, which you can diff
</code></pre>
http://stackoverflow.com/questions/1362952/detail-change-after-git-pull/1363016#13630163Answer by Gorgapor for detail change after git pull Gorgapor2009-09-01T15:12:23Z2009-09-01T15:12:23Z<p>Say you do a git pull like this:</p>
<pre><code>$ git pull
remote: Counting objects: 10, done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 6 (delta 4), reused 0 (delta 0)
Unpacking objects: 100% (6/6), done.
From git@dev.example.com:reponame
a407564..9f52bed branchname -> origin/branchname
Updating a407564..9f52bed
Fast forward
.../folder/filename | 209 ++++++++-----
.../folder2/filename2 | 120 +++++++++++---------
2 files changed, 210 insertions(+), 119 deletions(-)
</code></pre>
<p>You can see the diff of what changed by using the revision numbers:</p>
<pre><code>$ git diff a407564..9f52bed
</code></pre>
http://stackoverflow.com/questions/1322380/gotchas-where-numpy-differs-from-straight-python/1324939#13249394Answer by Gorgapor for gotchas where Numpy differs from straight python ?Gorgapor2009-08-24T21:44:02Z2009-08-24T21:44:02Z<p>The biggest gotcha for me was that almost every standard operator is overloaded to distribute across the array.</p>
<p>Define a list and an array</p>
<pre><code>>>> l = range(10)
>>> l
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> import numpy
>>> a = numpy.array(l)
>>> a
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
</code></pre>
<p>Multiplication duplicates the python list, but distributes over the numpy array</p>
<pre><code>>>> l * 2
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> a * 2
array([ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18])
</code></pre>
<p>Addition and division are not defined on python lists</p>
<pre><code>>>> l + 2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only concatenate list (not "int") to list
>>> a + 2
array([ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11])
>>> l / 2.0
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for /: 'list' and 'float'
>>> a / 2.0
array([ 0. , 0.5, 1. , 1.5, 2. , 2.5, 3. , 3.5, 4. , 4.5])
</code></pre>
<p>Numpy overloads to treat lists like arrays sometimes</p>
<pre><code>>>> a + a
array([ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18])
>>> a + l
array([ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18])
</code></pre>
http://stackoverflow.com/questions/298750/how-do-i-select-text-nodes-with-jquery9How do I select text nodes with jQuery?Gorgapor2008-11-18T13:45:09Z2009-08-24T21:36:16Z
<p>I would like to get all descendant text nodes of an element, as a jQuery collection. What is the best way to do that?</p>
http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository/1089221#1089221Comment by Gorgapor on Git interoperability with a Mercurial RepositoryGorgapor2009-12-15T15:32:08Z2009-12-15T15:32:08Zdon't forget to run easy_install hg-git firsthttp://stackoverflow.com/questions/491554/how-do-i-convert-a-git-repository-to-mercurialComment by Gorgapor on How do I convert a git repository to mercurial?Gorgapor2009-12-15T15:27:34Z2009-12-15T15:27:34ZIf you need to convert from mercurial to git instead: <a href="http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository" rel="nofollow" title="git interoperability with a mercurial repository">stackoverflow.com/questions/883452/…</a>http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repositoryComment by Gorgapor on Git interoperability with a Mercurial RepositoryGorgapor2009-12-15T15:26:52Z2009-12-15T15:26:52ZIf you need to go the other direction: <a href="http://stackoverflow.com/questions/491554/how-do-i-convert-a-git-repository-to-mercurial" rel="nofollow" title="how do i convert a git repository to mercurial">stackoverflow.com/questions/491554/…</a>http://stackoverflow.com/questions/1504724/a-git-hook-for-whenever-i-change-branches/1810193#1810193Comment by Gorgapor on A git hook for whenever I change branches?Gorgapor2009-11-30T13:24:52Z2009-11-30T13:24:52ZUpdated script to always start from the repository root.http://stackoverflow.com/questions/477486/python-decimal-range-step-value/477610#477610Comment by Gorgapor on Python decimal range() step valueGorgapor2009-10-12T20:50:01Z2009-10-12T20:50:01ZThis has roundoff problems. Please look here: <a href="http://code.activestate.com/recipes/66472/" rel="nofollow">code.activestate.com/recipes/66472</a>http://stackoverflow.com/questions/237079/how-to-get-file-creation-modification-date-times-in-python/237082#237082Comment by Gorgapor on How to get file creation & modification date/times in Python?Gorgapor2009-10-06T14:52:01Z2009-10-06T14:52:01Zos.path.getmtime() is made for this, and simpler.http://stackoverflow.com/questions/1454874/allowing-user-to-rollback-from-db-audit-trail-with-sqlalchemy/1455056#1455056Comment by Gorgapor on Allowing user to rollback from db audit trail with SQLAlchemyGorgapor2009-09-29T20:12:17Z2009-09-29T20:12:17ZThis is not like source control. From the user's perspective, you have totally deleted C. You will never need to merge it in. The only reason it is still around is as an audit trail, or in case you need to manually fish out a deleted item for some reason.http://stackoverflow.com/questions/1455109/whats-a-django-python-solution-for-providing-a-one-time-url-for-people-to-downlo/1455393#1455393Comment by Gorgapor on What's a Django/Python solution for providing a one-time url for people to download files?Gorgapor2009-09-22T16:39:31Z2009-09-22T16:39:31ZYes, it's not a super fast solution, but it seems that in his situation performance is not going to be a problem. He has to physically sell each user a card, so I wouldn't expect anywhere close to even 100 downloads per day.http://stackoverflow.com/questions/1455839/how-do-i-skip-a-section-of-code-when-unittesting-in-django/1455868#1455868Comment by Gorgapor on How do I skip a section of code when unittesting in Django?Gorgapor2009-09-21T18:17:02Z2009-09-21T18:17:02ZI accepted rcoder's answer as the best solution, but I ended up using this one, because doing it the "right" way doesn't matter in this specific situation.http://stackoverflow.com/questions/1455532/ffmpeg-and-pythons-subprocess/1455541#1455541Comment by Gorgapor on FFMPEG and Pythons subprocess.Gorgapor2009-09-21T17:04:14Z2009-09-21T17:04:14ZHe is already redirecting stderr to stdout.http://stackoverflow.com/questions/1454984/how-to-define-properties-in-init/1455178#1455178Comment by Gorgapor on How to define properties in __init__Gorgapor2009-09-21T16:30:02Z2009-09-21T16:30:02Z@pkit: Edited answer to talk about subclassing.http://stackoverflow.com/questions/1455160/how-to-set-ignorecase-flag-for-part-of-regular-expression-in-python/1455303#1455303Comment by Gorgapor on How to set ignorecase flag for part of regular expression in Python?Gorgapor2009-09-21T16:25:12Z2009-09-21T16:25:12Z@Alex Martelli: Thanks. Search is better, you're right. Fixed.http://stackoverflow.com/questions/1455160/how-to-set-ignorecase-flag-for-part-of-regular-expression-in-python/1455179#1455179Comment by Gorgapor on How to set ignorecase flag for part of regular expression in Python?Gorgapor2009-09-21T15:46:24Z2009-09-21T15:46:24ZThis is wrong. (?i) sets the ignore case flag for the whole regular expression, and must be used at the beginning of the pattern.http://stackoverflow.com/questions/1454984/how-to-define-properties-in-init/1455051#1455051Comment by Gorgapor on How to define properties in __init__Gorgapor2009-09-21T15:33:57Z2009-09-21T15:33:57ZI disagree that the right way to do it would be a metaclass. Metaclasses are too powerful for this, because this can be accomplished using less powerful means.http://stackoverflow.com/questions/1454200/which-is-the-fastest-javascript-engine-and-does-it-really-matterComment by Gorgapor on Which is the fastest javascript engine, and does it really matter?Gorgapor2009-09-21T15:24:59Z2009-09-21T15:24:59ZA better question is "Which is the slowest JavaScript engine my website should support?". For now, the answer to that is IE7.