llimllib

801
Reputation
218 views

Registered User

Name llimllib
Member for 12 months
Seen Nov 17 at 20:45
Website
Location Baltimore, MD
Age
Sep
18
accepted Python html output (first attempt), several questions (code included)
Aug
21
comment Finding Functions Defined in a with: Block
I posted a blog entry on using the code you gave me, in case you're interested: billmill.org/multi_line_lambdas.html
Aug
10
comment Finding Functions Defined in a with: Block
but then why use "with gui.vertical"? It would need to do the same stack introspection to get access to the text, items, and button within it. I'm sure you do something like: class MyLayout(gui.Vertical): text = gui.label('hello!') #etc right? Anyway, I'm well aware that this is a seriously non-standard abuse of the with block. I just wanted to know how he did it. I hope you at least see that it's a cool abuse of the with block :)
Aug
10
comment Finding Functions Defined in a with: Block
Lovely, thank you very much.
Aug
10
asked Finding Functions Defined in a with: Block
Jul
24
answered Static vs instance methods of str in Python
Jul
12
answered JavaScript, stop additional event listeners
Jul
8
comment Algorithm for multiple word matching in text
@Polaris: Also assuming that the hash of words fits into memory (which, if it's 10k words, should be no problem. Just being pedantic)
Jul
5
comment Running JSON through Python’s eval()?
here's a simplejson port in pure python, intended for a similar situation to yours: aaronland.info/python/s60-simplejson/… . I've never used it, but I suspect it's a better idea than eval()ing
Jul
4
comment What causes Python socket error?
@Oscar if the port is in use, that is what python says ("error: (48, 'Address already in use')"). Sometimes users don't have permission to access ports below some number, which I presume is the case here.
Jul
4
comment Sort a list of strings based on regular expression match or something similar
I realized that if I simply include the % at the front of the returned string, the whole thing gets much simpler. & is chr(ord('%')+1), if you're wondering why I chose that. For compatibilty with all encodings, you should probably generate the character that way, but I left it as '&' for simplicity.
Jul
4
revised Sort a list of strings based on regular expression match or something similar
if we include the % things get easier
Jul
4
comment Sort a list of strings based on regular expression match or something similar
@Tom I just copied from an ipython session (ipython.scipy.org/moin) @Alex Because I've just been using groups()[i] for years now and didn't realize there was a group(i) function. (Also it would be group(1), not group(0), right?). Thanks for the note.
Jul
4
accepted Sort a list of strings based on regular expression match or something similar
Jul
4
comment Sort a list of strings based on regular expression match or something similar
at the cost of a good deal of complexity, I should add. I think I preferred the previous solution, he can probably use a [null, notnull] set just as easily as a [notnull, null] set.
Jul
4
comment Sort a list of strings based on regular expression match or something similar
OK, you intrigued me, so I fixed it. Basically, if re.UNICODE is set, the 'z' + s solution may not work; the way I've done it should, I think.
Jul
4
revised Sort a list of strings based on regular expression match or something similar
sort the list properly
Jul
4
comment Sort a list of strings based on regular expression match or something similar
yup, I left the specific sort he wanted as an exercise for the reader - I figured the important bit was the sort(key=...) and grp functions.
Jul
4
answered Sort a list of strings based on regular expression match or something similar
Jun
30
comment How do you create an incremental ID in a Python Class
R. Pate: absolutely correct, and important to keep in mind; I just wanted to make sure he was aware of the id function's existence and evaluated it properly before choosing to do something manually.
Jun
25
accepted How do you create an incremental ID in a Python Class
Jun
25
answered How do you create an incremental ID in a Python Class
Jun
18
comment chop unused decimals with javascript
Better to use 0+ instead of 0* so the regex doesn't match if there's no trailing zeros.
Jun
18
answered chop unused decimals with javascript
Jun
18
comment jQuery function calling
this has the same effect as simply omitting the "var" before "bar"
Jun
18
comment Hidden features of Python
not a good idea for algorithmic as well as practical reasons. Algorithmically, this will give you a linear search of the list so far on every iteration, changing your O(n) loop into O(n**2); much better to just make the list into a set afterwards. Practically speaking, it's undocumented, may change, and probably doesn't work in ironpython/jython/pypy .
Jun
15
comment Singular Value Decomposition (SVD) in PHP
Marco, I've done LSA, and I can tell you assuredly that PHP will provide unacceptable response times for matrices of any size, let alone huge. Save yourself the time trying to figure it out and find a way to interface with C. Svdlibc worked great for me: tedlab.mit.edu/~dr/svdlibc
Jun
14
comment I’m new at python, building a high low game. I need some help!
Dang man, I wish I had Martellibot to help me with my homework when I got stuck :)
Jun
5
comment Iterating through large lists with potential conditions in Python
one super-minor thought: as long as you're targeting python 2.4 or greater, you don't need the list around your generator expression. sum(e for e in x) should be slightly faster than sum([e for e in x]) and semantically equivalent.