User Jason Pratt - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:04:39Zhttp://stackoverflow.com/feeds/user/99http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/16067/prototyping-hybrid-python-code/17300#173005Answer by Jason Pratt for Prototyping hybrid Python codeJason Pratt2008-08-20T01:45:05Z2008-08-20T01:50:44Z<p>The best way to plan for an eventual transition to compiled code is to write the performance sensitive portions as a module of simple functions in a <a href="http://en.wikipedia.org/wiki/Functional_programming" rel="nofollow">functional style</a> (stateless and without side effects), which accept and return basic data types.</p>
<p>This will provide a one-to-one mapping from your Python prototype code to the eventual compiled code, and will let you use <a href="http://www.python.org/doc/lib/module-ctypes.html" rel="nofollow">ctypes</a> easily and avoid a whole bunch of headaches.</p>
<p>For peak fitting, you'll almost certainly need to use arrays, which will complicate things a little, but is still very doable with ctypes.</p>
<p>If you really want to use more complicated data structures, or modify the passed arguments, <a href="http://www.swig.org/" rel="nofollow">SWIG</a> or <a href="http://docs.python.org/ext/ext.html" rel="nofollow">Python's standard C-extension interface</a> will let you do what you want, but with some amount of hassle.</p>
<p>For what you're doing, you may also want to check out <a href="http://numpy.scipy.org/" rel="nofollow">NumPy</a>, which might do some of the work you would want to push to C, as well as offering <a href="http://projects.scipy.org/scipy/numpy/wiki/NumPyCAPI" rel="nofollow">some additional help in moving data back and forth between Python and C</a>.</p>
http://stackoverflow.com/questions/10123/how-do-i-treat-an-integer-as-an-array-of-bytes-in-python/10213#102138Answer by Jason Pratt for How do I treat an integer as an array of bytes in Python?Jason Pratt2008-08-13T18:52:36Z2008-08-13T18:52:36Z<p>To answer your general question, you can use <a href="http://en.wikipedia.org/wiki/Bit_twiddling" rel="nofollow">bit manipulation</a> techniques:</p>
<pre><code>pid, status = os.wait()
exitstatus, signum = status & 0xFF, (status & 0xFF00) >> 8
</code></pre>
<p>However, there are also <a href="http://docs.python.org/lib/os-process.html#l2h-2780" rel="nofollow">built-in funtions</a> for interpreting exit status values:</p>
<pre><code>pid, status = os.wait()
exitstatus, signum = os.WEXITSTATUS( status ), os.WTERMSIG( status )
</code></pre>
<p>See also:</p>
<ul>
<li>os.WCOREDUMP()</li>
<li>os.WIFCONTINUED()</li>
<li>os.WIFSTOPPED()</li>
<li>os.WIFSIGNALED()</li>
<li>os.WIFEXITED()</li>
<li>os.WSTOPSIG()</li>
</ul>
http://stackoverflow.com/questions/6599/notifications/6604#66041Answer by Jason Pratt for NotificationsJason Pratt2008-08-09T04:08:56Z2008-08-09T04:08:56Z<p>It's the <a href="http://stackoverflow.uservoice.com/" rel="nofollow">top two issues on the uservoice site</a>, both planned.</p>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/5020#50204Answer by Jason Pratt for Recommended Fonts for Programming?Jason Pratt2008-08-07T17:33:20Z2008-08-07T17:33:20Z<blockquote>
<p>I never found a reason to stray from Courier New. I don't think I'd have a problem with any font so long as it's sans-serif. Mono-spaced fonts are nice for coding, too.</p>
</blockquote>
<p>Courier New has serifs.</p>http://stackoverflow.com/questions/2896/project-suggestions/3015#301512Answer by Jason Pratt for Project SuggestionsJason Pratt2008-08-06T02:05:04Z2008-08-06T23:18:36Z<p>Like others, I also suggest making a game as a small project. Games usually exercise lots of different programming skills (from AI algorithms to GUIs), are fun and interesting to make, and give you an end product that you and others can enjoy. Here are some suggestions:</p>
<ul>
<li>Experiment with the <a href="http://en.wikipedia.org/wiki/Minimax" rel="nofollow">minimax algorithm</a>:
<ul><li>Tic Tac Toe AI (simple)</li>
<li>Connect Four AI</li>
<li>Checkers AI</li>
<li>Othello AI</li></ul></li>
<li>Simulation: <a href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" rel="nofollow">Conway's Game of Life</a></li>
<li>Make an interface for a classic board game (A lot of these exist online, but most of the interfaces stink. You can do better, just try not to put your game on Facebook and give it <a href="http://www.scrabulous.com/" rel="nofollow">a name too close to Scrabble</a>):
<ul><li>Backgammon</li>
<li>Cribbage</li>
<li>Go</li>
<li>Pente (one of my favorites)</li></ul></li>
<li>Make a web version of a pencil and paper game:
<ul><li><a href="http://en.wikipedia.org/wiki/Dots_and_Boxes" rel="nofollow">Dots and Boxes</a></li>
<li><a href="http://en.wikipedia.org/wiki/Sprouts_%28game%29" rel="nofollow">Sprouts</a></li></ul></li>
<li>Make an action game: <a href="http://www.pygame.org/" rel="nofollow">pygame</a> is a free, open source, cross platform set of libraries that make it easy to create traditional 2D video games.</li>
<li>Make a 3D game: <a href="http://panda3d.org/" rel="nofollow">Panda3D</a> is a free, open source, cross platform, 3D game engine that lets you write entire games using Python.</li>
<li>Better than all of these: come up with your own game idea and implement it.</li>
</ul>
<p>You might consider implementing your game using <a href="http://code.google.com/appengine/" rel="nofollow">Google App Engine</a>. This will give you good exposure to Python and other modern web technologies, and will make it even easier to share what you create with others (potentially the rest of the world).</p>http://stackoverflow.com/questions/3767/what-is-the-best-choice-for-building-windows-installers/3821#382123Answer by Jason Pratt for What is the best choice for building Windows installers?Jason Pratt2008-08-06T18:39:00Z2008-08-06T18:39:00Z<p><a href="http://nsis.sourceforge.net/" rel="nofollow">NSIS</a> is a fantastic open source, highly optimized, scriptable installer system.</p>
<p>It's the perfect installer system for programmers, because you create the installer using a powerful script rather than the bloated and unintuitive GUIs that most installer systems use.</p>
<p>It was originally created by Nullsoft, the people who made Winamp.</p>http://stackoverflow.com/questions/3247/identifying-passionate-programmers/3256#325634Answer by Jason Pratt for Identifying passionate programmersJason Pratt2008-08-06T10:18:33Z2008-08-06T10:18:33Z<p>I think the single biggest indicator is what they do in their free time.</p>
<p>Do they have side projects that have nothing to do with work? Do they read books and web articles, attempting to better their craft? Do they experience everyday events and think about how those experiences might relate to a piece of code?</p>
<p>That's usually the sign of a passionate programmer.</p>http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/3105#310521Answer by Jason Pratt for Best ways to teach a beginner to program?Jason Pratt2008-08-06T05:29:49Z2008-08-06T10:03:57Z<p>You could try using <a href="http://www.alice.org/" rel="nofollow">Alice</a>. It's a 3D program designed for use in introductory programming classes.</p>
<p>The two biggest obstacles for new programmers are often:</p>
<ul>
<li>syntax errors</li>
<li>motivation (writing something meaningful and fun rather than contrived)</li>
</ul>
<p>Alice uses a drag and drop interface for constructing programs, avoiding the possibility of syntax errors. Alice lets you construct 3D worlds and have your code control (simple) 3D characters and animation, which is usually a lot more interesting than implementing linked lists.</p>
<p>Experienced programmers may look down at Alice as a toy and scoff at dragging and dropping lines of code, but <a href="http://www.alice.org/index.php?page=publications/publications" rel="nofollow">research</a> shows that this approach works.</p>
<p>Disclaimer: I worked on Alice.</p>http://stackoverflow.com/questions/972/adding-a-method-to-an-existing-object/2982#298229Answer by Jason Pratt for Adding a Method to an Existing ObjectJason Pratt2008-08-06T00:33:35Z2008-08-06T00:33:35Z<p>In Python, there is a difference between functions and bound methods.</p>
<pre><code>>>> def foo():<br>... print "foo"<br>...<br>>>> class A:<br>... def bar( self ):<br>... print "bar"<br>...<br>>>> a = A()<br>>>> foo<br><function foo at 0x00A98D70><br>>>> a.bar<br><bound method A.bar of <__main__.A instance at 0x00A9BC88>><br>>>><br></code></pre>
<p>Bound methods have been "bound" (how descriptive) to an instance, and that instance will be passed as the first argument whenever the method is called.</p>
<p>Callables that are properties of a class (as opposed to an instance) are still unbound, though, so you can modify the class definition whenever you want:</p>
<pre><code>>>> def fooFighters( self ):<br>... print "fooFighters"<br>...<br>>>> A.fooFighters = fooFighters<br>>>> a2 = A()<br>>>> a2.fooFighters<br><bound method A.fooFighters of <__main__.A instance at 0x00A9BEB8>><br>>>> a2.fooFighters()<br>fooFighters<br></code></pre>
<p>Previously defined instances are updated as well (as long as they haven't overridden the property themselves):</p>
<pre><code>>>> a.fooFighters()<br>fooFighters<br></code></pre>
<p>The problem comes when you want to attach a method to a single instance:</p>
<pre><code>>>> def barFighters( self ):<br>... print "barFighters"<br>...<br>>>> a.barFighters = barFighters<br>>>> a.barFighters()<br>Traceback (most recent call last):<br> File "<stdin>", line 1, in <module><br>TypeError: barFighters() takes exactly 1 argument (0 given)<br></code></pre>
<p>The function is not automatically bound when it's assigned as a property:</p>
<pre><code>>>> a.barFighters<br><function barFighters at 0x00A98EF0><br></code></pre>
<p>To bind it, we can use the <a href="http://www.python.org/doc/lib/module-new.html" rel="nofollow">instancemethod function in the new module</a>:</p>
<pre><code>>>> import new<br>>>> a.barFighters = new.instancemethod( barFighters, a, A )<br>>>> a.barFighters<br><bound method A.barFighters of <__main__.A instance at 0x00A9BC88>><br>>>> a.barFighters()<br>barFighters<br></code></pre>
<p>This time other instances of the class have not been affected:</p>
<pre><code>>>> a2.barFighters()<br>Traceback (most recent call last):<br> File "<stdin>", line 1, in <module><br>AttributeError: A instance has no attribute 'barFighters'<br></code></pre>
<p>More information can be found by reading about <a href="http://users.rcn.com/python/download/Descriptor.htm" rel="nofollow">descriptors</a> and <a href="http://www.onlamp.com/pub/a/python/2003/04/17/metaclasses.html" rel="nofollow">metaclass</a> <a href="http://www.gnosis.cx/publish/programming/metaclass_2.html" rel="nofollow">programming</a>.</p>http://stackoverflow.com/questions/2826/do-you-have-any-recommended-plugins-for-eclipse/2892#28923Answer by Jason Pratt for Do you have any recommended plugins for Eclipse?Jason Pratt2008-08-05T21:40:15Z2008-08-05T21:40:15Z<p>Being a python developer, <a href="http://pydev.sourceforge.net/" rel="nofollow">PyDev</a> is the one I use most extensively.</p>
<p>I also use and like <a href="http://www.perforce.com/perforce/products/p4wsad.html" rel="nofollow">P4WSAD</a> (for Perforce), <a href="http://subclipse.tigris.org/" rel="nofollow">Subclipse</a>, and <a href="http://eclipsensis.sourceforge.net/index.shtml" rel="nofollow">EclipseNSIS</a>.</p>http://stackoverflow.com/questions/1019834/subclassing-in-pythonComment by Jason Pratt on Subclassing in PythonJason Pratt2009-06-19T20:58:35Z2009-06-19T20:58:35ZCan you explain your use case a little more, and why the above solution doesn't work?