User Torsten Marek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T09:53:42Zhttp://stackoverflow.com/feeds/user/9567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1860687/evaluation-of-curve-in-java2d1Evaluation of curve in Java2DTorsten Marek2009-12-07T15:26:24Z2009-12-07T15:58:22Z
<p>Are there methods for evaluating <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/geom/CubicCurve2D.html" rel="nofollow">cubic</a> or <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/geom/QuadCurve2D.html" rel="nofollow">quadratic</a> Java2D curves at a given time t? I know the algorithm is simple, but I would suspect that there is a method for that already in Java.</p>
http://stackoverflow.com/questions/1468022/how-to-specify-monospace-fonts-for-cross-platform-qt-applications/1835938#18359381Answer by Torsten Marek for How to specify monospace fonts for cross platform Qt applications ?Torsten Marek2009-12-02T21:28:49Z2009-12-02T21:28:49Z<p>You can use the <a href="http://doc.trolltech.com/4.6/qfont.html#StyleHint-enum" rel="nofollow">style hint</a> property of QFont: </p>
<pre><code>QFont font("Monospace");
font.setStyleHint(QFont::TypeWriter);
</code></pre>
<p>If the font cannot be found (which happens with Monospace on Windows), Qt's <a href="http://doc.trolltech.com/4.6/qfont.html#fontmatching" rel="nofollow">font matching algorithm</a> tries to find a font that matches the given style hint.</p>
http://stackoverflow.com/questions/499095/best-way-of-getting-path-to-application-data-directory2Best way of getting path to "Application Data" directory?Torsten Marek2009-01-31T16:21:31Z2009-10-02T10:52:03Z
<p>There are several possible ways of getting the path to the application data directory:</p>
<ul>
<li>using the <code>%APPDATA%</code> environment variable</li>
<li>calling <code>SHGetFolderPath</code> with <code>CSIDL_APPDATA</code></li>
</ul>
<p>What is the best way to get the path from within an program? Are there any gotchas when I use the environment variable?</p>
<p>Which method is safest across XP, Vista and upcoming versions?</p>
http://stackoverflow.com/questions/192907/xml-parsing-sax-vs-dom-vs-elementtree/194248#19424815Answer by Torsten Marek for XML Parsing - SAX vs. DOM. vs. ElementTreeTorsten Marek2008-10-11T16:02:41Z2009-08-24T13:45:55Z<p>ElementTree is much easier to use, because it represents an XML tree (basically) as a structure of lists, and attributes are represented as dictionaries.</p>
<p>ElementTree needs much less memory for XML trees than DOM (and thus is faster), and the parsing overhead via <code>iterparse</code> is comparable to SAX. Additionally, <code>iterparse</code> returns partial structures, and you can keep memory usage constant during parsing by discarding the structures as soon as you process them.</p>
<p>ElementTree, as in Python 2.5, has only a small feature set compared to full-blown XML libraries, but it's enough for many applications. If you need a validating parser or complete XPath support, lxml is the way to go. For a long time, it used to be quite unstable, but I haven't had any problems with it since 2.1.</p>
<p>ElementTree deviates from DOM, where nodes have access to their parent and siblings. Handling actual documents rather than data stores is also a bit cumbersome, because text nodes aren't treated as actual nodes. In the XML snippet</p>
<pre><code><a>This is <b>a</b> test</a>
</code></pre>
<p>The string <code> test</code> will be the so-called <code>tail</code> of element <code>b</code>.</p>
<p>In general, I recommend ElementTree as the default for all XML processing with Python, and DOM or SAX as the solutions for specific problems.</p>
http://stackoverflow.com/questions/1146026/fastest-way-to-find-minimal-hamming-distance-to-any-substring/1146335#11463351Answer by Torsten Marek for Fastest way to find minimal Hamming distance to any substring?Torsten Marek2009-07-18T00:50:57Z2009-07-18T02:41:41Z<h1>Modified Boyer-Moore</h1>
<p>I've just dug up some old Python implementation of <a href="http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore%5Fstring%5Fsearch%5Falgorithm" rel="nofollow">Boyer-Moore</a> I had lying around and modified the matching loop (where the text is compared to the pattern). Instead of breaking out as soon as the first mismatch is found between the two strings, simply count up the number of mismatches, but <strong>remember the first mismatch</strong>:</p>
<pre><code>current_dist = 0
while pattern_pos >= 0:
if pattern[pattern_pos] != text[text_pos]:
if first_mismatch == -1:
first_mismatch = pattern_pos
tp = text_pos
current_dist += 1
if current_dist == smallest_dist:
break
pattern_pos -= 1
text_pos -= 1
smallest_dist = min(current_dist, smallest_dist)
# if the distance is 0, we've had a match and can quit
if current_dist == 0:
return 0
else: # shift
pattern_pos = first_mismatch
text_pos = tp
...
</code></pre>
<p>If the string did not match completely at this point, go back to the point of the first mismatch by restoring the values. This makes sure that the smallest distance is actually found.</p>
<p>The whole implementation is rather long (~150LOC), but I can post it on request. The core idea is outlined above, everything else is standard Boyer-Moore.</p>
<h1>Preprocessing on the Text</h1>
<p>Another way to speed things up is preprocessing the text to have an index on character positions. You only want to start comparing at positions where at least a single match between the two strings occurs, otherwise the Hamming distance is |S| trivially. </p>
<pre><code>import sys
from collections import defaultdict
import bisect
def char_positions(t):
pos = defaultdict(list)
for idx, c in enumerate(t):
pos[c].append(idx)
return dict(pos)
</code></pre>
<p>This method simply creates a dictionary which maps each character in the text to the sorted list of its occurrences.</p>
<p>The comparison loop is more or less unchanged to naive <code>O(mn)</code> approach, apart from the fact that we do not increase the position at which comparison is started by 1 each time, but based on the character positions:</p>
<pre><code>def min_hamming(text, pattern):
best = len(pattern)
pos = char_positions(text)
i = find_next_pos(pattern, pos, 0)
while i < len(text) - len(pattern):
dist = 0
for c in range(len(pattern)):
if text[i+c] != pattern[c]:
dist += 1
if dist == best:
break
c += 1
else:
if dist == 0:
return 0
best = min(dist, best)
i = find_next_pos(pattern, pos, i + 1)
return best
</code></pre>
<p>The actual improvement is in <code>find_next_pos</code>:</p>
<pre><code>def find_next_pos(pattern, pos, i):
smallest = sys.maxint
for idx, c in enumerate(pattern):
if c in pos:
x = bisect.bisect_left(pos[c], i + idx)
if x < len(pos[c]):
smallest = min(smallest, pos[c][x] - idx)
return smallest
</code></pre>
<p>For each new position, we find the lowest index at which a character from S occurs in L. If there is no such index any more, the algorithm will terminate.</p>
<p><code>find_next_pos</code> is certainly complex, and one could try to improve it by only using the first several characters of the pattern S, or use a set to make sure characters from the pattern are not checked twice. </p>
<h1>Discussion </h1>
<p>Which method is faster largely depends on your dataset. The more diverse your alphabet is, the larger will be the jumps. If you have a very long L, the second method with preprocessing might be faster. For very, very short strings (like in your question), the naive approach will certainly be the fastest.</p>
<h2>DNA</h2>
<p>If you have a very small alphabet, you could try to get the character positions for character bigrams (or larger) rather than unigrams.</p>
http://stackoverflow.com/questions/1146359/how-to-define-the-version-number-of-a-software/1146374#11463742Answer by Torsten Marek for How to define the version number of a software?Torsten Marek2009-07-18T01:10:43Z2009-07-18T01:21:08Z<p>Do it like Donald Knuth does with TeX---its version converges to π with each release and will in fact become π when he dies.</p>
<blockquote>
<p>Since version 3, TeX has used an
idiosyncratic version numbering
system, where updates have been
indicated by adding an extra digit at
the end of the decimal, so that the
version number asymptotically
approaches π. This is a reflection of
the fact that TeX is now very stable,
and only minor updates are
anticipated. The current version of
TeX is 3.1415926; it was last updated
in March 2008.</p>
</blockquote>
<p>from <a href="http://en.wikipedia.org/wiki/TeX" rel="nofollow">Wikipedia</a></p>
http://stackoverflow.com/questions/1145741/mpi-signal-handling/1145984#11459840Answer by Torsten Marek for MPI signal handlingTorsten Marek2009-07-17T22:37:22Z2009-07-17T22:37:22Z<p>The <a href="http://docs.python.org/library/signal.html#module-signal" rel="nofollow">signal</a> module supports setting signal handlers using <code>signal.signal</code>:</p>
<blockquote>
<p>Set the handler for signal signalnum to the function handler. handler can be a callable Python object taking two arguments (see below), or one of the special values signal.SIG_IGN or signal.SIG_DFL. The previous signal handler will be returned ...</p>
</blockquote>
<pre><code>import signal
def ignore(sig, stack):
print "I'm ignoring signal %d" % (sig, )
signal.signal(signal.SIGINT, ignore)
while True: pass
</code></pre>
<p>If you send a <code>SIGINT</code> to a Python interpreter running this script (via <code>kill -INT <pid></code>), it will print a message and simply continue to run.</p>
http://stackoverflow.com/questions/1145443/double-nan/1145491#11454912Answer by Torsten Marek for double.NaNTorsten Marek2009-07-17T20:23:22Z2009-07-17T20:23:22Z<p>Actually, you already found the way to check if a IEEE-754 floating point number is <a href="http://en.wikipedia.org/wiki/NaN" rel="nofollow">NaN</a>: it is the only floating point value (or range of values, because there are several NaNs) that evaluates to <code>False</code> if compared to itself, i.e. :</p>
<pre><code>bool isNaN(double v) {
return v != v;
}
</code></pre>
<p>Under the hood, the Double.IsNaN method might actually do the same thing. You should still use it, because the behavior is quite surprising to anybody who does not know about the FP standard.</p>
http://stackoverflow.com/questions/1145286/change-python-file-in-place/1145434#11454347Answer by Torsten Marek for Change python file in placeTorsten Marek2009-07-17T20:11:07Z2009-07-17T20:11:07Z<p>Say you want to split the file into N pieces, then simply start reading from the back of the file (more or less) and repeatedly call <a href="http://docs.python.org/library/stdtypes.html?highlight=truncate#file.truncate" rel="nofollow">truncate</a>:</p>
<blockquote>
<p>Truncate the file's size. If the optional size argument is present, the file is truncated to (at most) that size. The size defaults to the current position. The current file position is not changed. ...</p>
</blockquote>
<pre><code>import os
import stat
BUF_SIZE = 4096
size = os.stat("large_file")[stat.ST_SIZE]
chunk_size = size / N
# or simply set a fixed chunk size based on your free disk space
c = 0
in_ = open("large_file", "r+")
while size > 0:
in_.seek(-min(size, chunk_size), 2)
# now you have to find a safe place to split the file at somehow
# just read forward until you found one
...
old_pos = in_.tell()
with open("small_chunk%2d" % (c, ), "w") as out:
b = in_.read(BUF_SIZE)
while len(b) > 0:
out.write(b)
b = in_.read(BUF_SIZE)
in_.truncate(old_pos)
size = old_pos
c += 1
</code></pre>
<p>Be careful, as I didn't test any of this. It might be needed to call <code>flush</code> after the truncate call, and I don't know how fast the file system is going to actually free up the space. </p>
http://stackoverflow.com/questions/1145121/why-does-this-code-with-generics-compile/1145138#11451381Answer by Torsten Marek for Why does this code with generics compile?Torsten Marek2009-07-17T19:11:04Z2009-07-17T19:11:04Z<p><code>Map.get</code> takes an <code>Object</code>, not a generic type, cf. the <a href="http://java.sun.com/javase/6/docs/api/java/util/Map.html" rel="nofollow">documentation</a>.</p>
<blockquote>
<p><code>get(Object key)</code>: Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.</p>
</blockquote>
<p>The important thing is that it returns a generic type, so you do not have to cast the return value.</p>
http://stackoverflow.com/questions/1145015/xml-parsing-expat-in-python-handling-data/1145032#11450320Answer by Torsten Marek for XML parsing expat in python handling dataTorsten Marek2009-07-17T18:49:20Z2009-07-17T18:49:20Z<p>expat does not mess up, <code>&lt;</code> is simply the XML encoding for the character <code><</code>. Quite to the contrary, if expat would return the literal <code>&lt;</code>, this would be a bug with respect to the XML spec. That being said, you can of course get the escaped version back by using <code>xml.sax.saxutils.escape</code>:</p>
<pre><code>>>> from xml.sax.saxutils import escape
>>> escape("<fail/>")
'&lt;fail/&gt;'
</code></pre>
<p>The expat parser is also free to report all string data in whatever chunks it seems fit, so you have to concatenate them yourself.</p>
http://stackoverflow.com/questions/1144400/hacking-javascript-array-into-json-with-python/1144597#11445973Answer by Torsten Marek for Hacking JavaScript Array Into JSON With PythonTorsten Marek2009-07-17T17:12:33Z2009-07-17T17:12:33Z<p>It's not too difficult to write your own little parsor for that using <a href="http://pyparsing.wikispaces.com/" rel="nofollow">PyParsing</a>.</p>
<pre><code>import json
from pyparsing import *
data = """var txns = [
{ apples: '100', oranges: '20', type: 'SELL'},
{ apples: '200', oranges: '10', type: 'BUY'}]"""
def js_grammar():
key = Word(alphas).setResultsName("key")
value = QuotedString("'").setResultsName("value")
pair = Group(key + Literal(":").suppress() + value)
object_ = nestedExpr("{", "}", delimitedList(pair, ","))
array = nestedExpr("[", "]", delimitedList(object_, ","))
return array + StringEnd()
JS_GRAMMAR = js_grammar()
def parse(js):
return JS_GRAMMAR.parseString(js[len("var txns = "):])[0]
def to_dict(object_):
return dict((p.key, p.value) for p in object_)
result = [
{"transaction": to_dict(object_)}
for object_ in parse(data)]
print json.dumps(result)
</code></pre>
<p>This is going to print</p>
<pre><code>[{"transaction": {"type": "SELL", "apples": "100", "oranges": "20"}},
{"transaction": {"type": "BUY", "apples": "200", "oranges": "10"}}]
</code></pre>
<p>You can also add the assignment to the grammar itself. Given there are already off-the-shelf parsers for it, you should better use those. </p>
http://stackoverflow.com/questions/1141964/linux-process-spawn-creation-trigger/1144201#11442011Answer by Torsten Marek for Linux Process Spawn/Creation TriggerTorsten Marek2009-07-17T15:59:51Z2009-07-17T15:59:51Z<p>There's a <a href="http://lwn.net/Articles/157150/" rel="nofollow">process events connector</a>, which is based on a netlink interface.</p>
http://stackoverflow.com/questions/1143671/python-sorting-list-of-dictionaries-by-multiple-keys/1143829#11438290Answer by Torsten Marek for Python sorting list of dictionaries by multiple keysTorsten Marek2009-07-17T15:01:59Z2009-07-17T15:41:54Z<pre><code>from operator import itemgetter
from functools import partial
def _neg_itemgetter(key, d):
return -d[key]
def key_getter(key_expr):
keys = key_expr.split(",")
getters = []
for k in keys:
k = k.strip()
if k.startswith("-"):
getters.append(partial(_neg_itemgetter, k[1:]))
else:
getters.append(itemgetter(k))
def keyfunc(dct):
return [kg(dct) for kg in getters]
return keyfunc
def multikeysort(dict_list, sortkeys):
return sorted(dict_list, key = key_getter(sortkeys)
</code></pre>
<p>Demonstration:</p>
<pre><code>>>> multikeysort([{u'TOT_PTS_Misc': u'Utley, Alex', u'Total_Points': 60.0},
{u'TOT_PTS_Misc': u'Russo, Brandon', u'Total_Points': 96.0},
{u'TOT_PTS_Misc': u'Chappell, Justin', u'Total_Points': 96.0}],
"-Total_Points,TOT_PTS_Misc")
[{u'Total_Points': 96.0, u'TOT_PTS_Misc': u'Chappell, Justin'},
{u'Total_Points': 96.0, u'TOT_PTS_Misc': u'Russo, Brandon'},
{u'Total_Points': 60.0, u'TOT_PTS_Misc': u'Utley, Alex'}]
</code></pre>
<p>The parsing is a bit fragile, but at least it allows for variable number of spaces between the keys.</p>
http://stackoverflow.com/questions/1143864/xpath-to-select-only-nodes-where-child-elements-exist/1143938#11439380Answer by Torsten Marek for Xpath to select only nodes where child elements exist?Torsten Marek2009-07-17T15:18:12Z2009-07-17T15:18:12Z<pre><code>/root/a[count(*)>0]
</code></pre>
http://stackoverflow.com/questions/1142970/pyqt-overriding-qgraphicsview-drawitems/1143459#11434592Answer by Torsten Marek for PyQt: Overriding QGraphicsView.drawItemsTorsten Marek2009-07-17T13:58:52Z2009-07-17T14:29:35Z<p>There is an exception that occurs when the items are painted, but it is not reported right away. On my system (PyQt 4.5.1, Python 2.6), no exception is reported when I monkey-patch the following method:</p>
<pre><code>def drawItems(painter, items, options):
print len(items)
for idx, i in enumerate(items):
print idx, i
if idx > 5:
raise ValueError()
</code></pre>
<p>Output:</p>
<pre><code>45
0 <PyQt4.QtGui.QGraphicsPathItem object at 0x3585270>
1 <PyQt4.QtGui.QGraphicsSimpleTextItem object at 0x356ca68>
2 <PyQt4.QtGui.QGraphicsSimpleTextItem object at 0x356ce20>
3 <PyQt4.QtGui.QGraphicsSimpleTextItem object at 0x356cc88>
4 <PyQt4.QtGui.QGraphicsSimpleTextItem object at 0x356cc00>
5 <PyQt4.QtGui.QGraphicsSimpleTextItem object at 0x356caf0>
6 <PyQt4.QtGui.QGraphicsSimpleTextItem object at 0x356cb78>
</code></pre>
<p>However, once I close the application, the following method is printed:</p>
<pre><code>Exception ValueError: ValueError() in <module 'threading' from '/usr/lib/python2.6/threading.pyc'> ignored
</code></pre>
<p>I tried printing <code>threading.currentThread()</code>, but it returns the same thread whether it's called in- or outside the monkey-patched <code>drawItems</code> method.</p>
<p>In your code, this is likely due to the fact that you pass <code>options</code> (which is a list of style options objects) to the individual items rather than the respective option object. Using this code should give you the correct results:</p>
<pre><code>def drawItems(self, painter, items, options):
for item, option in zip(items, options):
print "Processing", item
# ... Do checking ...
item.paint(painter, option, self.target)
</code></pre>
<p>Also, you say the <code>self.target</code> is the scene object. The <a href="http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/html/qgraphicsitem.html#paint" rel="nofollow">documentation for <code>paint()</code></a> says:</p>
<blockquote>
<p>This function, which is usually called by QGraphicsView, paints the contents of an item in local coordinates. ... The widget argument is optional. If provided, it points to the widget that is being painted on; otherwise, it is 0. For cached painting, widget is always 0.</p>
</blockquote>
<p>and the type is <code>QWidget*</code>. <code>QGraphicsScene</code> inherits from <code>QObject</code> and is not a widget, so it is likely that this is wrong, too.</p>
<p>Still, the fact that the exception is not reported at all, or not right away suggests some foul play, you should contact the maintainer.</p>
http://stackoverflow.com/questions/1140665/add-local-variable-to-running-generator/1140891#11408911Answer by Torsten Marek for Add local variable to running generatorTorsten Marek2009-07-16T23:59:36Z2009-07-16T23:59:36Z<p>If you want to have a coroutine or a generator that also acts as a sink, you should use the send method, as in <a href="http://stackoverflow.com/questions/1140665/add-local-variable-to-running-generator/1140735#1140735">Stephan202's answers</a>. If you want to change the runtime behavior by settings various attributes in the generator, there's an old <a href="http://code.activestate.com/recipes/164044/" rel="nofollow">recipe</a> by Raymond Hettinger:</p>
<pre><code>def foo_iter(self):
self.v = "foo"
while True:
yield self.v
enableAttributes(foo_iter)
it = foo_iter()
print it.next()
it.v = "boo"
print it.next()
</code></pre>
<p>This will print:</p>
<pre><code>foo
boo
</code></pre>
<p>It shouldn't be too difficult to convert the <code>enableAttributes</code> function into a proper decorator. </p>
http://stackoverflow.com/questions/1137852/using-python-scipy-weave-inline-with-ctype-variables/1138806#11388060Answer by Torsten Marek for Using python scipy.weave inline with ctype variables?Torsten Marek2009-07-16T16:36:14Z2009-07-16T16:36:14Z<p>Judging from the fact that scipy.weave predates the <code>ctypes</code> module by a couple of years, I would be surprised if that actually works. Did you check the documentation if they can work together?</p>
http://stackoverflow.com/questions/1132512/speeding-up-gtk-tree-view/1134480#11344801Answer by Torsten Marek for Speeding up GTK tree viewTorsten Marek2009-07-15T22:29:10Z2009-07-15T22:29:10Z<p>I never did this myself but you could try to implement the caching yourself. Instead of using the predefined cell renderers, implement your own cell renderer (possibly as a wrapper for the actual one), but cache the pixmaps.</p>
<p>In PyGTK, you can use <a href="http://www.pygtk.org/docs/pygtk/class-pygtkgenericcellrenderer.html" rel="nofollow"><code>gtk.GenericCellRenderer</code></a>. In your decorator cell renderer, do the following when asked to render:</p>
<ul>
<li>keep a cache of off-screen pixmaps (or better, just one large one) and a cache of sizes</li>
<li>if asked to predict the size or render, create a key from the relevant properties</li>
<li>if the key exists in the cache, use the cached pixmap, blit the cached pixmap on the drawable you are given</li>
<li>otherwise, first have the actual cell renderer do the work and then copy it</li>
</ul>
<p>The last step also implies that caching does incur an overhead during the first time the cell is renderered. This problem can be mitigated a bit by using a caching strategy. You might want to try out different things, based on the distribution of rendered values:</p>
<ul>
<li>if all cells are unique, not much to do than caching everything up to a certain limit, or some MRU strategy</li>
<li>if you have some kind of <a href="http://en.wikipedia.org/wiki/Zipf%27s%5Flaw" rel="nofollow">Zipf distribution</a>, i.e. some cells are very common, while others are very rare, you should only cache the cells with high frequency and get rid off the caching overhead for rare cell values.</li>
</ul>
<p>That being said, I can't say if it's going to make any difference. My experience from a somewhat similar problem is that anything involving text is usually slow enough that caching makes sense---sorry that I can't give simpler advice.</p>
<p>Before you try that, you could also simple write a decorating cell renderer which just counts how often your cells are actually rendered and get some timing information, so that you get an idea where the hot spots are and if caching the values would make any sense at all.</p>
http://stackoverflow.com/questions/1133922/what-do-you-use-python-for/1134367#11343670Answer by Torsten Marek for What do you use Python for?Torsten Marek2009-07-15T22:03:07Z2009-07-15T22:03:07Z<p>As part of my research & MSc thesis, I've implemented an evaluation engine for a graph query language. Basically, there's a large collection of directed graphs whose nodes are flat typed AVMs (which represent syntax graphs, but that's not that important actually), and the task is to retrieve all graphs that satisfy a set of constraints, which are encoded in a <a href="http://www.ims.uni-stuttgart.de/projekte/TIGER/TIGERSearch/doc/html/QueryLanguage.html" rel="nofollow">specially designed query language</a></p>
<p>The project has grown quite a lot over the last years and it involves SQL, XML parsing, parsing a specialized language, constraint solving, graph algorithms, 2D rendering, animation, parallel processing, query optimization and quite a few more things.</p>
<p>I've also used Python for pretty much all my courses at the university (e.g. Machine Learning, Algorithms, Natural Language Parsing), my BA thesis (building weighted Finite State Transducers), several term papers and on different jobs (mostly involving text processing).</p>
http://stackoverflow.com/questions/1132350/recursion-cut-array-of-integers-in-two-parts-of-equal-sum-in-a-single-pass/1134284#11342840Answer by Torsten Marek for recursion: cut array of integers in two parts of equal sum - in a single passTorsten Marek2009-07-15T21:46:26Z2009-07-15T21:46:26Z<p>Haskell: </p>
<pre><code>split' _ s [] = (-1, s)
split' idx s (x:xs) | sidx >= 0 = (sidx, s')
| s * 2 == s' = (idx - 1, s)
| otherwise = (-1, s')
where (sidx, s') = split' (idx + 1) (x + s) xs
split = fst . split' 0 0
</code></pre>
<p>Your rules are somewhat misleading. You require that no objects are to be allocated on the heap, but IMHO there is no solution where the algorithm does not have space requirements of <code>O(n)</code>, i.e. the stack grows linearly with the length of the list and tail calls are not possible because the function has to inspect the return values from the recursive call.</p>
http://stackoverflow.com/questions/1129821/creating-a-decorator-in-a-class-with-access-to-the-current-class-itself/1133773#11337730Answer by Torsten Marek for Creating a decorator in a class with access to the (current) class itselfTorsten Marek2009-07-15T20:23:16Z2009-07-15T20:23:16Z<p>Not that I have anything against metaclasses, but you can also solve it without them:</p>
<pre><code>from collections import defaultdict
class Spam(object):
_decorated = defaultdict(list)
@classmethod
def decorate(cls, func):
cls._decorated[cls].append(func)
return func
@classmethod
def decorated(cls):
return cls._decorated[cls]
class Eggs(Spam):
pass
@Eggs.decorate
def foo():
print "spam and eggs"
print Eggs.decorated() # [<function foo at 0x...>]
print Spam.decorated() # []
</code></pre>
<p>It is not possible to have properties on class objects (unless you revert to metaclasses again), therefore it is mandatory to get the list of decorated methods via a classmethod again. There is an extra layer of indirection involved compared to the metaclass solution.</p>
http://stackoverflow.com/questions/1128295/are-there-any-open-wireless-routers/1128311#11283111Answer by Torsten Marek for Are there any open wireless routers?Torsten Marek2009-07-14T22:01:56Z2009-07-14T22:01:56Z<p>There are some open-source firmware projects which support a large number of Linksys, and possibly other, routers. </p>
<ul>
<li><a href="http://www.dd-wrt.com/dd-wrtv3/index.php" rel="nofollow">DD-WRT</a></li>
<li><a href="http://openwrt.org/" rel="nofollow">OpenWrt</a></li>
</ul>
http://stackoverflow.com/questions/1127836/python-object-has-no-referrers-but-still-accessible-via-a-weakref/1128216#11282161Answer by Torsten Marek for Python object has no referrers but still accessible via a weakref?Torsten Marek2009-07-14T21:37:41Z2009-07-14T21:37:41Z<p>It might also be the case that a reference was leaked by a buggy C extension, IMHO you will not see the referer, yet still the refcount does not go down to 0. You might want to check the return value of <code>sys.getrefcount</code>. </p>
http://stackoverflow.com/questions/1124416/how-to-compare-2-symbolic-links-in-unix-linux/1124479#11244796Answer by Torsten Marek for How to compare 2 symbolic links in unix (Linux)?Torsten Marek2009-07-14T10:01:19Z2009-07-14T10:01:19Z<p>For GNU systems (and possibly others, but I can't say), there's <code>readlink(1)</code>:</p>
<pre><code>$ touch a
$ ln -s a b
$ readlink b
a
</code></pre>
<p>You can use that in comparisons:</p>
<pre><code>$ test $(readlink -f a) = $(readlink -f b)
$ echo $?
0
</code></pre>
http://stackoverflow.com/questions/1118122/adding-removing-notebook-pages-in-pygtk-gtk-on-the-fly/1124118#11241182Answer by Torsten Marek for Adding/removing notebook pages in PyGTK/GTK on the flyTorsten Marek2009-07-14T08:12:38Z2009-07-14T08:12:38Z<p>You should just call <code>show_all()</code> on the notebook after adding the new pages. All widgets created by GTK+ are initially hidden. The <code>queue_draw_area</code> call shouldn't be necessary.</p>
http://stackoverflow.com/questions/1110668/why-does-djangos-signal-handling-use-weak-references-for-callbacks-by-default/1111287#11112872Answer by Torsten Marek for Why does Django's signal handling use weak references for callbacks by default?Torsten Marek2009-07-10T18:46:07Z2009-07-10T18:46:07Z<p>Bound methods keep a reference to the object they belong to (otherwise, they cannot fill <code>self</code>, cf. the <a href="http://docs.python.org/library/stdtypes.html?highlight=im%5Fself" rel="nofollow">Python documentation</a>). Consider the following code:</p>
<pre><code>import gc
class SomeLargeObject(object):
def on_foo(self): pass
slo = SomeLargeObject()
callbacks = [slo.on_foo]
print [o for o in gc.get_objects() if isinstance(o, SomeLargeObject)]
del slo
print [o for o in gc.get_objects() if isinstance(o, SomeLargeObject)]
callbacks = []
print [o for o in gc.get_objects() if isinstance(o, SomeLargeObject)]
</code></pre>
<p>The output:</p>
<pre><code>[<__main__.SomeLargeObject object at 0x15001d0>]
[<__main__.SomeLargeObject object at 0x15001d0>]
[]
</code></pre>
<p>One important thing to know when keeping weakrefs on callbacks is that you cannot weakref bound methods directly, because they are always created on the fly:</p>
<pre><code>>>> class SomeLargeObject(object):
... def on_foo(self): pass
>>> import weakref
>>> def report(o):
... print "about to collect"
>>> slo = SomeLargeObject()
>>> #second argument: function that is called when weakref'ed object is finalized
>>> weakref.proxy(slo.on_foo, report)
about to collect
<weakproxy at 0x7f9abd3be208 to NoneType at 0x72ecc0>
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/135024#1350246Answer by Torsten Marek for Hidden features of PythonTorsten Marek2008-09-25T18:22:24Z2009-06-27T23:10:19Z<p>Assigning and deleting slices:</p>
<pre><code>>>> a = range(10)
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> a[:5] = [42]
>>> a
[42, 5, 6, 7, 8, 9]
>>> a[:1] = range(5)
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> del a[::2]
>>> a
[1, 3, 5, 7, 9]
>>> a[::2] = a[::-2]
>>> a
[9, 3, 5, 7, 1]
</code></pre>
<p><em>Note</em>: when assigning to extended slices (<code>s[start:stop:step]</code>), the assigned iterable must have the same length as the slice.</p>
http://stackoverflow.com/questions/925056/a-python-walker-that-can-ignore-directories/925287#9252872Answer by Torsten Marek for A Python walker that can ignore directoriesTorsten Marek2009-05-29T10:05:38Z2009-05-29T10:05:38Z<p>It is possible to modify the second element of <a href="http://docs.python.org/library/os.html#module-os" rel="nofollow"><code>os.walk</code></a>'s return values in-place:</p>
<blockquote>
<p>[...] the caller can modify the dirnames list in-place (perhaps using del or slice assignment), and walk() will only recurse into the subdirectories whose names remain in dirnames; this can be used to prune the search [...]</p>
</blockquote>
<pre><code>def fwalk(root, predicate):
for dirpath, dirnames, filenames in os.walk(root):
dirnames[:] = [d for d in dirnames if predicate(r, d)]
yield dirpath, dirnames, filenames
</code></pre>
<p>Now, you can just hand in a predicate for subdirectories:</p>
<pre><code>>>> ignore_list = [...]
>>> list(fwalk("some/root", lambda r, d: d not in ignore_list))
</code></pre>
http://stackoverflow.com/questions/925100/python-queue-multiprocessing-queue-how-they-behave/925241#9252413Answer by Torsten Marek for python queue & multiprocessing queue: how they behave?Torsten Marek2009-05-29T09:53:20Z2009-05-29T09:53:20Z<p>For your second example, you already gave the explanation yourself---<code>Queue</code> is a module, which cannot be called.</p>
<p>For the third example: I assume that you use <code>Queue.Queue</code> together with <code>multiprocessing</code>, which is not possible. <code>Queue.Queue</code> is made for data interchange between different <strong>threads</strong> inside the same process (using the <a href="http://docs.python.org/library/threading.html#module-threading" rel="nofollow">threading</a> module). The multiprocessing queues are for data interchange between different Python <strong>processes</strong>. While the API looks similar (it's designed to be that way), the underlying mechanisms are fundamentally different.</p>
<ul>
<li><code>multiprocessing</code> queues exchange data by pickling (serializing) objects and sending them through pipes. </li>
<li><code>Queue.Queue</code> uses a data structure that is shared between threads and locks/mutexes for correct behaviour.</li>
</ul>
http://stackoverflow.com/questions/1860687/evaluation-of-curve-in-java2d/1860900#1860900Comment by Torsten Marek on Evaluation of curve in Java2DTorsten Marek2009-12-08T13:00:21Z2009-12-08T13:00:21ZIt's strange indeed that they don't expose that.http://stackoverflow.com/questions/866970/qt-how-to-set-main-windows-initial-position/868699#868699Comment by Torsten Marek on Qt: how to set main window's initial position?Torsten Marek2009-08-18T16:07:01Z2009-08-18T16:07:01Z+1: I had a hunch that something like that existed, but didn't know exactly how...http://stackoverflow.com/questions/1145286/change-python-file-in-place/1145434#1145434Comment by Torsten Marek on Change python file in placeTorsten Marek2009-07-21T22:53:08Z2009-07-21T22:53:08ZThe only way to delete bytes from the beginning of the file is either to write it totally new, or move everything in-place, i.e. read byte 100, write to 0, read 101, write to 1 etc, and then truncate at the end. Since you have to do that over and over again, you end up with O(n^2). http://stackoverflow.com/questions/1146026/fastest-way-to-find-minimal-hamming-distance-to-any-substring/1146335#1146335Comment by Torsten Marek on Fastest way to find minimal Hamming distance to any substring?Torsten Marek2009-07-18T00:52:40Z2009-07-18T00:52:40ZOh right, and I'm sorry all the code examples are in Python, but that's just the language I'm most comfortable with. Please feel free to ask for clarifications!http://stackoverflow.com/questions/1145443/double-nan/1145597#1145597Comment by Torsten Marek on double.NaNTorsten Marek2009-07-17T21:41:51Z2009-07-17T21:41:51Z100/0 is not NaN, it is Infinity! <a href="http://docs.sun.com/source/806-3568/ncg_goldberg.html#918" rel="nofollow">docs.sun.com/source/806-3568/…</a>http://stackoverflow.com/questions/1006193/can-a-gnome-application-be-automated-how/1007949#1007949Comment by Torsten Marek on Can a GNOME application be automated? How?Torsten Marek2009-07-17T21:15:59Z2009-07-17T21:15:59Z+1: thanks for the link, very useful!http://stackoverflow.com/questions/1145443/double-nan/1145462#1145462Comment by Torsten Marek on double.NaNTorsten Marek2009-07-17T20:32:22Z2009-07-17T20:32:22Z@Fredik, @Erich: Division by Zero will give inf (or, +inf, -inf based on the operands), 0 / 0 (among others) results in a NaN. There's a nice table with special operations/results at <a href="http://steve.hollasch.net/cgindex/coding/ieeefloat.html" rel="nofollow">steve.hollasch.net/cgindex/coding/…</a>http://stackoverflow.com/questions/1143864/xpath-to-select-only-nodes-where-child-elements-exist/1143938#1143938Comment by Torsten Marek on Xpath to select only nodes where child elements exist?Torsten Marek2009-07-17T20:27:10Z2009-07-17T20:27:10ZOnly if you want to put it into an XML file (e.g. an XSLT script). Still, that's just a storage detail, I'm pretty sure the XPath spec uses ">" :)http://stackoverflow.com/questions/1145286/change-python-file-in-place/1145434#1145434Comment by Torsten Marek on Change python file in placeTorsten Marek2009-07-17T20:15:21Z2009-07-17T20:15:21ZGood luck with that:)http://stackoverflow.com/questions/1145121/why-does-this-code-with-generics-compile/1145130#1145130Comment by Torsten Marek on Why does this code with generics compile?Torsten Marek2009-07-17T19:13:20Z2009-07-17T19:13:20ZYou're quoting from the 1.4.2 docs, while to OP uses 1.5 syntax.http://stackoverflow.com/questions/1144400/hacking-javascript-array-into-json-with-python/1144597#1144597Comment by Torsten Marek on Hacking JavaScript Array Into JSON With PythonTorsten Marek2009-07-17T17:46:47Z2009-07-17T17:46:47ZIt's not too difficult to extend the range of allowable values and add a little dictionary with builtins like those. I mostly wrote up that answer to advertise PyParsing:)http://stackoverflow.com/questions/1143671/python-sorting-list-of-dictionaries-by-multiple-keys/1143829#1143829Comment by Torsten Marek on Python sorting list of dictionaries by multiple keysTorsten Marek2009-07-17T17:14:43Z2009-07-17T17:14:43ZYou can't take the negative of a string. http://stackoverflow.com/questions/1144190/gratuitous-point-giving-superfestComment by Torsten Marek on Gratuitous point giving superfest!Torsten Marek2009-07-17T16:01:20Z2009-07-17T16:01:20ZI can downvote you, if you want...http://stackoverflow.com/questions/1143671/python-sorting-list-of-dictionaries-by-multiple-keys/1143829#1143829Comment by Torsten Marek on Python sorting list of dictionaries by multiple keysTorsten Marek2009-07-17T15:42:05Z2009-07-17T15:42:05Zcf. the updated answer.http://stackoverflow.com/questions/1142970/pyqt-overriding-qgraphicsview-drawitems/1143218#1143218Comment by Torsten Marek on PyQt: Overriding QGraphicsView.drawItemsTorsten Marek2009-07-17T13:54:43Z2009-07-17T13:54:43ZBut he does it to an instance, which is more or less the idea of monkey-patching.