David Cournapeau

4,525
reputation
378 views

Registered User

name David Cournapeau
member for 1 year
seen Dec 19 at 22:15
website
location Japan
age 29
PhD Student in speech processing. Core developer of numpy/scipy, python projects for numerical computation. Also occasional contributor to the scons project.
Dec
6
awarded  Mortarboard
Nov
30
comment Peak-finding algorithm for Python/SciPy
I tried to add some explanation, let me know if this is still unclear.
Nov
30
revised Peak-finding algorithm for Python/SciPy
added 212 characters in body
Nov
27
answered Peak-finding algorithm for Python/SciPy
Nov
25
answered Strange numpy.float96 behaviour
Nov
20
revised How do I create a nice-looking DMG for Mac OS X using command-line tools?
add snow leopard workaround for icon position
Nov
19
awarded  Nice Answer
Nov
4
comment Alternative to Complex.h in Visual Studio
this answer is wrong: you cannot just use complex.h to get complex support. If you can't use gcc and can't use C++, the only solution is to drop support for C99 complex.
Oct
22
answered Why Java and Python garbage collection methods are different?
Oct
19
awarded  Good Answer
Oct
7
answered Is there a way to “git svn dcommit” from a cloned git-svn repository :
Oct
6
accepted Python: how to install SciPy on 64 bit Windows?
Oct
6
answered Python: how to install SciPy on 64 bit Windows?
Oct
6
revised Is it necessary to multiply by sizeof( char ) when manipulating memory?
spelling
Oct
6
revised Is it a good idea to use IEEE754 floating point NaN for values which are not set?
grammar
Oct
6
comment cProfile and Python: Finding the specific line number that code spends most time on
I don't have this problem on my macbook (on snow leopard as well). I would advise against using sudo for installation, that's often a bad idea (it may break your system python, and sudo does not export your env variables as you would expect). I would advise you to bring this problem on the enthought-dev mailing list
Oct
1
comment What are the most important IDE features missing in Vim?
a good text editor. Everytime I have to use VS or Eclipse, I find the editor very kludgy compared to vim. Granted, part of it is being used to vim.
Oct
1
answered Performance of Python worth the cost?
Oct
1
comment cProfile and Python: Finding the specific line number that code spends most time on
refactoring into small functions is not always possible - and function calls being expensive in python, this can affect speed in a significant way.
Oct
1
answered cProfile and Python: Finding the specific line number that code spends most time on
Sep
21
comment Prevent cl.exe from printing the compiled source file
I was afraid this was not possible. Thanks for the confirmation
Sep
21
comment Prevent cl.exe from printing the compiled source file
no, I am not. I just use cl /c /nologo foo.c
Sep
21
asked Prevent cl.exe from printing the compiled source file
Sep
17
awarded  Yearling
Sep
16
awarded  Nice Answer
Aug
23
answered Tool to enforce python code style/standards
Aug
20
answered How is *array* memory allocated and freed in C and C++?
Aug
17
awarded  Nice Answer
Aug
12
awarded  Taxonomist
Aug
11
answered Why on earth would anyone use strncpy instead of strcpy?
Aug
9
accepted Git and SVN on Windows
Aug
8
comment Why isn’t C++ used in Web-Developement ?
especially since gc is one of the thing which will make java/C# faster than C/C++, for things like string manipulation :)
Aug
8
comment Why isn’t C++ used in Web-Developement ?
the claim that java is extremely slow compare to C#/C++ is laughable at best. There are several examples where C programs reimplemented in java which ended up even faster (cmu sphinx engine, for example). Of course, that won't always be true, but there is a widespread belief that C/C++ are the kings of speed, which is really not true, especially in practice when you have finite time to get to your result. Only thinking about string handling, such a common task in web devlopment, and so painful in C and C++.
Aug
8
comment Why isn’t C++ used in Web-Developement ?
we may not think about the same thing: when I hear web development, I don't hear web-server. I would not put apache or thttpd into the web development category.
Aug
8
answered Why isn’t C++ used in Web-Developement ?
Aug
7
answered Question about include directory order in g++
Aug
7
comment Bazaar offline + branches
nothing is disallowed, but some things are easier than others. multi-push/multi-pull does not do what you want ?
Aug
7
answered Performance of 2-dimensional array vs 1-dimensional array
Aug
7
comment Is it easier to manage code with GIT or Bazaar?
Yes, it is "just " post-hoc analysis - but I disagree that the same could be done in bzr. In theory, sure, you are right, but in practice, to be able to handle the whole tree in an efficient manner is so deeply ingrained in git, and it is out of the question with bzr for big repo ATM (bzr needs several copies of every file it handles in memory IIRC, so handling all of them at the same time would be painful). I think it will be a very long time before you see the feature in bzr or hg, if ever.
Aug
7
revised Is there different about the following memory allocation?
added 92 characters in body
Aug
7
comment Bazaar offline + branches
Actually, even with git where the model is all the branches in a single repository, when you clone a repository, you get only one branch, at least by default. Getting every branch of a repository is very unnatural for development IMHO.
Aug
7
comment Bazaar offline + branches
God, no, the whole point of DVCS is to go away from the broken SVN model for branches and tags :) But when you clone with bzr (and hg), you are copying a subset of all the revisions, the ones attached to the branch you are cloning. Generally, you do NOT want to get every branch (I think that this is linked to a fear of losing some revisions and influence of CVS/SVN).
Aug
7
revised Bazaar offline + branches
added 588 characters in body
Aug
7
answered Is there different about the following memory allocation?
Aug
7
answered Git and SVN on Windows
Aug
7
answered Bazaar offline + branches
Aug
4
answered Boost’s Linear Algebra Solution for y=Ax
Aug
4
answered GIL in Python 3.1
Jul
29
comment DVCS and Data Loss?
I am not sure I understand why ShareExtension or git-new-workdir would help: to be able to share between computers, the sharing needs to be networked (network is also more practical even on the same machine through vmware IMHO)
Jul
28
answered When are -framework and -I/System/…/Example.framework/Headers/ needed?