User John Mulder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T21:05:09Z http://stackoverflow.com/feeds/user/2242 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/581851/in-python-how-do-i-make-a-temp-file-that-persists-until-the-next-run 0 In Python, how do I make a temp file that persists until the next run? John Mulder 2009-02-24T14:03:26Z 2009-09-12T06:00:59Z <p>I need to create a folder that I use only once, but need to have it exist until the next run. It seems like I should be using the tmp_file module in the standard library, but I'm not sure how to get the behavior that I want. </p> <p>Currently, I'm doing the following to create the directory: </p> <pre><code>randName = "temp" + str(random.randint(1000, 9999)) os.makedirs(randName) </code></pre> <p>And when I want to delete the directory, I just look for a directory with "temp" in it.<br /> This seems like a dirty hack, but I'm not sure of a better way at the moment. </p> <p>Incidentally, the reason that I need the folder around is that I start a process that uses the folder with the following: </p> <pre><code>subprocess.Popen([command], shell=True).pid </code></pre> <p>and then quit my script to let the other process finish the work.</p> http://stackoverflow.com/questions/1231853/how-does-mercurial-work-without-python-installed/1232767#1232767 8 Answer by John Mulder for How does mercurial work without Python installed? John Mulder 2009-08-05T11:52:12Z 2009-08-05T11:52:12Z <p>The Mercurial windows installer is packaged using <a href="http://www.py2exe.org/" rel="nofollow">py2exe</a>. This places the python interpreter as a DLL inside of a file called "library.zip". </p> <p>On my machine, it is placed in "C:\Program Files\TortoiseHg\library.zip"</p> <p>This zip file also contains the python libraries that are required by mercurial. </p> <p>For a detailed description of how mercurial is packaged for windows, see the developer page describing <a href="http://mercurial.selenic.com/wiki/BuildingWindowsInstaller" rel="nofollow">building windows installer</a>.</p> http://stackoverflow.com/questions/1185878/can-i-use-c-features-while-extending-python/1185954#1185954 3 Answer by John Mulder for Can I use C++ features while extending Python? John Mulder 2009-07-27T00:22:12Z 2009-07-27T00:22:12Z <p>The boost folks have a nice automated way to do the wrapping of C++ code for use by python.</p> <p>It is called: Boost.Python</p> <p>It deals with some of the constructs of C++ better than SWIG, particularly template metaprogramming.</p> http://stackoverflow.com/questions/968406/the-purpose-of-code-reviews/968426#968426 2 Answer by John Mulder for The Purpose of Code Reviews John Mulder 2009-06-09T06:12:24Z 2009-06-09T06:12:24Z <p>This seems a little too limiting.</p> <p>I've participated in code reviews where an experienced programmer has pointed out incorrect library use (doing things the hard way) and problems with basic design. This has proved very useful. </p> <p>However, it seems like the value of a code review depends on the group that is doing it. In some cases, with some programmers, your stated purpose could be perfect.</p> http://stackoverflow.com/questions/968256/python-xml-declaration-with-encoding/968283#968283 1 Answer by John Mulder for Python: XML declaration with "encoding" John Mulder 2009-06-09T05:24:48Z 2009-06-09T05:24:48Z <p>It appears that the xml.dom.minidom version of "<a href="http://docs.python.org/library/xml.dom.minidom.html#id3" rel="nofollow">toxml</a>" accepts an optional encoding argument.</p> http://stackoverflow.com/questions/968018/python-advice-for-a-beginner-regex-dictionaries-etc/968115#968115 3 Answer by John Mulder for Python Advice for a beginner. Regex, Dictionaries etc ? John Mulder 2009-06-09T04:21:11Z 2009-06-09T04:39:10Z <p><a href="http://docs.python.org/library/configparser.html" rel="nofollow">ConfigParser</a> module from the standard library is probably the most Pythonic and staight-forward way to parse a configuration file that your python script is using.</p> <p>If you are restricted to using the particular format you have outlined, then using pyparsing is pretty good.</p> http://stackoverflow.com/questions/968116/installing-python-libraries/968137#968137 3 Answer by John Mulder for installing python libraries John Mulder 2009-06-09T04:31:10Z 2009-06-09T04:31:10Z <p>To use the package that you got from the web-site: "python setup.py install "</p> <p>My advice is to use easy_install instead of downloading packages straight from the project web-site.</p> <p>To do this, you must first install <a href="http://pypi.python.org/pypi/setuptools" rel="nofollow">setuptools</a>.</p> <p>Then just use the command "easy_install paramiko".</p> <p>As you use lots of different packages, this ends up saving you lots of hassle.</p> http://stackoverflow.com/questions/452139/writing-firmware-assembly-or-high-level/452156#452156 17 Answer by John Mulder for Writing firmware: assembly or high level? John Mulder 2009-01-16T21:45:31Z 2009-05-01T19:26:04Z <p>Most microcontroller manufacturers provide some sort of cross-compiler where you can compile the code on your PC and then transfer it over to the microcontroller. </p> <p><strong>Why C?</strong><br /> An advantage of C is that your code will be easier to port to other microcontrollers in the future. The history of computing has shown that code typically outlasts hardware implementations.<br /> A second advantage is control structures (if, for, while) that make code more readable and maintainable. </p> <p><strong>Why Assembly Language?</strong><br /> You can hand craft optimizations. </p> <p><strong>Verdict</strong><br /> As is often the case with this sort of question, the trade-offs are very dependent on the specific use.<br /> Be aware that it is often possible to mix the two by making assembly calls within C code, so you can find a balance that is right for your project.</p> <p><strong>Specific to the PIC hardware</strong><br /> It <a href="http://www.voti.nl/picfaq/index%5F1.html#Where%20can%20I%20get%20a%20GCC%20for%20PICs?" rel="nofollow">seems</a> that you don't have the option of GCC with most PIC hardware. On the other hand, as a commenter noted, the Microchip C30 compiler for the 16-bit PIC24 and dsPIC33 is gcc.<br /> PIC is also not yet supported by <a href="http://sdcc.sourceforge.net/" rel="nofollow">SDCC</a>.<br /> <strong><em>New Info: according to a comment, SDCC has workable support for PIC.</em></strong><br /> There are some other open source <a href="http://en.wikipedia.org/wiki/PIC%5Fmicrocontroller#Open%5FSource" rel="nofollow">options</a>, but I don't have experience with them. </p> http://stackoverflow.com/questions/543507/in-the-c-boost-libraries-why-is-there-a-ipp-extension-on-some-header-files 9 In the C++ Boost libraries, why is there a ".ipp" extension on some header files John Mulder 2009-02-12T21:49:42Z 2009-04-18T14:17:24Z <p>In the C++ Boost libraries, why is there a ".ipp" extension on some header files? </p> <p>It seems like they are header files included by the ".hpp" file of the same name. </p> <p>Is this convention common outside of Boost? </p> <p>What is the justification for having a special file type? </p> http://stackoverflow.com/questions/563840/how-can-i-check-the-memory-usage-of-objects-in-ipython/563921#563921 2 Answer by John Mulder for How can I check the memory usage of objects in ipython? John Mulder 2009-02-19T04:07:23Z 2009-02-19T04:07:23Z <p>UPDATE: Here is <a href="http://code.activestate.com/recipes/544288/" rel="nofollow">another</a>, maybe more thorough recipe for estimating the size of a python object. </p> <p>Here is a <a href="http://mail.python.org/pipermail/python-list/2008-January/472683.html" rel="nofollow">thread</a> addressing a similar question </p> <p>The solution proposed is to write your own... using some estimates of the known size of primitives, python's object overhead, and the sizes of built in container types. </p> <p>Since the code is not that long, here is a direct copy of it: </p> <pre><code>def sizeof(obj): """APPROXIMATE memory taken by some Python objects in the current 32-bit CPython implementation. Excludes the space used by items in containers; does not take into account overhead of memory allocation from the operating system, or over-allocation by lists and dicts. """ T = type(obj) if T is int: kind = "fixed" container = False size = 4 elif T is list or T is tuple: kind = "variable" container = True size = 4*len(obj) elif T is dict: kind = "variable" container = True size = 144 if len(obj) &gt; 8: size += 12*(len(obj)-8) elif T is str: kind = "variable" container = False size = len(obj) + 1 else: raise TypeError("don't know about this kind of object") if kind == "fixed": overhead = 8 else: # "variable" overhead = 12 if container: garbage_collector = 8 else: garbage_collector = 0 malloc = 8 # in most cases size = size + overhead + garbage_collector + malloc # Round to nearest multiple of 8 bytes x = size % 8 if x != 0: size += 8-x size = (size + 8) return size </code></pre> http://stackoverflow.com/questions/506237/why-is-float-division-slow/506257#506257 5 Answer by John Mulder for Why is float division slow? John Mulder 2009-02-03T07:35:01Z 2009-02-03T07:35:01Z <p>As described in this wikipedia <a href="http://en.wikipedia.org/wiki/Division_(digital)" rel="nofollow">article</a>, there are two main aproaches to division in computers: </p> <p><strong>Slow Division</strong><br /> Uses the following recurrence and finds one digit per iteration:<br /> partialRemainder[j+1] = radix * partialRemainder[j] - quotientDigit[n-(j+1)]*denominator</p> <p><strong>Fast Division</strong><br /> Starts with an estimation and converges on the quotient. How accurate you are depends on the number of iterations.<br /> Newton-Raphson division (very briefly):<br /> 1. calculate estimate of reciprocal<br /> 2. compute more accurate estimates of reciprocal<br /> 3. compute quotient by multiplying the dividend by reciprocal </p> http://stackoverflow.com/questions/498169/qt-and-vc-6-0-ide/498176#498176 2 Answer by John Mulder for Qt and VC++ 6.0 IDE? John Mulder 2009-01-31T03:43:26Z 2009-01-31T03:43:26Z <p>They work pretty well together.<br /> I have used Visual Studio Express 2008.</p> http://stackoverflow.com/questions/498106/how-do-i-compile-a-visual-studio-project-from-the-command-line 4 How do I compile a visual studio project from the command line? John Mulder 2009-01-31T02:52:25Z 2009-01-31T03:12:52Z <p>I'm scripting the checkout, build, distribute, test, and commit cycle for a large C++ solution that is using Monotone, Cmake, Visual Studio Express 2008, and custom tests. </p> <p>All of the other parts seem pretty straight-forward, but I don't see how to compile the visual studio solution without getting the GUI. </p> <p>The script is written in Python, but an answer that would allow me to just make a call to: os.system would do.</p> http://stackoverflow.com/questions/498078/how-can-i-make-exe-file-of-the-modified-copy/498088#498088 0 Answer by John Mulder for How can I make EXE file of the modified copy? John Mulder 2009-01-31T02:35:27Z 2009-01-31T02:35:27Z <p>According to a <a href="http://www.openrce.org/forums/posts/612" rel="nofollow">discussion</a> on OpenRCE, it seems that you cannot directly force IDA Pro to output an ".exe". What you can do is get it to produce a ".dif" and use that to patch the original ".exe". </p> <p>To get IDA Pro to generate the ".dif": File->Produce file->Create</p> http://stackoverflow.com/questions/497952/how-to-make-python-gracefully-fail/497965#497965 1 Answer by John Mulder for How to make python gracefully fail? John Mulder 2009-01-31T01:28:45Z 2009-01-31T01:34:18Z <p>When Python runs into an error condition, it is throwing a exception. </p> <p>The way to handle this is to catch the exception and maybe handle it. </p> <p>You might check out the section on exceptions on the python <a href="http://docs.python.org/tutorial/errors.html" rel="nofollow">tutorial</a>.</p> <p>You expressed an interest in catching all exceptions. This could be done by catching the Exception class. according to the documentation:</p> <blockquote> <p>All built-in, non-system-exiting exceptions are derived from this class. All user-defined exceptions should also be derived from this class</p> </blockquote> http://stackoverflow.com/questions/486380/problem-with-windows-batch-file-on-windows-7/488067#488067 0 Answer by John Mulder for Problem with windows Batch file on windows 7 John Mulder 2009-01-28T15:35:52Z 2009-01-28T15:35:52Z <p><strong>A simpler example</strong><br /> Windows 7 installed<br /> Using <a href="http://www.cygwin.com/" rel="nofollow">cygwin</a> to get gcc </p> <p>I used the following batch script: </p> <pre><code>PATH = %PATH%;C:\cygwin\bin; gcc test.c </code></pre> <p>on the following c file: </p> <pre><code>main() { printf("hello, world"); } </code></pre> <p>And it compiled fine. </p> <p><strong>My Conclusion</strong><br /> Windows 7 batch scripts work pretty much like in previous versions of windows.</p> <p><strong>Simple things that could trip you up</strong><br /> Gcc is not installed by default on Windows, I suggest either <a href="http://www.cygwin.com/" rel="nofollow">cygwin</a> or <a href="http://www.mingw.org/" rel="nofollow">mingw</a><br /> Gcc is not on the PATH by default after you have installed gcc, you can add it to the system's environment variable or add it in your batch script (using something like the first line of the batch script I just used). </p> http://stackoverflow.com/questions/459725/how-to-reduce-memory-usage-in-a-haskell-app/460253#460253 2 Answer by John Mulder for How to reduce memory usage in a Haskell app? John Mulder 2009-01-20T06:08:13Z 2009-01-20T06:08:13Z <p>Does forcing "un-laziness" using $! help? as per <a href="http://stackoverflow.com/questions/412919/how-haskell-tail-recursion-works">this answer</a>.</p> http://stackoverflow.com/questions/449168/are-there-any-good-3rd-party-gui-products-for-python/449252#449252 6 Answer by John Mulder for Are there any good 3rd party GUI products for Python? John Mulder 2009-01-16T01:49:55Z 2009-01-16T20:18:18Z <p>There are a number of GUI Toolkits available for Python. Obviously, the toolkit you choose will determine your selection of 3rd party widgets. </p> <p><strong>The Contenders</strong> </p> <p>Python comes with <a href="http://wiki.python.org/moin/TkInter" rel="nofollow">Tkinter</a> which is easy to use, but not great looking.</p> <p>There are some very popular cross platform GUI toolkits borrowed from C/C++ that have a lot of external widgets: <a href="http://www.wxpython.org/" rel="nofollow">wxPython</a>, <a href="http://wiki.python.org/moin/PyQt" rel="nofollow">pyQt</a>, <a href="http://pyfltk.sourceforge.net/" rel="nofollow">pyFLTK</a>, <a href="http://www.pygtk.org/" rel="nofollow">pyGtk</a></p> <p>I also know of, but have not used some of the other toolkits that are out there: <a href="http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/" rel="nofollow">PyGUI</a>, <a href="http://easygui.sourceforge.net/" rel="nofollow">Easygui</a>, <a href="http://pythoncard.sourceforge.net/" rel="nofollow">PythonCard</a></p> <p><strong>My Choice</strong> </p> <p>I'm a fan of <a href="http://www.wxpython.org/" rel="nofollow">wxPython</a>. They have a nice selection of widgets, some great examples that come with the <a href="http://www.wxpython.org/download.php#binaries" rel="nofollow">install</a>, good <a href="http://www.wxpython.org/onlinedocs.php" rel="nofollow">documentation</a>, a <a href="http://rads.stackoverflow.com/amzn/click/1932394621" rel="nofollow">book</a>, and an active community. </p> <p>WxWidgets has additional components offered by the community called <a href="http://wxcode.sourceforge.net/" rel="nofollow">wxCode</a>.</p> <p>Quote about wxPython from the creator of Python: </p> <blockquote> <p>wxPython is the best and most mature cross-platform GUI toolkit, given a number of constraints. The only reason wxPython isn't the standard Python GUI toolkit is that Tkinter was there first. </p> <p>-- <em>Guido van Rossum</em></p> </blockquote> http://stackoverflow.com/questions/449444/interesting-applications-of-interfaces/449464#449464 1 Answer by John Mulder for Interesting Applications of Interfaces John Mulder 2009-01-16T03:57:51Z 2009-01-16T04:08:43Z <p>They allow polymorphism without some of the bad sides of inheritance. </p> <p><strong>What do I mean by bad sides of inheritance?</strong><br /> Code and Data inherited down a long chain (making it less obvious).<br /> Inherited members that are over-ridden somewhere in the inheritance tree. </p> <p><strong>How can you use polymorphism?</strong><br /> To avoid repeating yourself. Create functions, switches, or conditionals which use the interface instead of the objects that implement the interface. </p> <p><strong>Java Specific</strong><br /> In Java, it often makes sense to use interfaces as a way to get multiple-inheritance.<br /> This makes sense if something naturally fits into two categories and you have separate behavior expected for both of them. </p> <p><strong>Some Java Examples from the Web</strong><br /> <a href="http://home.cogeco.ca/~ve3ll/jatutor5.htm" rel="nofollow">http://home.cogeco.ca/~ve3ll/jatutor5.htm</a><br /> <a href="http://java.freehep.org/lib/freehep/doc/root/index.html" rel="nofollow">http://java.freehep.org/lib/freehep/doc/root/index.html</a><br /> <a href="http://www.codeguru.com/java/tij/tij0080.shtml" rel="nofollow">http://www.codeguru.com/java/tij/tij0080.shtml</a></p> http://stackoverflow.com/questions/449338/book-for-going-from-c-to-c/449414#449414 6 Answer by John Mulder for Book for going from C to C++ John Mulder 2009-01-16T03:33:30Z 2009-01-16T03:41:30Z <p><strong>The C++ programming language</strong> <a href="http://rads.stackoverflow.com/amzn/click/0201700735" rel="nofollow">amazon link</a><br /> by Bjarne Stroustrup<br /> An excellent reference book. Not a good intro to the language. The examples tend to be disembodied, without context. Buy it, but don't read it straight through. </p> <p><strong>Accelerated C++: Practical Programming by Example</strong> <a href="http://rads.stackoverflow.com/amzn/click/020170353X" rel="nofollow">amazon link</a><br /> by Andrew Koenig and Barbara E. Moo<br /> Great intro book for hitting the ground running. Short, sweet, and to the point. Uses the STL from the first example and never stops. Teaches C++ as it was intended to be used. </p> <p><strong>Essential C++</strong> <a href="http://rads.stackoverflow.com/amzn/click/0201485184" rel="nofollow">amazon link</a><br /> by Stanley B. Lippman<br /> Short tutorial book. Teaches all of the basics well, but definitely covers the real c++ bases (generic programming, OOP, exception handling), not just c with classes. </p> <p><strong>C++ How to Program</strong> <a href="http://rads.stackoverflow.com/amzn/click/0136152503" rel="nofollow">amazon link</a><br /> by Harvey &amp; Paul Deitel<br /> A textbook. Expensive. Assumes that you know very (very) little. Most of the book uses c++ as if it was just c with classes. </p> <p><strong>Thinking in C++: Introduction to Standard C++</strong> <a href="http://rads.stackoverflow.com/amzn/click/0139798099" rel="nofollow">amazon link</a><br /> by Bruce Eckel<br /> Good thorough guide to making the transition from c to c++. Methodical. Not a quick dive, but great for getting you to feel comfortable with c++. </p> http://stackoverflow.com/questions/429995/how-do-c-and-c-store-large-objects-on-the-stack/430016#430016 0 Answer by John Mulder for How do C and C++ store large objects on the stack? John Mulder 2009-01-09T22:39:55Z 2009-01-09T22:39:55Z <p>You can have objects that are massive enough (or numerous enough) that it won't make sense to put them on the stack. In that case, you can put the object on the heap and put a pointer to it on the stack. This is a difference between pass by value and pass by reference.</p> http://stackoverflow.com/questions/429162/how-to-process-a-yaml-stream-in-python/429305#429305 2 Answer by John Mulder for How to process a YAML stream in Python John Mulder 2009-01-09T19:12:47Z 2009-01-09T19:12:47Z <p>All of the references to stream in the the documentation seem to be referring to a stream of documents... I've never tried to use it in the way you describe, but it seems like chunking the data into such a stream of documents is a reasonable approach.</p> http://stackoverflow.com/questions/429213/what-programming-language-should-i-choose-for-an-independent-study-language/429270#429270 1 Answer by John Mulder for What programming language should I choose for an independent study language? John Mulder 2009-01-09T19:00:22Z 2009-01-09T19:00:22Z <p>You need to try something that makes you think differently, not just a new syntax for the same object-oriented or procedural ideas. </p> <p>I suggest either a functional language (like Haskell or lisp) or a language that encourages parallel programming (like Erlang).</p> <p>It is important to note that you don't need a pure language to get the benefit, so learning Python or Ruby to do functional programming can be as good as Haskell or Lisp. A benefit to picking Python would be that the syntax is not too different from C, but it includes a lot of ideas from various Paradigms. </p> http://stackoverflow.com/questions/422600/canonical-operator-overloading/422688#422688 2 Answer by John Mulder for Canonical operator overloading? John Mulder 2009-01-07T23:51:53Z 2009-01-07T23:51:53Z <p>In Bjarne Stroustrup's book "<a href="http://rads.stackoverflow.com/amzn/click/0201700735" rel="nofollow">The C++ Programming Language</a>", in chapter 11 (the one devoted to Operator Overloading) he goes through witting a class for a complex number type (section 11.3). </p> <p>One thing I do notice from that section is that he implements mixed type operations... this is probably expected for any numeric class. </p> <p>In general, what you've got looks good.</p> http://stackoverflow.com/questions/422247/fixed-point-arithmetic/422318#422318 5 Answer by John Mulder for Fixed-point arithmetic John Mulder 2009-01-07T22:00:42Z 2009-01-07T22:15:44Z <p>If you are interested in doing fixed point arithmetic, the Python Standard Library has a <a href="http://docs.python.org/library/decimal.html" rel="nofollow">decimal</a> module that can do it. </p> <p>Actually, it has a more flexible floating point ability than the built-in too. By flexible I mean that it: </p> <ul> <li><p>Has "signals" for various exceptional conditions (these can be set to do a variety of things on signaling) </p></li> <li><p>Has positive and negative infinities, as well as NaN (not a number) </p></li> <li><p>Can differentiate between positive and negative 0 </p></li> <li><p>Allows you to set different rounding schemes.</p></li> <li><p>Allows you to set your own min and max values. </p></li> </ul> <p>All in all, it is handy for a <a href="http://www.skepticfiles.org/en001/monty16.htm" rel="nofollow">million household uses</a>.</p> http://stackoverflow.com/questions/421126/visual-studio-to-make/421165#421165 5 Answer by John Mulder for Visual Studio to Make John Mulder 2009-01-07T17:10:46Z 2009-01-07T17:10:46Z <p>I would suggest making using <a href="http://www.cmake.org/" rel="nofollow">Cmake</a>... which will generate a set of makefiles or a visual Studio Project.</p> http://stackoverflow.com/questions/375221/do-you-know-a-managed-equivalent-to-eax/375396#375396 4 Answer by John Mulder for Do you know a managed equivalent to '@eax'? John Mulder 2008-12-17T17:47:24Z 2008-12-17T17:47:24Z <p>I'm not sure if this is quite what you mean, but there are some other keywords that you can have printed out for tracepoints: </p> <pre><code> $ADDRESS address of current instruction $CALLER name of the previous function on the call stack $CALLSTACK entire call stack $FUNCTION name of the current function $PID process ID for current process $PNAME name of the current process $TID thread ID for current thread $TNAME name of the current thread </code></pre> http://stackoverflow.com/questions/366422/what-is-the-pythonic-way-to-avoid-default-parameters-that-are-empty-lists 4 What is the pythonic way to avoid default parameters that are empty lists? John Mulder 2008-12-14T11:23:54Z 2008-12-15T08:39:03Z <p>Sometimes it seems natural to have a default parameter which is an empty list. Yet Python gives unexpected behavior in these situations. </p> <p>If for example, I have a function:</p> <pre><code>def myFunc(working_list = []): working_list.append("a") print working_list </code></pre> <p>The first time it is called with the default will work, but calls after that will use a constantly updating list.</p> <p>So, what is the pythonic way to get the behavior I desire (a fresh list on each call)?</p> http://stackoverflow.com/questions/366418/how-to-get-started-on-algorithms/366448#366448 5 Answer by John Mulder for How to get started on ALGORITHMS? John Mulder 2008-12-14T11:46:27Z 2008-12-14T11:46:27Z <p>Binary search trees will usually be covered under the topic heading "Data Structures". In a Computer Science curriculum this normally comes before an Algorithms course, but the two are intertwined. Most data structures have specific algorithms that are defined for them and many algorithms only make sense for a certain set of data structures. </p> <p>Algorithms can be explained using a lot of languages. I think Python actually makes a pretty good pseudo-code. It has the added benefit of being executable. </p> <p>Here is an online book on data structures and algorithms using python: <a href="http://www.brpreiss.com/books/opus7/" rel="nofollow">Data Structures and Algorithms with Object-Oriented Design Patterns in Python</a> </p> <p>Here is a book I recently picked up that uses Python to describe computer science concepts, including an introduction to algorithms: <a href="http://rads.stackoverflow.com/amzn/click/1887902996" rel="nofollow">Python Programming: An Introduction to Computer Science</a></p> http://stackoverflow.com/questions/92679/which-is-the-best-tool-for-automatic-gui-performance-testing/319045#319045 0 Answer by John Mulder for Which is the best tool for automatic GUI performance testing? John Mulder 2008-11-25T21:58:47Z 2008-11-25T21:58:47Z <p>The Pragmatic Programmers also came out with a <a href="http://rads.stackoverflow.com/amzn/click/1934356182" rel="nofollow">book</a> on using Ruby to do GUI testing.</p> <p>In particular, they give extensive examples using JRuby to test a swing app. </p> <p>The testing they are doing is mostly to test functionality, but I think it would not be hard to add in some performance measures. </p> <p>The benefit of doing it this way is that you get lots of flexibility, but it is not a packaged tool. </p> http://stackoverflow.com/questions/581851/in-python-how-do-i-make-a-temp-file-that-persists-until-the-next-run/581879#581879 Comment by John Mulder on In Python, how do I make a temp file that persists until the next run? John Mulder 2009-02-24T14:17:59Z 2009-02-24T14:17:59Z yea, I think I need a temporary-ish file. It really does only exist for one run, but the run continues after my script ends. http://stackoverflow.com/questions/581851/in-python-how-do-i-make-a-temp-file-that-persists-until-the-next-run Comment by John Mulder on In Python, how do I make a temp file that persists until the next run? John Mulder 2009-02-24T14:16:07Z 2009-02-24T14:16:07Z hmmm, I'm not sure. I guess it felt like the sort of thing that a real Pythonista would have a cleaner way to do. The part that really feels dirty is the deleting.... http://stackoverflow.com/questions/537689/python-ide-built-into-visual-studio-2008/537755#537755 Comment by John Mulder on Python IDE built into Visual Studio 2008? John Mulder 2009-02-12T07:01:48Z 2009-02-12T07:01:48Z A little more detail or a link to more detail would be useful. http://stackoverflow.com/questions/510357/python-read-a-single-character-from-the-user/510364#510364 Comment by John Mulder on Python read a single character from the user John Mulder 2009-02-04T07:24:08Z 2009-02-04T07:24:08Z code seems short enough that you could just include it, but +1 for finding a good (cross-platform) answer so quickly. http://stackoverflow.com/questions/505230/py2exe-for-python-3-0/506005#506005 Comment by John Mulder on py2exe for Python 3.0 John Mulder 2009-02-03T05:18:28Z 2009-02-03T05:18:28Z Looking at the py2exe website and sourceforge download site, there does not seem to be a 3.0 version of py2exe. where did you get the idea there was? http://stackoverflow.com/questions/498078/how-can-i-make-exe-file-of-the-modified-copy Comment by John Mulder on How can I make EXE file of the modified copy? John Mulder 2009-01-31T02:29:20Z 2009-01-31T02:29:20Z are you saying &quot;I modified an executable in IDA Pro and I want to save out the modified binary as an executable file&quot; ? http://stackoverflow.com/questions/452139/writing-firmware-assembly-or-high-level/452156#452156 Comment by John Mulder on Writing firmware: assembly or high level? John Mulder 2009-01-16T22:22:05Z 2009-01-16T22:22:05Z That is what I was trying to say in the last sentence. I'll make it more explicit. http://stackoverflow.com/questions/5415/convert-bytes-to-floating-point-numbers-in-python/5435#5435 Comment by John Mulder on Convert Bytes to Floating Point Numbers in Python John Mulder 2009-01-09T05:44:48Z 2009-01-09T05:44:48Z Add a bit of demonstration code and I'll upvote. http://stackoverflow.com/questions/427152/how-do-i-timestamp-simultaneous-function-calls-in-python Comment by John Mulder on How do I timestamp simultaneous function calls in Python? John Mulder 2009-01-09T05:33:56Z 2009-01-09T05:33:56Z please give more detail. where is the timestamp supposed to be recorded? Are you reading from a file? Are you saying that the timestamping has to be simultaneous with the read function, or that you need to timestamp if simultaneous reads occur? http://stackoverflow.com/questions/422247/fixed-point-arithmetic Comment by John Mulder on Fixed-point arithmetic John Mulder 2009-01-07T21:56:18Z 2009-01-07T21:56:18Z The float type is a built in. Is it possible that you mean decimal or rational arithmetic? If you do mean floating point, could you explain what is different from the built-in that you want? http://stackoverflow.com/questions/366422/what-is-the-pythonic-way-to-avoid-default-parameters-that-are-empty-lists/366430#366430 Comment by John Mulder on What is the pythonic way to avoid default parameters that are empty lists? John Mulder 2008-12-14T11:31:17Z 2008-12-14T11:31:17Z Is it better to say: if working_list == None: or if working_list: ?? http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356183#356183 Comment by John Mulder on Python coding standards/best practices John Mulder 2008-12-13T04:09:27Z 2008-12-13T04:09:27Z and I would note that PEP-8 even takes existing code bases into account. http://stackoverflow.com/questions/140313/how-to-prevent-visual-studio-2008-from-expanding-excluded-folders-when-opening-so Comment by John Mulder on How to prevent Visual Studio 2008 from expanding excluded folders when opening solution? John Mulder 2008-10-10T05:21:07Z 2008-10-10T05:21:07Z Did you copy over your options? Tools-&gt;Import and Export Settings... http://stackoverflow.com/questions/185797/how-can-i-make-the-visual-studio-debugger-stop-breaking-at-data-breakpoints-which Comment by John Mulder on How can I make the Visual Studio debugger stop breaking at data breakpoints which are set to run a macro and continue? John Mulder 2008-10-10T04:42:36Z 2008-10-10T04:42:36Z Can you include the macro? http://stackoverflow.com/questions/159990/what-is-the-difference-between-ruby-and-python-versions-ofself Comment by John Mulder on What is the difference between Ruby and Python versions of"self"? John Mulder 2008-10-06T16:07:24Z 2008-10-06T16:07:24Z well, I would say... it is more present. :)