Popular recipes by Bill Pickett http://code.activestate.com/recipes/users/4174028/2013-12-02T09:50:55-08:00ActiveState Code RecipesHoliday Tree (Python) 2013-12-02T09:50:55-08:00Bill Picketthttp://code.activestate.com/recipes/users/4174028/http://code.activestate.com/recipes/578778-holiday-tree/ <p style="color: grey"> Python recipe 578778 by <a href="/recipes/users/4174028/">Bill Pickett</a> (<a href="/recipes/tags/exercise/">exercise</a>). Revision 2. </p> <p>Just a little holiday tree, would make a good exercise for beginning Python programmers.</p> Recursive Mandelbrot Generation (Python) 2013-08-11T03:46:46-07:00Bill Picketthttp://code.activestate.com/recipes/users/4174028/http://code.activestate.com/recipes/578635-recursive-mandelbrot-generation/ <p style="color: grey"> Python recipe 578635 by <a href="/recipes/users/4174028/">Bill Pickett</a> (<a href="/recipes/tags/mandelbrot/">mandelbrot</a>, <a href="/recipes/tags/pygame/">pygame</a>, <a href="/recipes/tags/recursion/">recursion</a>). Revision 12. </p> <p>This program recursively generates a Mandelbrot set using Python and PyGame. The size of the window must be a power of two or you will get rendering errors in the final image. It was written as an exercise in recursion, primarily to further my own understanding of that.</p> Hex Dump (Python) 2010-05-24T14:16:45-07:00Bill Picketthttp://code.activestate.com/recipes/users/4174028/http://code.activestate.com/recipes/577243-hex-dump/ <p style="color: grey"> Python recipe 577243 by <a href="/recipes/users/4174028/">Bill Pickett</a> (<a href="/recipes/tags/hexadecimal/">hexadecimal</a>). </p> <p>Load a file and print formatted hexadecimal and ascii characters to the console.</p>