User Just Some Guy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T01:40:32Zhttp://stackoverflow.com/feeds/user/32538http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1596440/which-python-client-library-should-i-use-for-couchdb3Which Python client library should I use for CouchdB?Just Some Guy2009-10-20T18:23:05Z2009-11-12T09:41:58Z
<p>I'm starting to experiment with CouchDB because it looks like the perfect solution for certain problems we have. Given that all work will be on a brand new project with no legacy dependencies, which client library would you suggest that I use, and why?</p>
<p>This would be easier if there was any overlap on the OSes we use. FreeBSD only has <a href="http://code.google.com/p/py-simplecouchdb/" rel="nofollow">py-simplecouchdb</a> already available in its ports collection, but that library's project website says to use <a href="http://bitbucket.org/benoitc/couchdbkit/" rel="nofollow">CouchDBKit</a> instead. Neither of those come with Ubuntu, which only ships with <a href="http://pypi.python.org/pypi/CouchDB" rel="nofollow">CouchDB</a>. Since those two OSes don't have an libraries in common, I'll probably be installing something from source (and hopefully submitting packages to the Ubuntu and FreeBSD folks if I have time).</p>
<p>For those interested, I'd like to use CouchDB as a convenient intermediate storage place for data passed between various services - think of a message bus system but with less formality. For example, we have daemons that download and parse web pages, then send interesting bits to other daemons for further processing. A lot of those objects are ill-defined until runtime ("here's some HTML, plus a set of metadata, and some actions to run on it"). Rather than serialize it to an ad-hoc local network protocol or stick it in PostgreSQL, I'd much rather use something designed for the purpose. We're currently using <a href="http://www.lindaspaces.com/products/NWS_overview.html" rel="nofollow">NetWorkSpaces</a> in this role, but it doesn't have nearly the breadth of support or the user community of CouchDB.</p>
http://stackoverflow.com/questions/1712937/why-does-reddit-use-base36-for-article-id/1712948#17129480Answer by Just Some Guy for Why does reddit use base36 for article id?Just Some Guy2009-11-11T04:10:38Z2009-11-11T04:10:38Z<p>Because you can represent it with [a-z0-9], most likely.</p>
http://stackoverflow.com/questions/1641491/mysql-table-design-multiple-tables-vs-multiple-columns/1641511#16415110Answer by Just Some Guy for MySql table design: multiple tables vs. multiple columnsJust Some Guy2009-10-29T03:48:06Z2009-10-29T03:48:06Z<p>In your case, I think the extra columns belong in the table. Otherwise, you'll end up with two tables with the same number of rows and a 1:1 mapping between them. That doesn't really simplify anything!</p>
<p>Conceptually, I think it's also more correct. All of those columns are pieces of data directly linked to the item in their row, so they belong together. It would be different if, say, all swords shared a common set of values. Then you'd want to say that "item Foo is a Sword, so look in the Class Attribute table to get the stats for Sword items".</p>
http://stackoverflow.com/questions/1641219/does-python-have-private-variables-in-classes/1641236#16412368Answer by Just Some Guy for Does python have 'private' variables in classes?Just Some Guy2009-10-29T02:01:29Z2009-10-29T02:01:29Z<p>It's cultural. In Python, you don't write to other classes' instance or class variables. In Java, nothing prevents you from doing the same if you <em>really</em> want to - after all, you can always edit the source of the class itself to achieve the same effect. Python drops that pretense of security and encourages programmers to be responsible. In practice, this works very nicely.</p>
<p>If you want to emulate private variables for some reason, you can always use the "__" prefix from <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8</a>. Python mangles the names of variables like __foo so that they're not easily visible to code outside the class that contains them (although you <em>can</em> get around it if you're determined enough, just like you <em>can</em> get around Java's protections if you work at it).</p>
<p>By the same convention, the "_" prefix means "stay away even if you're not technically prevented from doing so." You don't play around with another class's variables that look like __foo or _bar.</p>
http://stackoverflow.com/questions/1564080/how-to-make-a-folder-in-apache-directory-accessible-over-lan/1564104#15641041Answer by Just Some Guy for How to make a folder in Apache directory accessible over LANJust Some Guy2009-10-14T03:32:49Z2009-10-14T03:32:49Z<p>It's kind of hard to tell what you mean, but if you're wanting to restrict certain directories to only the hosts on your LAN, look at the <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html#allow" rel="nofollow">Allow directive</a>.</p>
http://stackoverflow.com/questions/1549722/difference-between-defining-a-member-in-init-to-defining-it-in-the-class-body/1550873#15508732Answer by Just Some Guy for Difference between defining a member in __init__ to defining it in the class body in python?Just Some Guy2009-10-11T14:52:22Z2009-10-11T14:52:22Z<p>Others have explained the technical differences. I'll try to explain why you might want to use class variables.</p>
<p>If you're only instantiating the class once, then class variables effectively <em>are</em> instance variables. However, if you're making many copies, or want to share state among a few instances, then class variables are very handy. For example:</p>
<pre><code>class Foo(object):
def __init__(self):
self.bar = expensivefunction()
myobjs = [Foo() for _ in range(1000000)]
</code></pre>
<p>will cause expensivefunction() to be called a million times. If it's going to return the same value each time, say fetching a configuration parameter from a database, then you should consider moving it into the class definition so that it's only called once and then shared across all instances.</p>
<p>I also use class variables a lot when memoizing results. Example:</p>
<pre><code>class Foo(object):
bazcache = {}
@classmethod
def baz(cls, key):
try:
result = cls.bazcache[key]
except KeyError:
result = expensivefunction(key)
cls.bazcache[key] = result
return result
</code></pre>
<p>In this case, baz is a class method; its result doesn't depend on any instance variables. That means we can keep one copy of the results cache in the class variable, so that 1) you don't store the same results multiple times, and 2) each instance can benefit from results that were cached from other instances.</p>
<p>To illustrate, suppose that you have a million instances, each operating on the results of a Google search. You'd probably much prefer that all those objects share those results than to have each one execute the search and wait for the answer.</p>
<p>So I'd disagree with Lennart here. Class variables are <em>very</em> convenient in certain cases. When they're the right tool for the job, don't hesitate to use them.</p>
http://stackoverflow.com/questions/1509688/emacs-macro-to-generate-a-sequence/1510801#15108011Answer by Just Some Guy for Emacs macro to generate a sequence?Just Some Guy2009-10-02T17:13:10Z2009-10-02T17:13:10Z<p>There's also:</p>
<p><code>
<b>C-u M-!</b> jot -s '.<b>C-q C-j</b>' 10
</code></p>
<p>It's not pure elisp, but has the same effect. You could write a named macro to run it for you.</p>
http://stackoverflow.com/questions/1510481/how-can-i-detect-that-emacs-server-is-running-from-a-shell-prompt/1510753#15107531Answer by Just Some Guy for How can I detect that emacs-server is running from a shell prompt?Just Some Guy2009-10-02T17:03:11Z2009-10-02T17:03:11Z<p>You're making this too hard. From the the <code>emacsclient(1)</code> man page:</p>
<blockquote>
-a, --alternate-editor=EDITOR
if the Emacs server is not running, run the specified editor instead. This can also be specified via the `ALTERNATE_EDITOR' environment variable.
If the value of EDITOR is the empty string, then Emacs is started in daemon mode and emacsclient will try to connect to it.
</blockquote>
http://stackoverflow.com/questions/246981/what-is-wrong-with-this-create-table-statement/246993#2469931Answer by Just Some Guy for What is wrong with this create table statementJust Some Guy2008-10-29T14:25:04Z2008-10-29T14:25:04Z<p>"VARCHAR(20)," doesn't assign a name.</p>
http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245065#2450658Answer by Just Some Guy for What's the difference between JavaScript and Java?Just Some Guy2008-10-28T22:11:54Z2008-10-28T22:11:54Z<p>Everything. They're unrelated languages.</p>
http://stackoverflow.com/questions/242153/how-is-silverlight-going-to-change-the-internet-in-the-next-few-years/242167#2421677Answer by Just Some Guy for How is Silverlight going to change the internet in the next few years?Just Some Guy2008-10-28T03:33:47Z2008-10-28T03:33:47Z<p>It will be another blip. It's not seriously cross-platform, unlike Flash or any of its other competition, and no one seems particularly interested in it. It might be neat and shiny but I haven't seen any real reason to move past playing around with it.</p>
<p>Put another way, it's a cool toy but not much else.</p>
http://stackoverflow.com/questions/241540/how-to-use-an-open-source-license/241556#2415563Answer by Just Some Guy for How to use an Open Source LicenseJust Some Guy2008-10-27T22:12:26Z2008-10-27T22:12:26Z<p>No, that's pretty much it. From the <a href="http://www.fsf.org/licensing/licenses/gpl.html" rel="nofollow">GPLv3 text</a>, add this to your program:</p>
<pre><code><one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
</code></pre>
<p>The "contract" is this: without the GPL, no one but you has any right to distribute your program. They have no copying rights. The GPL says that if they abide by its terms, then you grant them the additional rights of distributing copies of your code.</p>
<p>There are other Free/Open Source Software licenses, but I'm just using this as an example.</p>
http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger/240873#24087315Answer by Just Some Guy for How do you encourage someone to learn to use the debugger?Just Some Guy2008-10-27T18:03:50Z2008-10-27T21:42:59Z<p>You're begging the question by assuming that a debugger is superior. In my personal experience, dependency on a debugger leads to not understanding what the underlying problems actually are and patching until the symptoms go away. I think, in general, that you're better off standing back and thinking about whether the code actually expresses your intent, and using debuggers as a last resort when you can't figure out what's happening.</p>
<p>As evidence, I present coworkers who've spent 90% of their time stepping through breakpoints and waiting for the answer to jump out at them, or writing messy code knowing that they can catch problems later if necessary.</p>
<p>I don't think there's anything <em>inherently</em> bad about debuggers and that they're really very useful, but that programmers all too often become reliant on them.</p>
http://stackoverflow.com/questions/239813/does-the-computer-science-software-engineering-field-have-a-standardized-citation/239862#2398621Answer by Just Some Guy for Does the computer science/software engineering field have a standardized citation format?Just Some Guy2008-10-27T13:28:32Z2008-10-27T13:28:32Z<p>Whatever LaTeX happens to generate. Since there's no standard, I go with the most convenient one.</p>
http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/235989#23598931Answer by Just Some Guy for The Halting Problem in the FieldJust Some Guy2008-10-25T06:13:45Z2008-10-25T06:13:45Z<p>I <em>literally</em> got assigned the halting problem, as in "write a monitor plugin to determine whether a host is permanently down". Seriously? OK, so I'll just give it a threshold. "No, because it might come back up afterward."</p>
<p>Much theoretical exposition ensued.</p>
http://stackoverflow.com/questions/234512/splitting-strings-in-python/234957#2349570Answer by Just Some Guy for Splitting strings in pythonJust Some Guy2008-10-24T19:28:32Z2008-10-24T19:28:32Z<p>Here's a more procedural approach:</p>
<pre><code>#!/usr/bin/env python
a = 'this is [bracket test] "and quotes test "'
words = a.split()
wordlist = []
while True:
try:
word = words.pop(0)
except IndexError:
break
if word[0] in '"[':
buildlist = [word[1:]]
while True:
try:
word = words.pop(0)
except IndexError:
break
if word[-1] in '"]':
buildlist.append(word[:-1])
break
buildlist.append(word)
wordlist.append(' '.join(buildlist))
else:
wordlist.append(word)
print wordlist
</code></pre>
http://stackoverflow.com/questions/234507/to-foo-bar-or-not-to-foo-bar-that-is-the-question/234571#2345711Answer by Just Some Guy for To foo bar, or not to foo bar: that is the question. Just Some Guy2008-10-24T17:43:36Z2008-10-24T17:43:36Z<p>I use them when demonstrating that any values of 'foo' and 'bar' will suffice, like "you can get the size of an object with sizeof(foo)." It's handy for getting people to understand the general concept and not just the particulars. For instance, if I'd said "you can get the size of an object with something like sizeof(int)", then it's almost guaranteed that someone would ask if that also works for floats.</p>
http://stackoverflow.com/questions/234312/what-have-you-done-to-customize-your-ide/234323#2343232Answer by Just Some Guy for What have you done to customize your IDE?Just Some Guy2008-10-24T16:44:20Z2008-10-24T16:44:20Z<p>I use Emacs. My .emacs file is only a few hundred lines long, but does customize settings based on my machine's hostname and operating system, so that I can use the same config file pretty much anywhere.</p>
http://stackoverflow.com/questions/233249/ethics-of-open-source-copy-of-proprietary-software/233929#2339291Answer by Just Some Guy for Ethics of Open Source Copy of Proprietary SoftwareJust Some Guy2008-10-24T15:03:28Z2008-10-24T15:03:28Z<p>I guess I don't understand the question, specifically why you're treating software as a special case. Look at the number of movies with similar plot lines, or books that mirror others, or similar cars, or comparable songs. Why would competition between software products be immoral when competition in any other venue is generally seen as a good thing?</p>
<p>Developer A does not have a natural right to earn income off Application A. While he may want to, that doesn't automatically make it the end result. Look at it from another angle: if Application A was so easily reproducible that someone else could recreate it and give it away for free, perhaps Application A was only commercially viable by a temporary inefficiency in the market. When the FOSS version comes along and addresses that efficiency, the market as a whole benefits because then Developer A's customers can invest that money more effectively to solve other problems.</p>
<p>Finally, if you're drawing the distinction purely on the fact that the FOSS alternative is distributed free of charge, then I'd ask you consider whether it's moral for kids to organize garage bands, or for an author to give away copies of his book, or for me to write a love letter to my wife instead of buying a card written by someone with the intent of feeding his family.</p>
http://stackoverflow.com/questions/222266/safely-punning-char-to-double-in-c9Safely punning char* to double in CJust Some Guy2008-10-21T15:18:57Z2008-10-22T14:47:05Z
<p>In an Open Source <a href="http://honeypot.net/project/pgdbf" rel="nofollow">program I
wrote</a>, I'm reading binary data (written by another program) from a file and outputting ints, doubles,
and other assorted data types. One of the challenges is that it needs to
run on 32-bit and 64-bit machines of both endiannesses, which means that I
end up having to do quite a bit of low-level bit-twiddling. I know a (very)
little bit about type punning and strict aliasing and want to make sure I'm
doing things the right way.</p>
<p>Basically, it's easy to convert from a char* to an int of various sizes:</p>
<pre><code>int64_t snativeint64_t(const char *buf)
{
/* Interpret the first 8 bytes of buf as a 64-bit int */
return *(int64_t *) buf;
}
</code></pre>
<p>and I have a cast of support functions to swap byte orders as needed, such
as:</p>
<pre><code>int64_t swappedint64_t(const int64_t wrongend)
{
/* Change the endianness of a 64-bit integer */
return (((wrongend & 0xff00000000000000LL) >> 56) |
((wrongend & 0x00ff000000000000LL) >> 40) |
((wrongend & 0x0000ff0000000000LL) >> 24) |
((wrongend & 0x000000ff00000000LL) >> 8) |
((wrongend & 0x00000000ff000000LL) << 8) |
((wrongend & 0x0000000000ff0000LL) << 24) |
((wrongend & 0x000000000000ff00LL) << 40) |
((wrongend & 0x00000000000000ffLL) << 56));
}
</code></pre>
<p>At runtime, the program detects the endianness of the machine and assigns
one of the above to a function pointer:</p>
<pre><code>int64_t (*slittleint64_t)(const char *);
if(littleendian) {
slittleint64_t = snativeint64_t;
} else {
slittleint64_t = sswappedint64_t;
}
</code></pre>
<p>Now, the tricky part comes when I'm trying to cast a char* to a double. I'd
like to re-use the endian-swapping code like so:</p>
<pre><code>union
{
double d;
int64_t i;
} int64todouble;
int64todouble.i = slittleint64_t(bufoffset);
printf("%lf", int64todouble.d);
</code></pre>
<p>However, some compilers could optimize away the "int64todouble.i" assignment
and break the program. Is there a safer way to do this, while considering
that this program must stay optimized for performance, and also that I'd
prefer not to write a parallel set of transformations to cast char* to
double directly? If the union method of punning is safe, should I be
re-writing my functions like snativeint64_t to use it?</p>
<p><hr /></p>
<p>I ended up using <a href="http://stackoverflow.com/users/13005/onebyonelivejournalcom">onebyonelivejournalcom's</a> answer because the conversion functions re-written to use memcpy, like so:</p>
<pre><code>int64_t snativeint64_t(const char *buf)
{
/* Interpret the first 8 bytes of buf as a 64-bit int */
int64_t output;
memcpy(&output, buf, 8);
return output;
}
</code></pre>
<p>compiled into the exact same assembler as my original code:</p>
<pre><code>snativeint64_t:
movq (%rdi), %rax
ret
</code></pre>
<p>Of the two, the memcpy version more explicitly expresses what I'm trying to do and should work on even the most naive compilers.</p>
<p>Adam, your answer was also wonderful and I learned a lot from it. Thanks for posting!</p>
http://stackoverflow.com/questions/214057/what-do-you-use-for-web-development-and-why-you-think-it-rocks/214088#2140883Answer by Just Some Guy for What do you use for web development and why you think it rocks?Just Some Guy2008-10-17T22:48:56Z2008-10-17T22:48:56Z<p>I've been using TurboGears lately and absolutely love it. It competes with Django and Ruby On Rails for rapid development, but has a more flexible backend. That is, it's more of a collection of best-of-breed components that have been made to play well together than a single monolithic framework. You can easily swap out the object relational mapper if you need to, or replace the page templating language with something else without rewriting your entire application.</p>
<p>The real "where have you been all my life?" moment came when I spend about two minutes adding an <a href="http://docs.turbogears.org/1.0/AutoCompleteField" rel="nofollow">AJAX autocomplete field</a> to a form. I had to write a function to answer the AJAX requests and add a new field that called that function, and it worked perfectly the first time. I'd always wanted to play with AJAX but was a bit intimidated, and my first experience with it could not have been easier.</p>
<p>It has a <a href="http://docs.turbogears.org/1.0/Wiki20/Page1" rel="nofollow">20 minute tutorial</a> to make a functional wiki. Even if you don't think you'll be using it, read it or watch it and see how easy such a thing can be.</p>
http://stackoverflow.com/questions/213933/ip-address-subnet-computation-in-net/213943#2139431Answer by Just Some Guy for IP Address/Subnet Computation in .NETJust Some Guy2008-10-17T21:40:56Z2008-10-17T21:40:56Z<p>If A is the first address, B is the second address, and C is the netmask, then check that A&C = B&C, where "&" is a bitwise and.</p>
http://stackoverflow.com/questions/212358/binary-search-in-python/213834#2138341Answer by Just Some Guy for Binary Search in PythonJust Some Guy2008-10-17T21:01:17Z2008-10-17T21:01:17Z<p>Using a dict wouldn't like double your memory usage unless the objects you're storing are really tiny, since the values are only pointers to the actual objects:</p>
<pre><code>>>> a = 'foo'
>>> b = [a]
>>> c = [a]
>>> b[0] is c[0]
True
</code></pre>
<p>In that example, 'foo' is only stored once. Does that make a difference for you? And exactly how many items are we talking about anyway?</p>
http://stackoverflow.com/questions/213508/why-do-personal-software-projects-fail-i-e-projects-with-the-goal-of-leading-t/213693#213693-1Answer by Just Some Guy for Why do personal software projects fail? (i.e. projects with the goal of leading to fulltime income)Just Some Guy2008-10-17T20:16:49Z2008-10-17T20:16:49Z<p>The biggest reason? Because if you can write it yourself and people like it, someone else can make an open source version with much better support than you can provide alone. Why not skip the middle man and release it as open source yourself? Sure, you miss out on the direct profit, but that looks very good come hiring time.</p>
http://stackoverflow.com/questions/203229/preventing-the-circumvention-of-copy-protection/210553#2105534Answer by Just Some Guy for Preventing the Circumvention of Copy ProtectionJust Some Guy2008-10-16T22:42:36Z2008-10-16T22:42:36Z<p><em>"Trying to make bits uncopyable is like trying to make water not wet."</em> -- Bruce Schneier</p>
<p>Copy protection and other forms of digital restrictions management are inherently breakable, because it is not possible to make a stream of bits visible to a computer while simultaneously preventing that computer from copying them. It just can't be done.</p>
<p>As others have pointed out, copy protection only serves to punish legitimate customers. I have no desire to play Spore, but if I did, I'd likely buy it but then install the cracked version because it's actually a better product for its lack of the system-damaging SecuROM or property-depriving activation scheme.</p>
http://stackoverflow.com/questions/207763/are-there-any-ides-that-support-python-3-syntax/209844#2098441Answer by Just Some Guy for Are there any IDE's that support Python 3 syntax?Just Some Guy2008-10-16T19:06:20Z2008-10-16T19:06:20Z<p>Emacs + python.el continues to be better than anything else I've tried.</p>
http://stackoverflow.com/questions/209484/howto-do-python-command-line-autocompletion-but-not-only-at-the-beginning-of-a-st/209503#2095033Answer by Just Some Guy for Howto do python command-line autocompletion but NOT only at the beginning of a stringJust Some Guy2008-10-16T17:23:34Z2008-10-16T18:30:45Z<p>I'm not sure I understand the problem. You could use readline.clear_history and readline.add_history to set up the completable strings you want, then control-r to search backword in the history (just as if you were at a shell prompt). For example:</p>
<pre><code>#!/usr/bin/env python
import readline
readline.clear_history()
readline.add_history('foo')
readline.add_history('bar')
while 1:
print raw_input('> ')
</code></pre>
<p>Alternatively, you could write your own completer version and bind the appropriate key to it. This version uses caching in case your match list is huge:</p>
<pre><code>#!/usr/bin/env python
import readline
values = ['Paul Eden <paul@domain.com>',
'Eden Jones <ejones@domain.com>',
'Somebody Else <somebody@domain.com>']
completions = {}
def completer(text, state):
try:
matches = completions[text]
except KeyError:
matches = [value for value in values
if text.upper() in value.upper()]
completions[text] = matches
try:
return matches[state]
except IndexError:
return None
readline.set_completer(completer)
readline.parse_and_bind('tab: menu-complete')
while 1:
a = raw_input('> ')
print 'said:', a
</code></pre>
http://stackoverflow.com/questions/208791/what-is-your-most-wanted-non-existent-or-underdeveloped-open-source-project/208879#20887919Answer by Just Some Guy for What is your most wanted non-existent or underdeveloped open source project?Just Some Guy2008-10-16T14:51:52Z2008-10-16T14:51:52Z<p>A working Exchange connector in component form that could be used by KMail, Thunderbird, Evolution, etc.</p>
http://stackoverflow.com/questions/207239/microsoft-alternative-to-jabber/207302#2073023Answer by Just Some Guy for Microsoft alternative to Jabber?Just Some Guy2008-10-16T03:05:36Z2008-10-16T03:05:36Z<p>I could see why you'd want to replace a cross-platform, standardized protocol supported by everyone with a proprietary single-vendor single-platform alternative that no one else uses. Or maybe not.</p>
http://stackoverflow.com/questions/207198/is-it-common-to-have-no-control-over-your-work-computer/207220#2072201Answer by Just Some Guy for Is it common to have no control over your work computer?Just Some Guy2008-10-16T02:23:09Z2008-10-16T02:23:09Z<p>I'd originally wiped XP on my Dell to install Gentoo Linux, then got bored one day and switched to Ubuntu. Not long ago I got a new Dell with Vista and immediately replaced it with FreeBSD so that I have the same software on my desktop as on our servers.</p>
<p>My boss doesn't know any of this and couldn't possibly care less. As long as I do my job, he has zero interest in what I use to do it (as long as we're licensed, and my coworkers ask for - and receive - the commercial software they want).</p>
<p>Usual? Probably not, but that's been my requirement at every place I've worked and so far no one's resisted.</p>
http://stackoverflow.com/questions/1743293/why-does-my-python-program-average-only-33-cpu-per-process-how-can-i-make-pytho/1743312#1743312Comment by Just Some Guy on Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?Just Some Guy2009-11-16T17:03:01Z2009-11-16T17:03:01ZThanks for that link. I had no idea it was that bad.http://stackoverflow.com/questions/1641219/does-python-have-private-variables-in-classes/1641236#1641236Comment by Just Some Guy on Does python have 'private' variables in classes?Just Some Guy2009-11-13T16:56:54Z2009-11-13T16:56:54ZSo does __foo in Python, and _bar means that you can but probably shouldn't.http://stackoverflow.com/questions/1596440/which-python-client-library-should-i-use-for-couchdb/1721072#1721072Comment by Just Some Guy on Which Python client library should I use for CouchdB?Just Some Guy2009-11-12T20:59:41Z2009-11-12T20:59:41ZI haven't committed to any client yet, so thanks for the input!http://stackoverflow.com/questions/235984/the-halting-problem-in-the-fieldComment by Just Some Guy on The Halting Problem in the FieldJust Some Guy2009-11-11T00:27:22Z2009-11-11T00:27:22ZHey, thanks for the accept. I'd kinda forgotten about it. :-)http://stackoverflow.com/questions/1661262/check-if-object-is-file-like-in-python/1698542#1698542Comment by Just Some Guy on Check if object is file-like in PythonJust Some Guy2009-11-09T21:54:54Z2009-11-09T21:54:54ZIf you want to see if it's a subclass, then check out isinstance(). But at any rate, duck typing is your friend: as long an object implements read() in this case, who cares what else it can or can't do?http://stackoverflow.com/questions/1661262/check-if-object-is-file-like-in-python/1698542#1698542Comment by Just Some Guy on Check if object is file-like in PythonJust Some Guy2009-11-09T19:57:06Z2009-11-09T19:57:06ZIt returns True if the very first attribute listed in dir(file) is defined. This is completely broken all around, unless you were going for the humor vote.http://stackoverflow.com/questions/1641219/does-python-have-private-variables-in-classes/1641236#1641236Comment by Just Some Guy on Does python have 'private' variables in classes?Just Some Guy2009-10-29T02:12:52Z2009-10-29T02:12:52Z@David - the presumption is that we're all adults here. Don't break things that you can't fix! In this case, that means that you shouldn't mess around with those private members like __foo or _bar. Again, in practice, that's just not done without an extremely good reason. It might not be theoretically pure, but I've never once seen a real-world situation where it was a problem.http://stackoverflow.com/questions/1641219/does-python-have-private-variables-in-classes/1641236#1641236Comment by Just Some Guy on Does python have 'private' variables in classes?Just Some Guy2009-10-29T02:10:00Z2009-10-29T02:10:00ZNot that I know of, but the point is that you <i>can</i> edit the source, or even the compiled bytecode. Nothing can stop you if you're determined enough to mess around with that class's innards. So why expend the effort to prevent it, instead of relying on convention and thin mechanisms to say "don't do that!" And when it comes down to it, no matter how bad of an idea it may usually be, sometimes you really <i>do</i> want to fiddle around where you're not supposed to.http://stackoverflow.com/questions/1640080/c-or-python-for-my-app/1640088#1640088Comment by Just Some Guy on C# or Python for my appJust Some Guy2009-10-28T21:33:22Z2009-10-28T21:33:22Z100K records is a pretty tiny dataset to worry about performance issues. Given that they're being fetched from a remote server, I'd bet they'll spend more time in transit than in being processed.http://stackoverflow.com/questions/1596440/which-python-client-library-should-i-use-for-couchdb/1597169#1597169Comment by Just Some Guy on Which Python client library should I use for CouchdB?Just Some Guy2009-10-20T21:54:35Z2009-10-20T21:54:35ZThanks! That's just the kind of opinion I was looking for.http://stackoverflow.com/questions/1596440/which-python-client-library-should-i-use-for-couchdb/1597325#1597325Comment by Just Some Guy on Which Python client library should I use for CouchdB?Just Some Guy2009-10-20T21:53:31Z2009-10-20T21:53:31ZI see the point you're making, but for the sake of the question, assume I've done due diligence and that it's an appropriate answer for our needs. As I mentioned, it's replacing NetWorkSpaces which is significantly less featureful than any of the options you or I have listed.http://stackoverflow.com/questions/1591261/python-cat-and-mouse-example-codeComment by Just Some Guy on Python Cat and Mouse example code? Just Some Guy2009-10-19T21:29:31Z2009-10-19T21:29:31ZWhich class is it for? That'll help us narrow down the answer.http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201427#201427Comment by Just Some Guy on What is the best regular expression for validating email addresses?Just Some Guy2009-10-17T03:01:43Z2009-10-17T03:01:43ZI'm unsurprised, but that's an Exchange issue and not a feature of email in general. See <a href="http://en.wikipedia.org/wiki/E-mail_address#Sub-addressing" rel="nofollow">en.wikipedia.org/wiki/…</a> for more details.http://stackoverflow.com/questions/1520548/how-does-pythons-triple-quote-string-workComment by Just Some Guy on How does Python's triple-quote string work?Just Some Guy2009-10-05T17:53:59Z2009-10-05T17:53:59ZAre you meaning "\n"?http://stackoverflow.com/questions/1509688/emacs-macro-to-generate-a-sequence/1510801#1510801Comment by Just Some Guy on Emacs macro to generate a sequence?Just Some Guy2009-10-04T17:44:34Z2009-10-04T17:44:34Z'jot' and 'seq' do the same thing for these purposes. If you're on Unix, you almost surely have at least one of them installed.q