User saffsd - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-21T05:11:48Z
http://stackoverflow.com/feeds/user/37984
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/355907/how-do-i-repeat-an-edit-on-multiple-lines-in-vim
6
How do I repeat an edit on multiple lines in vim?
saffsd
2008-12-10T12:39:14Z
2009-11-28T11:26:25Z
<p>I am aware that in vim I can often repeat a command by simply adding a number in front of it. For example, one can delete 5 lines by:</p>
<pre><code>5dd
</code></pre>
<p>It's also often possible to specify a range of lines to apply a command to, for example</p>
<pre><code>:10,20s:hello:goodbye:gc
</code></pre>
<p>How can I perform a 'vertical edit'? I'd like to, for example, insert a particular symbol, say a comma, at the beggining (skipping whitespace, i.e. what you'd get if you types a comma after Shift-I in command mode) of every line in a given range. How can this be achieved (without resorting to down-period-down-period-down-period)?</p>
http://stackoverflow.com/questions/1733414/how-do-i-include-unicode-strings-in-python-doctests
1
How do I include unicode strings in Python doctests?
saffsd
2009-11-14T05:51:24Z
2009-11-15T00:54:06Z
<p>I am working on some code that has to manipulate unicode strings. I am trying to write doctests for it, but am having trouble. The following is a minimal example that illustrates the problem:</p>
<pre><code># -*- coding: utf-8 -*-
def mylen(word):
"""
>>> mylen(u"áéíóú")
5
"""
return len(word)
print mylen(u"áéíóú")
</code></pre>
<p>First we run the code to see the expected output of <code>print mylen(u"áéíóú")</code>.</p>
<pre><code>$ python mylen.py
5
</code></pre>
<p>Next, we run doctest on it to see the problem.</p>
<pre><code>$ python -m
5
**********************************************************************
File "mylen.py", line 4, in mylen.mylen
Failed example:
mylen(u"áéíóú")
Expected:
5
Got:
10
**********************************************************************
1 items had failures:
1 of 1 in mylen.mylen
***Test Failed*** 1 failures.
</code></pre>
<p>How then can I test that <code>mylen(u"áéíóú")</code> evaluates to 5?</p>
http://stackoverflow.com/questions/1304599/how-do-i-select-multiple-items-from-each-group-in-a-mysql-query
1
How do I select multiple items from each group in a mysql query?
saffsd
2009-08-20T07:48:30Z
2009-08-26T21:00:56Z
<p>I have some forum data of the form</p>
<p>post(author, thread_id, text)</p>
<p>For each author, I would like to select 10 distinct thread_ids associated with that author (there may be more than 10, and the number will vary by author). </p>
<p>I'm thinking of using GROUP BY to group on 'author', but I cannot understand how to express the LIMIT on each group, and how to expand each group back into 10 rows.</p>
http://stackoverflow.com/questions/1237379/how-do-i-set-sys-excepthook-to-invoke-pdb-globally-in-python
1
How do I set sys.excepthook to invoke pdb globally in python?
saffsd
2009-08-06T07:15:46Z
2009-08-26T17:48:08Z
<p>From Python docs:</p>
<blockquote>
sys.excepthook(type, value, traceback)¶<p>
This function prints out a given traceback and exception to sys.stderr.
When an exception is raised and uncaught, the interpreter calls sys.excepthook with three arguments, the exception class, exception instance, and a traceback object. In an interactive session this happens just before control is returned to the prompt; in a Python program this happens just before the program exits. The handling of such top-level exceptions can be customized by assigning another three-argument function to sys.excepthook.
</blockquote>
<p><a href="http://docs.python.org/library/sys.html" rel="nofollow">http://docs.python.org/library/sys.html</a></p>
<p>How do I modify this globally so the default action is to always invoke pdb? Is there a configuration file I can change? I don't want to wrap my code to do this.</p>
http://stackoverflow.com/questions/347109/how-do-i-concisely-implement-multiple-similar-unit-tests-in-the-python-unittest-f
2
How do I concisely implement multiple similar unit tests in the Python unittest framework?
saffsd
2008-12-07T01:59:49Z
2009-08-24T03:07:19Z
<p>I'm implementing unit tests for a family of functions that all share a number of invariants. For example, calling the function with two matrices produce a matrix of known shape.</p>
<p>I would like to write unit tests to test the entire family of functions for this property, without having to write an individual test case for each function (particularly since more functions might be added later). </p>
<p>One way to do this would be to iterate over a list of these functions:</p>
<pre><code>import unittest
import numpy
from somewhere import the_functions
from somewhere.else import TheClass
class Test_the_functions(unittest.TestCase):
def setUp(self):
self.matrix1 = numpy.ones((5,10))
self.matrix2 = numpy.identity(5)
def testOutputShape(unittest.TestCase):
"""Output of functions be of a certain shape"""
for function in all_functions:
output = function(self.matrix1, self.matrix2)
fail_message = "%s produces output of the wrong shape" % str(function)
self.assertEqual(self.matrix1.shape, output.shape, fail_message)
if __name__ == "__main__":
unittest.main()
</code></pre>
<p>I got the idea for this from <a href="http://www.diveintopython.org/unit_testing/romantest.html" rel="nofollow">Dive Into Python</a>. There, it's not a list of functions being tested but a list of known input-output pairs. The problem with this approach is that if any element of the list fails the test, the later elements don't get tested.</p>
<p>I looked at subclassing unittest.TestCase and somehow providing the specific function to test as an argument, but as far as I can tell that prevents us from using unittest.main() because there would be no way to pass the argument to the testcase.</p>
<p>I also looked at dynamically attaching "testSomething" functions to the testcase, by using setattr with a lamdba, but the testcase did not recognize them.</p>
<p>How can I rewrite this so it remains trivial to expand the list of tests, while still ensuring every test is run?</p>
http://stackoverflow.com/questions/928646/how-do-i-tell-git-to-always-select-my-local-version-for-conflicted-merges-on-a-sp
2
How do I tell git to always select my local version for conflicted merges on a specific file?
saffsd
2009-05-30T00:29:53Z
2009-08-23T13:54:56Z
<p>Say I'm collaborating with someone via a git repository, and there is a particular file that I never want to accept any external changes to.</p>
<p>Is there any way for me to set up my local repo to not complain about a conflicted merge every time I git pull? I'd like to always select my local version when merging this file.</p>
<p>edit: Removed mention of config file, it is a poor motivating example.</p>
http://stackoverflow.com/questions/1186190/how-do-i-replace-a-token-with-the-result-of-pwd-in-sed
1
How do I replace a token with the result of `pwd` in sed?
saffsd
2009-07-27T02:31:56Z
2009-07-27T02:57:34Z
<p>I'm trying to do something like this:</p>
<pre><code>sed 's/#REPLACE-WITH-PATH/'`pwd`'/'
</code></pre>
<p>Unfortunately, I that errors out:</p>
<pre><code>sed: -e expression #1, char 23: unknown option to `s'
</code></pre>
<p>Why does this happen?</p>
http://stackoverflow.com/questions/1186190/how-do-i-replace-a-token-with-the-result-of-pwd-in-sed/1186201#1186201
1
Answer by saffsd for How do I replace a token with the result of `pwd` in sed?
saffsd
2009-07-27T02:39:50Z
2009-07-27T02:39:50Z
<pre><code>sed 's:#REPLACE-WITH-PATH:'`pwd`':' config.ini
</code></pre>
<p>The problem is one of escaping the output of <code>pwd</code> correctly. Fortunately, as in vim, sed supports using a different delimiter character. In this case, using the colon instead of slash as a delimiter avoids the escaping problem.</p>
http://stackoverflow.com/questions/934616/how-do-i-find-out-if-a-numpy-array-contains-integers
3
How do I find out if a numpy array contains integers?
saffsd
2009-06-01T12:27:46Z
2009-07-22T22:52:30Z
<p>I know there is a simple solution to this but can't seem to find it at the moment.</p>
<p>Given a numpy array, I need to know if the array contains integers.</p>
<p>Checking the dtype per-se is not enough, as there are multiple int dtypes (int8, int16, int32, int64 ...). </p>
http://stackoverflow.com/questions/877578/fastest-way-to-convert-a-numpy-array-into-a-sparse-dictionary
3
Fastest way to convert a Numpy array into a sparse dictionary?
saffsd
2009-05-18T12:52:21Z
2009-06-26T10:15:58Z
<p>I'm interested in converting a numpy array into a sparse dictionary as quickly as possible. Let me elaborate:</p>
<p>Given the array:</p>
<pre><code>numpy.array([12,0,0,0,3,0,0,1])
</code></pre>
<p>I wish to produce the dictionary:</p>
<pre><code>{0:12, 4:3, 7:1}
</code></pre>
<p>As you can see, we are simply converting the sequence type into an explicit mapping from indices that are nonzero to their values.</p>
<p>In order to make this a bit more interesting, I offer the following test harness to try out alternatives:</p>
<pre><code>from timeit import Timer
if __name__ == "__main__":
s = "import numpy; from itertools import izip; from numpy import nonzero, flatnonzero; vector = numpy.random.poisson(0.1, size=10000);"
ms = [ "f = flatnonzero(vector); dict( zip( f, vector[f] ) )"
, "f = flatnonzero(vector); dict( izip( f, vector[f] ) )"
, "f = nonzero(vector); dict( izip( f[0], vector[f] ) )"
, "n = vector > 0; i = numpy.arange(len(vector))[n]; v = vector[n]; dict(izip(i,v))"
, "i = flatnonzero(vector); v = vector[vector > 0]; dict(izip(i,v))"
, "dict( zip( flatnonzero(vector), vector[flatnonzero(vector)] ) )"
, "dict( zip( flatnonzero(vector), vector[nonzero(vector)] ) )"
, "dict( (i, x) for i,x in enumerate(vector) if x > 0);"
]
for m in ms:
print " %.2fs" % Timer(m, s).timeit(1000), m
</code></pre>
<p>I'm using a poisson distribution to simulate the sort of arrays I am interested in converting.</p>
<p>Here are my results so far:</p>
<pre><code> 0.78s f = flatnonzero(vector); dict( zip( f, vector[f] ) )
0.73s f = flatnonzero(vector); dict( izip( f, vector[f] ) )
0.71s f = nonzero(vector); dict( izip( f[0], vector[f] ) )
0.67s n = vector > 0; i = numpy.arange(len(vector))[n]; v = vector[n]; dict(izip(i,v))
0.81s i = flatnonzero(vector); v = vector[vector > 0]; dict(izip(i,v))
1.01s dict( zip( flatnonzero(vector), vector[flatnonzero(vector)] ) )
1.03s dict( zip( flatnonzero(vector), vector[nonzero(vector)] ) )
4.90s dict( (i, x) for i,x in enumerate(vector) if x > 0);
</code></pre>
<p>As you can see, the fastest solution I have found is</p>
<pre><code>n = vector > 0;
i = numpy.arange(len(vector))[n]
v = vector[n]
dict(izip(i,v))
</code></pre>
<p>Any faster way?</p>
<p>Edit:
The step</p>
<pre><code>i = numpy.arange(len(vector))[n]
</code></pre>
<p>Seems particularly clumsy- generating an entire array before selecting only some elements, particularly when we know it might only be around 1/10 of the elements getting selected. I think this might still be improved. </p>
http://stackoverflow.com/questions/828075/how-do-i-constrain-the-scons-command-builder-to-run-only-if-its-dependencies-have
0
How do I constrain the SCons Command builder to run only if its dependencies have changed?
saffsd
2009-05-06T04:53:18Z
2009-06-17T06:00:02Z
<p>I am using the Command builder in scons to specify that a particular script needs to be invoked to produce a particular file. </p>
<p>I would like to only run the script if it has been modified since the file was previously generated. The default behaviour of the Command builder seems to be to always run the script. How can I change this? </p>
<p>This is my current SConstruct:</p>
<pre><code>speed = Command('speed_analysis.tex','','python code/speed.py')
report = PDF(target = 'report.pdf', source = 'report.tex')
Depends(report, speed)
</code></pre>
http://stackoverflow.com/questions/924340/how-do-i-write-a-bash-alias-function-to-grep-all-files-in-all-subdirectories-for
0
How do I write a bash alias/function to grep all files in all subdirectories for a string?
saffsd
2009-05-29T04:05:43Z
2009-06-11T14:44:21Z
<p>I've been using the following command to grep for a string in all the python source files in and below my current directory:</p>
<pre><code>find . -name '*.py' -exec grep -nHr <string> {} \;
</code></pre>
<p>I'd like to simplify things so that I can just type something like</p>
<pre><code>findpy <string>
</code></pre>
<p>And get the exact same result. Aliases don't seem sufficient since they only do a string expansion, and the argument I need to specify is not the last argument. It sounds like functions are suitable for the task, so I have several questions:</p>
<ul>
<li>How do I write it?</li>
<li>Where do I put it?</li>
</ul>
http://stackoverflow.com/questions/969553/can-i-automatically-change-my-pythonpath-when-activating-deactivating-a-virtualen
2
Can I automatically change my PYTHONPATH when activating/deactivating a virtualenv?
saffsd
2009-06-09T11:44:14Z
2009-06-09T12:15:34Z
<p>I would like to have a different PYTHONPATH from my usual in a particular virtualenv. How do I set this up automatically? I realize that it's possible to hack the <code>bin/activate</code> file, is there a better/more standard way?</p>
http://stackoverflow.com/questions/969553/can-i-automatically-change-my-pythonpath-when-activating-deactivating-a-virtualen/969703#969703
1
Answer by saffsd for Can I automatically change my PYTHONPATH when activating/deactivating a virtualenv?
saffsd
2009-06-09T12:09:29Z
2009-06-09T12:15:33Z
<p>Here is the hacked version of <code>bin/activate</code> for reference. It sets the PYTHONPATH correctly, but unsetting does not work. </p>
<pre><code>
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
if [ -n "$_OLD_VIRTUAL_PATH" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
hash -r
fi
if [ -n "$_OLD_VIRTUAL_PS1" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
if [ -n "$_OLD_PYTHONPATH" ] ; then
PYTHONPATH="$_OLD_PYTHONPATH"
export PYTHONPATH
unset _OLD_PYTHONPATH
fi
unset VIRTUAL_ENV
if [ ! "$1" = "nondestructive" ] ; then
# Self destruct!
unset deactivate
fi
}
# unset irrelavent variables
deactivate nondestructive
VIRTUAL_ENV="env_location" # Anonymized
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
_OLD_VIRTUAL_PS1="$PS1"
if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
fi
export PS1
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
hash -r
fi
_OLD_PYTHONPATH="$PYTHONPATH"
PYTHONPATH="new_pythonpath" #Anonymized
export PYTHONPATH
</code></pre>
http://stackoverflow.com/questions/959782/how-to-ensure-xml-dom-minidom-can-parse-its-own-output
0
How to ensure xml.dom.minidom can parse its own output?
saffsd
2009-06-06T14:19:19Z
2009-06-06T14:29:45Z
<p>I'm trying to serialize some data to xml in a way that can be read back. I'm doing this by manually building a DOM via xml.dom.minidom, and writing it to a file using the included writexml method.</p>
<p>Of particular interest is how I build the text nodes. I do this by initializing a Text object and then setting its data attribute. I'm not sure why the Text object doesn't take its content in the constructor, but that's just the way it in simplemented in xml.dom.minidom.</p>
<p>To give a concrete example, the code looks something like this:</p>
<pre><code>import xml.dom.minidom as dom
e = dom.Element('node')
t = dom.Text()
t.data = "The text content"
e.appendChild(t)
dom.parseString(e.toxml())
</code></pre>
<p>This seemed reasonable to me, particularly since createTextNode itself is implemented exactly like this:</p>
<pre><code>def createTextNode(self, data):
if not isinstance(data, StringTypes):
raise TypeError, "node contents must be a string"
t = Text()
t.data = data
t.ownerDocument = self
return t
</code></pre>
<p>The problem is that setting the data like this allows us to write text that later cannot be parsed back. To give an example, I am having difficulty with the following character:</p>
<pre><code>you´ll
</code></pre>
<p>The quote is ord(180), '\xb4'. My question is, what is the correct procedure to encode this data into an xml document suck that I parse the document with minidom to restore the original tree?</p>
http://stackoverflow.com/questions/934616/how-do-i-find-out-if-a-numpy-array-contains-integers/934652#934652
4
Answer by saffsd for How do I find out if a numpy array contains integers?
saffsd
2009-06-01T12:39:12Z
2009-06-01T12:39:12Z
<p>Found it in the <a href="http://www.tramy.us/numpybook.pdf" rel="nofollow">numpy book</a>! Page 23</p>
<pre>
The other types in the hierarchy define particular categories of types.
These categories can be useful for testing whether or not the object
returned by self.dtype.type is of a particular class (using issubclass).
</pre>
<pre><code>issubclass(n.dtype('int8').type, n.integer)
>>> True
issubclass(n.dtype('int16').type, n.integer)
>>> True
</code></pre>
http://stackoverflow.com/questions/931699/replace-str-method-on-list-object-in-python/931706#931706
4
Answer by saffsd for Replace __str__ method on list object in Python
saffsd
2009-05-31T09:11:36Z
2009-05-31T13:28:41Z
<p>You could extend the list class and override it:</p>
<pre><code>class myList(list):
def __str__(self):
# do something
return "something"
</code></pre>
<p>Edit: removed an incorrect part of the answer which suggested dynamically replacing <code>__str__</code> on the list object, which is not allowed in the implementation of Python lists.</p>
http://stackoverflow.com/questions/906649/how-do-i-inspect-the-scope-of-a-function-where-python-raises-an-exception
0
How do I inspect the scope of a function where Python raises an exception?
saffsd
2009-05-25T12:58:43Z
2009-05-31T04:37:45Z
<p>I've recently discovered the very useful '-i' flag to Python</p>
<pre>
-i : inspect interactively after running script, (also PYTHONINSPECT=x)
and force prompts, even if stdin does not appear to be a terminal
</pre>
<p>this is great for inspecting objects in the global scope, but what happens if the exception was raised in a function call, and I'd like to inspect the local variables of the function? Naturally, I'm interested in the scope of where the exception was first raised, is there any way to get to it?</p>
http://stackoverflow.com/questions/330367/how-would-one-make-python-objects-persistent-in-a-web-app/873784#873784
0
Answer by saffsd for How would one make Python objects persistent in a web-app?
saffsd
2009-05-17T02:31:06Z
2009-05-17T02:31:06Z
<blockquote>
<p>This is Durus, a persistent object system for applications written in the Python
programming language. Durus offers an easy way to use and maintain a consistent
collection of object instances used by one or more processes. Access and change of a
persistent instances is managed through a cached Connection instance which includes
commit() and abort() methods so that changes are transactional. </p>
</blockquote>
<p><a href="http://www.mems-exchange.org/software/durus/" rel="nofollow">http://www.mems-exchange.org/software/durus/</a></p>
<p>I've used it before in some research code, where I wanted to persist the results of certain computations. I eventually switched to <a href="http://www.pytables.org" rel="nofollow">pytables</a> as it met my needs better.</p>
http://stackoverflow.com/questions/367565/how-do-i-build-a-numpy-array-from-a-generator
2
How do I build a numpy array from a generator?
saffsd
2008-12-15T05:44:31Z
2009-05-12T20:33:33Z
<p>How can I build a numpy array out of a generator object?</p>
<p>Let me illustrate the problem:</p>
<pre><code>>>> import numpy
>>> def gimme():
... for x in xrange(10):
... yield x
...
>>> gimme()
<generator object at 0x28a1758>
>>> list(gimme())
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> numpy.array(xrange(10))
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> numpy.array(gimme())
array(<generator object at 0x28a1758>, dtype=object)
>>> numpy.array(list(gimme()))
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
</code></pre>
<p>In this instance, gimme() is the generator whose output I'd like to turn into an array. However, the array constructor does not iterate over the generator, it simply stores the generator itself. The behaviour I desire is that from numpy.array(list(gimme())), but I don't want to pay the memory overhead of having the intermediate list and the final array in memory at the same time. Is there a more space-efficient way?</p>
http://stackoverflow.com/questions/842557/how-to-prevent-a-block-of-code-from-being-interrupted-by-keyboardinterrupt-in-pyt
4
How to prevent a block of code from being interrupted by KeyboardInterrupt in Python?
saffsd
2009-05-09T02:47:10Z
2009-05-09T11:49:51Z
<p>I'm writing a program that caches some results via the pickle module. What happens at the moment is that if I hit ctrl-c at while the <code>dump</code> operation is occurring, <code>dump</code> gets interrupted and the resulting file is corrupted (i.e. only partially written, so it cannot be <code>load</code>ed again.</p>
<p>Is there a way to make <code>dump</code>, or in general a block of code, uninterruptable? My current workaround looks something like this:</p>
<pre><code>try:
file = open(path, 'w')
dump(obj, file)
file.close()
except KeyboardInterrupt:
file.close()
file.open(path,'w')
dump(obj, file)
file.close()
raise
</code></pre>
<p>It seems silly to restart the operation if it is interrupted, so I am searching for a way to defer the interrupt. How do I do this?</p>
http://stackoverflow.com/questions/842696/how-to-use-list-of-python-objects-whose-representation-is-unicode/842804#842804
1
Answer by saffsd for how to use list of python objects whose representation is unicode
saffsd
2009-05-09T06:17:06Z
2009-05-09T06:45:32Z
<p>Try:</p>
<pre><code>s2 = u"%s"%[unicode(a)]
</code></pre>
<p>Your main problem is that you are doing more conversions than you expect. Lets consider the following:</p>
<pre><code>s2 = u"%s"%[a] # gives unicode decode error
</code></pre>
<p>From <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations" rel="nofollow">Python Documentation</a>, </p>
<pre>
's' String (converts any python object using str()).
If the object or format provided is a unicode string,
the resulting string will also be unicode.
</pre>
<p>When the %s format string is being processed, str([a]) is applied. What you have at this point is a string object containg a sequence of unicode bytes. If you try and print this there is no problem, because the bytes pass straight through to your terminal and are rendered by the terminal.</p>
<pre><code>>>> x = "%s" % [a]
>>> print x
[©au]
</code></pre>
<p>The problem arises when you try to convert that back to unicode. Essentially, the function unicode is being called on the string which contains the sequence of unicode-encoded bytes, and that is what causes the ascii codec to fail.</p>
<pre>
>>> u"%s" % x
Traceback (most recent call last):
File "", line 1, in
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 1: ordinal not in range(128)
>>> unicode(x)
Traceback (most recent call last):
File "", line 1, in
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 1: ordinal not in range(128)
</pre>
http://stackoverflow.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable/829729#829729
2
Answer by saffsd for Is it possible to implement a Python for range loop without an iterator variable?
saffsd
2009-05-06T14:00:39Z
2009-05-06T14:00:39Z
<p>Here's a random idea that utilizes (abuses?) the <a href="http://docs.python.org/reference/datamodel.html#object.%5F%5Fnonzero%5F%5F" rel="nofollow">data model</a>.</p>
<pre><code>class Counter(object):
def __init__(self, val):
self.val = val
def __nonzero__(self):
self.val -= 1
return self.val >= 0
x = Counter(5)
while x:
# Do something
pass
</code></pre>
<p>I wonder if there is something like this in the standard libraries?</p>
http://stackoverflow.com/questions/770631/what-packages-are-available-to-typeset-sql-in-latex
1
What packages are available to typeset SQL in LaTeX?
saffsd
2009-04-21T00:39:56Z
2009-04-21T01:07:56Z
<p>I'm looking for a package to typeset SQL statements in LaTeX. So far I have heard of <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/listings/" rel="nofollow">listings</a> and <a href="http://www.ctan.org/tex-archive/nonfree/support/lgrind/" rel="nofollow">lgrind</a>, are there any other suggestions?</p>
<p>[edit] Added requirement: I'd like the package to be able in intelligently insert page breaks, so that where possible statements do not span multiple pages. Still reading documentation, so it is possible that either of the a/m are able to do this already- Please let me know if this is the case.</p>
<p>Related: <a href="http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages">question</a></p>
http://stackoverflow.com/questions/763654/json-how-do-i-store-a-string-with-a-in-it/765258#765258
3
Answer by saffsd for JSON: How do I store a string with a " in it?
saffsd
2009-04-19T11:29:19Z
2009-04-19T11:29:19Z
<p>Python has two symbols you can use to specify string literals, the single quote and the double quote. </p>
<p>For example:
my_string = "I'm home!"</p>
<p>Or, more relevant to you, </p>
<pre><code>>>> string = '{ "Dimensions" : " 12.0\\\" x 9.6\\\" " }'
>>> print string
{ "Dimensions" : " 12.0\" x 9.6\" " }
</code></pre>
<p>You can also prefix the string with 'r' to specify it is a raw string, so backslash escaped sequences are not processed, making it cleaner.</p>
<pre><code>>>> string = r'{ "Dimensions" : " 12.0\" x 9.6\" " }'
>>> print string
{ "Dimensions" : " 12.0\" x 9.6\" " }
</code></pre>
http://stackoverflow.com/questions/729759/how-to-i-get-scons-to-invoke-an-external-script
2
How to I get scons to invoke an external script?
saffsd
2009-04-08T12:36:53Z
2009-04-08T14:33:08Z
<p>I'm trying to use scons to build a latex document. In particular, I want to get scons to invoke a python program that generates a file containing a table that is \input{} into the main document. I've looked over the scons documentation but it is not immediately clear to me what I need to do.</p>
<p>What I wish to achieve is essentially what you would get with this makefile:</p>
<pre><code>document.pdf: table.tex
pdflatex document.tex
table.tex:
python table_generator.py
</code></pre>
<p>How can I express this in scons?</p>
http://stackoverflow.com/questions/217834/how-to-create-a-timeline-with-latex/729189#729189
1
Answer by saffsd for How to create a timeline with LaTeX?
saffsd
2009-04-08T09:12:45Z
2009-04-08T09:12:45Z
<p>There is <a href="http://ftp.ktug.or.kr/tex-archive//macros/latex209/contrib/misc/timeline.sty" rel="nofollow">timeline.sty</a> floating around.</p>
<p>The syntax is simpler than using tikz:</p>
<pre><code>%%% In LaTeX:
%%% \begin{timeline}{length}(start,stop)
%%% .
%%% .
%%% .
%%% \end{timeline}
%%%
%%% in plain TeX
%%% \timeline{length}(start,stop)
%%% .
%%% .
%%% .
%%% \endtimeline
%%% in between the two, we may have:
%%% \item{date}{description}
%%% \item[sortkey]{date}{description}
%%% \optrule
%%%
%%% the options to timeline are:
%%% length The amount of vertical space that the timeline should
%%% use.
%%% (start,stop) indicate the range of the timeline. All dates or
%%% sortkeys should lie in the range [start,stop]
%%%
%%% \item without the sort key expects date to be a number (such as a
%%% year).
%%% \item with the sort key expects the sort key to be a number; date
%%% can be anything. This can be used for log scale time lines
%%% or dates that include months or days.
%%% putting \optrule inside of the timeline environment will cause a
%%% vertical rule to be drawn down the center of the timeline.
</code></pre>
<p>I've used python's datetime.data.toordinal to convert dates to 'sort keys' in the context of the package.</p>
http://stackoverflow.com/questions/716259/matrices-in-python/716931#716931
0
Answer by saffsd for Matrices in python
saffsd
2009-04-04T11:32:13Z
2009-04-04T11:32:13Z
<p>Have you considered the csv module for working with csv files?</p>
<p><a href="http://docs.python.org/library/csv.html" rel="nofollow">Python docs for csv module</a></p>
http://stackoverflow.com/questions/703700/how-can-i-determine-all-the-codepoints-that-do-not-have-glyphs-in-a-font-using-fr
1
How can I determine all the codepoints that do not have glyphs in a font using FreeType?
saffsd
2009-04-01T01:26:40Z
2009-04-01T01:26:40Z
<p>This question is closely related to</p>
<p><a href="http://stackoverflow.com/questions/103725/is-there-a-way-to-programatically-determine-if-a-font-file-has-a-specific-unicode">http://stackoverflow.com/questions/103725/is-there-a-way-to-programatically-determine-if-a-font-file-has-a-specific-unicode</a></p>
<p>However, I am looking for a solution that does not use the Windows API. Freetype in particular looks promising, and I was wondering if anyone familiar with it could provide pointers.</p>
<p>Basically, I'd like to, given a font, calculate a mapping from character map to a sequence of codepoints without glyphs for that character map.</p>
http://stackoverflow.com/questions/696043/how-do-i-split-a-git-repository
1
How do I split a git repository? [closed]
saffsd
2009-03-30T05:02:12Z
2009-03-30T05:08:10Z
<p>I have a git repository containing several modules, each in their own subfolder, and I'd like to split them into independent repositories, ideally preserving as much of their individual histories as possible. Is there a canonical way of doing this?</p>
<h3>Exact Duplicate</h3>
<p><a href="http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository">http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository</a></p>
http://stackoverflow.com/questions/1733414/how-do-i-include-unicode-strings-in-python-doctests/1733459#1733459
Comment by saffsd on How do I include unicode strings in Python doctests?
saffsd
2009-11-15T22:22:25Z
2009-11-15T22:22:25Z
Fair enough, this is probably the better general solution. However, in my case I am still constrained to Python 2.x due to dependencies on matplotlib and numpy.
http://stackoverflow.com/questions/1733414/how-do-i-include-unicode-strings-in-python-doctests/1734503#1734503
Comment by saffsd on How do I include unicode strings in Python doctests?
saffsd
2009-11-15T22:20:31Z
2009-11-15T22:20:31Z
Thanks! This approach won't work with any package that auto-discovers tests on Python 2.x though.
http://stackoverflow.com/questions/1733414/how-do-i-include-unicode-strings-in-python-doctests/1736189#1736189
Comment by saffsd on How do I include unicode strings in Python doctests?
saffsd
2009-11-15T22:18:07Z
2009-11-15T22:18:07Z
Thanks! Unfortunately this approach breaks 'make doctest' with sphinx. It ends up with a 'utf8' codec can't decode bytes in position ...: invalid data.
http://stackoverflow.com/questions/347109/how-do-i-concisely-implement-multiple-similar-unit-tests-in-the-python-unittest-f/373107#373107
Comment by saffsd on How do I concisely implement multiple similar unit tests in the Python unittest framework?
saffsd
2009-08-26T10:53:08Z
2009-08-26T10:53:08Z
I recognize that, but another counter-argument is that if you are running tests in a batch, say overnight, you want to know where all of the failures are, not just the first one.
http://stackoverflow.com/questions/1304599/how-do-i-select-multiple-items-from-each-group-in-a-mysql-query/1326312#1326312
Comment by saffsd on How do I select multiple items from each group in a mysql query?
saffsd
2009-08-26T10:50:04Z
2009-08-26T10:50:04Z
Thanks, that's useful. I'm not fully understanding the thought process though, would you be so kind as to elaborate on how it works?
http://stackoverflow.com/questions/1237379/how-do-i-set-sys-excepthook-to-invoke-pdb-globally-in-python/1237407#1237407
Comment by saffsd on How do I set sys.excepthook to invoke pdb globally in python?
saffsd
2009-08-06T07:52:20Z
2009-08-06T07:52:20Z
Exactly what I wanted, thank you.
http://stackoverflow.com/questions/1006885/how-to-replace-the-disown-with-screen
Comment by saffsd on how to replace the "disown" with "screen"?
saffsd
2009-06-17T13:09:00Z
2009-06-17T13:09:00Z
I assume he wants to detach a process from the current shell, and attach it to a screen session. +1 because I'm interested too.
http://stackoverflow.com/questions/969553/can-i-automatically-change-my-pythonpath-when-activating-deactivating-a-virtualen/969727#969727
Comment by saffsd on Can I automatically change my PYTHONPATH when activating/deactivating a virtualenv?
saffsd
2009-06-11T08:57:49Z
2009-06-11T08:57:49Z
I'm trying this out now, and I'll probably accept it in a couple of days if there still aren't any other solutions that do not depend on additional packages.
http://stackoverflow.com/questions/931699/replace-str-method-on-list-object-in-python
Comment by saffsd on Replace __str__ method on list object in Python
saffsd
2009-05-31T09:19:51Z
2009-05-31T09:19:51Z
Is there any reason why you can't use myList to start with?
Alternatively, consider writing a function which wraps around a list, so you call say pretty_print_list(the_list) instead of str(the_list)
http://stackoverflow.com/questions/928646/how-do-i-tell-git-to-always-select-my-local-version-for-conflicted-merges-on-a-sp/930495#930495
Comment by saffsd on How do I tell git to always select my local version for conflicted merges on a specific file?
saffsd
2009-05-31T01:32:27Z
2009-05-31T01:32:27Z
Thank you for the detailed answer! I understand that it makes no sense to version-control config files, but I was after a straightforwards motivating example. Indeed, it's the broader question that interested me. I'd never heard of git merge drivers before, so thank you for enlightening me.
http://stackoverflow.com/questions/924340/how-do-i-write-a-bash-alias-function-to-grep-all-files-in-all-subdirectories-for/924509#924509
Comment by saffsd on How do I write a bash alias/function to grep all files in all subdirectories for a string?
saffsd
2009-05-29T05:52:52Z
2009-05-29T05:52:52Z
My distribution has it set up that the only action that .bash_profile takes is to source .bashrc, so it's a non-issue. Thanks!
http://stackoverflow.com/questions/924340/how-do-i-write-a-bash-alias-function-to-grep-all-files-in-all-subdirectories-for/924356#924356
Comment by saffsd on How do I write a bash alias/function to grep all files in all subdirectories for a string?
saffsd
2009-05-29T04:30:58Z
2009-05-29T04:30:58Z
This doesn't work. set -x reveals that <code>findpy test</code> expands to "+ find . -name '*.py' -exec grep -nHr '{}' ';' test"
http://stackoverflow.com/questions/906649/how-do-i-inspect-the-scope-of-a-function-where-python-raises-an-exception/906787#906787
Comment by saffsd on How do I inspect the scope of a function where Python raises an exception?
saffsd
2009-05-25T13:59:15Z
2009-05-25T13:59:15Z
Thanks but this is not exactly what I am looking for. I'd prefer not to have to wrap the code if possible.
http://stackoverflow.com/questions/101268/hidden-features-of-python/101310#101310
Comment by saffsd on Hidden features of Python
saffsd
2009-05-17T02:41:39Z
2009-05-17T02:41:39Z
Of particular note is the memory overhead savings. Values are computed on-demand, so you never have the entire result of the list comprehension in memory. This is particularly desirable if you later iterate over only part of the list comprehension.
http://stackoverflow.com/questions/449560/how-do-i-determine-the-size-of-an-object-in-python
Comment by saffsd on How do I determine the size of an object in Python?
saffsd
2009-05-17T01:28:07Z
2009-05-17T01:28:07Z
@S.Lott it does in a scientific programming context, if you're trying to figure out if a particular problem will fit in memory.