Jason Baker

24,841
Reputation
1448 views

Registered User

Name Jason Baker
Member for 1 year
Seen 10 mins ago
Website
Location Denton, TX
Age 26
I'm a Python programmer who dabbles in as many other technologies as possible.
3m
comment When did you know it was time to leave your job?
#1 is so true. It almost always boils down to "nobody ever got fired for buying Microsoft."
3h
comment How do I make a type that uses Batteries’ Dyn_array in OCaml?
It was the syntax. I actually found an answer for this, but forgot to post the answer here!
1d
comment Python: Nested Loop
Personally, I think the loop you already have is the best way to do this. It's simple, clear and readable.
1d
comment Python: Nested Loop
It should also be noted that this will only work in Python 2.6 or 3
1d
accepted Should logging reside within a class who’s primary purpose is not logging?
1d
answered OOP: When is it an object?
1d
answered setuptools test hides import errors. How to have better info ?
1d
comment setuptools test hides import errors. How to have better info ?
@codeape - and good luck with that. :-)
Nov
28
revised I am looking for tips for learning vim or emacs the smart way…
added 216 characters in body
Nov
28
comment I am looking for tips for learning vim or emacs the smart way…
Your suggestion to not try to do everything at once reminded me of a piece of advice I once got about learning emacs. Thanks!
Nov
28
answered I am looking for tips for learning vim or emacs the smart way…
Nov
28
asked How do I make a type that uses Batteries’ Dyn_array in OCaml?
Nov
27
accepted How do you know when two objects can communicate?
Nov
26
awarded  Notable Question
Nov
26
comment Python: Can you make this __eq__ easy to understand?
@Javier - Remember, attr is a string. By saying self.attr, you're literally checking for an attribute attr on self.
Nov
26
comment Python: Can you make this __eq__ easy to understand?
I agree that a docstring would be useful. However, that's not really a direct answer to the OP's question. A docstring doesn't make the code any better.
Nov
26
comment Python: Can you make this __eq__ easy to understand?
I think this is the best way to do it. However, there is one correction to make. You should use getattr(self, attr instead of self.attr.
Nov
26
comment Python: Can you make this __eq__ easy to understand?
I don't think this is making it easier to understand, I think this is just making it shorter. There is a difference.
Nov
26
comment Python: Can you make this __eq__ easy to understand?
I agree that breaking it up into smaller chunks is good, but I'm not sure this is the best way to do this.
Nov
25
answered Should logging reside within a class who’s primary purpose is not logging?
Nov
25
asked How do I generate quasi-random statistical data sets?
Nov
24
asked How do I determine k when using k-means clustering?
Nov
24
answered How to apply a logical operator to all elements in a python list
Nov
24
revised Where does pythons pydoc help function get its content from.
added 6 characters in body
Nov
24
comment From Visual Studio to Vim or Emacs?
There's a whole world of things in vi/emacs that you don't know about I'm guessing. :-)
Nov
23
accepted Making ORM with Python’s Storm
Nov
23
comment Making ORM with Python’s Storm
My answer has been updated. See below.
Nov
23
revised Making ORM with Python’s Storm
added 68 characters in body
Nov
23
answered How do I use __getitem__ and __iter__ and return values from a dictionary ?
Nov
22
answered Making ORM with Python’s Storm
Nov
22
comment How do I determine which kind of tree data structure to choose?
I was planning on digging through that book eventually. I just find that it's usually easier to get an overall idea of what I should be paying attention to before getting into it. :-)
Nov
22
asked How do I determine which kind of tree data structure to choose?
Nov
22
answered When should I drop support for python2.4 on my public python library?
Nov
19
revised Favorite 3rd-party Python Libraries?
typo
Nov
19
comment Favorite 3rd-party Python Libraries?
How is that different from multiprocessing? It seems to just be a wrapper around using different processes.
Nov
19
answered Favorite 3rd-party Python Libraries?
Nov
19
answered What dead programming languages do you know?
Nov
19
comment How fast is Python?
Psyco will give you more Java-like performance. You will get slower start times and higher memory usage in exchange for faster algorithms.
Nov
19
comment What is the idiomatic way to set class/instance variables in a class definition in Ruby?
Doh! It's amazing that nobody caught it until just now.
Nov
19
revised What is the idiomatic way to set class/instance variables in a class definition in Ruby?
added 2 characters in body
Nov
19
comment What is the idiomatic way to set class/instance variables in a class definition in Ruby?
I wouldn't name it Foo either, but it's always the first thing that springs to mind when giving examples like these. :-)
Nov
18
asked What is a “safety variable”?
Nov
18
revised Nose test script with command line arguments.
added 572 characters in body
Nov
18
asked What is the idiomatic way to set class/instance variables in a class definition in Ruby?
Nov
18
awarded  Popular Question
Nov
16
answered Are “passive” objects considered a good design practice?
Nov
15
comment Dealbreakers for new programming jobs?
I wish I'd asked that at recent jobs.
Nov
15
comment Dealbreakers for new programming jobs?
You left off the worst of the VB family: vbscript.
Nov
12
comment What exactly does this Standard ML code do?
The dollar sign is his notation for lazy evaluation. Essentially this is a real-time persistent queue where you're rotating items from the tail to the front.
Nov
12
revised What exactly does this Standard ML code do?
deleted 1 characters in body