User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T10:36:50Zhttp://stackoverflow.com/feeds/user/18044http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/191673/preferred-python-unit-testing-framework/191689#1916890Answer by dungema for Preferred Python unit-testing frameworkdungema2008-10-10T14:48:46Z2009-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-feed1how to filter asian language from a RSS feed?dungema2009-08-01T21:09:28Z2009-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#10153784Answer by dungema for Hidden features of Pythondungema2008-09-19T12:44:42Z2009-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>>>> 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
... """
>>> 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>>>> p = re.compile(r'(?P<word>\b\w+\b)')
>>> m = p.search( '(((( Lots of punctuation )))' )
>>> 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>>>> 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
... )
>>> 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#6499570Answer by dungema for Windows Forms, tutorial?dungema2009-03-16T11:00:40Z2009-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#6241796Answer by dungema for What are some recommended, high quality, non-basic python books?dungema2009-03-08T19:50:00Z2009-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#17026211Answer by dungema for "Must Have" Books on Your Bookshelfdungema2008-10-04T12:34:35Z2008-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-outlook0How can I sort my inbox using the keyboard in Outlook? [closed]dungema2008-10-16T12:37:08Z2008-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#2080060Answer by dungema for Is there a free python debugger that has watchpoints?dungema2008-10-16T10:04:30Z2008-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#2039935Answer by dungema for Python Forumsdungema2008-10-15T08:12:39Z2008-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#2007617Answer by dungema for How can I unpack binary hex formatted data in Python?dungema2008-10-14T11:17:11Z2008-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>>>> from struct import *
>>> pack('hhl', 1, 2, 3)
'\x00\x01\x00\x02\x00\x00\x00\x03'
>>> unpack('hhl', '\x00\x01\x00\x02\x00\x00\x00\x03')
(1, 2, 3)
>>> 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#1972082Answer by dungema for How to set Visual Studio as the default post-mortem debugger?dungema2008-10-13T10:34:41Z2008-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#1955943Answer by dungema for Locating a file on the pathdungema2008-10-12T15:17:44Z2008-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#1939277Answer by dungema for What are good rules of thumb for python imports? dungema2008-10-11T10:10:13Z2008-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) > 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#1870862Answer by dungema for What is the single task in your development activity you would like to see automated?dungema2008-10-09T12:45:28Z2008-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#1841361Answer by dungema for What Programming Book would you NOT recommend to Developers?dungema2008-10-08T18:24:15Z2008-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#1816494Answer by dungema for What's a good and stable C++ tree implementation?dungema2008-10-08T07:22:18Z2008-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#1794571Answer by dungema for Which online eBook reference library do you use?dungema2008-10-07T17:09:57Z2008-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#1774701Answer by dungema for Parse DICOM files in native Pythondungema2008-10-07T07:17:52Z2008-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#1210652Answer by dungema for Parse DICOM files in native Pythondungema2008-09-23T13:40:45Z2008-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#1142511Answer by dungema for Class method differences in Python: bound, unbound and staticdungema2008-09-22T11:00:59Z2008-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#1118862Answer by dungema for What did you use to teach yourself python?dungema2008-09-21T19:49:26Z2008-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#1118474Answer by dungema for Any good book about Software Test Engineering specifically targeted to programmers?dungema2008-09-21T19:36:48Z2008-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#1112671Answer by dungema for What is a "callable" in Python ?dungema2008-09-21T15:49:28Z2008-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#1026331Answer by dungema for What can you use Python generator functions for?dungema2008-09-19T15:09:26Z2008-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#1013280Answer by dungema for What is the unit testing strategy for method call forwarding?dungema2008-09-19T12:03:17Z2008-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#952090Answer by dungema for What is the single most influential book every programmer should read?dungema2008-09-18T18:17:30Z2008-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#1218131Comment by on how to filter asian language from a RSS feed?2009-08-02T20:43:35Z2009-08-02T20:43:35ZThanks! This will do fine for me.http://stackoverflow.com/questions/208375/how-can-i-sort-my-inbox-using-the-keyboard-in-outlookComment by on How can I sort my inbox using the keyboard in Outlook?2008-10-16T14:13:04Z2008-10-16T14:13:04ZIndeed, 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#208652Comment by on How can I sort my inbox using the keyboard in Outlook?2008-10-16T14:07:45Z2008-10-16T14:07:45ZThanks, in Outlook 2007, instead of step 4, you click the "Rearrange Commands..." button, then select the correct toolbar and select "Modify Selection" and change the Name optionhttp://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203463#203463Comment by on What things didn't you know you needed but are now very glad you have?2008-10-15T13:10:50Z2008-10-15T13:10:50ZThe 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/…</a>http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187102#187102Comment by on What is the single task in your development activity you would like to see automated?2008-10-09T12:55:13Z2008-10-09T12:55:13ZMS Communicator 2007 does support the automatic saving of conversation in the "Outlook Conversation History". Goto: Tools|Options|Personal Information Manager and check the box before "Save my instant message conversations in the Outlook Conversation History folder"http://stackoverflow.com/questions/114214/class-method-differences-in-python-bound-unbound-and-static/114251#114251Comment by on Class method differences in Python: bound, unbound and static2008-09-22T12:47:12Z2008-09-22T12:47:12ZYou're correct. Was too quick with copy-paste. Fixed it.