Just Some Guy

2,906
Reputation
117 views

Registered User

Name Just Some Guy
Member for 1 year
Seen 12 hours ago
Website
Location US
Age 38
I'm pretty boring.
2d
accepted How can I detect that emacs-server is running from a shell prompt?
Nov
16
comment Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?
Thanks for that link. I had no idea it was that bad.
Nov
13
comment Does python have ‘private’ variables in classes?
So does __foo in Python, and _bar means that you can but probably shouldn't.
Nov
12
comment Which Python client library should I use for CouchdB?
I haven't committed to any client yet, so thanks for the input!
Nov
11
answered Why does reddit use base36 for article id?
Nov
11
comment The Halting Problem in the Field
Hey, thanks for the accept. I'd kinda forgotten about it. :-)
Nov
10
awarded  Enlightened
Nov
10
accepted The Halting Problem in the Field
Nov
9
comment Check if object is file-like in Python
If 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?
Nov
9
comment Check if object is file-like in Python
It 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.
Oct
30
awarded  Yearling
Oct
29
answered MySql table design: multiple tables vs. multiple columns
Oct
29
comment Does python have ‘private’ variables in classes?
@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.
Oct
29
comment Does python have ‘private’ variables in classes?
Not that I know of, but the point is that you can 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 do want to fiddle around where you're not supposed to.
Oct
29
accepted Does python have ‘private’ variables in classes?
Oct
29
answered Does python have ‘private’ variables in classes?
Oct
28
comment C# or Python for my app
100K 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.
Oct
20
comment Which Python client library should I use for CouchdB?
Thanks! That's just the kind of opinion I was looking for.
Oct
20
comment Which Python client library should I use for CouchdB?
I 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.
Oct
20
revised Which Python client library should I use for CouchdB?
added 802 characters in body
Oct
20
asked Which Python client library should I use for CouchdB?
Oct
17
comment What is the best regular expression for validating email addresses?
I'm unsurprised, but that's an Exchange issue and not a feature of email in general. See en.wikipedia.org/wiki/… for more details.
Oct
14
answered How to make a folder in Apache directory accessible over LAN
Oct
11
answered Difference between defining a member in __init__ to defining it in the class body in python?
Oct
5
comment How does Python’s triple-quote string work?
Are you meaning "\n"?
Oct
4
comment Emacs macro to generate a sequence?
'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
Oct
2
answered Emacs macro to generate a sequence?
Oct
2
answered How can I detect that emacs-server is running from a shell prompt?
Sep
23
comment How can this python function code work?
Exactly, except that new code would commonly look more like: @with_default_value(some_func, 'the_default_value') def some_func(name, val): # ...
Aug
12
comment Emacs 23 on OS X - use multiple instances or emacsclient?
I needed to run emacsclient a few days ago to access my session at work from home so I could check the output of some commands running in a shell. I also like using it for $EDITOR so I can have a nice environment for editing crontabs, etc.