User Mike - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:55:58Z http://stackoverflow.com/feeds/user/19215 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/104983/what-is-thread-local-storage-in-python-and-why-do-i-need-it 9 What is "thread local storage" in Python, and why do I need it? Mike 2008-09-19T19:53:19Z 2009-09-11T01:17:12Z <p>In Python specifically, how do variables get shared between threads?</p> <p>Although I have used <code>threading.Thread</code> before I never really understood or saw examples of how variables got shared. Are they shared between the main thread and the children or only among the children? When would I need to use thread local storage to avoid this sharing?</p> <p>I have seen many warnings about synchronizing access to shared data among threads by using locks but I have yet to see a really good example of the problem. </p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1329795/can-visual-basic-run-as-a-windows-service 0 Can Visual Basic run as a Windows Service? Mike 2009-08-25T17:41:38Z 2009-08-25T17:47:19Z <p>I am less than a week into my Visual Basic education. I have downloaded Visual Studio 2008 and am teaching myself Visual Basic 2008 in hopes of landing a particular contract position.</p> <p>In the meantime, a friend of mine told me that it is not recommended to write a Windows Service with Visual Basic. Is that true? Could he be referring to some much older version than 2008? Does the .NET version come into play?</p> <p>What is at stake is that the company that my friend works for is going to completely re-write a component of their flagship product at great cost and expense and simply abandon their existing VB code. If the only hang-up is getting it to run as a service then they could save a lot of money if Visual Basic could, in fact, run reliably as a service.</p> http://stackoverflow.com/questions/1214733/xslt-transform-of-unicode-source 0 XSLT Transform of Unicode source Mike 2009-07-31T20:33:18Z 2009-07-31T22:29:37Z <p>In my application I am using the <a href="http://4suite.org/docs/CoreManual.xml#xslt%5Fengine" rel="nofollow">4Suite.org XSLT library</a> to perform transformations of source XML. The syntax is like this:</p> <pre><code>from Ft.Xml.Xslt import Transform transformed_xml = Transform(raw_xml, stylesheet) </code></pre> <p>where <code>raw_xml</code> and <code>stylesheet</code> have been defined elsewhere in my application. <code>raw_xml</code> will be the xml resulting from reading a filehandle opened with the codecs module so the <code>raw_xml</code> will be unicode.</p> <p>The problem is that the Transform() function requires the value of the source xml (<code>raw_xml</code> in my example) to be ascii. It says so in the pydoc and my own program fails with an error along those lines if I try to transform unicode.</p> <p>Is there a different approach or is there another python library which can perform an XSLT transformation against a unicode source? Or, am I misunderstanding something about XSLT transformations?</p> http://stackoverflow.com/questions/275018/how-can-i-remove-chomp-a-newline-in-python/275401#275401 5 Answer by Mike for How can I remove (chomp) a newline in Python? Mike 2008-11-09T00:11:21Z 2008-11-09T11:44:57Z <p>The canonical way to strip end-of-line (EOL) characters is to use the string rstrip() method removing any trailing \r or \n. Here are examples for Mac, Windows, and Unix EOL characters.</p> <pre><code>&gt;&gt;&gt; 'Mac EOL\r'.rstrip('\r\n') 'Mac EOL' &gt;&gt;&gt; 'Windows EOL\r\n'.rstrip('\r\n') 'Windows EOL' &gt;&gt;&gt; 'Unix EOL\n'.rstrip('\r\n') 'Unix EOL' </code></pre> <p>Using '\r\n' as the parameter to rstrip means that it will strip out any trailing combination of '\r' or '\n'. That's why it works in all three cases above.</p> <p>This nuance matters in rare cases. For example, I once had to process a text file which contained an HL7 message. The HL7 standard requires a trailing '\r' as its EOL character. The Windows machine on which I was using this message had appended its own '\r\n' EOL character. Therefore, the end of each line looked like '\r\r\n'. Using rstrip('\r\n') would have taken off the entire '\r\r\n' which is not what I wanted. In that case, I simply sliced off the last two characters instead.</p> http://stackoverflow.com/questions/267237/whats-the-best-way-to-unit-test-protected-private-methods-in-ruby/268971#268971 0 Answer by Mike for What's the best way to unit test protected & private methods in Ruby? Mike 2008-11-06T14:54:16Z 2008-11-06T14:54:16Z <p>I would probably lean toward using instance_eval(). Before I knew about instance_eval(), however, I would create a derived class in my unit test file. I would then set the private method(s) to be public.</p> <p>In the example below, the build_year_range method is private in the PublicationSearch::ISIQuery class. Deriving a new class just for testing purposes allows me to set a method(s) to be public and, therefore, directly testable. Likewise, the derived class exposes an instance variable called 'result' that was previously not exposed.</p> <pre><code># A derived class useful for testing. class MockISIQuery &lt; PublicationSearch::ISIQuery attr_accessor :result public :build_year_range end </code></pre> <p>In my unit test I have a test case which instantiates the MockISIQuery class and directly tests the build_year_range() method.</p> http://stackoverflow.com/questions/253375/what-python-bindings-are-there-for-cvs-or-svn 6 What Python bindings are there for CVS or SVN? Mike 2008-10-31T12:51:14Z 2008-10-31T16:23:37Z <p>I once did a cursory search and found no good CVS bindings for Python. I wanted to be able to write helper scripts to do some fine-grained manipulation of the repository and projects in it. I had to resort to using popen and checking the stdout and stderr and then parsing those. It was messy and error-prone.</p> <p>Are there any good quality modules for CVS integration for Python? Which module do you prefer and why?</p> <p>While I am at it, is there a good Subversion integration module for Python? My understanding is that Subversion has a great API for such things.</p> <p>Thanks!</p> http://stackoverflow.com/questions/126753/is-there-a-good-free-python-ide-for-windows/128054#128054 2 Answer by Mike for Is there a good, free Python IDE for Windows? Mike 2008-09-24T16:03:14Z 2008-09-24T16:03:14Z <p>I have been using Eclipse with PyDev for a while now. Its pretty good but Eclipse is so bloated. I regularly see it using 300Mb of memory on Windows. It can hang and just be generally slow. YMMV.</p> <p>Yesterday, I heard about <a href="http://ipython.scipy.org/moin/" rel="nofollow">iPython</a> and am eager to check it out. It's not an IDE so much as a super charged shell for python that will allow you to use your favorite editor alongside it. There are some iPython related videos over on showmedo.com that may help you judge if it is going to meet your needs.</p> http://stackoverflow.com/questions/115844/recommended-python-publish-subscribe-dispatch-module/116902#116902 2 Answer by Mike for Recommended Python publish/subscribe/dispatch module ? Mike 2008-09-22T19:19:31Z 2008-09-22T19:19:31Z <p>I recently looked carefully at <a href="http://barryp.org/software/py-amqplib/" rel="nofollow">py-amqplib</a> to act as an AMQP client to a RabbitMQ broker. The latter tool is written in Erlang.</p> <p>If you're looking to decouple your app. then why couple it to the language itself? Consider using message queues which are language neutral and then you've really got room to grow!</p> <p>That being said, AMQP takes effort to understand and may be more than you are willing to take on if your app. is working just fine as is. YMMV.</p> http://stackoverflow.com/questions/106725/how-to-bundle-a-python-application-including-dependencies-for-windows/114717#114717 0 Answer by Mike for How to bundle a python application including dependencies for windows? Mike 2008-09-22T12:58:57Z 2008-09-22T12:58:57Z <p>My company uses the free InnoSetup tool. It is a moderately complex program that has tons of flexibility for building installers for windows. I believe that it creates .exe and not .msi files, however. InnoSetup is not python specific but we have created an installer for one of our products that installs python along with dependencies to locations specified by the user at install time.</p> http://stackoverflow.com/questions/111945/is-there-anyway-to-do-http-put-in-python/114648#114648 3 Answer by Mike for Is there anyway to do HTTP PUT in python Mike 2008-09-22T12:46:40Z 2008-09-22T12:46:40Z <p>I needed to solve this problem too a while back so that I could act as a client for a RESTful API. I settled on httplib2 because it allowed me to send PUT and DELETE in addition to GET and POST. Httplib2 is not part of the standard library but you can easily get it from the cheese shop.</p> http://stackoverflow.com/questions/56011/single-quotes-vs-double-quotes-in-python/104842#104842 0 Answer by Mike for Single quotes vs. double quotes in Python Mike 2008-09-19T19:34:38Z 2008-09-19T19:34:38Z <p>It's probably a stylistic preference more than anything. I just checked PEP 8 and didn't see any mention of single versus double quotes.</p> <p>I prefer single quotes because its only one keystroke instead of two. That is, I don't have to mash the shift key to make single quote.</p> http://stackoverflow.com/questions/1668014/sql-server-replace-remove-all-after-certain-character/1668059#1668059 Comment by Mike on SQL Server replace, remove all after certain character Mike 2009-11-17T17:08:02Z 2009-11-17T17:08:02Z What if MyText does not contain the ';' character? In that case, wouldn't you be using a negative 1 as the second parameter in left(). In that case, on my box, I get an error of &quot;Invalid length parameter passed to the substring function.&quot; http://stackoverflow.com/questions/1214733/xslt-transform-of-unicode-source/1214763#1214763 Comment by Mike on XSLT Transform of Unicode source Mike 2009-08-03T14:15:52Z 2009-08-03T14:15:52Z I would <i>love</i> to use lxml but my application is already distributed at over a hundred sites so I don't have a lot of flexibility in swapping out the xml library. It could be done but is something I'm going to try to avoid right now. Now, if I ever get a shot at updating and refactoring this code then, yes, I will probably switch to lxml for ease of use and compatibility with etree. http://stackoverflow.com/questions/1214733/xslt-transform-of-unicode-source/1215184#1215184 Comment by Mike on XSLT Transform of Unicode source Mike 2009-08-03T14:12:35Z 2009-08-03T14:12:35Z This looks like it did the trick. I'm having it tested now but it seems promising. Thanks! http://stackoverflow.com/questions/275018/how-can-i-remove-chomp-a-newline-in-python/275401#275401 Comment by Mike on How can I remove (chomp) a newline in Python? Mike 2008-11-09T11:35:13Z 2008-11-09T11:35:13Z Thanks for the clarification. Of course, the rstrip('\r\n') still works in that case too.