Our next meeting will be on Thurs April 6th at 7:00 pm. The topic will be on a Media Startup in Python. Let me know if you will be attending. Cal Directions ...
... Just to make it clear to new comers, while it's nice to let everyone know you're coming, it doesn't mean you can't come without 'reserving' a spot. -- ...
I'd love to be there, but unfortunately I'm living in Maryland right now. I would be interested in hearing about the startup company as I'm not adverse to...
Hey Alan, Sorry you can't make it. Forgive me for not knowing in advance if you've been following the list, but it seems that the speaker is a little reluctant...
Hi Andrew, The determination of best is in the eye of the beholder. I've said more than once that this isn't an academic talk, and the focus will be as much...
... Of course I understand that, and I'm sorry I was more clear when I talked about notes. I'm hoping (and assuming) that you'll be talking somewhat about the...
The room where we meet is typically locked. If you arrive before I do this evening (or otherwise are having problems getting there), please call me and I'll...
... I think there's a minor miscommunication going on. Sometimes when one says "technical details" one means "how does your underlying media technology work?"...
Relevant to my old media work: Vectorizing Face Images by Interleaving Shape and Texture Computations <http://citeseer.ist.psu.edu/beymer95vectorizing.html> ...
NJ Tech Meetup Group <http://newtech.meetup.com/16/> I thought some of you might be interested for the networking. Should have a lot of entrepreneurial energy....
Enter your vote today! A new poll has been created for the PhillyPug group: Please choose a topic you would like to see most at the next meeting. Also if you...
PhillyPug@yahoogroups...
Apr 11, 2006 7:51 pm
159
In an idea to use the features of the list I have created a poll with ideas for the next meeting. Please take a moment to vote on the topic you would like to...
How long have you been using Python? Couple of Months Where do you use Python? Work, Hobbyist, just starting? I use it at work want to start using it at hoem. ...
Welcome Patrick! ... I'm not sure if you've read the backlog of the Hundreds of thousands of messages this list gets, but we've been meeting at Drexel ...
I've been wanting a little widget for storing passwords, account numbers, etc. Wrote this. I'm pretty sure it works. Any feedback appreciated. If you find...
... Hash: SHA1 I didn't have too much time to take a look, but one thing I did notice that you could do would be to take advantage of the cmd module in the...
... Cool, I didn't know about that module. Thanks! -- Jeff Jeff Abrahamson <http://jeff.purple.com/> +1 215/837-2287 GPG fingerprint: 1A1A BA95 D082...
I'm using getopt.gnu_getopt(). Anyone know of a way to specify an option with an optional argument, like getopt(3) does with a double colon: foo -c foo -c arg ...
I'm guessing it doesn't work with the way you're used to? I think gnu_getopt is supposed to behave the way gnu getopt does. I haven't tried it, nor have I ever...
I have a list comprehension that looks like this: L = [ T.list() for T in self.cdr ] The function T.list() returns a list. What I get therefore looks like ...
... Thanks. I gave too simple an example, I'm afraid. I call this recursively (it's part of a tree walk), so one example is this: ['barnyard', ['cow'],...
... Hash: SHA1 Yeah, I realized this. After looking at self.cdr, I figured that you're probably trying to nest lists deep. Your untested code would be correct...
... One easy way to do this is something like: def flatten(x): if hasattr(x, "__iter__"): result = [] for y in x: result.extend(flatten(y)) return result else:...
Erik Osheim
erik@...
May 16, 2006 2:09 am
172
I just realized that we didn't actually answer your original question. We come as far as actually creating a way to do what you need, but not with list...
I would use the reduce() function with a simple add lambda as follows: L = reduce(lambda x,y: x+y, [T.list() for T in self.cdr]) Guido wants to get rid of...