User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:36:50Z http://stackoverflow.com/feeds/user/18044 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/191673/preferred-python-unit-testing-framework/191689#191689 0 Answer by dungema for Preferred Python unit-testing framework dungema 2008-10-10T14:48:46Z 2009-10-07T19:17:50Z <p>There's always <a href="http://www.python.org/doc/2.5.2/lib/module-doctest.html" rel="nofollow">doctest</a> if you want to keep your unit tests close to the code.</p> <p>HTH</p> http://stackoverflow.com/questions/1217505/how-to-filter-asian-language-from-a-rss-feed 1 how to filter asian language from a RSS feed? dungema 2009-08-01T21:09:28Z 2009-08-25T21:10:45Z <p>I like to keep track of <a href="http://delicious.com/popular" rel="nofollow">delicious.com/popular</a> RSS feed. However, lately there are more and more Asian pages in the items. Since I do not understand any Asian languages, I would like to somehow filter them from the feed and save myself some time.</p> <p>I've been trying to cook up something using <a href="http://pipes.yahoo.com/pipes/" rel="nofollow">Yahoo pipes</a>, but have not been able to get it working.</p> <p>Anyone any ideas how to make this work?</p> http://stackoverflow.com/questions/101268/hidden-features-of-python/101537#101537 84 Answer by dungema for Hidden features of Python dungema 2008-09-19T12:44:42Z 2009-06-27T22:26:56Z <p><strong>Readable regular expressions</strong></p> <p>In Python you can split a regular expression over multiple lines, name your matches and insert comments.</p> <p>Example verbose syntax (from <a href="http://diveintopython.org/regular%5Fexpressions/index.html" rel="nofollow">Dive into Python</a>):</p> <pre><code>&gt;&gt;&gt; pattern = """ ... ^ # beginning of string ... M{0,4} # thousands - 0 to 4 M's ... (CM|CD|D?C{0,3}) # hundreds - 900 (CM), 400 (CD), 0-300 (0 to 3 C's), ... # or 500-800 (D, followed by 0 to 3 C's) ... (XC|XL|L?X{0,3}) # tens - 90 (XC), 40 (XL), 0-30 (0 to 3 X's), ... # or 50-80 (L, followed by 0 to 3 X's) ... (IX|IV|V?I{0,3}) # ones - 9 (IX), 4 (IV), 0-3 (0 to 3 I's), ... # or 5-8 (V, followed by 0 to 3 I's) ... $ # end of string ... """ &gt;&gt;&gt; re.search(pattern, 'M', re.VERBOSE) </code></pre> <p>Example naming matches (from <a href="http://www.amk.ca/python/howto/regex/" rel="nofollow">Regular Expression HOWTO</a>)</p> <pre><code>&gt;&gt;&gt; p = re.compile(r'(?P&lt;word&gt;\b\w+\b)') &gt;&gt;&gt; m = p.search( '(((( Lots of punctuation )))' ) &gt;&gt;&gt; m.group('word') 'Lots' </code></pre> <p>You can also verbosely write a regex without using <code>re.VERBOSE</code> thanks to string literal concatenation.</p> <pre><code>&gt;&gt;&gt; pattern = ( ... "^" # beginning of string ... "M{0,4}" # thousands - 0 to 4 M's ... "(CM|CD|D?C{0,3})" # hundreds - 900 (CM), 400 (CD), 0-300 (0 to 3 C's), ... # or 500-800 (D, followed by 0 to 3 C's) ... "(XC|XL|L?X{0,3})" # tens - 90 (XC), 40 (XL), 0-30 (0 to 3 X's), ... # or 50-80 (L, followed by 0 to 3 X's) ... "(IX|IV|V?I{0,3})" # ones - 9 (IX), 4 (IV), 0-3 (0 to 3 I's), ... # or 5-8 (V, followed by 0 to 3 I's) ... "$" # end of string ... ) &gt;&gt;&gt; print pattern "^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$" </code></pre> http://stackoverflow.com/questions/649932/windows-forms-tutorial/649957#649957 0 Answer by dungema for Windows Forms, tutorial? dungema 2009-03-16T11:00:40Z 2009-03-16T11:00:40Z <p>How about this one?</p> <p><a href="http://www.voidspace.org.uk/ironpython/winforms/part5.shtml" rel="nofollow">The TextBox Widget</a></p> <p>It's part of a <a href="http://www.voidspace.org.uk/ironpython/winforms/index.shtml" rel="nofollow">series</a> of articles using IronPython and WinForms</p> <p>Enjoy!</p> http://stackoverflow.com/questions/623763/what-are-some-recommended-high-quality-non-basic-python-books/624179#624179 6 Answer by dungema for What are some recommended, high quality, non-basic python books? dungema 2009-03-08T19:50:00Z 2009-03-08T19:50:00Z <p>I can recommend "Dive into Python" from Mark Pilgrim. The book is free online.</p> <p><img src="http://diveintopython.org/images/cover-small.jpg" alt="Dive into Python" /></p> <p><a href="http://diveintopython.org/" rel="nofollow">http://diveintopython.org/</a></p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170262#170262 11 Answer by dungema for "Must Have" Books on Your Bookshelf dungema 2008-10-04T12:34:35Z 2008-10-22T23:34:25Z <p>The <a href="http://rads.stackoverflow.com/amzn/click/0385495323" rel="nofollow">Code Book</a> by Simon Singh</p> <p>Wonderful read that will forever make you stay away from home-made cryptography.</p> <p><img src="http://www.simonsingh.net/images/161.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/208375/how-can-i-sort-my-inbox-using-the-keyboard-in-outlook 0 How can I sort my inbox using the keyboard in Outlook? [closed] dungema 2008-10-16T12:37:08Z 2008-10-16T13:52:17Z <p>Of course I can use Alt-V | Arrange By | Date to sort on date received, but I was looking for a single key-combination.</p> <p>Can I define a macro in Outlook 2007 that will sort my inbox? I could then assign these macros to toolbar buttons and give them accessor key. But how do I do that?</p> <p>Anybody got a solution for this?</p> http://stackoverflow.com/questions/207904/is-there-a-free-python-debugger-that-has-watchpoints/208006#208006 0 Answer by dungema for Is there a free python debugger that has watchpoints? dungema 2008-10-16T10:04:30Z 2008-10-16T10:04:30Z <p>Take a look at <a href="http://mmm-experts.com/Products.aspx?ProductID=4" rel="nofollow">PyScripter</a>. It has an integrated debugger, watch windows and much more. It's open source and is developed <a href="http://pyscripter.googlepages.com/" rel="nofollow">here</a>.</p> <p>HTH</p> http://stackoverflow.com/questions/203953/python-forums/203993#203993 5 Answer by dungema for Python Forums dungema 2008-10-15T08:12:39Z 2008-10-15T08:12:39Z <p>On Usenet, the <a href="http://groups.google.com/group/comp.lang.python/topics" rel="nofollow">Python newsgroup</a> is very active. You'll be able to find answers to many problems or get answers quickly. The link points to the Google groups web interface.</p> <p>HTH</p> http://stackoverflow.com/questions/200738/how-can-i-unpack-binary-hex-formatted-data-in-python/200761#200761 7 Answer by dungema for How can I unpack binary hex formatted data in Python? dungema 2008-10-14T11:17:11Z 2008-10-14T11:17:11Z <p>In Python you use the <a href="http://www.python.org/doc/2.5.2/lib/module-struct.html" rel="nofollow">struct</a> module for this.</p> <pre><code>&gt;&gt;&gt; from struct import * &gt;&gt;&gt; pack('hhl', 1, 2, 3) '\x00\x01\x00\x02\x00\x00\x00\x03' &gt;&gt;&gt; unpack('hhl', '\x00\x01\x00\x02\x00\x00\x00\x03') (1, 2, 3) &gt;&gt;&gt; calcsize('hhl') 8 </code></pre> <p>HTH</p> http://stackoverflow.com/questions/197171/how-to-set-visual-studio-as-the-default-post-mortem-debugger/197208#197208 2 Answer by dungema for How to set Visual Studio as the default post-mortem debugger? dungema 2008-10-13T10:34:41Z 2008-10-13T10:34:41Z <p>from the <a href="http://support.microsoft.com/kb/121434" rel="nofollow">Microsoft support page</a>:</p> <pre><code>1. Start Registry Editor and locate the following Registry subkey in the HKEY_LOCAL_MACHINE subtree: \SOFTWARE\MICROSOFT\WINDOWS NT\CURRENTVERSION\AEDEBUG 2. Select the Debugger value. 3. On the Edit menu, click String. • To use the Windows debugger, type windbg -p %ld -e %ld. • To use Visual C++ 4.2 or earlier, type msvc -p %ld -e %ld. • To use Visual C++ 5.0 or later, type msdev.exe -p %ld -e %ld. • To use Dr. Watson, type drwtsn32.exe -p %ld -e %ld. You can also make Dr. Watson the default debugger by running this command:drwtsn32.exe -i. 4. Choose OK and exit Registry Editor. </code></pre> http://stackoverflow.com/questions/195590/locating-a-file-on-the-path/195594#195594 3 Answer by dungema for Locating a file on the path dungema 2008-10-12T15:17:44Z 2008-10-12T15:17:44Z <p>You can use the <code>where.exe</code> utility in the <code>C:\Windows\System32</code> directory.</p> <p>HTH</p> http://stackoverflow.com/questions/193919/what-are-good-rules-of-thumb-for-python-imports/193927#193927 7 Answer by dungema for What are good rules of thumb for python imports? dungema 2008-10-11T10:10:13Z 2008-10-11T10:10:13Z <p>I would normally use <code>import X</code> on module level. If you only need a single object from a module, use <code>from X import Y</code>. </p> <p>Only use <code>import X as Y</code> in case you're otherwise confronted with a name clash.</p> <p>I only use imports on function level to import stuff I need when the module is used as the main module, like:</p> <pre><code>def main(): import sys if len(sys.argv) &gt; 1: pass </code></pre> <p>HTH</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187086#187086 2 Answer by dungema for What is the single task in your development activity you would like to see automated? dungema 2008-10-09T12:45:28Z 2008-10-09T12:45:28Z <p>Finding duplicates in the bug tracker.</p> <p>On large projects, when a lot of testers are involved, a lot of bugs are submitted. During triage you often encounter bugs that you've encountered before. Finding those bugs in the huge repository is difficult as testers sometimes use different terminology for the same concepts.</p> http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/184136#184136 1 Answer by dungema for What Programming Book would you NOT recommend to Developers? dungema 2008-10-08T18:24:15Z 2008-10-08T18:24:15Z <p>Any book of over a 1000 pages covering only a development environment.</p> http://stackoverflow.com/questions/181630/whats-a-good-and-stable-c-tree-implementation/181649#181649 4 Answer by dungema for What's a good and stable C++ tree implementation? dungema 2008-10-08T07:22:18Z 2008-10-08T07:22:18Z <p>Take a look at <a href="http://www.aei.mpg.de/~peekas/tree/" rel="nofollow">this</a>.</p> <p>The tree.hh library for C++ provides an STL-like container class for n-ary trees, templated over the data stored at the nodes. Various types of iterators are provided (post-order, pre-order, and others). Where possible the access methods are compatible with the STL or alternative algorithms are available.</p> <p>HTH</p> http://stackoverflow.com/questions/179447/which-online-ebook-reference-library-do-you-use/179457#179457 1 Answer by dungema for Which online eBook reference library do you use? dungema 2008-10-07T17:09:57Z 2008-10-07T17:09:57Z <p>I use paper books and use <a href="http://www.amazon.com" rel="nofollow">Amazon</a> as a reference</p> http://stackoverflow.com/questions/119684/parse-dicom-files-in-native-python/177470#177470 1 Answer by dungema for Parse DICOM files in native Python dungema 2008-10-07T07:17:52Z 2008-10-07T07:17:52Z <p>And as of today there's another pure Python package reading DICOM files available on Google code: <a href="http://code.google.com/p/pydicom/" rel="nofollow">pydicom</a></p> <p>Looks interesting.</p> <p>HTH</p> http://stackoverflow.com/questions/119684/parse-dicom-files-in-native-python/121065#121065 2 Answer by dungema for Parse DICOM files in native Python dungema 2008-09-23T13:40:45Z 2008-09-23T13:40:45Z <p>Some years ago I was looking for the same thing and found this: <a href="http://cvs.atamai.com/cgi-bin/viewvc.cgi/atamai/dicom/" rel="nofollow">Python DICOM lib</a></p> <p>I wasn't too impressed with the code, but it is native Python reading DICOM files.</p> http://stackoverflow.com/questions/114214/class-method-differences-in-python-bound-unbound-and-static/114251#114251 1 Answer by dungema for Class method differences in Python: bound, unbound and static dungema 2008-09-22T11:00:59Z 2008-09-22T12:46:35Z <p>The call to method_two will throw an exception for not accepting the self parameter the Python runtime will automatically pass it.</p> <p>If you want to create a static method in a Python class, decorate it with the <code>staticmethod decorator</code>.</p> <pre><code>Class Test(Object): @staticmethod def method_two(): print "Called method_two" Test.method_two() </code></pre> http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111886#111886 2 Answer by dungema for What did you use to teach yourself python? dungema 2008-09-21T19:49:26Z 2008-09-21T19:49:26Z <p>Lurk on the Usenet group for Python: <a href="http://groups.google.com/group/comp.lang.python/topics" rel="nofollow">Google groups</a>. Lots of interesting topics and good explanations. </p> <p>Another nice resource is the Daily Python URL <a href="http://www.pythonware.com/daily/" rel="nofollow">Daily Python URL</a></p> http://stackoverflow.com/questions/110567/any-good-book-about-software-test-engineering-specifically-targeted-to-programmer/111847#111847 4 Answer by dungema for Any good book about Software Test Engineering specifically targeted to programmers? dungema 2008-09-21T19:36:48Z 2008-09-21T19:36:48Z <p>If you want to learn software from the tester perspective, I can recommend this book:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201796198" rel="nofollow">How to break software</a> by James A. Whittaker</p> <p><img src="http://vig-fp.prenhall.com/coverimage/0201796198.jpg" alt="picture book" /></p> http://stackoverflow.com/questions/111234/what-is-a-callable-in-python/111267#111267 1 Answer by dungema for What is a "callable" in Python ? dungema 2008-09-21T15:49:28Z 2008-09-21T15:49:28Z <p><code>__call__</code> makes any object be callable as a function.</p> <p>This example will output 8:</p> <pre><code>class Adder(object): def __init__(self, val): self.val = val def __call__(self, val): return self.val + val func = Adder(5) print func(3) </code></pre> http://stackoverflow.com/questions/102535/what-can-you-use-python-generator-functions-for/102633#102633 1 Answer by dungema for What can you use Python generator functions for? dungema 2008-09-19T15:09:26Z 2008-09-19T15:09:26Z <p>Basically avoiding call-back functions when iterating over input maintaining state.</p> <p>See <a href="http://www.python.org/dev/peps/pep-0255/" rel="nofollow">here</a> and <a href="http://www.dabeaz.com/generators/index.html" rel="nofollow">here</a> for an overview of what can be done using generators.</p> http://stackoverflow.com/questions/101151/what-is-the-unit-testing-strategy-for-method-call-forwarding/101328#101328 0 Answer by dungema for What is the unit testing strategy for method call forwarding? dungema 2008-09-19T12:03:17Z 2008-09-19T12:03:17Z <p>When unittesting the AddCar class, create tests that will exercise every codepath. If _authorizationManager.GetUsername() can throw an exception, create a test where your mock for this object will throw. BTW: don't throw or catch instances of Exception, but derive a meaningful Exception class.</p> <p>For the AddCars method, you definitely should call AddCar. But you might consider making AddCar virtual and override it just to test that it's called with all cars in the list.</p> <p>Sometimes you'll have to change the class design for testability.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/95209#95209 0 Answer by dungema for What is the single most influential book every programmer should read? dungema 2008-09-18T18:17:30Z 2008-09-18T18:17:30Z <p>Agile Software Development, Principles, Patterns, and Practices by Robert C. Martin</p> <p><img src="http://ecx.images-amazon.com/images/I/519J3P8ANML._SL500_AA240_.jpg" alt="Agile Software Development" /></p> http://stackoverflow.com/questions/1217505/how-to-filter-asian-language-from-a-rss-feed/1218131#1218131 Comment by on how to filter asian language from a RSS feed? 2009-08-02T20:43:35Z 2009-08-02T20:43:35Z Thanks! This will do fine for me. http://stackoverflow.com/questions/208375/how-can-i-sort-my-inbox-using-the-keyboard-in-outlook Comment by on How can I sort my inbox using the keyboard in Outlook? 2008-10-16T14:13:04Z 2008-10-16T14:13:04Z Indeed, it turns out it can be done without macros. I thought this would require some VBA macro or something. http://stackoverflow.com/questions/208375/how-can-i-sort-my-inbox-using-the-keyboard-in-outlook/208652#208652 Comment by on How can I sort my inbox using the keyboard in Outlook? 2008-10-16T14:07:45Z 2008-10-16T14:07:45Z Thanks, in Outlook 2007, instead of step 4, you click the &quot;Rearrange Commands...&quot; button, then select the correct toolbar and select &quot;Modify Selection&quot; and change the Name option http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203463#203463 Comment by on What things didn't you know you needed but are now very glad you have? 2008-10-15T13:10:50Z 2008-10-15T13:10:50Z The next version of Visual Studio will have a 'historical debugger' doing exactly what you're asking for. <a href="http://channel9.msdn.com/posts/VisualStudio/Historical-Debugger-and-Test-Impact-Analysis-in-Visual-Studio-Team-System-2010/" rel="nofollow">channel9.msdn.com/posts/VisualStudio/&hellip;</a> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187102#187102 Comment by on What is the single task in your development activity you would like to see automated? 2008-10-09T12:55:13Z 2008-10-09T12:55:13Z MS Communicator 2007 does support the automatic saving of conversation in the &quot;Outlook Conversation History&quot;. Goto: Tools|Options|Personal Information Manager and check the box before &quot;Save my instant message conversations in the Outlook Conversation History folder&quot; http://stackoverflow.com/questions/114214/class-method-differences-in-python-bound-unbound-and-static/114251#114251 Comment by on Class method differences in Python: bound, unbound and static 2008-09-22T12:47:12Z 2008-09-22T12:47:12Z You're correct. Was too quick with copy-paste. Fixed it.