User Oddthinking - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T10:28:58Zhttp://stackoverflow.com/feeds/user/8014http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1782969/bizarre-timeout-in-web-cms-ideas/1783122#17831220Answer by Oddthinking for Bizarre timeout in Web CMS, ideas?Oddthinking2009-11-23T13:27:21Z2009-11-23T13:27:21Z<p>Check that Firefox and IE are using the same proxy settings.</p>
http://stackoverflow.com/questions/1783029/can-we-use-any-extension-in-longdesc-or-only-html-is-allowed-by-w3c/1783110#17831100Answer by Oddthinking for Can we use any extension in LONGDESC or only .html is allowed by W3C?Oddthinking2009-11-23T13:24:35Z2009-11-23T13:24:35Z<p>The "extension" (i.e. optional text after the final dot) is not prescribed by W3C. It can be anything, or even absent.</p>
<p>Your web-server may need to be convinced to provide the right MIME types. Many web-servers choose MIME types by looking at the extension.</p>
http://stackoverflow.com/questions/1777719/what-is-the-definition-of-an-implementation-detail/1777729#17777291Answer by Oddthinking for What is the definition of an implementation detail?Oddthinking2009-11-22T03:40:31Z2009-11-22T03:40:31Z<p>An "implementation detail" is a decision that is left to be made by the developers, and is not specified at an earlier level (such as a requirement document or, depending on context, an architectural document.)</p>
http://stackoverflow.com/questions/1719898/how-does-pylint-quit-the-windows-command-box-it-is-running-in0How does pylint quit the Windows command box it is running in?Oddthinking2009-11-12T04:33:33Z2009-11-22T00:35:59Z
<p>Pylint is doing something odd on my Windows box - something that shouldn't be possible. This isn't a question about fixing pylint, so much as fixing my understanding.</p>
<p>I have a typical install of the latest version of pylint, Python 2.6 and Windows Vista.</p>
<p>If I open a Command Prompt, and run pylint from the command line, it executes successfully, then when it gets to the end of the program, it doesn't merely exit to the command line again, but closes the entire Command Prompt window.</p>
<p>I had a brief look at the code online (which I assume is the code that is actually being run) and they are calling sys.exit() with various error levels, but my reading and testing suggests that should still just return to the command line with the appropriate error-level set.</p>
<p>Pylint is also run as part of my project's testing regime, and it works there, suggesting to me that if it is called as a Python method rather from the command-line, it doesn't have the same problem (probably no call to sys.exit() in this code path.)</p>
<p>By what mechanism could pylint close the "shell" that contained it?</p>
<p>If this a bug in Pylint? I don't see how. A bug in Python? A bug in Windows?</p>
http://stackoverflow.com/questions/1581431/installing-python-mysql-with-wamps-mysql/1581670#15816700Answer by Oddthinking for Installing python-mysql with wamp's mysqlOddthinking2009-10-17T07:42:37Z2009-10-17T07:42:37Z<p>It is looking for the Microsoft Visual Studio compiler to take care of some (presumably) C libraries.</p>
<p>You need to install Visual Studio, or perhaps MINGW.</p>
http://stackoverflow.com/questions/1555226/pushing-a-git-source-tree-not-just-a-repository2Pushing a Git source tree, not just a repository.Oddthinking2009-10-12T15:27:49Z2009-10-13T15:15:26Z
<p>I'm using Git wrong. I want to use it right.</p>
<p>Here's what I've got:</p>
<p>Over here, on my development machine is a Git repository, that I commit to and test on.</p>
<p>Over there, is my web-server - the one place this code will be deployed. The web-server has another bare git repository that I can push to, over SSH, when I am ready to deploy.</p>
<p>What I want to happen is to have a view into the Git repository which always has the latest versions of the source files (on some branch or with some tag).</p>
<p>What I COULD do is to create another (non-bare) git repository on the web-server, and do a manual pull after each push, but I was hoping to avoid having to log in to the web-server each time I do a git push.</p>
<p>Is there a way to do a remotely "push to the web-server and refresh its checked-out files, if I promise I didn't edit any files on the web-server"?</p>
<p>Or am I just doing it so wrong you want to slap me? :-)</p>
http://stackoverflow.com/questions/217259/indenting-for-code-generation3Indenting for code-generationOddthinking2008-10-20T01:01:43Z2009-10-04T13:30:55Z
<p>Often, programmers write code that generates other code.</p>
<p>(The technical term is <a href="http://en.wikipedia.org/wiki/Metaprogramming" rel="nofollow" title="Wikipedia article on metaprogramming">metaprogramming</a>, but it is more common than merely cross-compilers; think about every PHP web-page that generates HTML or every XSLT file.)</p>
<p>One area I find challenging is coming up with techniques to ensure that <em>both</em> the hand-written source file, and the computer-generated object file are clearly indented to aid debugging. The two goals often seem to be competing.</p>
<p>I find this particularly challenging in the PHP/HTML combination. I think that is because:</p>
<ul>
<li>there is sometimes more of the HTML code in the source file than the generating PHP</li>
<li>HTML files tend to be longer than, say, SQL statements, and need better indenting</li>
<li>HTML has space-sensitive features (e.g. between tags)</li>
<li>the result is more publicly visible HTML than SQL statements, so there is more pressure to do a reasonable job.</li>
</ul>
<p>What techniques do you use to address this?</p>
<p><hr/>
Edit: I accept that there are at least three arguments to not bothering to generate pretty HTML code:</p>
<ul>
<li>Complexity of generating code is increased.</li>
<li>Makes no difference to rendering by browser; developers can use Firebug or similar to view it nicely.</li>
<li>Minor performance hit - increased download time for whitespace characters.</li>
</ul>
<p>I have certainly sometimes generated code without thought to the indenting (especially SQL).</p>
<p>However, there are a few arguments pushing the other way:</p>
<ul>
<li>I find, in practice, that I <em>do</em> frequently read generated code - having extra steps to access it is inconvenient.</li>
<li>HTML has some space-sensitivity issues that bite occasionally. </li>
</ul>
<p>For example, consider the code:</p>
<pre><code><div class="foo">
<?php
$fooHeader();
$fooBody();
$fooFooter();
?>
</div>
</code></pre>
<p>It is clearer than the following code:</p>
<pre><code><div class="foo"><?php
$fooHeader();
$fooBody();
$fooFooter();
?></div>
</code></pre>
<p>However, it is also has different rendering because of the whitespace included in the HTML.</p>
http://stackoverflow.com/questions/1514120/python-implementation-of-the-object-pool-design-pattern3Python Implementation of the Object Pool Design PatternOddthinking2009-10-03T15:55:44Z2009-10-03T16:57:21Z
<p>I need an <a href="http://en.wikipedia.org/wiki/Object_pool" rel="nofollow">Object Pool</a>, and rather than implement it myself, I thought I would look around for a ready-made and tested Python library.</p>
<p>What I found was plenty of other people <a href="http://mail.python.org/pipermail/python-list/2009-July/719988.html" rel="nofollow">looking</a>, but not getting many straight answers, so I have brought it over here to Stack Overflow.</p>
<p>In my case, I have a large number of threads (using the <code>threading</code> module), which need to occasionally call a remote SOAP-based server. They could each establish their own connection to the server, but setting up a socket and completing the authentication process is expensive (it is throttled by the server), so I want to share a pool of connections, creating more only as needed.</p>
<p>If the items to pool were worker subprocesses, I might have chosen <code>multiprocessing.pool</code>, but they are not. If they were worker threads, I might have chosen <a href="http://code.activestate.com/recipes/203871/" rel="nofollow">this implementation</a>, but they are not.</p>
<p>If they were MySQL connections, I might have chosen <a href="http://code.google.com/p/pysqlpool/" rel="nofollow">pysqlpool</a>, but they are not. Similarly the <a href="http://www.sqlalchemy.org/docs/04/pooling.html" rel="nofollow">SQLAlchemy Pool</a> is out.</p>
<p>If there was one thread, using a variable number of connections/objects, I would consider <a href="http://www.devpicayune.com/entry/object-pooling-in-python" rel="nofollow">this implementation</a>, but I need it to be thread-safe.</p>
<p>I know I could implement this again fairly quickly, but given there are many people looking for it, I thought a canonical answer on Stack Overflow would be nice.</p>
http://stackoverflow.com/questions/1387097/excel-filter-questions/1387404#13874040Answer by Oddthinking for Excel filter questionsOddthinking2009-09-07T03:07:05Z2009-09-07T03:07:05Z<p>Here are some formulae that will be true for the rows you want. </p>
<p>Copy these into another column, and you can then filter the rows based on the truth value of the column.</p>
<p>Formulae assume the value to be examined is stored in A1.</p>
<p>Is a weekend:</p>
<pre><code> =WEEKDAY(A1,3)>=5
</code></pre>
<p>Is the first or last day of the month:</p>
<pre><code>=OR(DAY(A1)=1,DAY(A1+1)=1)
</code></pre>
<p>Is a round number:</p>
<pre><code> =A1=INT(A1)
</code></pre>
http://stackoverflow.com/questions/295216/my-facebook-applications-javascript-doesnt-work-in-google-chrome3My Facebook application's Javascript doesn't work in Google ChromeOddthinking2008-11-17T10:03:59Z2009-09-04T02:23:50Z
<p>My Facebook application contains Javascript that works in Firefox and IE, but aborts in Chrome.</p>
<p>In the Javascript console it gives several errors.including:</p>
<pre><code>Uncaught TypeError: Object onloadhooks has no method 'replace'
</code></pre>
<p>There are similar errors complaining about a missing method for 'toLowerCase'.</p>
<p><b>Stop Press</b> Problem no longer occurs. Chrome appears to have patched the error.</p>
http://stackoverflow.com/questions/1361000/can-an-open-source-license-demand-to-leave-a-link-to-my-site/1361022#13610224Answer by Oddthinking for Can an open source license demand to leave a link to my siteOddthinking2009-09-01T07:26:57Z2009-09-01T07:26:57Z<p>The license can demand it. The question is whether that will turn enough people away from using your code. </p>
<p>I would have usability concerns with having a link on my web-page which is targeted at other web-developers rather than my user-base.</p>
<p>Consider demanding the link should appear in comments in the HTML source, rather than on the rendered page.</p>
http://stackoverflow.com/questions/1260857/excel-2003-charting-chart-data-too-complex/1285530#12855300Answer by Oddthinking for Excel 2003 Charting: Chart Data Too ComplexOddthinking2009-08-16T22:43:14Z2009-08-16T22:43:14Z<p>I do not have an answer to your question, sorry, but a workaround that might be useful. </p>
<p>I worked on a project about 10 years ago where we were exceeding Excel's data-point limit for charts. As much as I wanted to use Excel for the task, I couldn't get it to work.</p>
<p>I resorted to using <a href="http://www.gnuplot.info/" rel="nofollow">Gnuplot</a> for the charts. It was a hassle to introduce another technology, but it performed very well on the task.</p>
http://stackoverflow.com/questions/656951/search-for-whole-word-match-in-sql1Search for "whole word match" in SQLOddthinking2009-03-18T04:20:15Z2009-07-24T20:10:00Z
<p>I would like to write an SQL query that searches for a keyword in a text field, but only if it is a "whole word match" (e.g. when I search for "rid", it should not match "arid", but it should match "a rid".</p>
<p>I am using MySQL.</p>
<p>Fortunately, performance is not critical in this application, and the database size and string size are both comfortably small, but I would prefer to do it in the SQL than in the PHP driving it.</p>
http://stackoverflow.com/questions/973458/estimating-time-in-a-project-that-includes-unfamiliar-concepts/973480#9734800Answer by Oddthinking for Estimating time in a project that includes unfamiliar concepts?Oddthinking2009-06-10T02:51:07Z2009-06-10T02:51:07Z<p>Wherever possible, go one meta-level up: give an estimate of when you can give reasonably accurate estimate.</p>
<p>"I don't know enough about Foo to give an accurate estimate, but I will know enough about Foo by Thursday week."</p>
<p>I acknowledge it often isn't possible, but I try to make it an option when I am project managing.</p>
<p>You can even go up another meta-level, in large projects.</p>
<p>"I don't know how long it will take for us to get a expert in to give us an estimate. I will talk with my colleagues, and give you an estimate on Friday of how long it will take to get an expert estimate."</p>
<p>This can be combined with large error margins, diminishing rapidly. "It will take 1 year, +/- 9 months. I'll give you another estimate with an error range +/- 3 months by June 30."</p>
http://stackoverflow.com/questions/931829/mysql-query-works-manually-but-returns-no-results-when-running-from-code/931993#9319931Answer by Oddthinking for mysql query works manually but returns no results when running from codeOddthinking2009-05-31T12:44:39Z2009-05-31T12:44:39Z<p>Are the machine, database and user the same between the manually and automatically run scripts? Could one be accessing the test server while the other accesses the production server (for example.)</p>
http://stackoverflow.com/questions/931146/what-do-you-tell-people-your-profession-is/931697#9316970Answer by Oddthinking for What do you tell people your profession is?Oddthinking2009-05-31T09:06:11Z2009-05-31T09:06:11Z<p>I tried to quickly dismiss the question at a party once, by wordlessly waggling my fingers in front of me, palm down, in the classic mime of someone typing on a keyboard.</p>
<p>My interlocutor deadpanned "Oh, you massage the heads of midgets, then?"</p>
http://stackoverflow.com/questions/931146/what-do-you-tell-people-your-profession-is/931163#9311630Answer by Oddthinking for What do you tell people your profession is?Oddthinking2009-05-31T03:06:24Z2009-05-31T03:06:24Z<p>"I work with computers."</p>
http://stackoverflow.com/questions/924855/do-certain-languages-have-intrinsic-processor-architectures-by-design/924869#9248691Answer by Oddthinking for Do certain languages have intrinsic processor architectures by-designOddthinking2009-05-29T07:55:43Z2009-05-29T07:55:43Z<p>Perhaps this is a bit of a smart-ass answer, but:</p>
<p>The assembly languages of the processors involved are tightly linked to the architecture, so, yes, there do exist some languages where it is true.</p>
<p>Whether higher-level languages exhibit the same is perhaps more interesting.</p>
http://stackoverflow.com/questions/924127/python-regex-finding-multiple-matches-in-a-string/924146#9241460Answer by Oddthinking for Python RegEx - Finding multiple matches in a stringOddthinking2009-05-29T02:29:27Z2009-05-29T02:29:27Z<p>Could it be as simple as "SERVICE NOTIFICATION" in your pattern doesn't match "SERVICE ALERT" in your example?</p>
http://stackoverflow.com/questions/827502/pyodbc-and-microsoft-access-inconsistent-results-from-simple-query/913414#9134140Answer by Oddthinking for PyODBC and Microsoft Access: Inconsistent results from simple queryOddthinking2009-05-27T00:25:56Z2009-05-27T00:25:56Z<p>Problem was resolved somewhere between an upgrade to Access 2007 and downloading a fresh copy of the database from the source. Still don't know what the root cause was, but suspect some form of index corruption.</p>
http://stackoverflow.com/questions/827502/pyodbc-and-microsoft-access-inconsistent-results-from-simple-query0PyODBC and Microsoft Access: Inconsistent results from simple queryOddthinking2009-05-06T00:14:39Z2009-05-27T00:25:56Z
<p>I am using pyodbc, via Microsoft Jet, to access the data in a Microsoft Access 2003 database from a Python program.</p>
<p>The Microsoft Access database comes from a third-party; I am only reading the data.</p>
<p>I have generally been having success in extracting the data I need, but I recently noticed some discrepancies.</p>
<p>I have boiled it down to a simple query, of the form:</p>
<pre><code>SELECT field1 FROM table WHERE field1 = 601 AND field2 = 9067
</code></pre>
<p>I've obfuscated the field names and values but really, it doesn't get much more trivial than that! When I run the query in Access, it returns one record. </p>
<p>Then I run it over pyodbc, with code that looks like this:</p>
<pre><code>connection = pyodbc.connect(connectionString)
rows = connection.execute(queryString).fetchall()
</code></pre>
<p>(Again, it doesn't get much more trivial than that!)</p>
<p>The value of queryString is cut-and-pasted from the working query in Access, but it returns <em>no</em> records. I expected it to return the same record.</p>
<p>When I change the query to search for a different value for field2, bingo, it works. It is only some values it rejects.</p>
<p>So, please help me out. Where should I be looking next to explain this discrepancy? If I can't trust the results of trivial queries, I don't have a chance on this project!</p>
<p><em>Update</em>: It gets even simpler! The following query gives different numbers...</p>
<p>SELECT COUNT(*) FROM table</p>
<p>I ponder if it is related to some form of caching and/or improper transaction management by another application that occasionally to populates the data.</p>
http://stackoverflow.com/questions/890484/formula-referencing-other-workbooks/890706#8907061Answer by Oddthinking for formula referencing other workbooksOddthinking2009-05-20T23:15:41Z2009-05-20T23:15:41Z<p>According to Excel 2007 Help on INDIRECT:</p>
<blockquote>
<p>If ref_text refers to another workbook (an external reference), the other workbook must be open. If the source workbook is not open, INDIRECT returns the #REF! error value.</p>
</blockquote>
<p>Is having the relevant files open an option?</p>
<p>If not, sounds like some scripting might be required...</p>
http://stackoverflow.com/questions/885359/language-translators-anything-to-assembly/885363#88536314Answer by Oddthinking for Language translators: Anything to AssemblyOddthinking2009-05-19T22:37:30Z2009-05-19T22:37:30Z<p>Yes. They are called compilers.</p>
<p>Compilers are just one example of a class of programs called language-translators.</p>
<p>Compilers convert higher-level languages, such as C++ and Java into lower-level languages, including virtual machine byte-codes, assembly, C, or directly into machine-runnable object-code.</p>
http://stackoverflow.com/questions/871448/how-many-ways-are-there-to-see-if-a-number-is-even-and-which-one-is-the-fastest/871507#8715077Answer by Oddthinking for how many ways are there to see if a number is even, and which one is the fastest and clearest?Oddthinking2009-05-16T02:07:42Z2009-05-16T02:07:42Z<pre><code>isEven(n) = ((-1) ^ n) == 1
</code></pre>
<p>where ^ is the exponentiation/pow function of your language.</p>
<p>I didn't say it was fast or clear, but it has novelty value.</p>
http://stackoverflow.com/questions/871035/are-key-value-property-boxes-user-friendly/871065#8710651Answer by Oddthinking for Are key/value property boxes user friendly?Oddthinking2009-05-15T22:08:03Z2009-05-15T22:08:03Z<p>The number of properties here is a relevant factor.</p>
<p>My gut feel is that four or five may be forgivable. Seven may be pushing it.</p>
<p>My experience is that when it gets to dozens or hundreds, it becomes unworkable. People can no longer simply read all the entries to find the feature they want, without secret recipes that get passed around from experienced user to experienced user.</p>
http://stackoverflow.com/questions/844541/excel-determine-range/845494#8454941Answer by Oddthinking for Excel Determine RangeOddthinking2009-05-10T15:07:30Z2009-05-10T15:07:30Z<p>As Matthew Flaschen suggests, there is no need for VBA. This can be done with Excel formulae.</p>
<p>Suppose your data is in column A, starting at A1 and going down.
Suppose cell B1 has the number x, which is the sample size you wish to use.</p>
<p>Then the formula you need should be:</p>
<pre><code>=VAR(OFFSET(A1,0,0,B1,1))
</code></pre>
<p>The VAR part says calculate the variance of a sample of the population, ignoring non-numbers. (Variants to the function include VARP for the entire population, VARA to include non-numbers and VARPA for both).</p>
<p>The Offset part says to start at cell A1, move 0 columns across and zero columns down, and then select a range which is B1 columns tall and one column wide.</p>
http://stackoverflow.com/questions/310765/python-library-to-modify-mp3-audio-without-transcoding7Python library to modify MP3 audio without transcodingOddthinking2008-11-22T02:30:54Z2009-04-26T13:13:34Z
<p>I am looking for some general advice about the mp3 format before I start a small project to make sure I am not on a wild-goose chase.</p>
<p>My understanding of the internals of the mp3 format is minimal. Ideally, I am looking for a library that would abstract those details away. I would prefer to use Python (but could be convinced otherwise).</p>
<p>I would like to modify a set of mp3 files in a fairly simple way. I am not so much interested in the ID3 tags but in the audio itself. I want to be able to delete sections (e.g. drop 10 seconds from the 3rd minute), and insert sections (e.g. add credits to the end.)</p>
<p>My understanding is that the mp3 format is lossy, and so decoding it to (for example) PCM format, making the modifications, and then encoding it again to MP3 will lower the audio quality. (I would love to hear that I am wrong.)</p>
<p>I <em>conjecture</em> that if I stay in mp3 format, there will be some sort of minimum frame or packet-size to deal with, so the granularity of the operations may be coarser. I can live with that, as long as I get an accuracy of within a couple of seconds.</p>
<p>I have looked at <a href="http://pymedia.org/" rel="nofollow">PyMedia</a>, but it requires me to migrate to PCM to process the data. Similarly, <a href="http://lame.sourceforge.net" rel="nofollow">LAME</a> wants to help me encode, but not access the data in place. I have seen several other libraries that only deal with the ID3 tags.</p>
<p>Can anyone recommend a Python MP3 library? Alternatively, can you disabuse me of my assumption that going to PCM and back is bad and avoidable?</p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/432971#432971132Answer by Oddthinking for Significant new inventions in computing since 1980Oddthinking2009-01-11T14:01:10Z2009-04-25T22:17:07Z<p><a href="http://en.wikipedia.org/wiki/Free%5FSoftware%5FFoundation" rel="nofollow">Free Software Foundation</a> (Established 1985)</p>
<p>Even if you aren't a wholehearted supporter of their philosophy, the ideas that they have been pushing, of free software, open-source has had an amazing influence on the software industry and content in general (e.g. Wikipedia).</p>
http://stackoverflow.com/questions/663490/python-how-do-you-login-to-a-page-and-view-the-resulting-page-in-a-browser/692163#6921630Answer by Oddthinking for Python: How do you login to a page and view the resulting page in a browser?Oddthinking2009-03-28T04:02:01Z2009-03-28T04:02:01Z<p>The provided code calls:</p>
<pre><code>opener.open('http://example.com', login_data)
</code></pre>
<p>but throws away the response. I would look at this response to see if it says "Bad password" or "I only accept IE" or similar.</p>
http://stackoverflow.com/questions/684398/should-i-use-id-or-unique-username/684408#6844081Answer by Oddthinking for Should I use "id" or "unique username"?Oddthinking2009-03-26T03:23:41Z2009-03-26T03:23:41Z<p>Arguments for passing id number:</p>
<ul>
<li><p>People never change their id. People do change their names. For a casual games site with disposable accounts, that might not be a problem, but for long-term registered users it can be. I've had to handle a demand by an upset woman that her ex-husband's surname be purged from her user name. A process for doing this had to be rapidly established!</p></li>
<li><p>Shorter</p></li>
<li><p>Easier to index and partition.</p></li>
</ul>
<p>Arguments for passing user name:</p>
<ul>
<li>Slightly harder (but not impossible) to guess a legal, existing account - e.g. to peruse random people's records, if that's your thing.</li>
</ul>
http://stackoverflow.com/questions/1788466/question-on-lgpl-license/1788609#1788609Comment by Oddthinking on Question on LGPL LicenseOddthinking2009-11-24T09:37:14Z2009-11-24T09:37:14ZIANAL either, but... the lack of a copyright notice does NOT mean a version is not copyrighted. See the Berne Convention (<a href="http://en.wikipedia.org/wiki/Berne_Convention_for_the_Protection_of_Literary_and_Artistic_Works" rel="nofollow">en.wikipedia.org/wiki/…</a>)http://stackoverflow.com/questions/1782969/bizarre-timeout-in-web-cms-ideas/1783168#1783168Comment by Oddthinking on Bizarre timeout in Web CMS, ideas?Oddthinking2009-11-24T01:12:06Z2009-11-24T01:12:06Z:-( I actually wrote an answer saying "Clear the browser cookies in Firefox", but then I deleted it when I re-read your description and saw it happened on many computers; I thought it unlikely to be a cookie problem.http://stackoverflow.com/questions/1777374/seriously-what-left-of-unixComment by Oddthinking on Seriously: What left of unix ?Oddthinking2009-11-22T01:03:03Z2009-11-22T01:03:03Z-1 for troll, not a question.http://stackoverflow.com/questions/1719898/how-does-pylint-quit-the-windows-command-box-it-is-running-in/1720007#1720007Comment by Oddthinking on How does pylint quit the Windows command box it is running in?Oddthinking2009-11-12T05:41:46Z2009-11-12T05:41:46ZYes, @wallyk, the Python scripts directory contains pylint.bat which indeed does contain an exit.
My mental model of Python and Windows is restored. I thank you.http://stackoverflow.com/questions/1719898/how-does-pylint-quit-the-windows-command-box-it-is-running-inComment by Oddthinking on How does pylint quit the Windows command box it is running in?Oddthinking2009-11-12T05:40:17Z2009-11-12T05:40:17ZIndeed it is. Jim, you deserve the credit for guessing the answer first, but wallyk gave me an answer, rather than a comment, to vote upon.http://stackoverflow.com/questions/342365/what-should-coding-guidelines-do-and-are-there-any-good-examples-of-guidelines/342417#342417Comment by Oddthinking on What should coding guidelines do, and are there any good examples of guidelines?Oddthinking2009-10-28T17:09:33Z2009-10-28T17:09:33Z@Doug, if you had asked me in 1992, I would have pointed to existent tools that <i>almost</i> did that, and predicted everyone would be using tools as you describe by the turn of the century.
I picked that one wrong!http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1632281#1632281Comment by Oddthinking on What is the best Battleship AI?Oddthinking2009-10-28T17:01:53Z2009-10-28T17:01:53ZIf you start by leaving 3 or 4 spaces, you might be lucky enough to hit the sub anyway. If not, go back and try filling in the gaps.
More at: <a href="http://www.somethinkodd.com/oddthinking/2009/10/29/battleship-strategy/" rel="nofollow">somethinkodd.com/oddthinking/2009/…</a>http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1632147#1632147Comment by Oddthinking on What is the best Battleship AI?Oddthinking2009-10-28T14:54:56Z2009-10-28T14:54:56Z@Jurily, in rock-paper-scissors, the best possible strategy is to make every move completely random, UNLESS you know that there are some sub-optimal players in the pool, in which case it might be better to try to detect their strategy and adapt. As @Jherico says, that's when the arms race starts.http://stackoverflow.com/questions/1581431/installing-python-mysql-with-wamps-mysql/1581670#1581670Comment by Oddthinking on Installing python-mysql with wamp's mysqlOddthinking2009-10-19T10:06:40Z2009-10-19T10:06:40ZI'm sorry, I can't be as helpful as I would like here.
My recollection from many years ago, was that vcvarsall.bat was provided by Visual Studio. It was placed in the path, so it could be found by build scripts such as this. It set-up some environment variables pointing to the compiler, linker etc, so the build script could call them as required.
I have never used the MINGW/Cygwin C-compilers, so I don't know if they provide a similar trick.
I wonder if new question titled "How do I build Python libraries with Cygwin, Not Visual Studio?" would attract more attention.http://stackoverflow.com/questions/1581431/installing-python-mysql-with-wamps-mysql/1581670#1581670Comment by Oddthinking on Installing python-mysql with wamp's mysqlOddthinking2009-10-17T14:25:30Z2009-10-17T14:25:30ZSorry, I don't know. Perhaps that would make another good SO question?http://stackoverflow.com/questions/1514120/python-implementation-of-the-object-pool-design-pattern/1514269#1514269Comment by Oddthinking on Python Implementation of the Object Pool Design PatternOddthinking2009-10-05T01:42:21Z2009-10-05T01:42:21ZPython has a thread-safe Queue already built-in? I didn't know that! Yes, that'll speed up the implementation (which I thought would be short, but mainly spent thinking through concurrency issues). Sorry, I didn't understand your distinction about a "pool of connections" versus "pool of objects". I said I wanted "to share a pool of connections", but each of those connections is wrapped up in an object, so it is indeed a pool of objects too. The distinction I was trying to make, though, is that the connection objects were NOT active (unlike multiprocessing.pool.)http://stackoverflow.com/questions/1387097/excel-filter-questionsComment by Oddthinking on Excel filter questionsOddthinking2009-09-15T16:00:42Z2009-09-15T16:00:42Z@Jonty, did you find my answer helpful? You didn't accept it or upvote i, and there is no other response.http://stackoverflow.com/questions/1387097/excel-filter-questionsComment by Oddthinking on Excel filter questionsOddthinking2009-09-07T03:08:55Z2009-09-07T03:08:55ZI am not clear whether Excel formula count as application configuration or programming. They feel like programming (or at least scripting).http://stackoverflow.com/questions/295216/my-facebook-applications-javascript-doesnt-work-in-google-chrome/1372003#1372003Comment by Oddthinking on My Facebook application's Javascript doesn't work in Google ChromeOddthinking2009-09-04T02:25:24Z2009-09-04T02:25:24ZThis appears to have been fixed in Chrome. Please vote to close question as no longer relevant.http://stackoverflow.com/questions/295216/my-facebook-applications-javascript-doesnt-work-in-google-chrome/295217#295217Comment by Oddthinking on My Facebook application's Javascript doesn't work in Google ChromeOddthinking2009-09-04T02:24:41Z2009-09-04T02:24:41ZThis appears to have been fixed in Chrome. Please vote to close as no longer relevant.