User dF - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T06:18:06Zhttp://stackoverflow.com/feeds/user/3002http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-network3Small "embeddable" database that can also be synced over the network?dF2009-11-22T17:10:42Z2009-11-24T15:26:55Z
<p>I am looking for a small database that can be "embedded" into my Python application without running a separate server, as one can do with <a href="http://www.sqlite.org/" rel="nofollow">SQLite</a> or <a href="http://www.equi4.com/metakit/" rel="nofollow">Metakit</a>. I don't need an SQL database, in fact storing free-form data like Python dictionaries or JSON is preferable. </p>
<p>The other requirement is that to be able to run an instance of the database on a server, and have instances of my application (clients) sync the database with the server (two-way), similar to what <a href="http://couchdb.apache.org/" rel="nofollow">CouchDB</a> replication can do. </p>
<p>Is there a database that will do this? </p>
http://stackoverflow.com/questions/473099/python-how-to-check-if-a-given-index-in-a-dict-exists-yet/473108#47310816Answer by dF for python: how to check if a given index in a dict exists yetdF2009-01-23T14:38:49Z2009-11-18T01:11:00Z<p>You are looking for <a href="http://docs.python.org/library/collections.html#defaultdict" rel="nofollow"><code>collections.defaultdict</code></a> (available for Python 2.5+). This</p>
<pre><code>from collections import defaultdict
my_dict = defaultdict(int)
my_dict[key] += 1
</code></pre>
<p>will do what you want.</p>
<p>By the way, if there is no value for a given key, you will <em>not</em> get <code>None</code> when accessing the dict -- a <code>KeyError</code> will be raised. So if you want to use a regular <code>dict</code>, instead of your code you would use</p>
<pre><code>if key in my_dict:
my_dict[key] += 1
else:
my_dict[key] = 1
</code></pre>
http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features11What are some useful TextMate features?dF2008-08-29T02:03:34Z2009-10-17T08:15:42Z
<p>I noticed that many people here use <a href="http://macromates.com/" rel="nofollow">TextMate</a> for coding on OS X. I've recently started using it, and although I like its minimalistic interface, it makes it harder to stumble upon cool features if you don't know what you're looking for.</p>
<p>So, what feature have you found most helpful for coding (mainly in Python)? Are there any third-party bundles I should know about, besides what's included?</p>
http://stackoverflow.com/questions/1575884/how-to-make-links-clickable-in-a-qtextedit1How to make links clickable in a QTextEdit?dF2009-10-16T00:38:39Z2009-10-16T10:43:09Z
<p>Is there a way to make links clickable in a <a href="http://doc.trolltech.com/4.5/qtextedit.html" rel="nofollow"><code>QTextEdit</code></a>?</p>
<p>I know I can use a <code>QTextBrowser</code> and connect to <code>anchorClicked</code> but I'd rather keep the editing and viewing all in one widget, and have clickable links when I set the widget to read-only mode.</p>
<p>Is this possible or am I stuck with having two separate widgets in a stack and switching between them?</p>
http://stackoverflow.com/questions/1520934/in-qt4-how-to-check-if-paintevent-is-triggered-by-a-resize1In Qt4, how to check if paintEvent is triggered by a resize?dF2009-10-05T15:59:48Z2009-10-15T21:02:14Z
<p>In a Qt4 application, is it possible to tell inside a <code>paintEvent()</code> handler whether the repaint was triggered by a resize or not? </p>
<p>I have a widget which is very slow to redraw (a complicated plot), and I want to speed up resizes by just blitting a resized pixmap <em>while</em> the widget is being resized, and only redraw the widget when the resize is complete.</p>
<p>I've tried setting/unsetting a flag at the beginning and end of <code>resizeEvent()</code> but that doesn't seem to work (i.e. the flag is always off in <code>paintEvent()</code>).</p>
http://stackoverflow.com/questions/1559709/embedded-objects-in-ms-office-documents-using-python1Embedded objects in MS Office documents using Python?dF2009-10-13T11:43:31Z2009-10-13T11:56:10Z
<p>How could I create embedded objects in an MS office document using Python? </p>
<p>I don't need anything fancy, just what one used to do in the first version of OLE: doing a copy-paste from my application into e.g. MS Word should give me an object embedded in the Word document, which I can then double-click to open a copy of my application and edit the object.</p>
<p>Can this be done from a Python/PyQt application (perhaps using pythoncom?) Are there any simple examples of this that can get me started?</p>
http://stackoverflow.com/questions/34662/must-see-tech-talks-presentations18Must-see tech talks/presentations?dF2008-08-29T16:35:55Z2009-09-17T13:15:03Z
<p>There are now several places that offer free audio or video tech talks/presentations online: I'm thinking of <a href="http://research.google.com/video.html" rel="nofollow">Google Tech Talks</a>, <a href="http://itc.conversationsnetwork.org/" rel="nofollow">IT Conversations</a>, as well as some of the sites recommended in the answers to <a href="http://beta.stackoverflow.com/questions/24319/where-can-i-find-good-technical-video-podcasts-or-videos-for-download" rel="nofollow">this question</a>.</p>
<p>So: are there any <strong>specific presentation(s)</strong> that you consider as "must-see", either in your area of interest or for all programmers/tech folk?</p>
http://stackoverflow.com/questions/498110/converting-a-repository-from-git-to-subversion1Converting a repository from git to subversiondF2009-01-31T02:55:45Z2009-08-10T22:14:29Z
<p>Reasons for doing this aside, is there a reasonable way to <strong>convert an entire git repository to subversion</strong>?</p>
<p>I can find only tons on information on migrating <em>from</em> subversion <em>to</em> git, and exchanging changesets between the two, but not for doing a simple conversion of the entire git repository to svn. </p>
http://stackoverflow.com/questions/1150581/how-to-escape-a-hash-char-in-python/1151211#11512111Answer by dF for How to escape a hash (#) char in python?dF2009-07-19T23:47:49Z2009-07-19T23:47:49Z<p>The question has been answered, but this is just another alternative (based on Adam Bernier's answer + tuple unpacking) which I think is the cleanest:</p>
<pre><code>for row in self.cursor:
p = Patient()
p.last, p.pcp = row
</code></pre>
http://stackoverflow.com/questions/1123000/does-python-have-anonymous-classes/1123026#112302614Answer by dF for Does Python have anonymous classes?dF2009-07-14T01:32:06Z2009-07-14T02:38:34Z<p>The pythonic way would be to use a <code>dict</code>:</p>
<pre><code>>>> foo = dict(x=1, y=2)
>>> bar = dict(y=2, x=1)
>>> foo == bar
True
</code></pre>
<p>Meets all your requirements except that you still have to do <code>foo['x']</code> instead of <code>foo.x</code>. </p>
<p>If that's a problem, you could easily define a class such as:</p>
<pre><code>class Bunch(object):
def __init__(self, **kwds):
self.__dict__.update(kwds)
def __eq__(self, other):
return self.__dict__ == other.__dict__
</code></pre>
<p>Or, a nice and short one</p>
<pre><code>class Bunch(dict):
__getattr__, __setattr__ = dict.get, dict.__setitem__
</code></pre>
<p>(but note that this second one has problems as Alex points out in his comment!)</p>
http://stackoverflow.com/questions/454355/security-of-rest-authentication-schemes6Security of REST authentication schemesdF2009-01-18T00:12:10Z2009-06-26T17:34:59Z
<p>Background:</p>
<p>I'm designing the authentication scheme for a REST web service. This doesn't "really" need to be secure (it's more of a personal project) but I want to make it as secure as possible as an exercise/learning experience. I don't want to use SSL since I don't want the hassle and, mostly, the expense of setting it up.</p>
<p>These SO questions were especially useful to get me started:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/319530/restful-authentication">RESTful Authentication</a></li>
<li><a href="http://stackoverflow.com/questions/7551/best-practices-for-securing-a-rest-api-web-service">Best Practices for securing a REST API / web service</a></li>
<li><a href="http://stackoverflow.com/questions/409338/examples-of-the-best-soap-rest-rpc-web-apis-and-why-do-you-like-them-and-whats">Examples of the best SOAP/REST/RPC web APIs? And why do you like them? And what’s wrong with them?</a></li>
</ul>
<p>I'm thinking of using a simplified version of <a href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/index.html?RESTAuthentication.html" rel="nofollow">Amazon S3's authentication</a> (I like <a href="http://oauth.net/" rel="nofollow">OAuth</a> but it seems too complicated for my needs). I'm adding a randomly generated <a href="http://en.wikipedia.org/wiki/Cryptographic_nonce" rel="nofollow">nonce</a>, supplied by the server, to the request, to prevent replay attacks.</p>
<p>To get to the question: </p>
<p>Both S3 and OAuth rely on signing the request URL along with a few selected headers. <strong>Neither of them sign the request body</strong> for POST or PUT requests. Isn't this vulnerable to a man-in-the-middle attack, which keeps the url and headers and replaces the request body with any data the attacker wants?</p>
<p>It seems like I can guard against this by including a hash of the request body in the string that gets signed. Is this secure?</p>
http://stackoverflow.com/questions/1030070/does-python-have-a-causesexception-function/1030085#10300857Answer by dF for Does python have a "causes_exception()" function?dF2009-06-23T00:39:25Z2009-06-23T00:39:25Z<p>No, as far as I know there is no such function in the standard library. How would it be useful? I mean, presumably you would use it like this:</p>
<pre><code>if causes_exception(func):
# do something
else:
# do something else
</code></pre>
<p>But instead, you could just do </p>
<pre><code>try:
func()
except SomeException:
# do something else
else:
# do something
</code></pre>
http://stackoverflow.com/questions/1015047/logging-all-exceptions-in-a-pyqt4-app/1015272#10152722Answer by dF for Logging All Exceptions in a pyqt4 appdF2009-06-18T21:27:06Z2009-06-18T21:27:06Z<p>You need to override <a href="http://docs.python.org/library/sys.html" rel="nofollow"><code>sys.excepthook</code></a></p>
<pre><code>def my_excepthook(type, value, tback):
# log the exception here
# then call the default handler
sys.__excepthook__(type, value, tback)
sys.excepthook = my_excepthook
</code></pre>
http://stackoverflow.com/questions/932069/building-a-minimal-plugin-architecture-in-python8Building a minimal plugin architecture in Python.dF2009-05-31T13:46:41Z2009-06-02T00:35:56Z
<p>I have an application, written in Python, which is used by a fairly technical audience (scientists). </p>
<p>I'm looking for a good way to make the application extensible by the users, i.e. a scripting/plugin architecture. </p>
<p>I am looking for something <strong>extremely lightweight</strong>. Most scripts, or plugins, are not going to be developed and distributed by a third-party and installed, but are going to be something whipped up by a user in a few minutes to automate a repeating task, add support for a file format, etc. So plugins should have the absolute minimum boilerplate code, and require no 'installation' other than copying to a folder (so something like setuptools entry points, or the Zope plugin architecture seems like too much.)</p>
<p>Are there any systems like this already out there, or any projects that implement a similar scheme that I should look at for ideas / inspiration?</p>
http://stackoverflow.com/questions/903557/pythons-with-statement-versus-with-as/904590#9045905Answer by dF for Python's 'with' statement versus 'with .. as'dF2009-05-24T20:34:40Z2009-05-24T20:34:40Z<p>It may be a little confusing at first glance, but </p>
<pre><code>with babby() as b:
...
</code></pre>
<p>is <em>not</em> equivalent to</p>
<pre><code>b = babby()
with b:
...
</code></pre>
<p>To see why, here's how the context manager would be implemented:</p>
<pre><code>class babby(object):
def __enter__(self):
return 'frigth'
def __exit__(self, type, value, tb):
pass
</code></pre>
<p>In the first case, the name <code>b</code> will be bound to whatever is returned from the <code>__enter__</code> method of the context manager. This is often the context manager itself (for example for file objects), but it doesn't have to be; in this case it's the string <code>'frigth'</code>, and in your case it's the database cursor.</p>
<p>In the second case, <code>b</code> is the context manager object itself.</p>
http://stackoverflow.com/questions/904036/chain-calling-parent-constructors-in-python/904078#90407810Answer by dF for Chain-calling parent constructors in pythondF2009-05-24T16:12:27Z2009-05-24T16:12:27Z<p>The way you are doing it is indeed the recommended one (for Python 2.x). </p>
<p>The issue of whether the class is passed explicitly to <code>super</code> is a matter of style rather than functionality. Passing the class to <code>super</code> fits in with Python's philosophy of "explicit is better than implicit".</p>
http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/902774#9027744Answer by dF for Saving a Numpy array as an imagedF2009-05-24T00:26:05Z2009-05-24T00:26:05Z<p>You can use <a href="http://code.google.com/p/pypng/" rel="nofollow">PyPNG</a>. It's a pure Python (no dependencies) open source PNG encoder/decoder and it <a href="http://packages.python.org/pypng/ex.html#numpy" rel="nofollow">supports</a> writing NumPy arrays as images.</p>
http://stackoverflow.com/questions/901070/finding-substring/901418#9014181Answer by dF for finding substring dF2009-05-23T12:06:24Z2009-05-23T12:06:24Z<p>Another way:</p>
<pre><code>def findbetween(text, begin, end):
for match in re.findall(begin + '.*' +end, text):
yield match
for m in findbetween(match[1:], begin, end):
yield m
for m in findbetween(match[:-1], begin, end):
yield m
>>> list(findbetween('KANNKAAN', 'K', 'N'))
['KANNKAAN', 'KAAN', 'KANN', 'KAN']
</code></pre>
http://stackoverflow.com/questions/901391/dynamic-function-calls-in-python-using-xmlrpc/901400#9014001Answer by dF for Dynamic function calls in Python using XMLRPCdF2009-05-23T11:53:56Z2009-05-23T11:53:56Z<p>You <em>can</em> use <code>getattr</code> to get the function name from the server proxy, so calling the function like this will work:</p>
<pre><code>getattr(rpc, function_name)(*params)
</code></pre>
http://stackoverflow.com/questions/873544/can-zlib-compressed-string-contain-whitespace/873568#8735684Answer by dF for Can zlib-compressed string contain whitespace?dF2009-05-16T23:47:11Z2009-05-20T00:25:33Z<p>Any byte can appear in a zlib-compresed string. </p>
<p>In fact, for a long enough properly compressed string, any byte (from 0 to 255) should have a more-or-less equal probability, or else the string could be further compressed.</p>
<p>You can try this yourself -- for example using Python:</p>
<pre><code>>>> z = open('/dev/urandom').read(1000000).encode('zlib') # compress a long string of junk
>>> [z.count(chr(i)) for i in range(256)] # number of occurrences of each byte
[3936, 3861, 3978, 3951, 3858, 3937, 3945, 3828, 3984, 3871, 3985,
3961, 3879, 3924, 3817, 3984, 3963, 3858, 4029, 3903, 3884, 3817,
... yada ...
</code></pre>
http://stackoverflow.com/questions/876107/pyqt-splash-screen-while-loading-heavy-libraries/876151#8761511Answer by dF for PyQt: splash screen while loading "heavy" librariesdF2009-05-18T03:33:49Z2009-05-18T03:33:49Z<p>Yes, loading the module takes place at the line where the import statement is. If you create your <code>QApplication</code> and show your splash screen before that, you should be able to do what you want -- also you need to call <code>QApplication.processEvents()</code> whenever you need the splash screen to update with a new message.</p>
http://stackoverflow.com/questions/875968/how-to-remove-symbols-from-a-string-with-python/875978#87597810Answer by dF for How to remove symbols from a string with Python?dF2009-05-18T01:59:55Z2009-05-18T02:33:22Z<p>One way, using <a href="http://docs.python.org/library/re.html" rel="nofollow">regular expressions</a>:</p>
<pre><code>>>> s = "how much for the maple syrup? $20.99? That's ricidulous!!!"
>>> re.sub(r'[^\w]', ' ', s)
'how much for the maple syrup 20 99 That s ricidulous '
</code></pre>
<ul>
<li><p><code>\w</code> will match alphanumeric characters and underscores</p></li>
<li><p><code>[^\w]</code> will match anything that's <em>not</em> alphanumeric or underscore</p></li>
</ul>
http://stackoverflow.com/questions/875771/encrypt-decrypt-string-in-python/875783#8757830Answer by dF for encrypt & decrypt string in pythondF2009-05-17T23:54:47Z2009-05-17T23:54:47Z<p>Are you looking to encrypt the string or encode it to remove illegal characters for urls?
If the latter, you can use <a href="http://docs.python.org/library/urllib.html#quote" rel="nofollow"><code>urllib.quote</code></a>:</p>
<pre><code>>>> quoted = urllib.quote("12234_1_Hello'World_34433_22acb_4554344_accCC44")
>>> quoted
'12234_1_Hello%27World_34433_22acb_4554344_accCC44'
>>> urllib.unquote(quoted)
"12234_1_Hello'World_34433_22acb_4554344_accCC44"
</code></pre>
http://stackoverflow.com/questions/874576/is-latex-worth-learning-today/874608#8746085Answer by dF for Is LaTeX worth learning today?dF2009-05-17T13:20:01Z2009-05-17T13:20:01Z<p>I don't use LaTeX for much else, but I do find it indispensible for academic publishing. What you gain compared to e.g. Office, is:</p>
<ul>
<li><p>Sane and straightforward handling of figures, equations and references. Sure you can sort of get that in Office with external add-ons (MathType, Endnote) but if you're moving between computers or exchanging the file with others, as you often will, you can't rely on these being installed.</p></li>
<li><p>Compatibility: It's just a text file, it works the same on any architecture and OS.</p></li>
</ul>
<p>What you lose:</p>
<ul>
<li><p>WYSIWYG, of course.</p></li>
<li><p>Precise control over the appearance of the document. Yes it's possible but depending on what you want to do it can be a major pain. But for academic papers you don't care anyway, since it will be reformatted for the journal later.</p></li>
</ul>
<p>What I'd suggest is getting a copy of <a href="http://www.lyx.org/" rel="nofollow">LyX</a>. It's a "what you see is what you <em>mean</em>" GUI that will generate (readable) LaTeX. It's free, and bridges the gap between a word processor and LaTeX code. It's a great way to learn LaTeX since if you want you can highlight any part of your document and look at a live view of the generated code. And generating a PDF is just a click of a button.</p>
http://stackoverflow.com/questions/873577/how-to-install-cogen-python-coroutine-framework-on-mac-os-x/873592#8735920Answer by dF for How to install cogen python coroutine framework on Mac OS XdF2009-05-17T00:02:48Z2009-05-17T00:02:48Z<p>It seems to be some problem with setuptools -- the dependencies are compiled succesfully but not installed. FWIW it works for me (OSX 10.5.6, MacPython 2.5). </p>
<p>I would try reinstalling setuptools, and if that fails downloading and "<code>python setup.py install</code>"ing cogen and py-kqueue manually. </p>
http://stackoverflow.com/questions/873419/converting-to-safe-unicode-in-python/873475#8734752Answer by dF for Converting to safe unicode in pythondF2009-05-16T22:43:42Z2009-05-16T22:43:42Z<p>What is the original encoding? I'm assuming "cp1252", from <a href="http://stackoverflow.com/questions/873419/converting-to-safe-unicode-in-python/873450#873450">pixelbeat's</a> answer. In that case, you can do</p>
<pre><code>>>> orig # Byte string, encoded in cp1252
'Fabulous home on one of Decatur\x92s most'
>>> uni = orig.decode('cp1252')
>>> uni # Unicode string
u'Fabulous home on one of Decatur\u2019s most'
>>> s = uni.encode('utf8')
>>> s # Correct byte string encoded in utf-8
'Fabulous home on one of Decatur\xe2\x80\x99s most'
</code></pre>
http://stackoverflow.com/questions/873178/double-precision/873323#8733232Answer by dF for Double PrecisiondF2009-05-16T21:13:29Z2009-05-16T21:13:29Z<p>If you're doing anything where precision is very important, you need to be aware of the limitations of floating point. A good reference is <a href="http://docs.sun.com/source/806-3568/ncg%5Fgoldberg.html" rel="nofollow">David Goldberg's "What Every Computer Scientist Should Know About Floating-Point Arithmetic"</a>. </p>
<p>You may find that floating-point doesn't give you enough precision and you need to work with a decimal type. These, however, are always much slower than floating point -- it's a tradeoff between accuracy and speed.</p>
http://stackoverflow.com/questions/872891/proper-language-to-use-in-form-field-labels-a-linguistic-question/872932#8729323Answer by dF for Proper language to use in form field labels: A linguistic questiondF2009-05-16T18:04:03Z2009-05-16T19:57:32Z<p>If this is a form field in an application (to make it vaguely programming related :-) ), "Country of origin" seems to me more natural.</p>
http://stackoverflow.com/questions/872973/pythonic-way-to-initialize-complex-static-data-members/873083#8730835Answer by dF for Pythonic Way to Initialize (Complex) Static Data MembersdF2009-05-16T19:15:53Z2009-05-16T19:15:53Z<p>As others have answered you're right -- I'll add one more thing to be aware of: If an instance modifies the object <code>coo.data_member</code> itself, for example</p>
<pre><code>self.data_member.append('foo')
</code></pre>
<p>then the modification is seen by the rest of the instances. However if you do </p>
<pre><code>self.data_member = new_object
</code></pre>
<p>then a new <em>instance</em> member is created which overrides the class member and is only visible to that instance, not the others. The difference is not always easy to spot, for example <code>self.data_member += 'foo'</code> vs. <code>self.data_member = self.data_member + 'foo'</code>.</p>
<p>To avoid this you probably should always refer to the object as <code>coo.data_member</code> (not through <code>self</code>).</p>
http://stackoverflow.com/questions/872860/cant-redirect-output-to-var-lib-varlibfile-but-i-can-copy-a-varlibfile-to-var/872920#87292010Answer by dF for Can't redirect output to /var/lib/varlibfile, but I can copy a varlibfile to /var/libdF2009-05-16T17:57:24Z2009-05-16T17:57:24Z<p>What</p>
<pre><code>$ sudo echo something >/var/lib/varlibfile
</code></pre>
<p>does, is pipe the output of "<code>sudo echo something</code>" to the file. So the file write operation is done as the current user, who doesn't have permission to write in <code>/var/lib</code>.</p>
<p>Try something like</p>
<pre><code>$ sudo sh -c "echo something >/var/lib/varlibfile"
</code></pre>
<p>or</p>
<pre><code>$ echo something | sudo tee /var/lib/varlibfile
</code></pre>
http://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-network/1779502#1779502Comment by dF on Small "embeddable" database that can also be synced over the network?dF2009-11-22T19:38:56Z2009-11-22T19:38:56ZIt seems that if I want the to use fancy sync features of couchdb, and not roll my own, I really need to require couchdb! http://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-network/1779554#1779554Comment by dF on Small "embeddable" database that can also be synced over the network?dF2009-11-22T18:54:56Z2009-11-22T18:54:56ZYes except for the dependency on erlang, which makes including couchdb prohibitively large. Erlang seems to have compilers to native code, is it possible to make a smaller CouchDB package that way?http://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-network/1779502#1779502Comment by dF on Small "embeddable" database that can also be synced over the network?dF2009-11-22T18:47:42Z2009-11-22T18:47:42ZThe only problem with CouchDB is dependencies and size. My application is windows/linux/osx, the installers for CouchDB are twice the size of the app itself.http://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-networkComment by dF on Small "embeddable" database that can also be synced over the network?dF2009-11-22T18:17:50Z2009-11-22T18:17:50Z@tosh: yes (added it to the question).http://stackoverflow.com/questions/473099/python-how-to-check-if-a-given-index-in-a-dict-exists-yet/473108#473108Comment by dF on python: how to check if a given index in a dict exists yetdF2009-11-18T01:11:45Z2009-11-18T01:11:45Z@nailer: fixed, thanks. I had initially used 'some_value' since that's the variable name in the question, but I agree it's clearer now.http://stackoverflow.com/questions/454355/security-of-rest-authentication-schemes/489326#489326Comment by dF on Security of REST authentication schemesdF2009-10-13T14:40:25Z2009-10-13T14:40:25ZAfter thinking about this for a while and implementing a first version, I tend to agree....http://stackoverflow.com/questions/1559709/embedded-objects-in-ms-office-documents-using-python/1559740#1559740Comment by dF on Embedded objects in MS Office documents using Python?dF2009-10-13T14:37:29Z2009-10-13T14:37:29ZThanks, this will get me started. Since I'm completely new to COM, it would really help to have a code example, but I haven't found one anywhere... I'll have to give it a try.http://stackoverflow.com/questions/1520934/in-qt4-how-to-check-if-paintevent-is-triggered-by-a-resize/1520979#1520979Comment by dF on In Qt4, how to check if paintEvent is triggered by a resize?dF2009-10-05T18:31:55Z2009-10-05T18:31:55ZThanks, I implemented something like this and it seems to be working well. I'm also restarting the timer if the left mouse button is down, so if you "pause" resizing it won't trigger a redraw.http://stackoverflow.com/questions/1123000/does-python-have-anonymous-classes/1123026#1123026Comment by dF on Does Python have anonymous classes?dF2009-07-14T02:43:00Z2009-07-14T02:43:00Z@Alex: How about setting <code>__getattribute__ = dict.get</code>? Ugly, yes, but does it still have problems?http://stackoverflow.com/questions/1114667/making-a-makefile/1114683#1114683Comment by dF on Making a MakefiledF2009-07-11T22:04:59Z2009-07-11T22:04:59ZThat's a perfectly legitimate use of Makefiles, I don't think it's dubious at all.http://stackoverflow.com/questions/78799/is-there-a-benefit-to-defining-a-class-inside-another-class-in-python/78858#78858Comment by dF on Is there a benefit to defining a class inside another class in Python?dF2009-05-24T23:08:03Z2009-05-24T23:08:03Z@SLott: how is it harder to subclass the inner class? "class Foo(Group.cls1): ..." http://stackoverflow.com/questions/890420/why-would-one-choose-iron-python-instead-of-booComment by dF on Why would one choose Iron Python instead of Boo?dF2009-05-20T23:34:21Z2009-05-20T23:34:21Zalso <a href="http://stackoverflow.com/questions/600539" rel="nofollow">stackoverflow.com/questions/600539</a>http://stackoverflow.com/questions/884594/wrapping-a-python-object/884655#884655Comment by dF on Wrapping a Python ObjectdF2009-05-19T21:37:03Z2009-05-19T21:37:03ZIt will not. Inside <b>getattr</b>, it needs to find self.theObject. so it calls <b>getattr</b>, leading to an infinite loop.http://stackoverflow.com/questions/876107/pyqt-splash-screen-while-loading-heavy-libraries/876151#876151Comment by dF on PyQt: splash screen while loading "heavy" librariesdF2009-05-18T21:22:45Z2009-05-18T21:22:45Z@eliben: You should have the 1st import of the "heavy" modules inside the function/method. Then the next time they are imported (from the top level of other modules) they are not loaded but just looked up in sys.modules, which is very fast.http://stackoverflow.com/questions/876073/is-there-a-stackoverflow-like-site-for-computer-science/876080#876080Comment by dF on Is there a stackoverflow like site for Computer Science?dF2009-05-18T03:05:55Z2009-05-18T03:05:55ZAgreed, not a subset of programming but certainly "related", no?