User Denis - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:05:41Zhttp://stackoverflow.com/feeds/user/86643http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/870258/command-line-parser-for-qt4/969962#9699621Answer by Denis for Command line parser for Qt4Denis2009-06-09T13:07:49Z2009-11-25T17:21:21Z<p>A really simple method is to scan "key=value" args,<br>
put them in a table say zz.map: QString -> QVariant,<br>
and get their values with zz.map.value( key, default ).
An example:</p>
<pre><code>#include "ztest.h"
Ztest zz;
int main( int argc, char* argv[] )
{
zz.eqargs( ++ argv ); // scan test=2 x=str ... to zz.map
QString xx = zz.map.value( "xx", "" );
if( Zint( Size, 10 )) // a #def -> zz.map.value( "Size", 10 )
...
</code></pre>
<p><code>ztest.h</code> is < 1 page, below; same for Python ~ 10 lines. </p>
<p>(Everybody has his/her favorite options parser;
this one's about the simplest.<br>
Worth repeating: however you specify options, <em>echo them to output files</em> --<br>
"every scientist I know has trouble keeping track
of what parameters they used last time they ran a script".)</p>
<p>To make QPoints etc work one of course needs a QString -> QPoint parser.
Anyone know offhand why this doesn't work (in Qt 4.4.3) ?</p>
<pre><code>QPoint pt(0,0);
QDataStream s( "QPoint(1,2)" );
s >> pt;
qDebug() << "pt:" << pt; // QPoint(1364225897,1853106225) ??
</code></pre>
<p>Added 25nov --</p>
<pre><code>// ztest.h: scan args x=2 s=str ... to a key -> string table
// usage:
// Ztest ztest;
// int main( int argc, char* argv[] )
// {
// QApplication app( argc, argv );
// ztest.eqargs( ++ argv ); // scan leading args name=value ...
// int x = Zint( x, 10 ); // arg x= or default 10
// qreal ff = Zreal( ff, 3.14 );
// QString s = Zstr( s, "default" );
// care: int misspelled = Zint( misspellled ) -- you lose
//version: 2009-06-09 jun denis
#ifndef ztest_h
#define ztest_h
#include <QHash>
#include <QString>
#include <QVariant>
#include <QRegExp>
//------------------------------------------------------------------------------
class Ztest {
public:
QHash< QString, QVariant > map;
int test; // arg test=num, if( ztest.test )
Ztest() : test( 0 ) {}
QVariant val( const QString& key, const QVariant& default_ = 0 )
{
return map.value( key, default_ );
}
void setval( const QString& key, const QVariant& val )
{
map[key] = val;
if( key == "test" || key == "Test" )
test = val.toInt();
}
//------------------------------------------------------------------------------
// ztest.eqargs( ++ argv ) scans test=2 x=3 ... -> ztest table
void eqargs( char** argv )
{
char** argv0 = argv;
char *arg;
QRegExp re( "(\\w+)=(.*)" ); // name= anything, but not ./file=name
for( ; (arg = *argv) && re.exactMatch( arg ); argv ++ ){
setval( re.cap(1), re.cap(2) );
}
// change argv[0..] -> args after all name=values
while(( *argv0++ = *argv++) != 0 ) {}
}
};
extern Ztest ztest;
// macros: int x = Zint( x, 10 ): x= arg or default 10
#define Zstr( key, default ) ztest.val( #key, default ).toString()
#define Zint( key, default ) ztest.val( #key, default ).toInt()
#define Zreal( key, default ) ztest.val( #key, default ).toDouble()
#endif
</code></pre>
http://stackoverflow.com/questions/1727950/just-curious-about-pythonnumpy-to-realtime-gesture-recognition/1789483#17894830Answer by Denis for Just Curious about Python+Numpy to Realtime Gesture RecognitionDenis2009-11-24T11:29:11Z2009-11-24T11:29:11Z<p>You might look at <a href="http://en.wikipedia.org/wiki/OpenCV" rel="nofollow">OpenCV</a>, which has Python libs
<a href="http://code.google.com/p/ctypes-opencv" rel="nofollow">ctypes-opencv</a>
and <a href="http://code.google.com/p/opencv-cython" rel="nofollow">opencv-cython</a>;
I haven't used these myself.
Ideally you want to combine a fast-running C inner loop
with a flexible Python/Numpy play-with-algorithms.<br>
Bytheway google "opencv gesture recognition" → 6680 hits.</p>
http://stackoverflow.com/questions/1651593/python-and-factories/1742441#17424410Answer by Denis for Python and factoriesDenis2009-11-16T14:18:16Z2009-11-16T14:18:16Z<p>See also <a href="http://docs.python.org/library/functions.html#type" rel="nofollow">type()</a>
in docs.python.org/library/functions:</p>
<p>type(name, bases, dict)</p>
<p>Return a new type object. This is essentially a dynamic form of the class statement.
The name string is the class name and becomes the __name__ attribute;
the bases tuple itemizes the base classes and becomes the __bases__ attribute;
and the dict dictionary is the namespace containing definitions for class body
and becomes the __dict__ attribute.
For example, the following two statements create identical type objects:</p>
<pre><code>class X(object):
a = 1
X = type('X', (object,), dict(a=1))
</code></pre>
<p>For a short real program with one use of factories (compactly building lots of special dicts), see
<a href="http://github.com/btbytes/pyofc2/blob/master/pyofc2/ofc2.py" rel="nofollow">ofc2.py</a> .<br>
Experts, more examples please ?</p>
http://stackoverflow.com/questions/363223/how-do-i-get-both-stdout-and-stderr-to-go-to-the-terminal-and-a-log-file/1728810#17288100Answer by Denis for How do I get both STDOUT and STDERR to go to the terminal and a log file?Denis2009-11-13T12:01:12Z2009-11-13T12:01:12Z<p>A year later, here's an old bash script for logging anything. For example,<br>
<code>teelog make ...</code> logs to a generated log name (and see the trick for logging nested <code>make</code>s too.)</p>
<pre><code>#!/bin/bash
me=teelog
Version="2008-10-9 oct denis-bz"
Help() {
cat <<!
$me anycommand args ...
logs the output of "anycommand ..." as well as displaying it on the screen,
by running
anycommand args ... 2>&1 | tee `day`-command-args.log
That is, stdout and stderr go to both the screen, and to a log file.
(The Unix "tee" command is named after "T" pipe fittings, 1 in -> 2 out;
see http://en.wikipedia.org/wiki/Tee_(command) ).
The default log file name is made up from "command" and all the "args":
$me cmd -opt dir/file logs to `day`-cmd--opt-file.log .
To log to xx.log instead, either export log=xx.log or
$me log=xx.log cmd ...
If "logdir" is set, logs are put in that directory, which must exist.
An old xx.log is moved to /tmp/\$USER-xx.log .
The log file has a header like
# from: command args ...
# run: date pwd etc.
to show what was run; see "From" in this file.
Called as "Log" (ln -s $me Log), Log anycommand ... logs to a file:
command args ... > `day`-command-args.log
and tees stderr to both the log file and the terminal -- bash only.
Some commands that prompt for input from the console, such as a password,
don't prompt if they "| tee"; you can only type ahead, carefully.
To log all "make" s, including nested ones like
cd dir1; \$(MAKE)
cd dir2; \$(MAKE)
...
export MAKE="$me make"
!
# See also: output logging in screen(1).
exit 1
}
#-------------------------------------------------------------------------------
# bzutil.sh denisbz may2008 --
day() { # 30mar, 3mar
/bin/date +%e%h | tr '[A-Z]' '[a-z]' | tr -d ' '
}
edate() { # 19 May 2008 15:56
echo `/bin/date "+%e %h %Y %H:%M"`
}
From() { # header # from: $* # run: date pwd ...
case `uname` in Darwin )
mac=" mac `sw_vers -productVersion`"
esac
cut -c -200 <<!
${comment-#} from: $@
${comment-#} run: `edate` in $PWD `uname -n` $mac `arch`
!
# mac $PWD is pwd -L not -P real
}
# log name: day-args*.log, change this if you like --
logfilename() {
log=`day`
[[ $1 == "sudo" ]] && shift
for arg
do
log="$log-${arg##*/}" # basename
(( ${#log} >= 100 )) && break # max len 100
done
# no blanks etc in logfilename please, tr them to "-"
echo $logdir/` echo "$log".log | tr -C '.:+=[:alnum:]_\n' - `
}
#-------------------------------------------------------------------------------
case "$1" in
-v* | --v* )
echo "$0 version: $Version"
exit 1 ;;
"" | -* )
Help
esac
# scan log= etc --
while [[ $1 == [a-zA-Z_]*=* ]]; do
export "$1"
shift
done
: ${logdir=.}
[[ -w $logdir ]] || {
echo >&2 "error: $me: can't write in logdir $logdir"
exit 1
}
: ${log=` logfilename "$@" `}
[[ -f $log ]] &&
/bin/mv "$log" "/tmp/$USER-${log##*/}"
case ${0##*/} in # basename
log | Log ) # both to log, stderr to caller's stderr too --
{
From "$@"
"$@"
} > $log 2> >(tee /dev/stderr) # bash only
# see http://wooledge.org:8000/BashFAQ 47, stderr to a pipe
;;
* )
#-------------------------------------------------------------------------------
{
From "$@" # header: from ... date pwd etc.
"$@" 2>&1 # run the cmd with stderr and stdout both to the log
} | tee $log
# mac tee buffers stdout ?
esac
</code></pre>
http://stackoverflow.com/questions/1634555/least-square-solution-to-camera-matrix-numpy/1661225#16612250Answer by Denis for least square solution to camera matrix [numpy]Denis2009-11-02T13:08:33Z2009-11-02T14:08:21Z<p>Would <a href="http://advice.mechanicalkern.com/question/18/how-to-minimize-ax-b-by-least-squares-staying-near-a-point-x0" rel="nofollow">least squares staying near a point x0</a>
be of any use, i.e. is there a camera matrix x0 you want to be near to ?<br />
"Keep away from some x0" is non-convex, nasty; keep near x0 or x1 ..., i.e. minimize<br />
<code>|Ax-b|^2 + w^2 (|x-x0|^2 + |x-x1|^2 + ...)</code> is easy.</p>
http://stackoverflow.com/questions/1622943/timeit-versus-timing-decorator/1630626#16306261Answer by Denis for timeit versus timing decoratorDenis2009-10-27T12:57:51Z2009-10-29T15:20:01Z<p>I got tired of <code>from __main__ import foo</code>, now use this -- for simple args, for which %r works,
and not in Ipython.<br />
(Why does <code>timeit</code> works only on strings, not thunks / closures i.e. timefunc( f, arbitrary args ) ?)</p>
<pre><code>
import timeit
def timef( funcname, *args, **kwargs ):
""" timeit a func with args, e.g.
for window in ( 3, 31, 63, 127, 255 ):
timef( "filter", window, 0 )
This doesn't work in ipython;
see Martelli, "ipython plays weird tricks with __main__" in Stackoverflow
"""
argstr = ", ".join([ "%r" % a for a in args]) if args else ""
kwargstr = ", ".join([ "%s=%r" % (k,v) for k,v in kwargs.items()]) \
if kwargs else ""
comma = ", " if (argstr and kwargstr) else ""
fargs = "%s(%s%s%s)" % (funcname, argstr, comma, kwargstr)
# print "test timef:", fargs
t = timeit.Timer( fargs, "from __main__ import %s" % funcname )
ntime = 3
print "%.0f usec %s" % (t.timeit( ntime ) * 1e6 / ntime, fargs)
#...............................................................................
if __name__ == "__main__":
def f( *args, **kwargs ):
pass
try:
from __main__ import f
except:
print "ipython plays weird tricks with __main__, timef won't work"
timef( "f")
timef( "f", 1 )
timef( "f", """ a b """ )
timef( "f", 1, 2 )
timef( "f", x=3 )
timef( "f", x=3 )
timef( "f", 1, 2, x=3, y=4 )
</code></pre>
<p>Added: see also "ipython plays weird tricks with <strong>main</strong>", Martelli
in <a href="http://stackoverflow.com/questions/1336980/running-doctests-through-ipython-and-pseudo-consoles">running-doctests-through-ipython</a></p>
http://stackoverflow.com/questions/1309263/rolling-median-algorithm-in-c/1625442#16254420Answer by Denis for Rolling median algorithm in CDenis2009-10-26T15:20:28Z2009-10-27T13:01:10Z<p>Here's a simple algorithm for quantized data (months later):</p>
<pre><code>""" median1.py: moving median 1d for quantized, e.g. 8-bit data
Method: cache the median, so that wider windows are faster.
The code is simple -- no heaps, no trees.
Keywords: median filter, moving median, running median, numpy, scipy
See Perreault + Hebert, Median Filtering in Constant Time, 2007,
http://nomis80.org/ctmf.html: nice 6-page paper and C code,
mainly for 2d images
Example:
y = medians( x, window=window, nlevel=nlevel )
uses:
med = Median1( nlevel, window, counts=np.bincount( x[0:window] ))
med.addsub( +, - ) -- see the picture in Perreault
m = med.median() -- using cached m, summ
How it works:
picture nlevel=8, window=3 -- 3 1s in an array of 8 counters:
counts: . 1 . . 1 . 1 .
sums: 0 1 1 1 2 2 3 3
^ sums[3] < 2 <= sums[4] <=> median 4
addsub( 0, 1 ) m, summ stay the same
addsub( 5, 1 ) slide right
addsub( 5, 6 ) slide left
Updating `counts` in an `addsub` is trivial, updating `sums` is not.
But we can cache the previous median `m` and the sum to m `summ`.
The less often the median changes, the faster;
so fewer levels or *wider* windows are faster.
(Like any cache, run time varies a lot, depending on the input.)
See also:
scipy.signal.medfilt -- runtime roughly ~ window size
http://stackoverflow.com/questions/1309263/rolling-median-algorithm-in-c
"""
from __future__ import division
import numpy as np # bincount, pad0
__date__ = "2009-10-27 oct"
__author_email__ = "denis-bz-py at t-online dot de"
#...............................................................................
class Median1:
""" moving median 1d for quantized, e.g. 8-bit data """
def __init__( s, nlevel, window, counts ):
s.nlevel = nlevel # >= len(counts)
s.window = window # == sum(counts)
s.half = (window // 2) + 1 # odd or even
s.setcounts( counts )
def median( s ):
""" step up or down until sum cnt to m-1 < half <= sum to m """
if s.summ - s.cnt[s.m] < s.half <= s.summ:
return s.m
j, sumj = s.m, s.summ
if sumj <= s.half:
while j < s.nlevel - 1:
j += 1
sumj += s.cnt[j]
# print "j sumj:", j, sumj
if sumj - s.cnt[j] < s.half <= sumj: break
else:
while j > 0:
sumj -= s.cnt[j]
j -= 1
# print "j sumj:", j, sumj
if sumj - s.cnt[j] < s.half <= sumj: break
s.m, s.summ = j, sumj
return s.m
def addsub( s, add, sub ):
s.cnt[add] += 1
s.cnt[sub] -= 1
assert s.cnt[sub] >= 0, (add, sub)
if add <= s.m:
s.summ += 1
if sub <= s.m:
s.summ -= 1
def setcounts( s, counts ):
assert len(counts) <= s.nlevel, (len(counts), s.nlevel)
if len(counts) < s.nlevel:
counts = pad0__( counts, s.nlevel ) # numpy array / list
sumcounts = sum(counts)
assert sumcounts == s.window, (sumcounts, s.window)
s.cnt = counts
s.slowmedian()
def slowmedian( s ):
j, sumj = -1, 0
while sumj < s.half:
j += 1
sumj += s.cnt[j]
s.m, s.summ = j, sumj
def __str__( s ):
return ("median %d: " % s.m) + \
"".join([ (" ." if c == 0 else "%2d" % c) for c in s.cnt ])
#...............................................................................
def medianfilter( x, window, nlevel=256 ):
""" moving medians, y[j] = median( x[j:j+window] )
-> a shorter list, len(y) = len(x) - window + 1
"""
assert len(x) >= window, (len(x), window)
# np.clip( x, 0, nlevel-1, out=x )
# cf http://scipy.org/Cookbook/Rebinning
cnt = np.bincount( x[0:window] )
med = Median1( nlevel=nlevel, window=window, counts=cnt )
y = (len(x) - window + 1) * [0]
y[0] = med.median()
for j in xrange( len(x) - window ):
med.addsub( x[j+window], x[j] )
y[j+1] = med.median()
return y # list
# return np.array( y )
def pad0__( x, tolen ):
""" pad x with 0 s, numpy array or list """
n = tolen - len(x)
if n > 0:
try:
x = np.r_[ x, np.zeros( n, dtype=x[0].dtype )]
except NameError:
x += n * [0]
return x
#...............................................................................
if __name__ == "__main__":
Len = 10000
window = 3
nlevel = 256
period = 100
np.set_printoptions( 2, threshold=100, edgeitems=10 )
# print medians( np.arange(3), 3 )
sinwave = (np.sin( 2 * np.pi * np.arange(Len) / period )
+ 1) * (nlevel-1) / 2
x = np.asarray( sinwave, int )
print "x:", x
for window in ( 3, 31, 63, 127, 255 ):
if window > Len: continue
print "medianfilter: Len=%d window=%d nlevel=%d:" % (Len, window, nlevel)
y = medianfilter( x, window=window, nlevel=nlevel )
print np.array( y )
# end median1.py
</code></pre>
http://stackoverflow.com/questions/1599754/is-there-easy-way-in-python-to-extrapolate-data-points-to-the-future/1614148#16141482Answer by Denis for Is there easy way in python to extrapolate data points to the future?Denis2009-10-23T15:15:12Z2009-10-24T16:26:59Z<p>It's all too easy for extrapolation to generate garbage; try this.
Many different extrapolations are of course possible;
some produce obvious garbage, some non-obvious garbage, many are ill-defined.</p>
<p><img src="http://www.inselpix.com/img/519134528605.png" alt="alt text" /></p>
<pre><code>""" extrapolate y,m,d data with scipy UnivariateSpline """
import numpy as np
from scipy.interpolate import UnivariateSpline
# pydoc scipy.interpolate.UnivariateSpline -- fitpack, unclear
from datetime import date
from pylab import * # ipython -pylab
__version__ = "denis 23oct"
def daynumber( y,m,d ):
""" 2005,1,1 -> 0 2006,1,1 -> 365 ... """
return date( y,m,d ).toordinal() - date( 2005,1,1 ).toordinal()
days, values = np.array([
(daynumber(2005,1,1), 1.2 ),
(daynumber(2005,4,1), 1.8 ),
(daynumber(2005,9,1), 5.3 ),
(daynumber(2005,10,1), 5.3 )
]).T
dayswanted = np.array([ daynumber( year, month, 1 )
for year in range( 2005, 2006+1 )
for month in range( 1, 12+1 )])
np.set_printoptions( 1 ) # .1f
print "days:", days
print "values:", values
print "dayswanted:", dayswanted
title( "extrapolation with scipy.interpolate.UnivariateSpline" )
plot( days, values, "o" )
for k in (1,2,3): # line parabola cubicspline
extrapolator = UnivariateSpline( days, values, k=k )
y = extrapolator( dayswanted )
label = "k=%d" % k
print label, y
plot( dayswanted, y, label=label ) # pylab
legend( loc="lower left" )
grid(True)
savefig( "extrapolate-UnivariateSpline.png", dpi=50 )
show()
</code></pre>
<p>Added: a <a href="http://projects.scipy.org/scipy/ticket/864" rel="nofollow">Scipy ticket</a> says,
"The behavior of the FITPACK classes in
scipy.interpolate is much more complex than the docs would lead one to believe" --
imho true of other software doc too.</p>
http://stackoverflow.com/questions/1534748/design-an-efficient-algorithm-to-sort-5-distinct-keys-in-fewer-than-8-comparisons/1607649#16076491Answer by Denis for Design an efficient algorithm to sort 5 distinct keys in fewer than 8 comparisonsDenis2009-10-22T14:31:01Z2009-10-23T08:30:57Z<p><a href="http://en.wikipedia.org/wiki/Sorting%5Fnetwork" rel="nofollow">Sorting network</a>s
have a restricted structure,
so don't answer the original question; but they're fun.<br />
<a href="http://pages.ripco.net/~jgamble/nw.html" rel="nofollow">List of Sorting Networks</a>
generates nice diagrams or lists of SWAPs for up to 32 inputs.
For 5, it gives</p>
<pre><code>There are 9 comparators in this network, grouped into 6 parallel operations.
[[0,1],[3,4]]
[[2,4]]
[[2,3],[1,4]]
[[0,3]]
[[0,2],[1,3]]
[[1,2]]
</code></pre>
http://stackoverflow.com/questions/423006/how-do-i-generate-points-that-match-a-histogram/1594147#15941470Answer by Denis for How do I generate points that match a histogram?Denis2009-10-20T12:08:17Z2009-10-20T12:08:17Z<p>To choose from a histogram (original or reduced),
<a href="http://code.activestate.com/recipes/576564" rel="nofollow">Walker's alias method</a>
is fast and simple.</p>
http://stackoverflow.com/questions/1515828/getting-the-point-of-a-catmull-rom-spline-after-a-certain-distance/1532234#15322341Answer by Denis for Getting the point of a catmull rom spline after a certain distance?Denis2009-10-07T15:08:35Z2009-10-09T16:26:32Z<p>Another link:
<a href="http://www.antigrain.com/research/adaptive%5Fbezier/index.html" rel="nofollow">Adaptive Subdivision of Bezier Curves</a> in the Anti-Grain Geometry library<br />
is mainly on the different problem of drawing Bezier curves on a grid of pixels
with a wide brush, but see the very end.<br />
(Added:) Antigrain also has a lovely examples/bspline.cpp
in which you can move knots and vary the number of intermediate points.</p>
http://stackoverflow.com/questions/1499365/api-to-add-a-tree-view-to-a-web-document0API to add a tree view to a web document ?Denis2009-09-30T16:49:39Z2009-09-30T17:03:09Z
<p>Say I'm looking at a long web doc.html which has no tree view on the left,
but I can hack a local tree view file with level, name, href like</p>
<pre><code>+ 1 US href= ("+" button expands, "-" folds)
2 Alabama href=
3 ...
2 Alaska href=
...
+ 1 Canada href=
...
</code></pre>
<p>Is there a small API that can generate a tree viewer / navigator from this,<br />
either side by side in the same browser window with the remote web pages,
or in a separate window ?<br />
I'd prefer Python (don't know Java or php), use Macosx and Firefox.<br />
(The tree view lines can of course be reformatted to xml
or whatever the API wants.)</p>
http://stackoverflow.com/questions/1322380/gotchas-where-numpy-differs-from-straight-python4gotchas where Numpy differs from straight python ?Denis2009-08-24T13:21:37Z2009-09-12T02:19:46Z
<p>Folks,</p>
<p>is there a collection of gotchas where Numpy differs from python,
points that have puzzled and cost time ?</p>
<blockquote>
<p>"The horror of that moment I shall
never never forget !"<br />
"You will, though," the Queen said, "if you don't
make a memorandum of it."</p>
</blockquote>
<p>For example, NaNs are always trouble, anywhere.
If you can explain this without running it, give yourself a point --</p>
<pre><code>from numpy import array, NaN, isnan
pynan = float("nan")
print pynan is pynan, pynan is NaN, NaN is NaN
a = (0, pynan)
print a, a[1] is pynan, any([aa is pynan for aa in a])
a = array(( 0, NaN ))
print a, a[1] is NaN, isnan( a[1] )
</code></pre>
<p>(I'm not knocking numpy, lots of good work there, just think a FAQ or Wiki of gotchas would be useful.)</p>
<p>Edit: I was hoping to collect half a dozen gotchas (surprises for people learning Numpy).<br />
Then, if there are common gotchas or, better, common explanations,
we could talk about adding them to a community Wiki (where ?)
It doesn't look like we have enough so far.</p>
http://stackoverflow.com/questions/1322380/gotchas-where-numpy-differs-from-straight-python/1411629#14116290Answer by Denis for gotchas where Numpy differs from straight python ?Denis2009-09-11T15:30:19Z2009-09-11T15:30:19Z<p>from Neil Martinsen-Burrell in <a href="http://mail.scipy.org/pipermail/numpy-discussion/2009-September/045041.html" rel="nofollow">numpy-discussion</a> 7 Sept --</p>
<blockquote>
<p>The ndarray type available in Numpy is
not conceptually an extension of
Python's iterables. If you'd like to
help other Numpy users with this
issue, you can edit the documentation
in the online documentation editor at
<a href="http://docs.scipy.org/numpy/docs/numpy-docs/user/index.rst" rel="nofollow">numpy-docs</a></p>
</blockquote>
http://stackoverflow.com/questions/1305672/what-is-the-best-example-of-technical-documentation-that-you-have-seen-and-what/1328776#13287762Answer by Denis for What is the best example of Technical Documentation that you have seen? and what was it that made it so effective?Denis2009-08-25T14:46:15Z2009-08-25T15:42:28Z<p>What makes for good doc ?
A broad question: paper / online, languages / software systems,
reference / tutorial, for beginners / for experts ...
make for as many different kinds of doc.</p>
<p>A couple of broad criteria:</p>
<ul>
<li>overall structure: where are we (author and reader),
where's more / less, how can I search the doc ?</li>
<li>a clear picture of the reader:
who's this document for, what level ?</li>
</ul>
<p>On paper language references:</p>
<p>Imho the C++ reference in Stroustrup (second edition) is <em>very</em> well written.
(The language is just too big, a 50-page reference in a 700-page book
too much for me -- I lack even a 50-page memory -- but that's another story.) </p>
<p>On Python doc:</p>
<p>I use Python daily (for one-man stuff),
but find the language soft and squishy at the core, not clear and solid
(example: __new__.)
The zillions of Python packages have wildly non-uniform doc quality --
not surprising with zillions of anything and no compass.</p>
<p>A stackoverflow-like feedback system for Python packages and package doc
separately would be most useful,
would speed up evolution of packages / of doc.
(Why hasn't it happened -- entropy ?)</p>
<p>A cookie on doc evolution:
"the list of deleted features in this standard is empty" -- Fortran 90.</p>
<p>Pessimism:</p>
<p>Good doc takes time, effort, and a longer timescale than most managers will give you.
This may be a universal, print is dying --
look at the doc that comes from legislators and politicians.</p>
<p>On adding tree views, maybe a question to ask separately:</p>
<p>say I have a long long html doc with no tree view (naming no names)
but can hack from it a list of (level 1 2 3, key phrase, href) s.
How can I generate a tree view from this, to navigate through the doc?
Is there an API, examples ?
(Whether it runs in a browser with the big html, or separately, is secondary.)</p>
http://stackoverflow.com/questions/1251438/catmull-rom-splines-in-python/1295081#12950812Answer by Denis for Catmull-Rom splines in pythonDenis2009-08-18T16:39:30Z2009-08-18T16:39:30Z<p>3 points ? Catmull-Rom is defined for 4 points, say p_1 p0 p1 p2;
a cubic curve goes from p0 to p1, and outer points p_1 and p2 determine the slopes at p0 and p1.
To draw a curve through some points in an array P, do something like this:</p>
<pre><code>for j in range( 1, len(P)-2 ): # skip the ends
for t in range( 10 ): # t: 0 .1 .2 .. .9
p = spline_4p( t/10, P[j-1], P[j], P[j+1], P[j+2] )
# draw p
def spline_4p( t, p_1, p0, p1, p2 ):
""" Catmull-Rom
(Ps can be numpy vectors or arrays too: colors, curves ...)
"""
# wikipedia Catmull-Rom -> Cubic_Hermite_spline
# 0 -> p0, 1 -> p1, 1/2 -> (- p_1 + 9 p0 + 9 p1 - p2) / 16
# assert 0 <= t <= 1
return (
t*((2-t)*t - 1) * p_1
+ (t*t*(3*t - 5) + 2) * p0
+ t*((4 - 3*t)*t + 1) * p1
+ (t-1)*t*t * p2 ) / 2
</code></pre>
<p>One <em>can</em> use piecewise quadratic curves through 3 points --
see <a href="http://www.cl.cam.ac.uk/~nad10/pubs/quad.pdf" rel="nofollow">Dodgson, Quadratic Interpolation for Image Resampling</a>.
What do you really want to do ?</p>
http://stackoverflow.com/questions/613739/delaying-array-size-in-class-definition-in-c/1245048#12450480Answer by Denis for Delaying array size in class definition in C++?Denis2009-08-07T14:29:18Z2009-08-07T14:29:18Z<p>(Months later) one can use templates, like this: </p>
<pre><code>// array2.c
// http://www.boost.org/doc/libs/1_39_0/libs/multi_array/doc/user.html
// is professional, this just shows the principle
#include <assert.h>
template<int M, int N>
class Array2 {
public:
int a[M][N]; // vla, var-len array, on the stack -- works in gcc, C99, but not all
int* operator[] ( int j )
{
assert( 0 <= j && j < M );
return a[j];
}
};
int main( int argc, char* argv[] )
{
Array2<10, 20> a;
for( int j = 0; j < 10; j ++ )
for( int k = 0; k < 20; k ++ )
a[j][k] = 0;
int* failassert = a[10];
}
</code></pre>
http://stackoverflow.com/questions/1081409/why-should-i-use-asserts/1244695#12446950Answer by Denis for Why should I use asserts?Denis2009-08-07T13:28:19Z2009-08-07T13:28:19Z<p>Can't resist quoting "The indispensable Calvin and Hobbes" p. 180:</p>
<p>Before going down a steep hill like this, one should always give his sled a safety check.<br />
Right.<br />
Seat belts ? None.<br />
Signals ? None.<br />
Brakes ? None.<br />
Steering ? None.<br />
WHEEEEEE</p>
http://stackoverflow.com/questions/354442/looking-for-c-stl-like-vector-class-but-using-stack-storage/1199521#11995210Answer by Denis for Looking for C++ STL-like vector class but using stack storageDenis2009-07-29T11:20:15Z2009-08-07T11:53:20Z<p>If speed matters, I see run times</p>
<ul>
<li>4 ns int[10], fixed size on the stack</li>
<li>40 ns <code><vector></code></li>
<li>1300 ns <code><stlsoft/containers/pod_vector.hpp></code></li>
</ul>
<p>for one stupid test below -- just 2 push, v[0] v[1], 2 pop,
on one platform, mac ppc, gcc-4.2 -O3 only.
(I have no idea if Apple have optimized their stl.)</p>
<p>Don't accept any timings you haven't faked yourself.
And of course every usage pattern is different.
Nonetheless factors > 2 surprise me.</p>
<p>(If mems, memory accesses, are the dominant factor in runtimes,
what are all the extra mems in the various implementations ?)</p>
<pre><code>#include <stlsoft/containers/pod_vector.hpp>
#include <stdio.h>
using namespace std;
int main( int argc, char* argv[] )
{
// times for 2 push, v[0] v[1], 2 pop, mac g4 ppc gcc-4.2 -O3 --
// Vecint10 v; // stack int[10]: 4 ns
vector<int> v; // 40 ns
// stlsoft::pod_vector<int> v; // 1300 ns
// stlsoft::pod_vector<int, std::allocator<int>, 64> v;
int n = (argv[1] ? atoi( argv[1] ) : 10) * 1000000;
int sum = 0;
while( --n >= 0 ){
v.push_back( n );
v.push_back( n );
sum += v[0] + v[1];
v.pop_back();
v.pop_back();
}
printf( "sum: %d\n", sum );
}
</code></pre>
http://stackoverflow.com/questions/1204553/are-there-any-good-libraries-for-solving-cubic-splines-in-c/1239303#12393030Answer by Denis for Are there any good libraries for solving cubic splines in C++?Denis2009-08-06T14:36:30Z2009-08-06T14:36:30Z<p>Take a look at David Eberly's <a href="http://www.geometrictools.com/LibFoundation/Interpolation/Interpolation.html" rel="nofollow">GeometricTools.com</a>.
I'm just starting, but code and doc are so far of outstanding quality.<br />
(He has books too: Geometric tools for computer graphics, 3D game engine design.)</p>
http://stackoverflow.com/questions/686147/url-tree-walker-in-python2URL tree walker in Python?Denis2009-03-26T14:57:13Z2009-08-03T15:37:12Z
<p>For URLs that show file trees, such as <a href="http://pypi.python.org/packages/2.5" rel="nofollow">Pypi packages</a>,
is there a small solid module to walk the URL tree and list it like <code>ls -lR</code>?<br />
I gather (correct me) that there's no standard encoding of file attributes,
link types, size, date ... in html <code><A</code> attributes<br />
so building a solid URLtree module on shifting sands is tough.<br />
But surely this wheel (<code>Unix file tree -> html -> treewalk API -> ls -lR or find</code>)
has been done?<br />
(There seem to be several spiders / web crawlers / scrapers out there, but they look ugly and ad hoc so far, despite BeautifulSoup for parsing).</p>
http://stackoverflow.com/questions/85275/how-do-i-derive-a-voronoi-diagram-given-its-point-set-and-its-delaunay-triangulat/1109078#11090780Answer by Denis for How do I derive a Voronoi diagram given its point set and its Delaunay triangulation?Denis2009-07-10T11:42:58Z2009-07-10T11:42:58Z<p>(months later) Do you really want Voronoi, or just a pretty near point,
"something comprehensible" ?<br />
If the latter, ANN, Approximate Nearest Neighor, methods
are waaaay simpler than Delaunay / Voronoi.<br />
Take a look at
<a href="http://en.wikipedia.org/wiki/Kd%5Ftree" rel="nofollow">Kd tree</a>.<br />
Also the source for <a href="http://matplotlib.sourceforge.net" rel="nofollow">matplotlib</a>/delaunay has a nice Python wrapper with test funcs ! and plot helpers !</p>
<p>(Fwiw, to quantify "simpler", triangle is 16k lines of C (including a 1000-line help),
ANN 1.1.1 4k lines C++ --<br />
both I think high quality code and 3-sigma doc.)</p>
http://stackoverflow.com/questions/452104/is-it-worth-using-pythons-re-compile/1086330#10863300Answer by Denis for Is it worth using Python's re.compile?Denis2009-07-06T10:13:44Z2009-07-06T10:13:44Z<p>(months later) it's easy to add your own cache around re.match,
or anything else for that matter --</p>
<pre><code>""" Re.py: Re.match = re.match + cache
efficiency: re.py does this already (but what's _MAXCACHE ?)
readability, inline / separate: matter of taste
"""
import re
cache = {}
_re_type = type( re.compile( "" ))
def match( pattern, str, *opt ):
""" Re.match = re.match + cache re.compile( pattern )
"""
if type(pattern) == _re_type:
cpat = pattern
elif pattern in cache:
cpat = cache[pattern]
else:
cpat = cache[pattern] = re.compile( pattern, *opt )
return cpat.match( str )
# def search ...
</code></pre>
<p>A wibni, wouldn't it be nice if: cachehint( size= ), cacheinfo() -> size, hits, nclear ...</p>
http://stackoverflow.com/questions/1076778/good-geometry-library-in-python/1082508#10825081Answer by Denis for Good geometry library in python?Denis2009-07-04T16:16:41Z2009-07-04T16:16:41Z<p><a href="http://code.google.com/p/geometry-simple" rel="nofollow">geometry-simple</a> has classes Point Line Plane Movement in ~ 300 lines, using only numpy; take a look.</p>
http://stackoverflow.com/questions/1052435/moving-from-java-to-python/1053047#10530471Answer by Denis for Moving from Java to Python Denis2009-06-27T15:39:07Z2009-06-27T15:39:07Z<p>Seconding oxbow_lakes, how do project teams <strong>document</strong> their stuff ?<br />
Although good doc is largely language-independent, can people comment on doc standards, tools,
browsers ?<br />
Examples of good Python / good Java doc would be useful.</p>
http://stackoverflow.com/questions/803616/passing-functions-with-arguments-to-another-function-in-python/1053007#10530070Answer by Denis for Passing functions with arguments to another function in Python?Denis2009-06-27T15:12:20Z2009-06-27T15:12:20Z<p>(months later) a tiny real example where lambda is useful, partial not:<br />
say you want various 1-dimensional cross-sections through a 2-dimensional function,
like slices through a row of hills.<br />
<code>quadf( x, f )</code> takes a 1-d <code>f</code> and calls it for various <code>x</code>.<br />
To call it for vertical cuts at y = -1 0 1 and horizontal cuts at x = -1 0 1,</p>
<pre><code>fx1 = quadf( x, lambda x: f( x, 1 ))
fx0 = quadf( x, lambda x: f( x, 0 ))
fx_1 = quadf( x, lambda x: f( x, -1 ))
fxy = parabola( y, fx_1, fx0, fx1 )
f_1y = quadf( y, lambda y: f( -1, y ))
f0y = quadf( y, lambda y: f( 0, y ))
f1y = quadf( y, lambda y: f( 1, y ))
fyx = parabola( x, f_1y, f0y, f1y )
</code></pre>
<p>As far as I know, <code>partial</code> can't do this --</p>
<pre><code>quadf( y, partial( f, x=1 ))
TypeError: f() got multiple values for keyword argument 'x'
</code></pre>
<p>(How to add tags numpy, partial, lambda to this ?)</p>
http://stackoverflow.com/questions/971190/qt4-qgraphicsscene-mac-ppc-10-4-rendering-bug-rects-hide-later-lines0Qt4 QGraphicsScene mac ppc 10.4 rendering bug, rects hide later lines ?Denis2009-06-09T16:39:20Z2009-06-09T17:11:11Z
<p>When you addRect ... then addLine ... to a QGraphicsScene, you'd expect the lines to be drawn over the rects, right ? In Qt 4.4.3, mac ppc 10.4.11, <em>some</em> lines are not, in the testcase below. I imagine this is a Qt / mac lib / graphics card interaction
(versionitis disease) so would appreciate anyone who can say "it's clean in ...".<br />
Thanks, cheers</p>
<pre><code>// QGraphicsScene mac rendering bug: some addLines are hidden by previous addRects
// C: 150 line is hidden under most rects, others ok
// pyqt: other lines are hidden
// qt-mac-opensource-src-4.4.3 PyQt-mac-gpl-4.4.4 macosx 10.4.11, ppc, GEForce2 mx
// denis-bz-gg@t-online.de 9jun
#include <cmath>
#include <QtGui>
int main( int argc, char* argv[] )
{
qDebug() << "qVersion:" << qVersion();
QApplication app( argc, argv );
int Size = 10; // changes what's hidden
int x0 = -500, y0 = -500, x1 = 500, y1 = 500;
QRectF scenerect( x0, y0, x1, y1 );
QGraphicsScene* scene = new QGraphicsScene( scenerect );
QGraphicsView* view = new QGraphicsView( scene );
view->centerOn( 100, 100 ); // ?
for( int j = x0/2; j < x1/2; j += Size ){
for( int k = y0/2; k < y1/2; k += Size ){
scene->addRect( j, k, Size-1, Size-1, Qt::NoPen, QBrush( "palegreen" ));
}
}
for( int angle = 0; angle < 180; angle += 30 ){
float c = cos( angle * M_PI / 180 ) * x1;
float s = sin( angle * M_PI / 180 ) * y1;
scene->addLine( -c, -s, c, s, QPen( "black" ));
}
view->show();
return app.exec();
}
</code></pre>
http://stackoverflow.com/questions/971190/qt4-qgraphicsscene-mac-ppc-10-4-rendering-bug-rects-hide-later-lines/971350#9713500Answer by Denis for Qt4 QGraphicsScene mac ppc 10.4 rendering bug, rects hide later lines ?Denis2009-06-09T17:11:11Z2009-06-09T17:11:11Z<p>From: David Boddie trolltech.com><br />
Subject: Re: Re: QGraphicsScene addLine, addRect draw order scrambled in Qt 4.4.3 on mac ?<br />
Newsgroups: gmane.comp.python.pyqt-pykde<br />
Date: 2009-06-09 14:41:06 GMT</p>
<p>On Tue Jun 9 10:41:37 BST 2009, denis wrote:</p>
<blockquote>
<p>bug: some addLines are hidden by previous addRects in Qt 4.4.3 + mac too,
differently in C and PyQt</p>
</blockquote>
<p>I don't think the order in which the objects are drawn is guaranteed to be
the same as the order in which they are created.</p>
<p>This is unfortunate because it means that the drawing order is arbitrary.
I tend to set the Z value of objects to be sure that they are drawn in the
order I expect.</p>
<p>David</p>
http://stackoverflow.com/questions/969093/how-to-search-help-using-python-console/970501#9705011Answer by Denis for How to search help using python consoleDenis2009-06-09T14:48:35Z2009-06-09T14:48:35Z<p>To search PyPI (Python Package Index) package info locally, try <code>pypi-grep</code>. An example: <code>pypi-grep 'pyqt'</code> --></p>
<pre><code># day status packagename version homepage summary
2009-06-07 3 "pydee" 0.4.11 http://code.google.com/p/pydee/
Pydee development environment and its PyQt4-based IDE tools: ...
2009-06-05 4 "Sandbox" 0.9.5 http://www.qtrac.eu/sandbox.html
A PyQt4-based alternative to IDLE
...
</code></pre>
<p><code>pypi-grep</code> is just a file with one long line per PyPI package,
with the info you see above, plus a trivial bash script to egrep the file.<br />
Why ? Grepping a local file is very fast and very simple, for old
Unix guys and simple searches:
"what's XYZ ?"</p>
<p><code>hg clone <a href="http://bitbucket.org/denisb/pypi-grep/" rel="nofollow">http://bitbucket.org/denisb/pypi-grep/</a></code>
should download <code>pypi-grep</code> and <code>pypi-grepfile-2009-06-08</code> or the like;
move them to a directory in your PATH.
(First <code>easy_install hg</code> if you don't have <code>hg</code>.)</p>
<p>Notes:</p>
<p>the pypi-grepfile has only one version per package, the newest;
multiline summaries are folded to one long line
(which I chop with <code>pypi-grep | less -iS</code>).</p>
<p><code>pypi-grep -h</code> lists a few options </p>
<p>The data comes from <a href="http://pypi.python.org/pypi" rel="nofollow">http://pypi.python.org/pypi</a> xmlrpc,
but beware: some packages in list_packages have no package_releases
or no releasedata, and a few releasedatas timeout
(timeout_xmlrpclib);
what you see is All you get.</p>
<p>Feedback is welcome.</p>
http://stackoverflow.com/questions/683124/neural-networks-obsolete/829014#8290141Answer by Denis for Neural networks - obsolete?Denis2009-05-06T10:34:40Z2009-05-06T10:34:40Z<p>A good reference to NN and much more is Andrew Moore's <a href="http://www.autonlab.org/tutorials" rel="nofollow">tutorials</a>
"on many aspects of statistical data mining, including the foundations of probability, the foundations of statistical data analysis, and most of the classic machine learning and data mining algorithms"</p>
http://stackoverflow.com/questions/1199972/cython-and-numpy-speed/1228914#1228914Comment by Denis on Cython and numpy speedDenis2009-11-24T11:48:05Z2009-11-24T11:48:05ZAre your times for 10,000 or for arange(0, 100, .001) ?
http://stackoverflow.com/questions/706101/python-json-decoding-performance/706353#706353Comment by Denis on Python JSON decoding performance.Denis2009-11-11T18:13:55Z2009-11-11T18:13:55Zfwiw, 11nov 2009
<a href="http://pypi.python.org/packages/source/s/simplejson/simplejson-2.0.9.tar.gz" rel="nofollow">pypi.python.org/packages/source/…</a>
on mac 10.4.11 ppc, gcc 4.2.1 =>
simplejson/_speedups.c:2256: error: redefinition of ‘PyTypeObject PyEncoderType’
WARNING: The C extension could not be compiled, speedups are not enabled.http://stackoverflow.com/questions/1322380/gotchas-where-numpy-differs-from-straight-python/1414038#1414038Comment by Denis on gotchas where Numpy differs from straight python ?Denis2009-11-11T11:02:45Z2009-11-11T11:02:45Znot always:
"There are two kinds of fancy indexing in numpy, which behave
similarly ..."
<a href="http://mail.scipy.org/pipermail/numpy-discussion/2008-January/031101.html" rel="nofollow">mail.scipy.org/pipermail/numpy-discussion/…</a>http://stackoverflow.com/questions/1322380/gotchas-where-numpy-differs-from-straight-python/1324939#1324939Comment by Denis on gotchas where Numpy differs from straight python ?Denis2009-08-25T12:17:33Z2009-08-25T12:17:33ZYes, that got me too. A simple table with columns: op, python, numpy
would settle that.http://stackoverflow.com/questions/1322380/gotchas-where-numpy-differs-from-straight-pythonComment by Denis on gotchas where Numpy differs from straight python ?Denis2009-08-24T16:25:05Z2009-08-24T16:25:05ZYes ! That was my main question, NaN just one example.
Is there one for Numpy ? If not, suggestions / models for one ?http://stackoverflow.com/questions/1251438/catmull-rom-splines-in-python/1295081#1295081Comment by Denis on Catmull-Rom splines in pythonDenis2009-08-19T08:50:42Z2009-08-19T08:50:42Zspline_4p( t, p_1, p0, p1, p2 ) goes p0 .. p1, then
spline_4p( t, p0, p1, p2, p3 ) p1 .. p2, with p_1 and p3 affecting the slopes. Hth ?http://stackoverflow.com/questions/326300/python-best-library-for-drawing/326447#326447Comment by Denis on Python - Best library for drawingDenis2009-08-11T11:06:21Z2009-08-11T11:06:21ZMacports users beware, py-game has dependencies:
[port-alldeps](<a href="http://code.activestate.com/recipes/576868" rel="nofollow">code.activestate.com/recipes/576868</a>) ->
py-game* -> python24* libsdl* libsdl_mixer* libsdl_image* libsdl_ttf* smpeg* py-numeric*
libsdl* -> xorg-libXext* xorg-libXrandr* xrender
perl5* -> perl5.8*
...http://stackoverflow.com/questions/1165361/setting-gcc-4-2-as-the-default-compiler-on-mac-os-x-leopard/1165575#1165575Comment by Denis on Setting GCC 4.2 as the default compiler on Mac OS X LeopardDenis2009-07-27T15:51:29Z2009-07-27T15:51:29ZMartin, a related question, how can you tell setup.py / pydistutils.cfg
which CC and which -arch to use ?
For example, I want gcc-4.2 -arch ppc only (because my gcc-4.2 has no
/usr/bin/i686-apple-darwin8-g++-4.2.1). Thankshttp://stackoverflow.com/questions/1104304/scrolling-qgraphicsview-programmatically/1105111#1105111Comment by Denis on Scrolling QGraphicsView programmaticallyDenis2009-07-10T13:36:50Z2009-07-10T13:36:50Zre translate, you need
view.setTransformationAnchor( QtGui.QGraphicsView.NoAnchor )
else translate() is a noop ?!http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications/881659#881659Comment by Denis on Cross-platform gui toolkit for deploying Python applicationsDenis2009-05-29T12:12:20Z2009-05-29T12:12:20ZWhat Java GUI lib are you suggesting ? How big is it --
pages of doc, lines of code for say a canvas with draw rect / line / text ? Thanks
http://stackoverflow.com/questions/686147/url-tree-walker-in-python/687180#687180Comment by Denis on URL tree walker in Python?Denis2009-03-28T17:16:34Z2009-03-28T17:16:34ZThank you sysrqb, nice. Where might one have learned this ?
Also, is there any way of running $(unzip -l remote.zip) on the server, piping to a local file, to list big remote files ?http://stackoverflow.com/questions/479236/how-do-i-simulate-biased-die-in-python/479950#479950Comment by Denis on How do I simulate biased die in python?Denis2009-01-29T12:25:38Z2009-01-29T12:25:38ZDavid, for a biased die / a 1d distribution over a few points,
table lookup is just fine, Walker's method overkill;
for distributions of say many stars in 3d, use Walker.
(Did the recipe / its refs make any sense at all ?)