User Piotr Lesnicki - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:40:29Zhttp://stackoverflow.com/feeds/user/38796http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318379#3183793Answer by Piotr Lesnicki for What are the best programming articles?Piotr Lesnicki2008-11-25T18:21:59Z2009-10-25T00:41:49Z<p>You have a really a bunch of very good ones <a href="http://www.prairienet.org/~dsb/artcls.htm" rel="nofollow">here</a></p>
<p>Notably some of the already cited here ones, but also:</p>
<ul>
<li>The lambda papers (difficult but profound)</li>
<li>The kingdom of Nouns (more distracting)</li>
<li>...</li>
</ul>
<p>Looking back at them now, they're mostly oriented on functional programming, but I don't see <a href="http://www.md.chalmers.se/~rjmh/Papers/whyfp.html" rel="nofollow">Why functional programming matters</a>.
If I remember other ones on another topic, I'll put them in another post.</p>
http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python7Test if executable exists in Python?Piotr Lesnicki2008-12-18T05:55:36Z2009-08-29T18:13:59Z
<p>In python, is there a portable and simple way to test if an executable program exists?</p>
<p>By simple I mean something like the '<code>which</code>' command which would be just perfect. I don't want to search PATH manually or something involving trying to execute it with <code>Popen</code> & al and see if it fails (that's what I'm doing now, but imagine it's <code>launchmissiles</code>)</p>
<p><strong>EDIT:</strong> The answer is '<strong>No</strong>', from the different posts, I just have to search path manually ans use Jay's answer (sorry for the bad formulation about 'which' which I understand, but I thought maybe there's something in os.path that does that though named strangely). </p>
http://stackoverflow.com/questions/359498/how-can-i-unload-a-dll-using-ctypes-in-python/359570#3595703Answer by Piotr Lesnicki for How can I unload a DLL using ctypes in Python?Piotr Lesnicki2008-12-11T14:41:16Z2008-12-15T22:15:14Z<p>you should be able to do it by disposing the object</p>
<pre><code>mydll = ctypes.CDLL('...')
del mydll
mydll = ctypes.CDLL('...')
</code></pre>
<p><strong>EDIT:</strong> Hop's comment is right, this unbinds the name, but garbage collection doesn't happen that quickly, in fact I even doubt it even releases the loaded library. </p>
<p>Ctypes doesn't seem to provide a clean way to release resources, it does only provide a <code>_handle</code> field to the dlopen handle...</p>
<p>So the only way I see, a really, <strong>really non-clean way</strong>, is to system dependently dlclose the handle, but it is very very unclean, as moreover ctypes keeps internally references to this handle. So unloading takes something of the form:</p>
<pre><code>mydll = ctypes.CDLL('./mylib.so')
handle = mydll._handle
del mydll
while isLoaded('./mylib.so'):
dlclose(handle)
</code></pre>
<p>It's so unclean that I only checked it works using:</p>
<pre><code>def isLoaded(lib):
libp = os.path.abspath(lib)
ret = os.system("lsof -p %d | grep %s > /dev/null" % (os.getpid(), libp))
return (ret == 0)
def dlclose(handle)
libdl = ctypes.CDLL("libdl.so")
libdl.dlclose(handle)
</code></pre>
http://stackoverflow.com/questions/354686/programming-related-songs/354704#3547041Answer by Piotr Lesnicki for Programming Related SongsPiotr Lesnicki2008-12-10T00:15:16Z2008-12-10T00:15:16Z<p><a href="http://uk.youtube.com/watch?v=9sJUDx7iEJw" rel="nofollow">The free software song</a> (<a href="http://www.gnu.org/music/free-software-song.html" rel="nofollow">lyrics</a>) by RMS qualifies? :)</p>
<p>I wouldn't exactly listen it though...</p>
http://stackoverflow.com/questions/352532/usr-bin-env-questions-regarding-shebang-line-pecularities/352830#3528301Answer by Piotr Lesnicki for /usr/bin/env questions regarding shebang line pecularitiesPiotr Lesnicki2008-12-09T14:07:48Z2008-12-09T15:22:50Z<p>You should carefully read the wikipedia article about <a href="http://en.wikipedia.org/wiki/Shebang_(Unix)" rel="nofollow">shebang</a>.</p>
<p>When your system sees the magic number corresponding to the shebang, it does an <code>execve</code> on the given path after the shebang and gives the script itself as an argument.</p>
<p>Your script fails because the file you give (<code>/usr/bin/env.1</code>) is not <em>an executable</em>, but begins itself by a shebang.... </p>
<p>Ideally, you could resolve it using... <code>env</code> on your script with this line as a shebang:</p>
<pre><code>#!/usr/bin/env /usr/bin/env.1 python
</code></pre>
<p>It won't work though on linux as it treats "<code>/usr/bin/env.1 python</code>" as a path (it doesn't split arguments)</p>
<p>So the only way I see is to write your <code>env.1</code> in C</p>
<p>EDIT: seems like no one belives me ^^, so I've written a simple and dirty <code>env.1.c</code>:</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
const char* prependpath = "/your/prepend/path/here:";
int main(int argc, char** argv){
int args_len = argc + 1;
char* args[args_len];
const char* env = "/usr/bin/env";
int i;
/* arguments: the same */
args[0] = env;
for(i=1; i<argc; i++)
args[i] = argv[i];
args[argc] = NULL;
/* environment */
char* p = getenv("PATH");
char* newpath = (char*) malloc(strlen(p)
+ strlen(prependpath));
sprintf(newpath, "%s%s", prependpath, p);
setenv("PATH", newpath, 1);
execv(env, args);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/351821/destroying-a-toplevel-tk-window-in-python/351832#3518325Answer by Piotr Lesnicki for destroying a Toplevel tk window in pythonPiotr Lesnicki2008-12-09T04:59:40Z2008-12-09T04:59:40Z<p>Because it returns a function and not its result.</p>
<p>You should put:</p>
<pre><code>command=TL.destroy
</code></pre>
<p>or if you used lambda:</p>
<pre><code>command=lambda: TL.destroy()
</code></pre>
http://stackoverflow.com/questions/351690/how-much-of-the-compiler-should-we-know/351725#3517250Answer by Piotr Lesnicki for How much of the compiler should we know?Piotr Lesnicki2008-12-09T03:56:37Z2008-12-09T03:56:37Z<p>I think that what is really really important is to make an interpreter: it gives you more insight of programming languages, and that's what you use... In scheme it is actually rnot hard at to make an interpeter! But actually I would greatly encourage reading parts of <a href="http://en.wikipedia.org/wiki/Structure_and_Interpretation_of_Computer_Programs" rel="nofollow">SICP</a> for great enlightment).</p>
<p>Concerning compilers, it's more complex as the focus here is getting some performance/doing it for an actual machine. As a programmer, what is important there is to know at least what tasks they globally perform and when do they run rather than the details, because nowadays they have grown into really complex systems especially with JIT's etc...</p>
http://stackoverflow.com/questions/351662/what-is-your-ideal-coding-environment/351691#3516911Answer by Piotr Lesnicki for What is your ideal coding environment?Piotr Lesnicki2008-12-09T03:28:19Z2008-12-09T03:28:19Z<p>When: during the night....</p>
<p>I don't know why I often see this pattern not just for me. It's not because of the calm, but rather of some geeky imaturity I think.</p>
http://stackoverflow.com/questions/351577/why-is-reflection-called-reflection-instead-of-introspection/351659#3516598Answer by Piotr Lesnicki for Why is reflection called reflection instead of introspection?Piotr Lesnicki2008-12-09T03:03:27Z2008-12-09T03:03:27Z<p>There is an interesting answer on the french wikipedia article for Reflection (<a href="http://fr.wikipedia.org/wiki/R%C3%A9flexion_(informatique)" rel="nofollow">here</a>)</p>
<p>Reflection can be decomposed in two parts:</p>
<ul>
<li>introspection: a program can examinate itself.</li>
<li>intercession: a program can modify it state/meaning.</li>
</ul>
<p>So reflection is a 'stronger' property than introspection. And that why you say <a href="http://en.wikipedia.org/wiki/Introspection_(computer_science)" rel="nofollow">type introspection</a> for the ability to know types at runtime (and changing them is another action: conversion/casting).</p>
<p>EDIT: actually I just realized the first answer was saying exactly that ^^. Time to unplug myself...</p>
http://stackoverflow.com/questions/349446/adjacency-matrix-in-java-or-c-to-find-connected-nodes/349493#3494931Answer by Piotr Lesnicki for adjacency matrix in java or c++ to find connected nodesPiotr Lesnicki2008-12-08T13:05:57Z2008-12-08T13:05:57Z<p>Hint: So you have your adjacency matrix <code>M</code> which tells you if two nodes are directly connected. Then what does M^2 gives you? It tells you if there is a path of length 2 between two nodes. </p>
<p>I let you imagine what are M^3,... , M^inf (when you reach the fixpoint) </p>
http://stackoverflow.com/questions/346536/difference-between-a-structure-and-a-union-in-c/346576#3465761Answer by Piotr Lesnicki for Difference between a Structure and a Union in CPiotr Lesnicki2008-12-06T18:30:27Z2008-12-06T18:30:27Z<p>You have it, that's all.
But so, basically, what's the point of unions?</p>
<p>You can put in the same location content of different types. You have to <em>know</em> the type of what you have stored in the union (so often you put it in a <code>struct</code> with a type tag...).</p>
<p>Why is this important? Not really for space gains. Yes, you can gain some bits or do some padding, but that's not the main point anymore.</p>
<p>It's for type safety, it enables you to do some kind of 'dynamic typing': the compiler knows that your content may have different meanings and the precise meaning of how your interpret it is up to you at run-time. If you have a pointer that can point to different types, you MUST use a union, otherwise you code may be incorrect due to aliasing problems (the compiler says to itself "oh, only this pointer can point to this type, so I can optimize out those accesses...", and bad things can happen).</p>
http://stackoverflow.com/questions/346306/what-is-the-difference-between-a-static-global-and-static-volatile-variable/346399#3463990Answer by Piotr Lesnicki for What is the difference between a static global and static volatile variable?Piotr Lesnicki2008-12-06T15:35:56Z2008-12-06T15:35:56Z<p>I +1 friol's answer. I would like to add some precisions as there seem to be a lot of confusions in different answers: C's volatile is not Java's volatile.</p>
<p>So first, compilers can do a lot of optimizations on based on the data flow of your program, volatile in C prevents that, it makes sure you really load/store to the location every time (instead of using registers of wiping it out e.g.). It is useful when you have a memory mapped IO port, as friol's pointed out.</p>
<p>Volatile in C has NOTHING to do with hardware caches or multithreading. It does not insert memory fences, and you have absolutely no garanty on the order of operations if two threads do accesses to it. Java's volatile keyword does exactly that though: inserting memory fences where needed.</p>
http://stackoverflow.com/questions/342409/how-do-i-base64-encode-decode-in-c/342439#3424393Answer by Piotr Lesnicki for How do I base64 encode (decode) in C?Piotr Lesnicki2008-12-04T23:28:26Z2008-12-04T23:28:26Z<p>But you can also do it in openssl (<code>openssl enc</code> command does it....), look at the <a href="http://www.openssl.org/docs/crypto/BIO_f_base64.html" rel="nofollow"><code>BIO_f_base64()</code></a> function</p>
http://stackoverflow.com/questions/341696/explaining-svn-to-non-programmers/341772#3417721Answer by Piotr Lesnicki for Explaining SVN to non-programmersPiotr Lesnicki2008-12-04T19:35:40Z2008-12-04T19:35:40Z<p>Showing them the problem version control solves should be the starting point.
Either you could make them first do <code>.bak</code> files first to see the point.</p>
<p>But if they are sufficiently familiar with <strong>Wikipedia</strong>, it would be definitively better to show them history and how wikipedia protects itself (it would answer some of their curiosity), so that they see it's really usefull in practice. You could install a wiki to make them try.</p>
<p>Only afterwards, put them in from of the 'boring' textual commands of svn...</p>
http://stackoverflow.com/questions/340167/what-language-should-i-learn-to-give-me-something-very-different-from-c/340187#3401873Answer by Piotr Lesnicki for What language should I learn to give me something very different from C#?Piotr Lesnicki2008-12-04T10:41:52Z2008-12-04T18:46:30Z<p>Don't say: "which language should I learn amongst those N".
Learning has to be done out of curiosity: choose one that you're curious about and you can't resist learning (then goto 'choose', repeat...)</p>
<p>EDIT: If you're interested in languages in general as I understand, there is a <em>really</em> great book, the <a href="http://www.info.ucl.ac.be/~pvr/book.html" rel="nofollow">CTM</a>, which is multiparadigm and will give you a lot of background in programming languages and better see their orientations and choices.</p>
http://stackoverflow.com/questions/341379/python-decorators-run-before-function-it-is-decorating-is-called/341406#3414060Answer by Piotr Lesnicki for Python Decorators run before function it is decorating is called?Piotr Lesnicki2008-12-04T17:20:57Z2008-12-04T17:20:57Z<p>python decorators are functions applied to a function to transform it:</p>
<pre><code>@my_decorator
def function (): ...
</code></pre>
<p>is like doing this: </p>
<pre><code>def function():...
function = my_decorator(function)
</code></pre>
<p>What you want to do is:</p>
<pre><code>def get_booking(f=None):
def wrapper(request, **kwargs):
print "Calling get_booking Decorator"
booking = _get_booking_from_session(request)
if booking == None:
# we don't have a booking in our session.
return HttpRedirect('/')
else:
return f(request=request, booking=booking, **kwargs)
return wrapper
</code></pre>
http://stackoverflow.com/questions/340824/which-transpilers-are-out-there/341077#3410770Answer by Piotr Lesnicki for Which transpilers are out there?Piotr Lesnicki2008-12-04T15:51:46Z2008-12-04T15:58:46Z<p>Hmm, your definition of transpiler does not differ of the one of a '<a href="http://en.wikipedia.org/wiki/Compiler" rel="nofollow">compiler</a>' ;-)
"translating from language A to language B".</p>
<p>Basically, high level languages differ because you program to a different 'machine model' abstraction. For example Java is slightly higher level due to it's virtual machine model which is more 'virtual' (managed code...). They encourage <em>different</em> programming styles and have different purposes.</p>
<p>Of course you can add a librarie to C++ for garbage collection and other things and then translate Java to that, but then you do not really have idiomatic C++. What GCC (and GCJ) does, is translating Java+libgcj and c++ directly into an intermediate representation (so that you don't loose too much efficiency by having a c or c++ intermediate step). Often the intermediate step can be C language, used as a portable assembler (but it has disadvantages, see C-- discussions).</p>
<p>As you said generated code is not what you want, tools like ROSE will help, but come on, you won't do template metaprogramming with that ;-) In fact it will give you yet another abstract machine to program to, which will roughly be a subset of languages you want to generate code for. There are other tools that make you program to models in different languages, for example in the field of component programming (like <a href="http://fractal.objectweb.org/" rel="nofollow">Fractal</a>).</p>
<p>There are also compilers from higher level languages to higher level languages. Source-to-source compilers compile to high level languages: often from language A to language A, they are used mainly for optimization. Others compilers generate code in high level languages in domain specific cases: e.g. pyjamas generates javascript from python code, Brook generates C++ and gpu shaders code from Brook (streaming) language....</p>
<p>But none of those is something you want, programming languages are different, and the only way people have found to unify them, is by compiling them to a common machine model, that's the idea behind Microsoft's CLR, even more than behind the JVM, because the CLR is really broad: you can do unmanaged code, i.e. compile C++ to it (efficiently... not by considering the memory as an array of bytes...). LLVM is quite similiar, but the intermediate representation is not target agnostic.</p>
<p>Conclusion: One Virtual Machine to rule them all...</p>
http://stackoverflow.com/questions/339217/writing-a-compiler-for-a-dsl-in-python/339300#3393002Answer by Piotr Lesnicki for Writing a compiler for a DSL in pythonPiotr Lesnicki2008-12-04T00:59:31Z2008-12-04T03:30:41Z<p>Yes, there are many -- too many -- parsing tools, but none in the standard library.</p>
<p>From what what I saw PLY and SPARK are popular. <a href="http://www.dabeaz.com/ply/" rel="nofollow">PLY</a> is like yacc, but you do everything in Python because you write your grammar in docstrings.</p>
<p>Personally, I like the concept of parser combinators (taken from functional programming), and I quite like <a href="http://pyparsing.wikispaces.com/" rel="nofollow">pyparsing</a>: you write your grammar and actions directly in python and it is easy to start with. I ended up producing my own tree node types with actions though, instead of using their default <code>ParserElement</code> type.</p>
<p>Otherwise, you can also use existing declarative language like <a href="http://www.dabeaz.com/ply/" rel="nofollow">YAML</a>.</p>
http://stackoverflow.com/questions/339262/best-algorithm-for-this-interview-problem/339420#33942024Answer by Piotr Lesnicki for Best algorithm for this interview problemPiotr Lesnicki2008-12-04T02:15:14Z2008-12-04T02:37:52Z<p>Ok, so I'm tired as it's 3AM here, but I have a first try inplace with exactly 2 passes on each number in the matrix, so in O(NxN) and it is linear in the size of the matrix.</p>
<p>I use 1rst column and first row as markers to know where are rows/cols with only 1's. Then, there are 2 variables l and c to remember if 1rst row/column are all 1's also.
So the first pass sets the markers and resets the rest to 0's.</p>
<p>The second pass sets 1 in places where rows and cols where marked to be 1, and resets 1st line/col depending on l and c. </p>
<p>I doubt strongly that I can be done in 1 pass as squares in the beginning depend on squares in the end. Maybe my 2nd pass can be made more efficient...</p>
<pre><code>import pprint
m = [[1, 0, 1, 1, 0],
[0, 1, 1, 1, 0],
[1, 1, 1, 1, 1],
[1, 0, 1, 1, 1],
[1, 1, 1, 1, 1]]
N = len(m)
### pass 1
# 1 rst line/column
c = 1
for i in range(N):
c &= m[i][0]
l = 1
for i in range(1,N):
l &= m[0][i]
# other line/cols
# use line1, col1 to keep only those with 1
for i in range(1,N):
for j in range(1,N):
if m[i][j] == 0:
m[0][j] = 0
m[i][0] = 0
else:
m[i][j] = 0
### pass 2
# if line1 and col1 are ones: it is 1
for i in range(1,N):
for j in range(1,N):
if m[i][0] & m[0][j]:
m[i][j] = 1
# 1rst row and col: reset if 0
if l == 0:
for i in range(N):
m [i][0] = 0
if c == 0:
for j in range(1,N):
m [0][j] = 0
pprint.pprint(m)
</code></pre>
http://stackoverflow.com/questions/338103/how-do-i-use-ipython-as-my-emacs-python-interpreter/338176#3381763Answer by Piotr Lesnicki for How do I use IPython as my emacs python interpreterPiotr Lesnicki2008-12-03T18:13:39Z2008-12-03T18:13:39Z<p>The first link on google works: </p>
<ul>
<li>you put <a href="http://ipython.scipy.org/dist/ipython.el" rel="nofollow">ipython.el</a> to a directory in your emacs load path, for me in .emacs-lisp
(and you need a (add-to-list 'load-path "~/.emacs-lisp/"))</li>
<li><p>you add this to your .emacs: </p>
<p>(setq ipython-command "/usr/bin/ipython")</p>
<p>(require 'ipython)</p></li>
</ul>
http://stackoverflow.com/questions/338037/unix-how-to-check-permissions-of-a-specific-folder/338062#3380621Answer by Piotr Lesnicki for Unix: How to check permissions of a specific folderPiotr Lesnicki2008-12-03T17:46:11Z2008-12-03T17:46:11Z<p>You can also use the <code>stat</code> command if you want detailed information on a file/directory. (I precise this as you say you are learning ^^)</p>
http://stackoverflow.com/questions/337870/python-subprocess-call-fails-when-using-pythonw-exe/337990#3379904Answer by Piotr Lesnicki for Python subprocess.call() fails when using pythonw.exePiotr Lesnicki2008-12-03T17:26:53Z2008-12-03T17:36:57Z<p><code>sys.stdin</code> and <code>sys.stdout</code> handles are invalid because pythonw does not provide console support as it runs as a deamon, so default arguments of <code>subprocess.call()</code> are failing.</p>
<p>Deamon programs close stdin/stdout/stderr purposedly and use logging instead, so that you have to manage this yourself: I would suggest to use subprocess.PIPE.</p>
<p>If you <em>really</em> don't care about what the sub process says for errors and all, you could use <code>os.devnull</code> (I'm not really sure how portable it is?) but I wouldn't recommend that.</p>
http://stackoverflow.com/questions/335928/linux-gcc-linking-ld-cannot-find-a-library-that-exists/335968#3359684Answer by Piotr Lesnicki for [linux, gcc, linking] ld cannot find a library that existsPiotr Lesnicki2008-12-03T01:14:07Z2008-12-03T01:14:07Z<p>As just formulated by grepsedawk, the answer lies in the -l option of g++, calling ld. If you look at the man page of this command, you can either do:</p>
<ul>
<li><code>g++ -l:libmagic.so.1 [...]</code></li>
<li>or: <code>g++ -lmagic [...]</code> , if you have a symlink named libmagic.so in your libs path</li>
</ul>
http://stackoverflow.com/questions/330922/other-examples-of-magical-calculations/330991#3309915Answer by Piotr Lesnicki for Other examples of magical calculationsPiotr Lesnicki2008-12-01T14:22:59Z2008-12-01T14:30:47Z<p>There is a book which gathers many of those 'magic tricks' and that may be interesting for you: <a href="http://rads.stackoverflow.com/amzn/click/0201914654" rel="nofollow">The Hacker's Delight</a>.</p>
<p>You have for example many tricks like bit twiddling hacks etc... (you have several square root algorithms for example that you can see on the google books version)</p>
http://stackoverflow.com/questions/329423/parallelizing-the-reduce-in-mapreduce/329465#3294657Answer by Piotr Lesnicki for Parallelizing the "Reduce" in "MapReduce"Piotr Lesnicki2008-11-30T22:01:04Z2008-12-01T14:07:36Z<p>If your reduction underlying operation is associative*, you can play with the order of operations and locality. Therefore you often have a tree-like structure in the 'gather' phase, so you can do it in several passes in logarithmic time:</p>
<pre><code>a + b + c + d
\ / \ /
(a+b) (c+d)
\ /
((a+b)+(c+d))
</code></pre>
<p>instead of (((a+b)+c)+d)</p>
<p>If your operation is commutative, further optimization are possible as you can gather in different order (it may be important for data alignment when those operations are vector operations for example)</p>
<p>[*] your real desired mathematical operations, not those on effective types like floats of course.</p>
http://stackoverflow.com/questions/327454/scoping-issue-in-javascript/327485#3274854Answer by Piotr Lesnicki for Scoping issue in JavascriptPiotr Lesnicki2008-11-29T12:26:33Z2008-11-29T12:31:45Z<p>I think you're confused because Javascript uses static scoping but at function-level, not at block level like usual structured languages.</p>
<pre><code>var foo = "old";
if (true) {var foo = "new";}
alert (foo == "new")
</code></pre>
<p>So be careful, blocks don't make scope!
That's why you sometimes see loops with functions inside just to enable variables whose scope is inside an iteration:</p>
<pre><code>functions = [];
for(var i=0; i<10; i++) {
(function(){
var local_i = i;
functions[local_i] = function() {return local_i;}
})();
}
functions[2]() // returns 2 and not 10
</code></pre>
http://stackoverflow.com/questions/318313/what-programming-languages-are-used-in-different-scientific-domains/318417#3184178Answer by Piotr Lesnicki for What programming languages are used in different scientific domains?Piotr Lesnicki2008-11-25T18:32:27Z2008-11-25T18:32:27Z<p>What comes to my mind now is:</p>
<ul>
<li>for number crunching, codes are mainly in Fortran, or c++ (so libraries, BLAS & co, and now Cuda is coming), with special libraries like openMP and MPI</li>
<li>for higher level things using numeric calculation: matlab, often python with SciPy</li>
<li>for AI, lot of lisp, now often python, prolog...</li>
<li>for symbolic calculations, proofs: ML, haskell, coq</li>
<li>for real time: synchrone languages: esterel, lustre</li>
<li>for web technolgies: advanced stuff based on xml (with services etc...)</li>
<li>for language theory: < insert your new language here ></li>
<li>for communicating between people: tortured english, math and geek talk</li>
<li>...</li>
</ul>
http://stackoverflow.com/questions/317499/what-is-the-best-software-for-code-merge-that-you-seen/317541#3175410Answer by Piotr Lesnicki for What is the best software for code-merge that you seen?Piotr Lesnicki2008-11-25T14:34:09Z2008-11-25T14:34:09Z<p>For simple merges under linux, there is <strong>meld</strong> which is pretty and visual: there is a simple but neat effect to show well differing parts.</p>
<p>So I find myself using it, even if I'm more of an emacs user! (and emacs has a diff mode with colors and al. and emacs's power)</p>
http://stackoverflow.com/questions/311601/python-as-a-batch-script-i-e-run-commands-from-python/311613#3116139Answer by Piotr Lesnicki for python as a "batch" script (i.e. run commands from python)Piotr Lesnicki2008-11-22T18:25:47Z2008-11-25T14:24:04Z<p>You should create a new processess using the <a href="http://www.python.org/doc/2.5.2/lib/module-subprocess.html" rel="nofollow">subprocess module</a>.</p>
<p>I'm not fluent in windows processes but its Popen function is cross-platform, and should be preffered to OS specific solutions.</p>
<p>EDIT: I maintain that you should prefer the Subprocess module to os.* OS specific functions, it is cross-platform and more pythonic (just google it). You can wait for the result easily, and <em>cleanly</em>:</p>
<pre><code>import os
import subprocess
unison = os.path.join(os.path.curdir, "unison")
p = subprocess.Popen(unison)
p.wait()
</code></pre>
http://stackoverflow.com/questions/317053/regular-expression-for-extracting-tag-attributes/317066#3170661Answer by Piotr Lesnicki for Regular expression for extracting tag attributesPiotr Lesnicki2008-11-25T11:30:20Z2008-11-25T11:30:20Z<p>If you want to be general, you have to look at the precise specification of the a tag, like <a href="http://www.w3.org/TR/REC-html40/struct/links.html#h-12.2" rel="nofollow">here</a>. But even with that, if you do your perfect regexp, what if you have malformed html?</p>
<p>I would suggest to go for a library to parse html, depending on the language you work with: e.g. like python's Beautiful Soup.</p>
http://stackoverflow.com/questions/359498/how-can-i-unload-a-dll-using-ctypes-in-pythonComment by Piotr Lesnicki on How can I unload a DLL using ctypes in Python?Piotr Lesnicki2009-01-22T15:00:19Z2009-01-22T15:00:19ZDid you find a better answer that my ugly way? If not maybe, you should ask on their mailing list, and if it's not present bug report it. 'del' should call the function to realease ressources!http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python/377032#377032Comment by Piotr Lesnicki on Test if executable exists in Python?Piotr Lesnicki2008-12-18T17:37:35Z2008-12-18T17:37:35Zright, I ise it usually, never copy-paste blindly..http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python/377028#377028Comment by Piotr Lesnicki on Test if executable exists in Python?Piotr Lesnicki2008-12-18T13:21:55Z2008-12-18T13:21:55ZJay, if you complete your answer according to mine (to have complete 'w') so I can remove mine.http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python/377028#377028Comment by Piotr Lesnicki on Test if executable exists in Python?Piotr Lesnicki2008-12-18T12:48:12Z2008-12-18T12:48:12ZThanks Jay, I accept your answer, though for me it answers my question by the negative. No such function exists in the libs, I just have to write it (I admit my formulation was not clear enough in the fact that I know what which does).http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python/377032#377032Comment by Piotr Lesnicki on Test if executable exists in Python?Piotr Lesnicki2008-12-18T12:42:17Z2008-12-18T12:42:17ZThanks, gimel, so basically I have my answer: no such function exists, I must do It manually.http://stackoverflow.com/questions/377017/test-if-executable-exists-in-pythonComment by Piotr Lesnicki on Test if executable exists in Python?Piotr Lesnicki2008-12-18T12:39:31Z2008-12-18T12:39:31ZNothing's wrong Jay, but you know, often a function sits there hidden in the libs in front of your eyes, and you just don't know it's there!http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python/377029#377029Comment by Piotr Lesnicki on Test if executable exists in Python?Piotr Lesnicki2008-12-18T12:32:42Z2008-12-18T12:32:42ZThanks, but I'm not sure if 'which' exists on windows and the likes. I wanted essentially to know if something fancy exists in the standart libhttp://stackoverflow.com/questions/362426/implementing-a-command-action-parameter-style-command-line-interfaces/362476#362476Comment by Piotr Lesnicki on Implementing a "[command] [action] [parameter]" style command-line interfaces?Piotr Lesnicki2008-12-12T11:10:29Z2008-12-12T11:10:29ZUnfortunatly it parses command line <i>options</i>, not <i>arguments</i> as dbr askshttp://stackoverflow.com/questions/361648/how-do-you-make-linux-guis/361662#361662Comment by Piotr Lesnicki on How do you make linux GUI's?Piotr Lesnicki2008-12-12T01:57:27Z2008-12-12T01:57:27Z@Mike: in unix philosophy there is one tool for each job. Xlib is at a lower level than you expect, it enables you to display things. Buttons & stuff are in toolkits, so you have to choose one...http://stackoverflow.com/questions/344374/is-there-anything-like-openmp-on-java/344403#344403Comment by Piotr Lesnicki on Is there anything like OpenMP on Java?Piotr Lesnicki2008-12-09T22:29:53Z2008-12-09T22:29:53ZIt doesn't in fact. Both are complementary: basically mostly openmp for shared memory and mpi for distruibuted memory. The mix can give quite hairy codes though ^^http://stackoverflow.com/questions/351821/destroying-a-toplevel-tk-window-in-python/351832#351832Comment by Piotr Lesnicki on destroying a Toplevel tk window in pythonPiotr Lesnicki2008-12-09T05:23:44Z2008-12-09T05:23:44Zno, lambda works exactly like def but it's anonymous, you have to put the same thing in the body. So in your try with lambda, command is not assigned a function, but a function returning a function (one indirection too much). Whereas TL.destroy is a function, so it's OK.http://stackoverflow.com/questions/349322/using-css-to-duplicate-html-elements/349350#349350Comment by Piotr Lesnicki on using css to duplicate html elementsPiotr Lesnicki2008-12-08T12:42:41Z2008-12-08T12:42:41ZImho, it's not behaviour (js), but in the absolute I think he's right: logically it's not really content but it belongs to the way you lay out content (you could replicate menus only for some 'verbose' stylesheets).http://stackoverflow.com/questions/347551/what-tool-to-use-to-draw-file-tree-diagramComment by Piotr Lesnicki on What tool to use to draw file tree diagramPiotr Lesnicki2008-12-07T13:14:39Z2008-12-07T13:14:39ZWhy is this question closed? There are programming DSL's to draw trees: e.g. tools like graphviz which can solve this "programmatically". http://stackoverflow.com/questions/346567/how-can-one-turn-regular-quotes-i-e-into-latex-tex-quotes-i-e/346606#346606Comment by Piotr Lesnicki on How can one turn regular quotes (i.e. ', ") into LaTeX/TeX quotes (i.e. `', ``'')Piotr Lesnicki2008-12-06T19:12:14Z2008-12-06T19:12:14ZBesides, one can add that in editors like emacs, when you type a <code>"</code> it uses <code>Tex-insert-quote</code> to remember if your quotes are opened (no nesting), and you have to manually open single quotes.http://stackoverflow.com/questions/341379/python-decorators-run-before-function-it-is-decorating-is-called/341406#341406Comment by Piotr Lesnicki on Python Decorators run before function it is decorating is called?Piotr Lesnicki2008-12-06T17:24:01Z2008-12-06T17:24:01ZI don't really know what is his purpose, I thought it was rather for the redirection.