User Ignacio Vazquez-Abrams - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T12:09:22Zhttp://stackoverflow.com/feeds/user/20862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable/818903#8189039Answer by Ignacio Vazquez-Abrams for Is it possible to implement a Python for range loop without an iterator variable?Ignacio Vazquez-Abrams2009-05-04T05:44:00Z2009-09-26T18:59:39Z<p>What everyone suggesting you to use _ isn't saying is that _ is frequently used as a shortcut to one of the <a href="http://docs.python.org/library/gettext.html" rel="nofollow">gettext</a> functions, so if you want your software to be available in more than one language then you're best off avoiding using it for other purposes.</p>
<pre><code>import gettext
gettext.bindtextdomain('myapplication', '/path/to/my/language/directory')
gettext.textdomain('myapplication')
_ = gettext.gettext
# ...
print _('This is a translatable string.')
</code></pre>
http://stackoverflow.com/questions/852414/how-to-dynamically-compose-an-or-query-filter-in-django/898170#8981700Answer by Ignacio Vazquez-Abrams for How to dynamically compose an OR query filter in Django?Ignacio Vazquez-Abrams2009-05-22T14:34:19Z2009-05-22T14:34:19Z<pre><code>values = [1, 2, 3]
query = reduce(operator.or_, (Q(pk=x) for x in values))
</code></pre>
http://stackoverflow.com/questions/857620/query-about-shared-library-performance/857656#8576561Answer by Ignacio Vazquez-Abrams for Query about shared library performanceIgnacio Vazquez-Abrams2009-05-13T12:23:24Z2009-05-13T12:23:24Z<p>Once the routines in the DLL have been thunked in, there is no performance difference other than an additional CALL/RET when calling them.</p>
http://stackoverflow.com/questions/856992/does-python-have-a-calluserfunc-like-php/857294#8572943Answer by Ignacio Vazquez-Abrams for Does python have a call_user_func() like PHP?Ignacio Vazquez-Abrams2009-05-13T10:55:52Z2009-05-13T10:55:52Z<p>If you need to use classes from far-off places (and in fact, if you need any classes at all) then you're best off creating and using a dictionary for them:</p>
<pre><code>funcs = {'Eggs': foo.Eggs, 'Spam': bar.Spam}
def call_func(func_name, *args, **kwargs):
if not func_name in funcs:
raise ValueError('Function %r not available' % (func_name,))
return funcs[func_name](*args, **kwargs)
</code></pre>
http://stackoverflow.com/questions/845571/listing-all-tables-in-a-database/845572#8455724Answer by Ignacio Vazquez-Abrams for Listing all tables in a databaseIgnacio Vazquez-Abrams2009-05-10T16:03:49Z2009-05-10T16:03:49Z<p>No. They all love doing it their own little way.</p>
http://stackoverflow.com/questions/845556/how-to-ignore-hidden-files-with-opendir-and-readdir-in-c-library/845565#8455651Answer by Ignacio Vazquez-Abrams for How to ignore hidden files with opendir and readdir in C libraryIgnacio Vazquez-Abrams2009-05-10T15:59:01Z2009-05-10T15:59:01Z<p>This behavior is <em>exactly</em> like what <code>ls -a</code> does. If you want filtering then you'll need to do it after the fact.</p>
http://stackoverflow.com/questions/843671/profiling-in-python-who-called-the-function/843703#8437033Answer by Ignacio Vazquez-Abrams for Profiling in Python: Who called the function?Ignacio Vazquez-Abrams2009-05-09T17:25:37Z2009-05-09T17:25:37Z<p><a href="http://docs.python.org/library/inspect.html#inspect.stack" rel="nofollow">inspect.stack()</a> will give you the current caller stack.</p>
http://stackoverflow.com/questions/843580/writing-a-init-function-to-be-used-in-django-model/843669#8436693Answer by Ignacio Vazquez-Abrams for Writing a __init__ function to be used in django modelIgnacio Vazquez-Abrams2009-05-09T17:10:33Z2009-05-09T17:10:33Z<p>Django expects the signature of a model's constructor to be <code>(self, *args, **kwargs)</code>, or some reasonable facsimile. Your changing the signature to something completely incompatible has broken it.</p>
http://stackoverflow.com/questions/842557/how-to-prevent-a-block-of-code-from-being-interrupted-by-keyboardinterrupt-in-pyt/842807#8428072Answer by Ignacio Vazquez-Abrams for How to prevent a block of code from being interrupted by KeyboardInterrupt in Python?Ignacio Vazquez-Abrams2009-05-09T06:26:34Z2009-05-09T06:26:34Z<p>Use the <a href="http://docs.python.org/library/signal.html" rel="nofollow">signal</a> module to disable SIGINT for the duration of the process:</p>
<pre><code>s = signal.signal(signal.SIGINT, signal.SIG_IGN)
do_important_stuff()
signal.signal(signal.SIGINT, s)
</code></pre>
http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/816268#8162681Answer by Ignacio Vazquez-Abrams for What's a good way to mix RSS feeds using Python?Ignacio Vazquez-Abrams2009-05-03T03:34:07Z2009-05-03T03:34:07Z<p> <a href="http://www.planetplanet.org/" rel="nofollow">Planet is a feed aggregator written in Python. Its development is basically dead, but the code lives on in several forks, including Planet Venus</a>.</p>
http://stackoverflow.com/questions/815446/c-web-server-implementing-a-dynamic-language/815491#8154910Answer by Ignacio Vazquez-Abrams for C# Web Server: Implementing a Dynamic LanguageIgnacio Vazquez-Abrams2009-05-02T19:56:27Z2009-05-02T19:56:27Z<p>Perhaps you should take a look at <a href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython" rel="nofollow">IronPython</a>.</p>
http://stackoverflow.com/questions/805660/how-to-get-field-names-when-running-plain-sql-query-in-django/805778#8057783Answer by Ignacio Vazquez-Abrams for How to get field names when running plain sql query in djangoIgnacio Vazquez-Abrams2009-04-30T07:30:21Z2009-04-30T07:30:21Z<p>According to <a href="http://www.python.org/dev/peps/pep-0249/" rel="nofollow">PEP 249</a>, you can try using cursor.description, but this is not entirely reliable.</p>
http://stackoverflow.com/questions/780169/how-do-i-create-collision-detections-for-my-bouncing-balls/780240#7802402Answer by Ignacio Vazquez-Abrams for How do I create collision detections for my bouncing balls?Ignacio Vazquez-Abrams2009-04-23T03:49:51Z2009-04-23T03:49:51Z<p>Detecting a collision is only the first step. Let's break that down.</p>
<p>The fastest thing to do is calculate their square bounding boxes and see if those collide. Two of the sides need to cross (top of 1 and bottom or 2, and left of 1 and right of 2, or vice versa) in order for the bounding boxes to overlap. No overlap, no collision.</p>
<p>Now, when they <em>do</em> overlap, you need to calculate the distance between them. If this distance is more than the sums of the radii of the balls, then no collision.</p>
<p>Okay! We have two balls colliding. <em>Now</em> what? Well, they have to bounce off each other. Which way they bounce depends on a few factors.</p>
<p>The first is their elasticity. Two rubber balls bouncing off each other rebound differently than two glass balls.</p>
<p>The second is their initial velocity. Inertia states that they'll want to keep going in mostly the same direction they started in.</p>
<p>The third is the mass of the balls. A ball with smaller mass will rebound off a much larger mass with a higher velocity.</p>
<p>Let's deal with the second and third factors first, since they are intertwined.</p>
<p>Two balls will rarely hit exactly dead on. Glancing blows are far more likely. In any case, the impact will happen along the normal of the tangent where the balls collide. You need to calculate the vector component of both along this normal given their initial velocities. This will result in a pair of normal velocities that both balls will bring to the collision. Add up the sum and store it somewhere handy.</p>
<p>Now we have to figure out what each ball will take away from it. The resulting normal velocity of each ball is inversely proportional to the given ball's mass. That is to say, take the reciprocal of each ball's mass, add both masses together, and then parcel out the resultant normal velocity away from the collision based on the ratio of the ball's mass to the sum of the reciprocal of both ball's masses. Then add the tangential velocity to this, and you get the resultant velocity of the ball.</p>
<p>Elasticity is mostly the same, except it requires some basic calculus due to the fact that the balls are still moving even as they compress. I'll leave it to you to find the relevant math.</p>
http://stackoverflow.com/questions/775880/access-eggs-in-python/775908#7759081Answer by Ignacio Vazquez-Abrams for access eggs in python?Ignacio Vazquez-Abrams2009-04-22T06:16:02Z2009-04-22T06:16:02Z<p>Adding the egg to PYTHONPATH or to sys.path will allow you to access the modules and packages within.</p>
http://stackoverflow.com/questions/775580/python-bindings-for-libparted/775903#7759031Answer by Ignacio Vazquez-Abrams for Python bindings for libparted?Ignacio Vazquez-Abrams2009-04-22T06:13:13Z2009-04-22T06:13:13Z<p>You mean like <a href="https://fedorahosted.org/pyparted/" rel="nofollow">PyParted</a>?</p>
http://stackoverflow.com/questions/767315/is-there-a-difference-between-setting-javahome-through-cmd-line-or-gui/767328#7673282Answer by Ignacio Vazquez-Abrams for Is there a difference between setting JAVA_HOME through cmd line or GUIIgnacio Vazquez-Abrams2009-04-20T08:04:13Z2009-04-20T08:04:13Z<p>Changes made to a parent process only propagate to newly-created children; try opening a new command prompt and inspecting the value there.</p>
http://stackoverflow.com/questions/764081/modwsgi-python-sys-path-exend-problems/766705#7667051Answer by Ignacio Vazquez-Abrams for mod_wsgi/python sys.path.exend problemsIgnacio Vazquez-Abrams2009-04-20T02:51:33Z2009-04-20T02:51:33Z<p>The mod_wsgi <a href="http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode" rel="nofollow">documentation on code reloading</a> covers this.</p>
http://stackoverflow.com/questions/766601/modwsgi-force-reload-modules/766703#7667031Answer by Ignacio Vazquez-Abrams for mod_wsgi force reload modulesIgnacio Vazquez-Abrams2009-04-20T02:50:17Z2009-04-20T02:50:17Z<p>The mod_wsgi <a href="http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode" rel="nofollow">documentation on code reloading</a> is your best bet for an answer.</p>
http://stackoverflow.com/questions/763103/auto-get-to-argument-of-view/763357#7633571Answer by Ignacio Vazquez-Abrams for Auto GET to argument of viewIgnacio Vazquez-Abrams2009-04-18T12:26:15Z2009-04-18T12:26:15Z<p>Instead of fighting Django, why not just request some_view/10/20 and then set up urls.py to extract the arguments?</p>
http://stackoverflow.com/questions/707242/create-a-standalone-windows-exe-which-does-not-require-pythonxx-dll/707310#7073104Answer by Ignacio Vazquez-Abrams for Create a standalone windows exe which does not require pythonXX.dllIgnacio Vazquez-Abrams2009-04-01T20:56:55Z2009-04-01T20:56:55Z<p>Due to how Windows' dynamic linker works you cannot use the static library if you use .pyd or .dll Python modules; DLLs loaded in Windows do not automatically share their symbol space with the executable and so require a separate DLL containing the Python symbols.</p>
http://stackoverflow.com/questions/307494/anonymous-unbound-functions-in-python/700118#7001180Answer by Ignacio Vazquez-Abrams for anonymous unbound functions in pythonIgnacio Vazquez-Abrams2009-03-31T05:23:18Z2009-03-31T05:23:18Z<p>Just a quick note that most Python operators already have an equivalent function in the <a href="http://docs.python.org/library/operator.html" rel="nofollow">operator</a> module.</p>
http://stackoverflow.com/questions/700016/format-a-number-as-a-string/700066#7000662Answer by Ignacio Vazquez-Abrams for Format a number as a stringIgnacio Vazquez-Abrams2009-03-31T05:03:39Z2009-03-31T05:03:39Z<p>'%*s/%s' % (len(str(a)), b, a)</p>
http://stackoverflow.com/questions/688461/reading-and-grouping-a-list-of-data-in-python/688492#6884921Answer by Ignacio Vazquez-Abrams for Reading and Grouping a List of Data in PythonIgnacio Vazquez-Abrams2009-03-27T03:56:19Z2009-03-27T03:56:19Z<p><a href="http://docs.python.org/library/itertools.html#itertools.groupby" rel="nofollow">itertools.groupby()</a> can get you by.</p>
<pre><code>itertools.groupby(biglist, operator.itemgetter(2))
</code></pre>
http://stackoverflow.com/questions/688302/how-do-i-make-a-command-line-text-editor/688353#6883533Answer by Ignacio Vazquez-Abrams for How do I make a command line text editor?Ignacio Vazquez-Abrams2009-03-27T02:48:04Z2009-03-27T02:48:04Z<p>Another option if you want to write a TUI (Text User Interface) without having to descend to curses is <a href="http://www.wanware.com/tsgdocs/snack.html" rel="nofollow">Snack</a>, which comes with <a href="https://fedorahosted.org/newt/" rel="nofollow">Newt</a>.</p>
http://stackoverflow.com/questions/680826/python-create-slice-object-from-string/681949#6819491Answer by Ignacio Vazquez-Abrams for python create slice object from stringIgnacio Vazquez-Abrams2009-03-25T14:51:40Z2009-03-25T14:51:40Z<pre><code>slice(*[{True: lambda n: None, False: int}[x == ''](x) for x in (mystring.split(':') + ['', '', ''])[:3]])
</code></pre>
http://stackoverflow.com/questions/674600/python-init-and-self-confusion/674670#6746702Answer by Ignacio Vazquez-Abrams for Python, __init__ and self confusionIgnacio Vazquez-Abrams2009-03-23T18:32:44Z2009-03-23T18:32:44Z<p>Functions/methods can be written outside of a class and then used for a technique in Python called <strong>monkeypatching</strong>:</p>
<pre><code>class C(object):
def __init__(self):
self.foo = 'bar'
def __output(self):
print self.foo
C.output = __output
c = C()
c.output()
</code></pre>
http://stackoverflow.com/questions/672635/help-me-turn-these-data-structures-into-database-tables/672694#6726941Answer by Ignacio Vazquez-Abrams for Help me turn these data structures into database tablesIgnacio Vazquez-Abrams2009-03-23T09:35:16Z2009-03-23T09:35:16Z<pre><code>CREATE TABLE entries (
INTEGER id NOT NULL AUTOINCREMENT,
VARCHAR(XX) name,
PRIMARY KEY(id)
)
CREATE TABLE properties (
INTEGER id NOT NULL AUTOINCREMENT,
VARCHAR(XX) name,
VARCHAR(XX) value,
INTEGER entryid NOT NULL,
FOREIGN KEY(entryid) REFERENCES entries (id)
)
</code></pre>
http://stackoverflow.com/questions/672553/how-to-add-css-to-a-feed-that-is-not-mine/672558#6725581Answer by Ignacio Vazquez-Abrams for How to add css to a feed that is not mine.Ignacio Vazquez-Abrams2009-03-23T08:36:01Z2009-03-23T08:36:01Z<p>No. CSS is used for styling elements, not extracting them.</p>
http://stackoverflow.com/questions/672252/is-there-a-way-or-best-practice-to-markup-the-head-th-equivalent-of-a-csv-d/672256#6722564Answer by Ignacio Vazquez-Abrams for Is there a way (or best practice) to markup the head (<th> equivalent) of a CSV document?Ignacio Vazquez-Abrams2009-03-23T04:38:43Z2009-03-23T04:38:43Z<p>Nope. And to make it even more fun, there's nothing that says that the header line has to be present at all. Good times, good times...</p>
http://stackoverflow.com/questions/672235/mysqlconnect-on-localhost/672245#6722451Answer by Ignacio Vazquez-Abrams for mysql_connect() on localhostIgnacio Vazquez-Abrams2009-03-23T04:31:20Z2009-03-23T04:31:20Z<p>The resulting page is blank when there's an error. One of the more common errors to make in your setup is to forget to install either the php-mysql or mysql-server packages. Verify that they're installed, and if not install either or both and then restart the httpd service, and start the mysql service if not running.</p>
http://stackoverflow.com/questions/842059/is-there-a-portable-way-to-get-the-current-username-in-python/842096#842096Comment by Ignacio Vazquez-Abrams on Is there a portable way to get the current username in Python?Ignacio Vazquez-Abrams2009-05-09T07:50:10Z2009-05-09T07:50:10ZOS X is considered Unix for purposes of the libref.http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/816268#816268Comment by Ignacio Vazquez-Abrams on What's a good way to mix RSS feeds using Python?Ignacio Vazquez-Abrams2009-05-03T03:36:22Z2009-05-03T03:36:22ZSO seems to have issues with a link at the beginning of the answer. The URL for Planet Venus is <a href="http://intertwingly.net/code/venus/" rel="nofollow">intertwingly.net/code/venus</a> .http://stackoverflow.com/questions/780169/how-do-i-create-collision-detections-for-my-bouncing-balls/780240#780240Comment by Ignacio Vazquez-Abrams on How do I create collision detections for my bouncing balls?Ignacio Vazquez-Abrams2009-04-23T04:43:38Z2009-04-23T04:43:38Z@jfclavette: I'm curious to know why you think a distance calculation is faster than "abs(x1 - x2) <= (r1 + r2) >= abs(y1 - y2)".http://stackoverflow.com/questions/521476/why-true-false-is-capitalized-in-python/718322#718322Comment by Ignacio Vazquez-Abrams on Why True/False is capitalized in Python?Ignacio Vazquez-Abrams2009-04-05T04:29:44Z2009-04-05T04:29:44ZYou mean like with None and Ellipsis, the other built-in named literals?http://stackoverflow.com/questions/674600/python-init-and-self-confusion/674670#674670Comment by Ignacio Vazquez-Abrams on Python, __init__ and self confusionIgnacio Vazquez-Abrams2009-03-23T19:14:36Z2009-03-23T19:14:36ZI can give lots of examples but they all reduce to setting an attribute on a class to a function defined outside of it. Monkeypatching is most useful when you can't modify the class itself, either because it's part of another library or because you don't have the source code.http://stackoverflow.com/questions/674600/python-init-and-self-confusion/674619#674619Comment by Ignacio Vazquez-Abrams on Python, __init__ and self confusionIgnacio Vazquez-Abrams2009-03-23T19:05:16Z2009-03-23T19:05:16ZPerhaps your confusion is an indication that the given answer is not what you're looking for.http://stackoverflow.com/questions/672702/how-to-delete-duplicates-in-mysql-tableComment by Ignacio Vazquez-Abrams on How to delete Duplicates in MySQL table.Ignacio Vazquez-Abrams2009-03-23T09:39:00Z2009-03-23T09:39:00ZLooks fine to me. Are they using a version of MySQL that supports subqueries?http://stackoverflow.com/questions/670964/how-do-i-update-mysql-row-in-php/671356#671356Comment by Ignacio Vazquez-Abrams on How do I update MySQL row in PHP?Ignacio Vazquez-Abrams2009-03-22T17:56:31Z2009-03-22T17:56:31ZEven <i>if</i> id was used internally by PHP, you wouldn't need to quote it; it's only if MySQL used it internally that you'd need to quote it. The query is in a string and so does not affect PHP.http://stackoverflow.com/questions/671260/tips-for-managing-a-large-number-of-files/671278#671278Comment by Ignacio Vazquez-Abrams on Tips for managing a large number of files?Ignacio Vazquez-Abrams2009-03-22T16:56:07Z2009-03-22T16:56:07ZIf you use a hash for your filename then the only place where the non-ASCII characters will show up is in the database, and it's probably easier to handle them in the database than on the filesystem.http://stackoverflow.com/questions/670663/could-flash-media-player-play-wmv-asf-format-media/670716#670716Comment by Ignacio Vazquez-Abrams on could flash media player play wmv/asf format media?Ignacio Vazquez-Abrams2009-03-22T09:15:59Z2009-03-22T09:15:59ZNothing on what Youtube does specifically, but mplayer (<a href="http://www.mplayerhq.hu/" rel="nofollow">mplayerhq.hu</a>) will convert between different video formats.http://stackoverflow.com/questions/670663/could-flash-media-player-play-wmv-asf-format-media/670716#670716Comment by Ignacio Vazquez-Abrams on could flash media player play wmv/asf format media?Ignacio Vazquez-Abrams2009-03-22T08:55:37Z2009-03-22T08:55:37ZYoutube lets you upload the video in a select range of formats, then converts it to .flv on the server side.http://stackoverflow.com/questions/668754/display-series-of-images-with-next-buttonComment by Ignacio Vazquez-Abrams on display series of images with next buttonIgnacio Vazquez-Abrams2009-03-21T04:56:52Z2009-03-21T04:56:52ZAny particular language? Framework? Any other info that gives us a shred of an idea of what you need help with?http://stackoverflow.com/questions/664219/uninitialized-value-in-python/664222#664222Comment by Ignacio Vazquez-Abrams on Uninitialized value in Python?Ignacio Vazquez-Abrams2009-03-20T00:52:54Z2009-03-20T00:52:54ZYou will get a ULE if val is assigned to some time later within the same function.http://stackoverflow.com/questions/649191/why-are-python-objects-of-different-types-ordered-by-type-names/649199#649199Comment by Ignacio Vazquez-Abrams on Why are Python objects of different types ordered by type names?Ignacio Vazquez-Abrams2009-03-16T04:13:02Z2009-03-16T04:13:02ZDo note that Python 3.x <i>will</i> raise an exception when comparing different non-coercible types.http://stackoverflow.com/questions/640191/is-there-any-linux-distribution-that-comes-with-python-2-6-yet/640267#640267Comment by Ignacio Vazquez-Abrams on Is there any linux distribution that comes with python 2.6 yet?Ignacio Vazquez-Abrams2009-03-13T01:49:13Z2009-03-13T01:49:13Z2.6, not 2.6.5. And it would be 2.6.1 but for the runtime linking errors. Oh, and DON'T take the Rawhide package and install it under 10 unless you like having a broken system.