User bignose - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:11:16Z http://stackoverflow.com/feeds/user/70157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/815951/compliance-test-for-openid-providers 5 Compliance test for OpenID providers bignose 2009-05-03T00:02:29Z 2009-11-15T20:50:05Z <p>What <strong>automated standards-conformance tests</strong> are there for OpenID providers?</p> <p>I'm making changes to the implementation of an <a href="http://openid.net/" rel="nofollow">OpenID</a> provider, to bring it from version 1.1 of the standard to version 2.0.</p> <p>Before releasing the code, I want to be sure that it conforms to the specifications of the standard. For testing web standards compliance, the W3C has validator tools. What tools exist so that I can point one at my OpenID provider and get a report of compliance with the standard?</p> http://stackoverflow.com/questions/1359795/error-while-using-multiprocessing-module-in-a-python-daemon/1439684#1439684 1 Answer by bignose for Error while using multiprocessing module in a python daemon bignose 2009-09-17T15:45:43Z 2009-09-17T15:45:43Z <p>Ignoring <code>SIGCLD</code> also causes problems with the <code>subprocess</code> module, because of a bug in that module (<a href="http://bugs.python.org/issue1731717" rel="nofollow">issue 1731717</a>, still open as of 2009-09-18).</p> <p>This behaviour is addressed in <a href="http://pypi.python.org/pypi/python-daemon/1.4.8/" rel="nofollow">version 1.4.8</a> of the <code>python-daemon</code> library; it now omits the default fiddling with <code>SIGCLD</code>, so no longer has this unpleasant interaction with other standard library modules.</p> http://stackoverflow.com/questions/696047/re-raising-exceptions-with-a-different-type-and-message-preserving-existing-info 4 Re-raising exceptions with a different type and message, preserving existing information bignose 2009-03-30T05:04:34Z 2009-08-30T15:10:25Z <p>I'm writing a module and want to have a unified exception hierarchy for the exceptions that it can raise. This allows users of the module to catch those particular exceptions and handle them distinctly, if needed. But many of the exceptions raised from the module are raised because of some other exception; e.g. failing at some task because of an OSError on a file.</p> <p>What I need is to <strong>“wrap” the exception caught such that it has a different type and message</strong>, so that information is available further up the propagation hierarchy by whatever catches the exception. But I don't want to lose the existing type, message, and stack trace; that's all useful information for someone trying to debug the problem. A top-level exception handler is no good, since I'm trying to decorate the exception before it makes its way further up the propagation stack, and the top-level handler is too late.</p> <p>This is partly solved by deriving my module's specific exception types from the existing type (e.g. ‘class FooPermissionError(OSError)’), but that doesn't make it any easier to wrap the existing exception instance in a new type, nor modify the message.</p> <p>Python's <a href="http://www.python.org/dev/peps/pep-3134/" rel="nofollow">PEP 3134</a> “Exception Chaining and Embedded Tracebacks” discusses a change accepted in Python 3.0 for “chaining” exception objects, to indicate that a new exception was raised during the handling of an existing exception.</p> <p>What I'm trying to do is related: I need it working in earlier Python versions, and I need it not for chaining, but only for polymorphism. What is the right way to do this?</p> http://stackoverflow.com/questions/980720/most-effective-way-to-decrypt-data-when-encryption-method-is-unknown/980890#980890 0 Answer by bignose for Most effective way to decrypt data when encryption method is unknown? bignose 2009-06-11T12:51:44Z 2009-06-11T12:51:44Z <p>If the data was encrypted, presumably it was to protect against exactly what you're now trying to do: access the plaintext without the appropriate credentials.</p> <p>Either this <em>can't</em> be feasibly done, in which case the encryption tool has done its job well; or it <em>can</em> be feasibly done, and you need to start being very worried (in proportion to the value you attach to keeping the data secret) about who <em>else</em> has been able to do it without your knowledge.</p> http://stackoverflow.com/questions/953957/what-advantages-are-there-to-using-either-and-or/954082#954082 2 Answer by bignose for What advantages are there to using either AND or &&? bignose 2009-06-05T02:55:00Z 2009-06-05T03:39:03Z <p>You ask “Are there any advantages to one or the other in any language?” This is, of course, dependent on the programming language.</p> <p>Languages that implement both <code>and</code> and <code>&amp;&amp;</code> (and correspondingly <code>or</code> and <code>||</code>) will do it one of two ways:</p> <ul> <li><p>Both behave exactly the same way. In which case, there is no advantage provided by the language in using one over the other.</p></li> <li><p>Each behaves differently. In which case, the advantage is that you can get different behaviour by using one or the other.</p></li> </ul> <p>That all sounds a bit facetious, but it's really as specific as one can get without talking about a specific language. Your question explicitly wants to know about <em>all</em> languages, but it's a question that needs to be answered per language.</p> http://stackoverflow.com/questions/943503/python-getting-file-modification-times-with-greater-resolution-than-a-second/943563#943563 1 Answer by bignose for Python: Getting file modification times with greater resolution than a second. bignose 2009-06-03T07:55:03Z 2009-06-03T08:19:25Z <p>As documented in <a href="http://docs.python.org/library/os" rel="nofollow">the Python <code>os</code> module</a>, it is a portable interface to OS-specific functionality. Depending on what platform you're running on, you will get different behaviour.</p> <p>Specifically, the modification time returned by <code>stat</code> calls is dependent on the filesystem where the files reside. For example, for entries in a FAT filesystem, the finest resolution for modification time is 2 seconds. Other filesystems will have different resolutions.</p> http://stackoverflow.com/questions/913958/how-to-keep-ssh-keygen-from-using-my-login-and-computer-name-in-the-public-key/914192#914192 3 Answer by bignose for How to keep ssh-keygen from using my login and computer name in the public key? bignose 2009-05-27T06:06:52Z 2009-05-27T06:06:52Z <p>From the manpage for ‘ssh-keygen(1)’:</p> <pre> For RSA1 keys, there is also a comment field in the key file that is only for convenience to the user to help identify the key. The comment can tell what the key is for, or whatever is useful. The comment is initialized to “user@host” when the key is created, but can be changed using the -c option. … -C comment Provides a new comment. -c Requests changing the comment in the private and public key files. This operation is only supported for RSA1 keys. The program will prompt for the file containing the private keys, for the passphrase if the key has one, and for the new comment. </pre> <p>So, you should be able to use ‘-C "$desiredcommenttext"’ to provide whatever desired comment text you like when creating the key; or use the ‘-c’ option to change the comment on an existing key.</p> http://stackoverflow.com/questions/886629/how-to-use-counter-in-for-loop-python/886879#886879 7 Answer by bignose for How to use counter in for loop python bignose 2009-05-20T08:44:37Z 2009-05-21T09:33:39Z <p>The counter is getting out of step with the sequences you're iterating over. But more than that, the counter is totally unnecessary.</p> <p>You've got several manual iterations of things that could be automated, and they're causing you to trip over. Especially, you hardly ever need to manually track a counter while iterating; Python's sequence types know how to iterate themselves.</p> <p>Here's my re-write of the intent of the above code (in the interactive interpreter to show it working):</p> <pre><code>&gt;&gt;&gt; dates = ["%(day)02d-05-09" % vars() for day in range(1, 31+1)] &gt;&gt;&gt; date_ranges = zip(dates[:-1], dates[1:]) &gt;&gt;&gt; for (date_begin, date_end) in date_ranges: ... print (date_begin, date_end) ... ('01-05-09', '02-05-09') ('02-05-09', '03-05-09') ('03-05-09', '04-05-09') … ('28-05-09', '29-05-09') ('29-05-09', '30-05-09') ('30-05-09', '31-05-09') </code></pre> http://stackoverflow.com/questions/886633/get-the-1-norm-of-a-vector-in-python/886762#886762 4 Answer by bignose for Get the 1-norm of a vector in Python bignose 2009-05-20T08:15:52Z 2009-05-20T12:32:01Z <p>Python has powerful built-in types, but <strong>Python lists are not mathematical vectors or matrices</strong>. You <em>could</em> do this with lists, but it will likely be cumbersome for anything more than trivial operations.</p> <p>If you find yourself needing vector or matrix arithmetic often, the <strong>standard in the field is <a href="http://scipy.org/NumPy/" rel="nofollow">NumPy</a></strong>, which probably already comes packaged for your operating system the way Python also was.</p> <p>I share the confusion of others about exactly what it is you're trying to do, but perhaps the <strong>numpy.linalg.norm</strong> function will help:</p> <pre><code>&gt;&gt;&gt; import numpy &gt;&gt;&gt; a = numpy.array([1, 2, 3, 4]) &gt;&gt;&gt; b = numpy.array([2, 3, 4, 5]) &gt;&gt;&gt; numpy.linalg.norm((a - b), ord=1) 4 </code></pre> <p>To show how that's working under the covers:</p> <pre><code>&gt;&gt;&gt; a array([1, 2, 3, 4]) &gt;&gt;&gt; b array([2, 3, 4, 5]) &gt;&gt;&gt; (a - b) array([-1, -1, -1, -1]) &gt;&gt;&gt; numpy.linalg.norm((a - b)) 2.0 &gt;&gt;&gt; numpy.linalg.norm((a - b), ord=1) 4 </code></pre> http://stackoverflow.com/questions/886606/determining-the-date-of-tag-creation-in-bazaar/887005#887005 2 Answer by bignose for Determining the date of tag creation in Bazaar. bignose 2009-05-20T09:18:57Z 2009-05-20T09:18:57Z <p>Tags are currently not first-class citizens in a Bazaar branch; their addition and removal isn't tracked in revisions. So no, I don't think you can ask anything about the history of a tag; once it changes, any previous state of that tag (including "wasn't there") is unavailable.</p> http://stackoverflow.com/questions/832956/using-a-common-database-for-development/833311#833311 4 Answer by bignose for Using a common database for development... bignose 2009-05-07T07:25:27Z 2009-05-08T11:34:46Z <p>Disk space and CPU should be cheap enough that <strong>every developer can run their own instance of the database</strong>, with an automated build under version control. This is needed to allow developers to be bold in hacking on the database, in isolation from any other developer's concurrent hacking.</p> <p>The caveat being, of course, that any changes they make to their private instance are useless to anyone else <em>unless</em> it can be automatically applied during the build process. So there needs to be a firm policy that application code can't depend on any database state unless that state is represented by <strong>version-controlled, unit-tested changes to the <a href="http://en.wikipedia.org/wiki/Data%5FDefinition%5FLanguage" rel="nofollow">DDL</a></strong>.</p> <p>For an excellent guide on the theory and practice of treating the database definition as another part of the project code, and coordinating changes and refactorings, see <a href="http://www.databaserefactoring.com/" rel="nofollow">Refactoring Databases: Evolutionary Database Design</a> by Scott W. Ambler and Pramod Sadalage.</p> http://stackoverflow.com/questions/833227/whats-the-easiest-way-to-get-a-users-full-name-on-a-linux-posix-system/833256#833256 2 Answer by bignose for What's the easiest way to get a user's full name on a Linux/POSIX system? bignose 2009-05-07T07:07:03Z 2009-05-07T07:17:54Z <p>You don't specify a programming language, so I'll assume you want to use the shell; here's <strong>an answer for the bash shell</strong>.</p> <p>Two steps to this: get the appropriate record, then get the field you want from that record.</p> <p>First, getting the account record is done by <strong>querying the <code>passwd</code> table</strong>:</p> <pre><code>$ user_name=foo $ getent passwd $user_name foo:x:1023:1025:Fred Nurk,,,:/home/foo:/bin/bash </code></pre> <p>For hysterical raisins, the full name of the user is recorded in a field called the <strong><a href="http://en.wikipedia.org/wiki/Gecos%5Ffield" rel="nofollow">“GECOS” field</a></strong>; to complicate matters, this field often has its own structure with the <strong>full name as just one of several optional sub-fields</strong>. So anything that wants to get the full name from the account record needs to parse both these levels.</p> <pre><code>$ user_record=$(getent passwd $user_name) $ user_gecos_field=$(echo "$user_record" | cut -d ':' -f 5) $ user_full_name=$(echo "$user_gecos_field" | cut -d ',' -f 1) $ echo $user_full_name Fred Nurk </code></pre> <p>Your <strong>programming language probably has a library function</strong> to do this in fewer steps. In C, you'd use the ‘getpwnam’ function and then parse the GECOS field.</p> http://stackoverflow.com/questions/827872/during-interviews-should-candidates-write-code-on-paper-on-a-text-editor-or-an/827899#827899 -4 Answer by bignose for During interviews, should candidates write code on paper, on a text editor, or an IDE? bignose 2009-05-06T03:23:18Z 2009-05-07T00:09:26Z <p>I think handwriting is an expected common denominator of communication. Its lack is significant for the role.</p> <p>If the person isn't able to communicate their ideas rapidly in hand-written form on a whiteboard so that someone can understand it, they are at a disadvantage in performing any role where <strong>communicating technical ideas face-to-face with other people</strong> is important.</p> <p>Naturally, this doesn't mean getting them to write out the exact code as they would want it to appear in the source file; but being able to communicate their ideas about an algorithm clearly to other people on a whiteboard is a <strong>good test to have as part of an interview</strong>.</p> <p>It doesn't matter what someone's <em>reasons</em> are for having poor handwriting skills; maybe their childhood schooling was inadequate, maybe they learned English as a second language, maybe they have a learning disability, whatever. The job requires communication skills, including the ability to communicate in written form, and anyone who doesn't have them to a sufficient degree (as demonstrated practically by using those skills in the interview) is underqualified.</p> <p>I have no problem setting up the interview process to discover that lack so a decision can be made on that basis.</p> http://stackoverflow.com/questions/829535/what-resources-do-you-use-to-stay-up-to-date-in-your-domain/829714#829714 0 Answer by bignose for What resources do you use to stay up to date in your domain? bignose 2009-05-06T13:57:51Z 2009-05-06T14:10:39Z <p>I find <a href="http://en.wikipedia.org/wiki/Usenet" rel="nofollow">Usenet to be still an excellent resource for technical discussions and news. A large part of that is because the <a href="http://en.wikipedia.org/wiki/NNTP" rel="nofollow">NNTP</a> protocol means I can access all these discrete forums together in a single threaded-discussion-oriented client, instead of scattered across a thousand incompatible websites.</p> <p>For the same reason, I follow heaps of different technical discussion mailing lists, but participate in them as NNTP forums (in the same client as I use for Usenet) via the Gmane NNTP gateway</a>.</p> http://stackoverflow.com/questions/827879/python-interpreter-with-linux-screen/827936#827936 9 Answer by bignose for Python interpreter with Linux Screen bignose 2009-05-06T03:41:29Z 2009-05-06T06:09:58Z <p>The standard on GNU (or other Unix-like) systems is to use the environment variable <code>PAGER</code> for the command that should receive output for page-by-page viewing.</p> <p>Mine is set to:</p> <pre><code>$ echo $PAGER less </code></pre> <p>Yours might be set to <code>more</code>, or a different command, or not set at all in which case a system-wide default command will be used.</p> <p>It sounds like yours is modelled after the <code>more</code> program. The program is showing you one screenful ("page") of output at a time, and (in this case) telling you you're at the end; most of them (basically, any pager newer than <code>more</code>) allow you to go forward and backward in the output by using the cursor control keys (arrows and PgUp/PgDown), and many other operations besides.</p> <p>Since you can do all these things wherever you are in the output, the program needs an explicit command from you to know that you're done navigating the output. In all likelihood that command is the keypress <code>q</code>.</p> <p>For more information on how to drive your pager, e.g. <code>less</code>, read its manpage with the command <code>man less</code> (which, of course, will show pages of output using the pager program :-)</p> http://stackoverflow.com/questions/827711/is-there-a-standard-to-easily-show-and-hide-content/827913#827913 0 Answer by bignose for Is there a standard to easily show and hide content? bignose 2009-05-06T03:29:10Z 2009-05-06T03:29:10Z <p>I prefer using a text editor that understands the structure of the source text I'm editing, and that can do code folding on the basis of structure as parsed by the editor.</p> <p>Either of Vim or Emacs folding meets this need for me.</p> http://stackoverflow.com/questions/818203/does-anyone-know-of-a-good-library-for-mapping-a-persons-name-to-his-or-her-sex/818354#818354 3 Answer by bignose for Does anyone know of a good library for mapping a person's name to his or her sex? bignose 2009-05-03T23:41:22Z 2009-05-05T23:41:42Z <p>Given your stated constraints, your best option is to re-phrase whatever it is you're writing to be <a href="http://en.wikipedia.org/wiki/Gender-neutral%5Flanguage" rel="nofollow">gender-neutral</a> unless you <em>know</em> what gender they want to be called in each instance.</p> <p>If writing in <a href="http://en.wikipedia.org/wiki/Gender%5Fneutrality%5Fin%5FEnglish" rel="nofollow">English</a>, remember that <a href="http://en.wikipedia.org/wiki/Singular%5Fthey" rel="nofollow">singular “they”</a> is grammatically fine as a gender-neutral third-person singular pronoun.</p> <p>A good example is the title of this question. As is currently:</p> <pre> … mapping a person's name to his or her sex? </pre> <p>That would be less awkward if written:</p> <pre> … mapping a person's name to their sex? </pre> http://stackoverflow.com/questions/751236/relational-databases-there-has-to-be-more-right/792607#792607 2 Answer by bignose for Relational databases - there has to be more right? bignose 2009-04-27T08:11:45Z 2009-05-05T05:26:52Z <p>Get more dirt from C. J. Date's <a href="http://en.wikipedia.org/wiki/Special:BookSources/0596100124" rel="nofollow">Database In Depth: Relational Theory for Practitioners</a> if his <a href="http://en.wikipedia.org/wiki/Special:BookSources/0321197844" rel="nofollow">An Introduction to Database Systems</a> isn't grubby enough for you.</p> <p>Seriously, these two books will give you a great deal more knowledge about RDBMSes, in a great deal less space, than many other professional database workers possess. Database in Depth, in particular, looks at how to think about databases relationally even when the language doesn't support it, and how to trick SQL into being a close-to-relational language.</p> http://stackoverflow.com/questions/770925/python-outputrecordseparator-and-inputrecordseparator-equivalent/804825#804825 1 Answer by bignose for Python $OUTPUT_RECORD_SEPARATOR and $INPUT_RECORD_SEPARATOR equivalent bignose 2009-04-29T23:53:13Z 2009-05-03T13:53:15Z <p>If what you want is to have any of <code>\r</code>, <code>\n</code>, or <code>\r\n</code> in the input to be seen as a newline, then you can use “universal newline support” in your ‘open()’ call.</p> <p>In <a href="http://docs.python.org/2.6/library/functions.html#open" rel="nofollow">Python 2.6 open()</a>, this needs to be explicitly enabled by adding ‘U’ to the mode string:</p> <pre><code>in_file = open('foo.txt', 'rU') </code></pre> <p>It also depends on this support being available in the Python interpreter; but the docs say this is available by default.</p> <p>In <a href="http://docs.python.org/3.0/library/functions.html#open" rel="nofollow">Python 3.0 open()</a>, universal newline behaviour is always available, and is the default behaviour; you can choose a different behaviour with different values for the <code>newline</code> parameter.</p> <p>If you want input to interpret records terminated by something other than a newline, then you don't want ‘readlines’ (which, per the name, reads lines specifically, not records generally) and AFAIK will have to implement your own record-reading code.</p> http://stackoverflow.com/questions/815860/how-do-you-psychologically-adjust-to-writing-software-that-you-cant-see-or/815885#815885 0 Answer by bignose for How do you "psychologically" adjust to writing software that you can't "see" or "use"? bignose 2009-05-02T23:26:09Z 2009-05-02T23:26:09Z <p>Practice <a href="http://behaviour-driven.org/" rel="nofollow">behaviour-driven development</a> to get feedback during development.</p> <p>No matter what the change in behaviour you want to see, writing a unit test for the change up front and <em>then</em> implementing the change will give you the feedback you need: first the test fails, giving immediate feedback that your test is doing something; then (after implementing the change) all the tests pass, giving immediate feedback that your target behaviour is implemented. (Then, you refactor the code you were working on.)</p> <p>This human need for feedback is more than touchy-feely; it's the very reason why unit tests are such a good tool in moment-to-moment software craft.</p> http://stackoverflow.com/questions/815770/can-source-control-software-be-used-for-your-technical-documents/815835#815835 3 Answer by bignose for Can source control software be used for your technical documents? bignose 2009-05-02T22:56:26Z 2009-05-02T23:07:25Z <p>Version control systems, while they can store arbitrary files like Word documents, are much more effective on text documents edited as source by the user, because the differences can be represented in a line-oriented fashion meaningfully to the user.</p> <p>For this and <a href="http://www.catb.org/~esr/writings/taoup/html/ch05s01.html" rel="nofollow">many other reasons</a>, I write all my documentation these days in <a href="http://docutils.sourceforge.net/rst.html" rel="nofollow">reStructuredText</a> source files, edited along with other source files and tracked in version control. The HTML and PDF versions are rendered along with the rest of the project's generated files at build time.</p> http://stackoverflow.com/questions/634507/seeking-humility-are-there-any-websites-that-will-do-code-reviews-for-you-look/814633#814633 0 Answer by bignose for Seeking Humility: Are there any websites that will do code reviews for you? Looking for my WTFs per minute... bignose 2009-05-02T10:52:48Z 2009-05-02T10:52:48Z <p><a href="http://launchpad.net/" rel="nofollow">Launchpad</a> has a very rich code hosting environment, including <a href="https://help.launchpad.net/Code/Review" rel="nofollow">code reviews</a>.</p> <p>They point to an <a href="https://code.launchpad.net/~therve/storm/binary-and/%2Bmerge/387" rel="nofollow">example review</a>, where you can see the conversation.</p> http://stackoverflow.com/questions/814597/are-there-any-good-and-free-text-only-editors-for-mac-osx/814612#814612 4 Answer by bignose for Are there any good and free text-only editors for mac osx? bignose 2009-05-02T10:31:28Z 2009-05-02T10:31:28Z <p>If you install and use either of <a href="http://www.vim.org/" rel="nofollow">Vim</a> or <a href="http://www.gnu.org/software/emacs/" rel="nofollow">Emacs</a>, you will have a text editor that can be used on any major platform now and in the future, and most of the minor ones too.</p> <p>As a bonus, they are both <em>very</em> well supported, very powerful, and (not surprisingly) have existing, rich support for just about any kind of text editing you might want to do (and even the types you don't yet realise you want).</p> <p>Of course, they both support creating plain text files by default.</p> http://stackoverflow.com/questions/796509/how-to-prioritize-bugs/796598#796598 4 Answer by bignose for How to prioritize bugs? bignose 2009-04-28T07:18:01Z 2009-05-02T02:46:54Z <p>Use <strong>priority levels</strong> that deliberately <em>have nothing to do with severity or impact</em>, and describe only the conceptual position of the bug in the schedule. This field will determine which bugs get worked on, so it needs to be very clear that the <em>facts</em> of the bug aren't open for negotiation.</p> <p>Use <strong>severity levels</strong> that deliberately have concrete, verifiable definitions, that <em>have nothing to do with scheduling or priority</em>. I've worked successfully with the <a href="http://www.debian.org/Bugs/Developer#severities" rel="nofollow">severity definitions used by the Debian BTS</a>, generalised to apply to programming projects in general.</p> <p>That way, the <strong>severity</strong> is much more a matter of <em>verifiable fact</em>, independent of a statement of priority. The <strong>priority</strong> is then free to be tweaked up and down by negotiation or whatever, without affecting the factual information in the severity field.</p> <p>Attempting to conflate both “severity” and “priority” into a single field will lead to soul-draining arguments and wasted time. The bug reporter needs a firm guide of <em>fact</em> to determine how “bad” the bug is, and this needs to be easily agreed on by independent parties. The priority, on the other hand, is the correct target for negotiation and scheduling games.</p> http://stackoverflow.com/questions/809859/optimal-tab-size-for-code-readability/810074#810074 3 Answer by bignose for Optimal tab size for code readability bignose 2009-05-01T03:34:23Z 2009-05-02T02:43:39Z <p>This discussion often involves misunderstandings, because (<a href="http://www.jwz.org/doc/tabs-vs-spaces.html" rel="nofollow">as jwz describes</a>) it usually involves three different issues:</p> <ul> <li><p>What happens when I press the <code>&lt;Tab&gt;</code> key in my text editor?</p></li> <li><p>What happens when I request my editor to indent one or more lines?</p></li> <li><p>What happens when I view a file containing U+0009 HORIZONTAL TAB characters?</p></li> </ul> <p>My answers:</p> <ul> <li><p>Pressing the <code>&lt;Tab&gt;</code> key should indent the current line (or selected lines) one additional level.</p> <p>As a secondary alternative, I can also tolerate an editor that, like Emacs, applies a context-sensitive fix-my-indentation command when I press <code>&lt;Tab&gt;</code>.</p></li> <li><p>Indenting one or more lines should follow the reigning convention, if consensus is sufficiently strong; otherwise, I greatly prefer 4-space indentation at each level.</p></li> <li><p>U+0009 characters should shift subsequent characters to the next tab stop. Tab stops begin at column 1 and are 8 columns apart, no exceptions.</p></li> </ul> http://stackoverflow.com/questions/811274/what-should-i-know-about-software-patents/811575#811575 1 Answer by bignose for What should I know about software patents? bignose 2009-05-01T14:23:38Z 2009-05-01T14:23:38Z <p>One thing you should know is that Europe is by no means safe from software idea patents. The EU Parliament has voted against patentability of software ideas, but the European Patent Organisation continues to grant bucketloads of them and legislation continues to be proposed that will make them enforcible.</p> <p>The situation is summarised optimistically by <a href="http://blogs.fsfe.org/ciaran/?p=115" rel="nofollow">Ciaran O'Riordan</a>, but new legislation will continue to be promoted by corporations with large software-idea patent portfolios, so citizens need to also make their voices heard, at least as often.</p> <p>What you should know is that your government (the EU Parliament and Commission) is still trying to decide the matter, and needs to be informed consistently and regularly of the dangers of software idea patents to the EU. Read more and get involved at <a href="http://eupat.ffii.org/" rel="nofollow">FFII</a> and <a href="http://fsfe.org/projects/swpat/swpat.es.html" rel="nofollow">FSFE</a>.</p> http://stackoverflow.com/questions/811403/how-can-i-shorten-the-url-query-paramters/811467#811467 0 Answer by bignose for How can I shorten the URL query paramters? bignose 2009-05-01T13:58:02Z 2009-05-01T13:58:02Z <ul> <li><p>Use a <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer" rel="nofollow">RESTful</a> interface, instead of a bunch of query parameters.</p></li> <li><p>Store values that will persist across the session on the server, keyed by a session cookie.</p></li> </ul> http://stackoverflow.com/questions/809970/how-can-i-create-77-files-the-content-of-which-is-the-name-of-each-file/810050#810050 1 Answer by bignose for How can I create 77 files the content of which is the name of each file? bignose 2009-05-01T03:20:41Z 2009-05-01T12:46:07Z <p>Python version for those who prefer readable over terse:</p> <pre><code>filenames = ("file%(num)d" % vars() for num in range(1, 78)) for filename in filenames: open(filename, 'w').write(filename) </code></pre> http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python/810127#810127 0 Answer by bignose for How to generate dynamic unit tests in python? bignose 2009-05-01T03:59:06Z 2009-05-01T03:59:06Z <p>You would benefit from trying the <a href="https://launchpad.net/testscenarios" rel="nofollow">TestScenarios</a> library.</p> <blockquote> <p>testscenarios provides clean dependency injection for python unittest style tests. This can be used for interface testing (testing many implementations via a single test suite) or for classic dependency injection (provide tests with dependencies externally to the test code itself, allowing easy testing in different situations).</p> </blockquote> http://stackoverflow.com/questions/809859/optimal-tab-size-for-code-readability/810098#810098 1 Answer by bignose for Optimal tab size for code readability bignose 2009-05-01T03:44:45Z 2009-05-01T03:44:45Z <p><a href="http://www.codinghorror.com/blog/archives/001254.html" rel="nofollow">Death to the space infidels!</a></p> http://stackoverflow.com/questions/968116/installing-python-libraries/968137#968137 Comment by bignose on installing python libraries bignose 2009-06-09T05:05:11Z 2009-06-09T05:05:11Z Note that setuptools, though very commonly used, is non-standard. The standard is to use the package's <code>setup.py</code> directly. http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python/32939#32939 Comment by bignose on How to generate dynamic unit tests in python? bignose 2009-06-05T03:59:13Z 2009-06-05T03:59:13Z -1. This loses one of the main benefits of the <code>unittest</code> library: reporting exactly which test failed. When the code in this answer produces a failure, the reported name of the failed test will be identical no matter what the test data. Better is to use a system that generates (and therefore reports) a different name for each test scenario. http://stackoverflow.com/questions/943516/sql-server-2005-call-a-stored-procedure-from-a-where-clause Comment by bignose on SQL Server 2005: Call a stored procedure from a WHERE clause bignose 2009-06-03T07:42:39Z 2009-06-03T07:42:39Z Please update the question (title, description, and tags) to be specific about which particular SQL server you're talking about. There are significant differences in this regard. http://stackoverflow.com/questions/896145/more-efficient-movements-editing-python-files-in-vim/896151#896151 Comment by bignose on More efficient movements editing python files in vim. bignose 2009-05-22T03:24:30Z 2009-05-22T03:24:30Z +1, but could you give a description in your answer to make it clear what this is? http://stackoverflow.com/questions/815951/compliance-test-for-openid-providers/889874#889874 Comment by bignose on Compliance test for OpenID providers bignose 2009-05-21T02:45:17Z 2009-05-21T02:45:17Z Looks good. Is it free software? If so, where is the source code? http://stackoverflow.com/questions/842633/are-all-mvps-full-of-chutzpah-or-ive-just-been-unlucky Comment by bignose on Are all MVP's full of chutzpah or I've just been unlucky? bignose 2009-05-09T04:18:29Z 2009-05-09T04:18:29Z You won't get banned for having an opinion. This particular question, though, will likely be voted down: it is more a discussion point, which is outside the scope of SO. http://stackoverflow.com/questions/792629/is-python-the-right-hammer-for-this-nail-build-script Comment by bignose on Is Python the right hammer for this nail? (build script) bignose 2009-05-07T00:12:45Z 2009-05-07T00:12:45Z I don't think this is a duplicate; it's asking specifically about build automation, not generic batch files. http://stackoverflow.com/questions/829535/what-resources-do-you-use-to-stay-up-to-date-in-your-domain/829714#829714 Comment by bignose on What resources do you use to stay up to date in your domain? bignose 2009-05-06T14:11:23Z 2009-05-06T14:11:23Z Hmm, the markup in this answer is correct, but the rendering is screwy. I've filed a request at uservoice. Meanwhile, the URL for the Gmane NNTP gateway is ‘nntp://news.gmane.org/’. http://stackoverflow.com/questions/829284/guid-vs-int-identity/829320#829320 Comment by bignose on GUID vs INT IDENTITY bignose 2009-05-06T13:24:58Z 2009-05-06T13:24:58Z What if the natural key of the record is not numeric; e.g. (host, timestamp) for a log message record, or (product_code) for a product record? Would you insist on adding a numeric field serving no purpose except to have a redundant key? http://stackoverflow.com/questions/828246/do-you-follow-the-ideas-from-getting-real-by-37-signals Comment by bignose on Do you follow the ideas from "Getting Real" by 37 Signals? bignose 2009-05-06T06:52:27Z 2009-05-06T06:52:27Z Please ask this in the form of a question that can have an answer. http://stackoverflow.com/questions/827872/during-interviews-should-candidates-write-code-on-paper-on-a-text-editor-or-an/827937#827937 Comment by bignose on During interviews, should candidates write code on paper, on a text editor, or an IDE? bignose 2009-05-06T06:08:09Z 2009-05-06T06:08:09Z I expect them to use handwriting to explain their thoughts quickly on a whiteboard to others, yes. That seems like <i>exactly</i> a good test of using (some of) the same tools they'll be using on the job. http://stackoverflow.com/questions/827872/during-interviews-should-candidates-write-code-on-paper-on-a-text-editor-or-an/827899#827899 Comment by bignose on During interviews, should candidates write code on paper, on a text editor, or an IDE? bignose 2009-05-06T03:45:43Z 2009-05-06T03:45:43Z Yes, many people coming out of college barely have an idea of how to handwrite. That seems like it's more incumbent on us to discover in the interview process those who <i>can</i> communicate effectively through handwriting. http://stackoverflow.com/questions/818482/creating-a-self-extracting-zip-archive-on-a-linux-box/823699#823699 Comment by bignose on Creating a self-extracting zip archive on a linux box bignose 2009-05-05T23:08:20Z 2009-05-05T23:08:20Z If you've found the answer, could you please mark it correct? Also, linking from the answer to the page with the software would be helpful. http://stackoverflow.com/questions/818203/does-anyone-know-of-a-good-library-for-mapping-a-persons-name-to-his-or-her-sex Comment by bignose on Does anyone know of a good library for mapping a person's name to his or her sex? bignose 2009-05-05T01:15:08Z 2009-05-05T01:15:08Z Chas, it seems most of the answers and comments assume (because you haven't specified) that you're guessing the sex of someone that your software will then be interacting with. If that's not true, please update the question to make your requirements clearer. http://stackoverflow.com/questions/818868/is-there-something-faster-than-having-count-for-large-tables/818878#818878 Comment by bignose on is there something faster than "having count" for large tables? bignose 2009-05-04T05:40:05Z 2009-05-04T05:40:05Z You mean, like an index? :-)