User Brandon Corfman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:04:09Z http://stackoverflow.com/feeds/user/28916 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1942399/how-properly-bundleinstall-python-to-windows-users/1942540#1942540 0 Answer by Brandon Corfman for How properly bundle&install python to windows users Brandon Corfman 2009-12-21T20:49:11Z 2009-12-21T20:49:11Z <p>Try looking at this video (<a href="http://blip.tv/file/2080263" rel="nofollow">How I Distribute Python apps on Windows</a>).</p> http://stackoverflow.com/questions/1835756/using-try-vs-if-in-python/1835853#1835853 7 Answer by Brandon Corfman for Using try vs if in python Brandon Corfman 2009-12-02T21:11:16Z 2009-12-02T21:11:16Z <p>Your function should not return mixed types (i.e. list or empty string). It should return a list of values or just an empty list. Then you wouldn't need to test for anything, i.e. your code collapses to:</p> <pre><code>for r in function(): # process items </code></pre> http://stackoverflow.com/questions/1798091/artificial-inteligence-library-in-python/1798175#1798175 1 Answer by Brandon Corfman for Artificial Inteligence library in python Brandon Corfman 2009-11-25T16:30:21Z 2009-11-25T16:30:21Z <p>You would be hard-pressed to find better written code than the aima-python stuff, and I've done a lot of comparison with other search algorithms. Why do you want more "recent" code? I've used a couple of the AIMA classes in a Python 2.6 project, including the search algorithms you're talking about. The only times that I've had to modify the code is where I wanted to use generators instead of lists, and that was a fairly trivial change.</p> http://stackoverflow.com/questions/1795111/is-there-a-cross-platform-way-to-open-a-file-browser-in-python/1796726#1796726 0 Answer by Brandon Corfman for Is there a cross-platform way to open a file browser in Python? Brandon Corfman 2009-11-25T12:51:31Z 2009-11-25T12:51:31Z <p>You can do this with the Tkinter library built into Python. Try the following:</p> <pre><code>import Tkinter from tkFileDialog import askopenfilename root = Tkinter.Tk() root.withdraw() # hide the main GUI window for our example filename = askopenfilename() </code></pre> <p>If the user doesn't pick a file, the filename variable will be None; otherwise it will contain the file path + name.</p> <p>See more about tkFileDialog <a href="http://effbot.org/tkinterbook/tkinter-file-dialogs.htm" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1039224/is-it-better-to-use-ado-or-dao-in-access-2007/1646060#1646060 0 Answer by Brandon Corfman for Is it better to use ADO or DAO in Access 2007? Brandon Corfman 2009-10-29T19:37:53Z 2009-10-29T19:37:53Z <p>DAO just rocks in terms of performance compared to ADO. There's no comparison.</p> http://stackoverflow.com/questions/1605854/what-is-the-best-artificial-intelligence-library-for-python/1609161#1609161 0 Answer by Brandon Corfman for What is the best artificial-intelligence library for Python? Brandon Corfman 2009-10-22T18:37:14Z 2009-10-22T18:37:14Z <p>Since you seem to be interested in a book/code combination, you could try Stephen Marsland's <a href="http://rads.stackoverflow.com/amzn/click/1420067184" rel="nofollow">Machine Learning</a> book. He has associated Python code available on <a href="http://seat.massey.ac.nz/personal/s.r.marsland/MLBook.html" rel="nofollow">his website</a>.</p> http://stackoverflow.com/questions/1048651/problem-deploying-python-program-packaged-with-py2exe/1049296#1049296 0 Answer by Brandon Corfman for Problem deploying Python program (packaged with py2exe) Brandon Corfman 2009-06-26T13:56:26Z 2009-08-05T15:00:39Z <p>You need to include msvcr90.dll, Microsoft.VC90.CRT.manifest, and python.exe.manifest (renamed to [yourappname].exe.manifest) in your install directory. These files will be in the Python26 directory on your system if you installed Python with the "Just for me" option.</p> <p>Instructions for doing this <a href="http://www.devpicayune.com/entry/building-python-26-executables-for-windows" rel="nofollow">can be found here</a>. </p> <p>Don't forget to call <a href="http://docs.python.org/dev/library/multiprocessing.html#multiprocessing.freeze%5Fsupport" rel="nofollow">multiprocessing.freeze_support()</a> in your main function also, or you will have problems when you start a new process.</p> <p>While others have discussed including the MSVC runtime in your install package, the above solution works when you only want to distribute a single .zip file containing all your files. It avoids having to create a separate install package when you don't want that additional complication.</p> http://stackoverflow.com/questions/800849/nice-ide-for-wxpython-or-tkinter-gui-development/803939#803939 0 Answer by Brandon Corfman for Nice IDE for wxPython or Tkinter GUI Development Brandon Corfman 2009-04-29T19:39:42Z 2009-04-29T19:39:42Z <p>Try <a href="http://visualwx.altervista.org/" rel="nofollow">VisualWx</a>. I think the GUI designer is very good; however the IDE is fairly rudimentary (no code completion, debugging, etc.). My work pattern is to have VisualWx and a good editor like Komodo Edit/Netbeans/etc. open at the same time and switch between them as needed. </p> http://stackoverflow.com/questions/794132/returning-an-object-vs-returning-a-tuple/799336#799336 1 Answer by Brandon Corfman for Returning an object vs returning a tuple Brandon Corfman 2009-04-28T18:47:51Z 2009-04-28T18:47:51Z <p>Take a look at Will McGugan's <a href="http://code.google.com/p/gameobjects/" rel="nofollow">Gameobjects library</a>. He has a <a href="http://code.google.com/p/gameobjects/source/browse/trunk/vector3.py" rel="nofollow">Vector3 class</a> that can be initialized with another Vector3 object, a tuple, individual float values, etc. I think this will answer your question ... plus you may end up just using his library as it's already optimized and has plenty of useful methods already.</p> http://stackoverflow.com/questions/707491/questions-re-current-state-of-gui-programming-with-python/714201#714201 0 Answer by Brandon Corfman for questions re: current state of GUI programming with Python Brandon Corfman 2009-04-03T14:38:58Z 2009-04-03T14:38:58Z <p><a href="http://dabodev.com/" rel="nofollow">dabo</a> puts wxPython programming at a higher level like what you're looking for.</p> http://stackoverflow.com/questions/582040/how-to-get-users-to-pay-attention-to-problems/582358#582358 4 Answer by Brandon Corfman for How to get users to pay attention to problems? Brandon Corfman 2009-02-24T16:06:23Z 2009-02-24T16:06:23Z <p>My advice boils down to three things. </p> <ol> <li>Reevaluate what you think is important for the user to know. </li> <li>Don't be lazy and ask the user to resolve what your program can resolve for itself.</li> <li>Don't interrupt what the user is doing with stupid (and yes, they are stupid) messages. </li> </ol> <p>If you have a form with required data, then color-code the field as red or highlight it with an asterisk to indicate it's required. Disable the "OK" or "Confirm" button until they fill out all required fields. </p> <p>For fields with incomplete or inconsistent data, bring up a tooltip or color-code the field so the user knows that something may be wrong. You could also display the list of warnings prominently somewhere on your form. But don't stop the data entry. You'll just frustrate and anger your users.</p> http://stackoverflow.com/questions/507123/python-3-0-how-to-make-print-output-unicode/507293#507293 5 Answer by Brandon Corfman for python 3.0, how to make print() output unicode? Brandon Corfman 2009-02-03T14:34:08Z 2009-02-03T14:34:08Z <p>The Windows command prompt (cmd.exe) cannot display the Unicode characters you are using, even though Python is handling it in a correct manner internally. You need to use IDLE, Cygwin, or another program that can display Unicode correctly. </p> <p>See this thread for a full explanation: <a href="http://www.nabble.com/unable-to-print-Unicode-characters-in-Python-3-td21670662.html" rel="nofollow">http://www.nabble.com/unable-to-print-Unicode-characters-in-Python-3-td21670662.html</a></p> http://stackoverflow.com/questions/401090/preventive-vs-reactive-c-programming/401618#401618 0 Answer by Brandon Corfman for Preventive vs Reactive C# programming Brandon Corfman 2008-12-30T21:50:08Z 2008-12-30T21:50:08Z <p>It's hard to discuss the best use of exceptions without an overall discussion of exception strategy. For instance, your strategy could be any one of the following:</p> <ul> <li>handle all exceptions as close to the point of failure as possible</li> <li>log an exception, then rethrow to the caller</li> <li>rollback to a pre-exception state, and try to continue</li> <li>translate the exception to an appropriate error message and display to the user</li> </ul> <p>Exception handling can often be complicated by the fact that several developers working on the same project may not even have the same strategy or, even worse, not even know that one exists. So it is important that everyone on a team knows and understands what the strategy is.</p> <p>For a good starting point on exception handling and strategy, see Ned Batchelder's blog post <a href="http://nedbatchelder.com/text/exceptions-in-the-rainforest.html" rel="nofollow">Exceptions in the Rainforest</a>.</p> http://stackoverflow.com/questions/356718/how-to-handle-constructors-or-methods-with-a-different-set-or-type-of-arguments/357004#357004 6 Answer by Brandon Corfman for How to handle constructors or methods with a different set (or type) of arguments in Python? Brandon Corfman 2008-12-10T18:02:06Z 2008-12-10T19:42:41Z <p>Python doesn't accept multiple methods with the same name, period. One method does one thing.</p> <p>I've seen different approaches recommended on how to handle this ... classmethods (like you outlined above) or factory functions. I like keyword arguments the most.</p> <pre><code>class Color (object): def __init__(self, **parms): if parms.get('list'): self.r, self.g, self.b = parms['list'] elif parms.get('color'): color = parms['color'] self.r = color.r self.g = color.g self.b = color.b else: self.r = parms['red'] self.g = parms['green'] self.b = parms['blue'] c1 = Color(red=220, green=0, blue=270) c2 = Color(list=[220, 0, 70]) c3 = Color(color=c1) </code></pre> <p>This fits the Python way of being explicit and readable, plus it easily allows you to add new arguments if needed. </p> <p>EDIT: Plus I don't have to look at the actual constructor code to understand the arguments. The explanation is supplied by the keyword.</p> http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to/350415#350415 7 Answer by Brandon Corfman for What programming jobs do you aspire to? Brandon Corfman 2008-12-08T18:34:45Z 2008-12-08T18:34:45Z <p>Figuring out how to program my computer using a Guitar Hero interface, so I could be a "rockstar developer".</p> http://stackoverflow.com/questions/342193/make-visual-studios-find-in-files-default-to-the-project-directory 1 Make Visual Studio's Find in Files default to the project directory? Brandon Corfman 2008-12-04T21:43:31Z 2008-12-04T21:59:02Z <p>I have many different branches/checkouts of the same project code on my development machine. Each one is virtually the same except for various maintenance bug fixes or improvements I'm working on within each project.</p> <p>The problem comes when I use Find in Files inside Visual Studio to search through my code. VS2005 stores the last search directory that was used in its Find in Files dialog ... this may or may not be the project directory I'm working on. Since my projects are so similar, it's easy to accidentally search through a similar project, change some code, and only realize later that I've edited the wrong project. (Argh!!)</p> <p>Is there a way to make VS default its Find in Files search to the project directory? Obviously a properties setting would be wonderful, but an add-in would be fine too.</p> http://stackoverflow.com/questions/305359/correct-way-to-detect-sequence-parameter/305997#305997 0 Answer by Brandon Corfman for Correct way to detect sequence parameter? Brandon Corfman 2008-11-20T16:46:48Z 2008-12-04T18:41:14Z <p>You're asking the wrong question. You don't try to detect types in Python; you detect behavior.</p> <ol> <li>Write another function that handles a single value. (let's call it _use_single_val).</li> <li>Write one function that handles a sequence parameter. (let's call it _use_sequence).</li> <li>Write a third parent function that calls the two above. (call it use_seq_or_val). Surround each call with an exception handler to catch an invalid parameter (i.e. not single value or sequence).</li> <li>Write unit tests to pass correct &amp; incorrect parameters to the parent function to make sure it catches the exceptions properly.</li> </ol> <pre><code> def _use_single_val(v): print v + 1 # this will fail if v is not a value type def _use_sequence(s): print s[0] # this will fail if s is not indexable def use_seq_or_val(item): try: _use_single_val(item) except TypeError: pass try: _use_sequence(item) except TypeError: pass raise TypeError, "item not a single value or sequence" </code></pre> <p>EDIT: Revised to handle the "sequence or single value" asked about in the question. </p> http://stackoverflow.com/questions/287995/how-big-can-a-sourcesafe-db-be-before-problems-arise/288122#288122 2 Answer by Brandon Corfman for How big can a Sourcesafe DB be before "problems" arise? Brandon Corfman 2008-11-13T20:15:28Z 2008-11-13T20:15:28Z <p>Do you run the built-in ssarchive utility to make backups? If so, 2GB is the maximum size that can be restored. (<a href="http://social.msdn.microsoft.com/Forums/en-US/vssourcecontrol/thread/6e01e116-06fe-4621-abd9-ceb8e349f884/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/vssourcecontrol/thread/6e01e116-06fe-4621-abd9-ceb8e349f884/</a>)</p> <p>NOTE: the ssarchive program won't tell you this; it's just that if you try to restore a DB over 2GB, it will fail. Beware! All these guys who are telling you that they are running fine with larger DB are either using another archive program, or they haven't tested the restore feature.</p> http://stackoverflow.com/questions/285132/with-what-kind-of-ide-if-any-you-build-python-gui-projects/285186#285186 1 Answer by Brandon Corfman for With what kind of IDE (if any) you build python GUI projects? Brandon Corfman 2008-11-12T20:12:28Z 2008-11-12T20:12:28Z <p>For GUI only, I find VisualWx (<a href="http://visualwx.altervista.org/" rel="nofollow">http://visualwx.altervista.org/</a>) to be very good for designing wxPython apps under Windows.</p> <p>For GUI + database, dabo (<a href="http://dabodev.com/" rel="nofollow">http://dabodev.com/</a>) is probably a good answer.</p> http://stackoverflow.com/questions/264309/why-do-people-defend-the-regex-syntax/265684#265684 4 Answer by Brandon Corfman for Why do people defend the regex syntax? Brandon Corfman 2008-11-05T16:23:13Z 2008-11-05T16:23:13Z <p>Pyparsing (<a href="http://pyparsing.wikispaces.com/Examples" rel="nofollow">http://pyparsing.wikispaces.com/Examples</a>) is a Python library that makes it easy to write regex-like expressions that are highly readable, like these lines that will parse "Hello, World!":</p> <pre><code>from pyparsing import Word, alphas greet = Word( alphas ) + "," + Word( alphas ) + "!" greet.parseString("Hello, World!") </code></pre> <p>It looks like the library is very close to being able to match the power of regexes (see the examples page mentioned above).</p> http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn/229698#229698 0 Answer by Brandon Corfman for How do I convince my team to drop sourcesafe and move to SVN? Brandon Corfman 2008-10-23T13:24:20Z 2008-10-23T13:24:20Z <p>I used SourceSafe on a small development team and was responsible for keeping it running.</p> <p>I found the database gets corrupted pretty easily, and there isn't much recourse when that happens. The "repair" feature (as with most any Microsoft repair feature) just doesn't work 98% of the time. </p> <p>Naturally, when our database became corrupt, we tried to restore from our backup archive. That was when we discovered the other bad thing about SourceSafe: its 2GB archive limit. We were making backups at our office for months before we ever realized that they couldn't be restored and were useless. </p> <p>SourceSafe is just a disaster waiting to happen.</p> http://stackoverflow.com/questions/212039/what-should-students-be-taught-first-when-first-learning-sorting-algorithms/212120#212120 6 Answer by Brandon Corfman for What should students be taught first when first learning sorting algorithms? Brandon Corfman 2008-10-17T13:32:19Z 2008-10-17T13:32:19Z <p>I'd start by showing insertion sort. Everyone who's sorted a hand of cards (which is basically everybody) knows this sort. Plus it's doesn't have the abysmal performance of bubble sort.</p> http://stackoverflow.com/questions/1798091/artificial-inteligence-library-in-python/1798175#1798175 Comment by Brandon Corfman on Artificial Inteligence library in python Brandon Corfman 2009-11-25T17:24:53Z 2009-11-25T17:24:53Z Software rot is an issue only if a) the code in question stops working with language upgrades, or b) the code is deficient in some way. The AIMA search.py module doesn't have either problem. http://stackoverflow.com/questions/1662161/is-there-a-do-until-in-python/1662176#1662176 Comment by Brandon Corfman on Is there a "do ... until" in Python? Brandon Corfman 2009-11-02T19:05:19Z 2009-11-02T19:05:19Z BTW, this is called &quot;loop-and-a-half&quot;. Python continues to support this construct because it's one of the easiest loop patterns to correctly write and understand. See <a href="http://www.cs.duke.edu/~ola/patterns/plopd/loops.html#loop-and-a-half" rel="nofollow">cs.duke.edu/~ola/patterns/&hellip;</a> http://stackoverflow.com/questions/1207406/remove-items-from-a-list-while-iterating-in-python/1207461#1207461 Comment by Brandon Corfman on Remove items from a list while iterating in Python Brandon Corfman 2009-07-30T19:02:31Z 2009-07-30T19:02:31Z BTW, if another variable is referring to <code>somelist</code>, then you may want to modify the list <i>in-place</i> so that any references to it will be updated as well, i.e. <code>somelist[:] = [x for x in somelist if determine(x)]</code> http://stackoverflow.com/questions/702395/python-3-0-1-executable-creator Comment by Brandon Corfman on Python 3.0.1 Executable Creator Brandon Corfman 2009-04-01T13:29:34Z 2009-04-01T13:29:34Z Hate to say it, but this is yet another reason to avoid Python 3.0 for now. http://stackoverflow.com/questions/658413/how-can-i-find-which-file-contains-a-specific-function-in-python Comment by Brandon Corfman on How can I find which file contains a specific function in python? Brandon Corfman 2009-03-18T14:33:04Z 2009-03-18T14:33:04Z Within an editor/IDE? While your Python program is running? Which one? http://stackoverflow.com/questions/653980/c-optimization-techniques/653996#653996 Comment by Brandon Corfman on C++ Optimization Techniques Brandon Corfman 2009-03-17T18:23:11Z 2009-03-17T18:23:11Z Yes, once you have the algorithms right, then you can micro-optimize. http://stackoverflow.com/questions/653980/c-optimization-techniques/653996#653996 Comment by Brandon Corfman on C++ Optimization Techniques Brandon Corfman 2009-03-17T12:38:51Z 2009-03-17T12:38:51Z Sutter spends a great deal of time on micro-optimizations, like not doing unintentional copying of your data structures when you pass them around in code. But you're unlikely to get large gains from these improvements either. Better algorithms (including using the standard library) are the big win. http://stackoverflow.com/questions/619437/i-have-been-trying-to-wrap-my-head-around-the-pypy-project-so-fast-foward-5-10/619544#619544 Comment by Brandon Corfman on I have been trying to wrap my head around the PyPy project. So, fast-foward 5-10 years in the future what will PyPy have to offer over CPython, Jython, and IronPython? Brandon Corfman 2009-03-06T17:37:11Z 2009-03-06T17:37:11Z I'd add one to this great list: no need to get new versions of your Python libraries (i.e. C extensions) every time you move up to a new .X version. What a huge win that will be. http://stackoverflow.com/questions/586511/whats-a-good-way-to-backup-and-maybe-synchronize-your-development-machine/586596#586596 Comment by Brandon Corfman on What's a good way to backup (and maybe synchronize) your development machine? Brandon Corfman 2009-02-25T16:49:04Z 2009-02-25T16:49:04Z This is a recipe for an epic FAIL. You must test your restore procedure, esp. when you're not stressed. Break your RAID mirror first, then test that you can restore the mirror correctly. Next, keep one drive safely to the side, and use the other drive to see that the system backup works. http://stackoverflow.com/questions/552423/use-python-2-6-subprocess-module-in-python-2-5 Comment by Brandon Corfman on Use Python 2.6 subprocess module in Python 2.5 Brandon Corfman 2009-02-17T13:14:43Z 2009-02-17T13:14:43Z Popen.terminate() doesn't work reliably, I've found. Be careful. http://stackoverflow.com/questions/492519/timeout-on-a-python-function-call/492576#492576 Comment by Brandon Corfman on Timeout on a Python function call Brandon Corfman 2009-01-29T20:33:51Z 2009-01-29T20:33:51Z There is no method in the thread API for terminating a thread. The function must terminate normally for the thread to end, unless you want to resort to platform-specific hacks. http://stackoverflow.com/questions/492860/python-restarting-a-loop/492877#492877 Comment by Brandon Corfman on python: restarting a loop Brandon Corfman 2009-01-29T20:31:00Z 2009-01-29T20:31:00Z But there's nothing preventing i from continuing to reset to 2 indefinitely, depending on the &quot;if something&quot; test. http://stackoverflow.com/questions/492519/timeout-on-a-python-function-call Comment by Brandon Corfman on Timeout on a Python function call Brandon Corfman 2009-01-29T20:11:58Z 2009-01-29T20:11:58Z Does &quot;stall&quot; mean &quot;run indefinitely&quot; or just &quot;run a few seconds longer than I want to wait, but it will always terminate properly&quot;? It makes a big difference on what the proper answer is for your question. http://stackoverflow.com/questions/492519/timeout-on-a-python-function-call/492644#492644 Comment by Brandon Corfman on Timeout on a Python function call Brandon Corfman 2009-01-29T20:09:33Z 2009-01-29T20:09:33Z Doesn't Thread.join() just block until the timeout? If the thread doesn't terminate normally, it will continue to run in the background consuming CPU, perhaps for the lifetime of the app? http://stackoverflow.com/questions/492860/python-restarting-a-loop/492877#492877 Comment by Brandon Corfman on python: restarting a loop Brandon Corfman 2009-01-29T19:54:10Z 2009-01-29T19:54:10Z Just a reminder: with a while loop, make sure you have a termination condition that can always be satisfied.