User Triptych - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T13:57:47Zhttp://stackoverflow.com/feeds/user/43089http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1800559/firebug-debugging-javascript/1800565#18005651Answer by Triptych for Firebug debugging JavaScriptTriptych2009-11-25T23:05:25Z2009-11-25T23:05:25Z<p>Find the javascript line in firebug and set a breakpoint. You should'nt need to modify your Javascript at all.</p>
<p>Check out this page, specifically the "Pause execution on any line" section to see what this looks like visually.</p>
http://stackoverflow.com/questions/1759455/how-can-i-account-for-am-or-pm-with-datetime-strptime2How can I account for "AM" or "PM" with datetime.strptime?Triptych2009-11-18T22:04:41Z2009-11-18T22:11:27Z
<p>Specifically I have code that simplifies to this:</p>
<pre><code>from datetime import datetime
date_string = '2009-11-29 03:17 PM'
format = '%Y-%m-%d %H:%M %p'
my_date = datetime.strptime(date_string, format)
# This prints '2009-11-29 03:17 AM'
print my_date.strftime(format)
</code></pre>
<p>What gives? Does Python just ignore the period specifier when parsing dates or am I doing something stupid?</p>
http://stackoverflow.com/questions/1732234/the-correct-caseformat-of-variable-and-methods-and-for-python/1732241#17322414Answer by Triptych for The correct case&format of variable and methods and for PythonTriptych2009-11-13T22:14:12Z2009-11-13T22:14:12Z<p>Read <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8</a>.</p>
<p>It's a style guide for Python code, written by Python's creator, Guido van Rossum. </p>
<p>Incidentally, the answer to your question is to use <code>underscore_case</code> for variables and function names, and <code>PascalCase</code> for classes.</p>
http://stackoverflow.com/questions/1688712/how-flatten-a-list-of-lists-one-step/1688773#16887731Answer by Triptych for How flatten a list of lists one step Triptych2009-11-06T16:38:27Z2009-11-06T16:38:27Z<p>This works for your example, if there is only one level of nested lists (no lists of lists of lists):</p>
<pre><code>itertools.product(*A)
</code></pre>
http://stackoverflow.com/questions/1680856/google-apps-engine-mail-fetch/1681002#1681002-1Answer by Triptych for Google Apps Engine mail fetchTriptych2009-11-05T14:45:41Z2009-11-05T14:45:41Z<p>Just use the Python's standard <a href="http://docs.python.org/library/poplib.html" rel="nofollow">POP</a> or <a href="http://docs.python.org/library/imaplib.html" rel="nofollow">IMAP</a> client. Google does not provide a GMail API.</p>
http://stackoverflow.com/questions/1631606/javascript-strings-to-object/1631664#16316641Answer by Triptych for Javascript strings to objectTriptych2009-10-27T15:35:42Z2009-10-27T15:35:42Z<p>Doesn't really make sense to concatenate something to a object without a key. Perhaps <code>data</code> should be an array of objects?</p>
<pre><code>data = [];
a_obj = {};
a_obj[a_key] = a_val;
data += a_obj;
</code></pre>
http://stackoverflow.com/questions/1603211/recommend-codebase-to-read-and-hone-python-skills/1603507#16035070Answer by Triptych for Recommend codebase to read and hone Python skillsTriptych2009-10-21T20:45:13Z2009-10-21T20:45:13Z<p>The python standard library, as others have mentioned, is mostly good, but not really consistent. People should really be giving a module-by-module recommendation. Having read a few modules, I can tell you that many don't conform to what is considered good Python style (though they may perform well).</p>
<p>Probably the best code I have seen, just in terms of style, is Google App Engine's Python Library, which is <a href="http://code.google.com/p/googleappengine/source/browse/" rel="nofollow">browsable here</a>.</p>
http://stackoverflow.com/questions/1579771/fastest-nested-loops-over-a-single-list-with-elements-remove-or-not/1579799#15797993Answer by Triptych for Fastest nested loops over a single list (with elements remove or not)Triptych2009-10-16T18:59:33Z2009-10-16T19:07:09Z<h3>A simple solution that works by sorting the list then using a generator to create groups:</h3>
<pre><code>def time_offsets(files, offset):
files = sorted(files, key=lambda x:x.timestamp)
group = []
timestamp = 0
for f in files:
if f.timestamp < timestamp + offset:
group.append(f)
else:
yield group
timestamp = f.timestamp
group = [timestamp]
else:
yield group
# Now you can do this...
for group in time_offsets(files, 86400):
print group
</code></pre>
<h3>And here's a complete script you can run to test:</h3>
<pre><code>class File:
def __init__(self, timestamp):
self.timestamp = timestamp
def __repr__(self):
return "File: <%d>" % self.timestamp
def gen_files(num=100):
import random
files = []
for i in range(num):
timestamp = random.randint(0,1000000)
files.append(File(timestamp))
return files
def time_offsets(files, offset):
files = sorted(files, key=lambda x:x.timestamp)
group = []
timestamp = 0
for f in files:
if f.timestamp < timestamp + offset:
group.append(f)
else:
yield group
timestamp = f.timestamp
group = [timestamp]
else:
yield group
# Now you can do this to group files by day (assuming timestamp in seconds)
files = gen_files()
for group in time_offsets(files, 86400):
print group
</code></pre>
http://stackoverflow.com/questions/1579744/how-do-i-know-what-data-type-to-use-in-python/1579759#15797593Answer by Triptych for How do I know what data type to use in Python?Triptych2009-10-16T18:50:42Z2009-10-16T18:51:36Z<p>Best type for counting elements like this is usually <a href="http://docs.python.org/library/collections.html#defaultdict-objects" rel="nofollow"><code>defaultdict</code></a></p>
<pre><code>from collections import defaultdict
s = 'asdhbaklfbdkabhvsdybvailybvdaklybdfklabhdvhba'
d = defaultdict(int)
for c in s:
d[c] += 1
print d['a'] # prints 7
</code></pre>
http://stackoverflow.com/questions/1566878/is-there-a-dictionary-that-contains-the-functions-parameters-in-python/1566910#15669103Answer by Triptych for Is there a dictionary that contains the function's parameters in Python?Triptych2009-10-14T15:03:41Z2009-10-14T15:11:16Z<p>If you need to do that, you should use <code>*args</code> and <code>**kwargs</code>.</p>
<pre><code>def foo(*args, **kwargs):
print args
print kwargs
foo(1,2,3,four=4,five=5)
# prints [1,2,3] and {'four':4, 'five':5}
</code></pre>
<p>Using <code>locals()</code> is also a possibility and will allow you to iterate through the names of position arguments, but you must remember to access it before defining any new names in the scope, and you should be aware that it will include <code>self</code> for methods.</p>
http://stackoverflow.com/questions/1562759/can-python-print-a-function-definition/1562795#15627958Answer by Triptych for Can Python print a function definition?Triptych2009-10-13T20:41:18Z2009-10-13T20:41:18Z<p>If you are importing the function, you can use <a href="http://docs.python.org/library/inspect.html#inspect.getsource" rel="nofollow"><code>inspect.getsource</code></a>:</p>
<pre><code>>>> import re
>>> import inspect
>>> print inspect.getsource(re.compile)
def compile(pattern, flags=0):
"Compile a regular expression pattern, returning a pattern object."
return _compile(pattern, flags)
</code></pre>
<p>This <em>will</em> work in the interactive prompt, but apparently only on objects that are imported (not objects defined within the interactive prompt). And of course it will only work if Python can find the source code (so not on built-in objects, C libs, .pyc files, etc)</p>
http://stackoverflow.com/questions/448981/what-characters-are-valid-in-css-class-names/449000#44900016Answer by Triptych for What characters are valid in CSS class names?Triptych2009-01-15T23:42:27Z2009-10-12T14:08:01Z<p>You can check directly at the <a href="http://www.w3.org/TR/CSS21/grammar.html#scanner" rel="nofollow">CSS grammar</a>.</p>
<p><em>Basically</em>, a name may start with an underscore (<code>_</code>), a dash (<code>-</code>), or a letter(<code>a</code>–<code>z</code>), and then be immediately followed<sup>1)</sup> by a letter, or underscore, and THEN have any number of dashes, underscores, letters, or numbers<sup>2)</sup>:</p>
<pre><code>-?[_a-zA-Z]+[_a-zA-Z0-9-]*
</code></pre>
<p>Identifiers beginning with a dash or underscore are typically reserved for browser-specific extensions, as in <code>-moz-opacity</code>.</p>
<p><sup>1)</sup> Note that, according to the grammar I linked, a rule starting with TWO dashes, e.g. <code>--indent1</code>, is invalid. However, I'm pretty sure I've seen this in practice.</p>
<p><sup>2)</sup> It's all made a bit more complicated by the inclusion of escaped unicode characters (that no one really uses).</p>
http://stackoverflow.com/questions/1545878/how-to-replace-the-quote-and-hyphen-character-in-a-string-with-nothing-in-pytho/1545929#15459292Answer by Triptych for How to replace the quote " and hyphen character in a string with nothing in Python?Triptych2009-10-09T20:35:13Z2009-10-09T20:47:56Z<p>In Python 2.6/2.7, you can use the helpful <code>translate()</code> method on strings. When using <code>None</code> as the first argument, this method has the special behavior of deleting all occurences of any character in the second argument. </p>
<pre><code>>>> s = 'No- dashes or "quotes"'
>>> s.translate(None, '"-')
'No dashes or quotes'
</code></pre>
<p>Per SilentGhost's comment, this gets to be cumbersome pretty quickly in both <2.6 and >=3.0, because you have to explicitly create a translation table. That effort would only be worth it if you are performing this sort of operation a great deal.</p>
http://stackoverflow.com/questions/1545698/python-mechanize-doesnt-click-a-button/1545819#15458192Answer by Triptych for Python mechanize doesn't click a buttonTriptych2009-10-09T20:10:05Z2009-10-09T20:10:05Z<p>There is a <code>disabled=disabled</code> attribute on the register button. This prevents the user from clicking and presumably mechanize respects the <code>disabled</code> attribute as well.</p>
<p>You'll need to change the source code of that button. Enabling the control means completely removing the <code>disabled=disabled</code> text. </p>
http://stackoverflow.com/questions/1545655/how-do-i-replace-all-punctuation-in-my-string-with-in-python/1545678#15456788Answer by Triptych for How do I replace all punctuation in my string with "" in Python?Triptych2009-10-09T19:36:50Z2009-10-09T19:36:50Z<p>Simple regular expression:</p>
<pre><code>import re
>>> s = "Business -- way's"
>>> s = re.sub(r'[^\w\s]', '', s)
>>> s
"Business ways"
</code></pre>
http://stackoverflow.com/questions/1544672/storing-parameters-in-a-class-and-how-to-access-them/1544694#15446946Answer by Triptych for Storing parameters in a class, and how to access them.Triptych2009-10-09T16:03:20Z2009-10-09T16:23:36Z<p>What you have there are object properties. You mean to use class variables:</p>
<pre><code>class Params(object):
atoms =['1.0','2.0','3.0','4.0','5.0','6.0','7.0','8.0','9.0','x','x','x','x']
operators = {'+': 2, '-': 2, '*': 2, '/': 2,'+': 2, '-': 2, '*': 2, '/': 2, '**': 2, '%': 2}
depth = 1
ratio = .4
method = ''
riddle = '1 + np.sin(x)'
# This works fine:
Params.riddle
</code></pre>
<p>It's fairly common in Python to do this, since pretty much everyone agrees that <code>Params.riddle</code> is a lot nicer to type than <code>Params['riddle']</code>. If you find yourself doing this a lot you may want to use <a href="http://code.activestate.com/recipes/52308/" rel="nofollow">this recipe</a> which makes things a bit easier and much clearer semantically.</p>
<p><em>Warning:</em> if that <code>Params</code> class gets too big, an older, grumpier Pythonista may appear and tell you to just move all that crap into its own module.</p>
http://stackoverflow.com/questions/1544350/condense-this-python-statement-without-destroying-readability/1544637#15446370Answer by Triptych for Condense this Python statement without destroying readabilityTriptych2009-10-09T15:52:43Z2009-10-09T15:57:54Z<p>In addition to exceptions, using a decorator is a good solution to this problem:</p>
<pre><code># Create a function that creates a decorator given a value to fail on...
def fail_unless(ok_val):
def _fail_unless(f):
def g(*args, **kwargs):
val = f(*args, **kwargs)
if val != ok_val:
print 'CALLING abort_on_error...'
else:
return val
return g
return _fail_unless
# Now you can use the decorator on any function you'd like to fail
@fail_unless('OK')
def no_negatives(n):
if n < 0:
return 'UH OH!'
else:
return 'OK'
</code></pre>
<p>In practice:</p>
<pre><code>>>> no_negatives(9)
'OK'
>>> no_negatives(0)
'OK'
>>> no_negatives(-1)
'CALLING abort_on_error...'
</code></pre>
<p>I know the syntax defining <code>fail_unless</code> is a little tricky if you're not used to decorators and function closures but the <em>application</em> of <code>fail_unless()</code> is quite nice no?</p>
http://stackoverflow.com/questions/1543820/comprehensions-in-python-and-javascript-are-only-very-basic/1543844#15438443Answer by Triptych for Comprehensions in Python and Javascript are only very basic?Triptych2009-10-09T13:42:04Z2009-10-09T13:52:03Z<p>Yes, you can have multiple iterables in a <a href="http://docs.python.org/tutorial/datastructures.html#list-comprehensions" rel="nofollow">Python list comprehension</a>:</p>
<pre><code>>>> [(x,y) for x in range(2) for y in range(3)]
[(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2)]
</code></pre>
http://stackoverflow.com/questions/1535391/resource-scheduling-application/1535554#15355542Answer by Triptych for Resource scheduling applicationTriptych2009-10-08T04:00:23Z2009-10-08T22:37:49Z<p>You'll want to track just start and end times for each exclusionary resource. The data storage in your problem is actually the easy part - the hard(er) part is crafting queries to look for conflicts in time intervals.</p>
<p>If my logic is correct after being up for 21 hours, the following psuedo-code should check for meeting conflicts.</p>
<pre><code># Set up your proposed meeting
proposed.start = <thursday, 1pm>
proposed.end = <thursday, 2pm>
# Look for meetings that intersect with or straddle proposed meeting
conflicts = <SELECT * FROM meeting WHERE
meeting.start BETWEEN proposed.start AND proposed.end OR
meeting.end BETWEEN proposed.start AND proposed.end OR
meeting.start <= proposed.start AND meeting.end >= proposed.end>
if conflicts.length > 0:
# We have a conflict!
</code></pre>
http://stackoverflow.com/questions/1531402/for-list-unless-empty-in-python/1531505#15315052Answer by Triptych for For list unless empty in pythonTriptych2009-10-07T13:02:12Z2009-10-07T13:07:11Z<p>Slighty more terse is:</p>
<pre><code>for i in my_list:
# got a list
if not my_list:
# not a list
</code></pre>
<p>assuming you are not changing the length of the list in the loop. </p>
<p>Edit from Oli: To compensate my worries of memory use, it would want <code>with</code>ing:</p>
<pre><code>with get_list() as my_list:
for i in my_list:
# got a list
if not my_list:
# not a list
</code></pre>
<p>But yes, that's quite a simple way around the issue.</p>
http://stackoverflow.com/questions/1528016/regex-for-extraction-in-python/1528137#15281370Answer by Triptych for Regex for extraction in PythonTriptych2009-10-06T21:14:40Z2009-10-06T21:14:40Z<p>Assuming your actual format is <code>{{[a-z]+|[0-9]+|[0-9]+}}</code>, here's a complete program with conversion to ints.</p>
<pre><code>import re
s = "a word {{bla|123|456}} another {{bli|789|123}} some more text {{blu|789}} and more"
result = []
for match in re.finditer('{{.*?}}', s):
# Split on pipe (|) and filter out non-alphanumerics
parts = [filter(str.isalnum, part) for part in match.group().split('|')]
# Convert to int when possible
for index, part in enumerate(parts):
try:
parts[index] = int(part)
except ValueError:
pass
result.append(tuple(parts))
</code></pre>
http://stackoverflow.com/questions/1511506/python-loop-do-while-over-a-tree/1511600#15116000Answer by Triptych for Python loop | "do-while" over a treeTriptych2009-10-02T20:19:21Z2009-10-02T20:19:21Z<p>I think the code you have is fine. If you really wanted to, you could wrap it all up in a try/except:</p>
<pre><code>while True:
try:
tree = tree.getChildren()[0]
except (IndexError, TypeError):
break
</code></pre>
<p><code>IndexError</code> will work if <code>getChildren()</code> returns an empty list when there are no children. If it returns <code>False</code> or <code>0</code> or <code>None</code> or some other unsubscriptable false-like value, <code>TypeError</code> will handle the exception.</p>
<p>But that's just <em>another</em> way to do it. Again, I don't think the Pythonistas will hunt you down for the code you already have.</p>
http://stackoverflow.com/questions/1418838/html-making-a-link-lead-to-the-anchor-centered-in-the-middle-of-the-page/1510415#15104150Answer by Triptych for HTML: Making a link lead to the anchor centered in the middle of the pageTriptych2009-10-02T15:55:50Z2009-10-02T15:55:50Z<p>Since "middle of the page" is relative to the size of the user's screen and window at any given time, you are going to have to use Javascript to achieve this, as there is no way in pure HTML/CSS to get the vertical screen width.</p>
http://stackoverflow.com/questions/1497387/javascript-incompatibility-with-mozilla/1497409#14974091Answer by Triptych for Javascript Incompatibility with MozillaTriptych2009-09-30T10:58:05Z2009-09-30T11:03:12Z<p>My immediate guess is that you have more than one element with the id <code>checkAll</code>. </p>
<p>By the spec, calling <code>getElementById</code> with a non-unique id produces undefined behavior, meaning browsers have to guess what you actually mean, and will return whatever they think you meant.</p>
<p>You may also possibly be running that Javascript before the page has completely loaded. To fix this, the simplest solution would be to move all of your script tags to the bottom of the page (just before the closing <code></body></code> tag). </p>
http://stackoverflow.com/questions/1495510/combining-dictionaries-of-lists-in-python/1495552#14955523Answer by Triptych for Combining Dictionaries Of Lists In PythonTriptych2009-09-30T00:09:15Z2009-09-30T00:15:54Z<p>defaltdict to the rescue (as usual)</p>
<pre><code>from collections import defaultdict
my_dict = defaultdict(list)
for key,value in original_list:
my_dict[key].append(value)
</code></pre>
<p>Combining the two dicts can be done like this (note that duplicates will be preserved):</p>
<pre><code>for key,value in orig_dict:
new_dict[key].extend(value)
</code></pre>
http://stackoverflow.com/questions/1489032/what-is-the-efficient-algorithm-for-solving-jigshaw-puzzle/1489059#14890590Answer by Triptych for What is the efficient Algorithm for Solving Jigshaw Puzzle ?Triptych2009-09-28T20:02:04Z2009-09-28T20:02:04Z<p>Assuming you're not going to get into any computer vision stuff, it would be very small variations on a search of the entire problem space, i.e. trying every piece until one fits, and repeating. The major optimization would be not trying the same piece in the same place if you know it doesn't fit. Side/corner pieces make up relatively few of the pieces and probably couldn't be considered in any major optimization.</p>
<p>The data structure would probably be something like a hash matrix, where you could quickly check if you're already tried a piece in a position.</p>
<p>An easy optimization that includes computer vision would be to try pieces at each position after sorting pieces by how close their average color matches adjacent positions.</p>
<p>This just off the top of my head of course.</p>
http://stackoverflow.com/questions/1477980/python-chat-delete-variables-to-clean-memory-in-functions/1478088#14780880Answer by Triptych for Python chat : delete variables to clean memory in functions?Triptych2009-09-25T15:44:19Z2009-09-25T15:53:50Z<p>Python objects are never explicitly deleted. The only way to truly reclaim memory from unreferenced Python objects is via the garbage collector. The <code>del</code> keyword simply unbinds a name from an object, but the object still needs to be garbage collected. </p>
<p>If you really think you have to, you can force the garbage collector to run using the <a href="http://docs.python.org/library/gc.html" rel="nofollow"><code>gc</code></a> module, but this is almost certainly a premature optimization, and you are quite likely to garbage collect at inopportune times or otherwise inefficiently unless you <em>really</em> know what you're doing.</p>
<p>Using <code>del</code> as you have above has no real effect, since those names would have been deleted as they went out of scope anyway. You would need to follow up with an explicit garbage collection to be sure(r).</p>
http://stackoverflow.com/questions/1477921/should-i-care-about-javascript-engine-speed-when-using-jquery/1478031#14780310Answer by Triptych for Should I care about JavaScript engine speed when using jQuery?Triptych2009-09-25T15:32:42Z2009-09-25T15:32:42Z<p>No, you shouldn't care about it, because it shouldn't affect how you write code. </p>
<p>That is to say, you should ALWAYS write efficient Javascript, both because it's just good practice, and because for most sites you have no idea what browser any particular user is running, so you may as well assume the worst.</p>
http://stackoverflow.com/questions/1471924/small-tables-in-python/1472092#14720921Answer by Triptych for Small Tables in Python?Triptych2009-09-24T14:31:39Z2009-09-24T14:31:39Z<p>If it's really a small amount of data, I'd not bother with an index and probably just write a helper function:</p>
<pre><code>users = [
dict(Name="Mr. Foo", Location="Boston", Type="Secondary"),
dict(Name="Mr. Bar", Location="New York", Type="Primary"),
dict(Name="Mr. Quux", Location="Chicago", Type="Secondary"),
]
def search(dictlist, **kwargs):
def match(d):
for k,v in kwargs.iteritems():
try:
if d[k] != v:
return False
except KeyError:
return False
return True
return [d for d in dictlist if match(d)]
</code></pre>
<p>Which will allow nice looking queries like this:</p>
<pre><code>result = search(users, Type="Secondary")
</code></pre>
http://stackoverflow.com/questions/1456373/two-way-reverse-map-python/1456390#14563903Answer by Triptych for Two way / reverse map [python]Triptych2009-09-21T19:31:29Z2009-09-21T19:31:29Z<p>Two hash maps is actually probably the fastest-performing solution assuming you can spare the memory. I would wrap those in a single class - the burden on the programmer is in ensuring that two the hash maps sync up correctly.</p>
http://stackoverflow.com/questions/1800559/firebug-debugging-javascript/1800565#1800565Comment by Triptych on Firebug debugging JavaScriptTriptych2009-11-25T23:08:18Z2009-11-25T23:08:18ZThen set a breakpoint on the first line of the event handler.http://stackoverflow.com/questions/1759455/how-can-i-account-for-am-or-pm-with-datetime-strptimeComment by Triptych on How can I account for "AM" or "PM" with datetime.strptime?Triptych2009-11-18T22:12:01Z2009-11-18T22:12:01ZThanks to everyone for the quick answers. Wish I could upvote more than once. http://stackoverflow.com/questions/1759455/how-can-i-account-for-am-or-pm-with-datetime-strptime/1759485#1759485Comment by Triptych on How can I account for "AM" or "PM" with datetime.strptime?Triptych2009-11-18T22:10:00Z2009-11-18T22:10:00ZUgh. Of course. Thanks.http://stackoverflow.com/questions/1732234/the-correct-caseformat-of-variable-and-methods-and-for-python/1732241#1732241Comment by Triptych on The correct case&format of variable and methods and for PythonTriptych2009-11-13T22:15:05Z2009-11-13T22:15:05ZWow - so I answered first, but my edit/expansion makes it look like I answered second. Is that new?http://stackoverflow.com/questions/1680856/google-apps-engine-mail-fetch/1681002#1681002Comment by Triptych on Google Apps Engine mail fetchTriptych2009-11-12T18:26:30Z2009-11-12T18:26:30Z@Alfred - it is a bad answer based on a reasonable misunderstanding. I think other people might try the approach I suggested, but it won't work for the reason Nick Johnson cited. In my opinion it should be downvoted once and left as a warning. I only have issue when innocently wrong answers are downvoted multiple times.http://stackoverflow.com/questions/1680856/google-apps-engine-mail-fetch/1681002#1681002Comment by Triptych on Google Apps Engine mail fetchTriptych2009-11-09T15:11:17Z2009-11-09T15:11:17ZHaha it's fine. Thanks for standing up for me.http://stackoverflow.com/questions/1689463/javascript-clearComment by Triptych on Javascript clearTriptych2009-11-06T18:38:13Z2009-11-06T18:38:13ZWhat exactly do you expect clear() to do? Remove all options from the list?http://stackoverflow.com/questions/1688712/how-flatten-a-list-of-lists-one-stepComment by Triptych on How flatten a list of lists one step Triptych2009-11-06T16:34:49Z2009-11-06T16:34:49ZHow deep can the nested levels of lists be. Just 2, as in your example?http://stackoverflow.com/questions/1538663/newbie-question-why-are-python-strings-and-tuples-are-made-immutable/1538689#1538689Comment by Triptych on newbie question: why are python strings and tuples are made immutable?Triptych2009-10-27T19:01:39Z2009-10-27T19:01:39ZBuuuuut you can key by any user-created object instance, which are obviously mutable. The "key" then is probably just the memory address, and if strings were mutable, you could still key by their unique memory address. http://stackoverflow.com/questions/1596390/filtering-lists-in-python/1596471#1596471Comment by Triptych on filtering lists in pythonTriptych2009-10-22T15:18:26Z2009-10-22T15:18:26Zwhat pbh said. Membership test in a list is O(n). That * the loop = O(n^2). This page is helpful: <a href="http://wiki.python.org/moin/TimeComplexity" rel="nofollow">wiki.python.org/moin/TimeComplexity</a>http://stackoverflow.com/questions/1601269/python-how-to-make-a-completely-unshared-copy-of-a-complicated-list-deep-copyComment by Triptych on Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)Triptych2009-10-21T14:44:43Z2009-10-21T14:44:43ZWhen you get a half hour, you may want to study Python's Data Model: <a href="http://docs.python.org/reference/datamodel.html" rel="nofollow">docs.python.org/reference/datamodel.html</a>http://stackoverflow.com/questions/1596390/filtering-lists-in-python/1596471#1596471Comment by Triptych on filtering lists in pythonTriptych2009-10-20T18:33:21Z2009-10-20T18:33:21ZShould at least mention the O(n^2) performance characteristic, no?http://stackoverflow.com/questions/1595611/how-to-properly-create-a-custom-object-in-javascriptComment by Triptych on How to "properly" create a custom object in JavaScript?Triptych2009-10-20T16:35:51Z2009-10-20T16:35:51ZThere is no "best" way.http://stackoverflow.com/questions/1515850/how-to-run-both-python-2-6-and-3-0-on-the-same-windows-xp-box/1515858#1515858Comment by Triptych on how to run both python 2.6 and 3.0 on the same windows XP box?Triptych2009-10-19T13:58:19Z2009-10-19T13:58:19Z@dbr i said lack of a print statement, not a print function.http://stackoverflow.com/questions/1330498/what-is-cross-browser-support-for-javascript-1-7s-new-features-specifically-arr/1330753#1330753Comment by Triptych on What is cross browser support for JavaScript 1.7's new features? Specifically array comprehensions and the "let" statement.Triptych2009-10-19T13:53:55Z2009-10-19T13:53:55Zv8 is Google's javascript engine, not microsoft's.