User Triptych - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:57:47Z http://stackoverflow.com/feeds/user/43089 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1800559/firebug-debugging-javascript/1800565#1800565 1 Answer by Triptych for Firebug debugging JavaScript Triptych 2009-11-25T23:05:25Z 2009-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-strptime 2 How can I account for "AM" or "PM" with datetime.strptime? Triptych 2009-11-18T22:04:41Z 2009-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#1732241 4 Answer by Triptych for The correct case&format of variable and methods and for Python Triptych 2009-11-13T22:14:12Z 2009-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#1688773 1 Answer by Triptych for How flatten a list of lists one step Triptych 2009-11-06T16:38:27Z 2009-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 -1 Answer by Triptych for Google Apps Engine mail fetch Triptych 2009-11-05T14:45:41Z 2009-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#1631664 1 Answer by Triptych for Javascript strings to object Triptych 2009-10-27T15:35:42Z 2009-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#1603507 0 Answer by Triptych for Recommend codebase to read and hone Python skills Triptych 2009-10-21T20:45:13Z 2009-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#1579799 3 Answer by Triptych for Fastest nested loops over a single list (with elements remove or not) Triptych 2009-10-16T18:59:33Z 2009-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 &lt; 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: &lt;%d&gt;" % 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 &lt; 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#1579759 3 Answer by Triptych for How do I know what data type to use in Python? Triptych 2009-10-16T18:50:42Z 2009-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#1566910 3 Answer by Triptych for Is there a dictionary that contains the function's parameters in Python? Triptych 2009-10-14T15:03:41Z 2009-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#1562795 8 Answer by Triptych for Can Python print a function definition? Triptych 2009-10-13T20:41:18Z 2009-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>&gt;&gt;&gt; import re &gt;&gt;&gt; import inspect &gt;&gt;&gt; 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#449000 16 Answer by Triptych for What characters are valid in CSS class names? Triptych 2009-01-15T23:42:27Z 2009-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#1545929 2 Answer by Triptych for How to replace the quote " and hyphen character in a string with nothing in Python? Triptych 2009-10-09T20:35:13Z 2009-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>&gt;&gt;&gt; s = 'No- dashes or "quotes"' &gt;&gt;&gt; s.translate(None, '"-') 'No dashes or quotes' </code></pre> <p>Per SilentGhost's comment, this gets to be cumbersome pretty quickly in both &lt;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#1545819 2 Answer by Triptych for Python mechanize doesn't click a button Triptych 2009-10-09T20:10:05Z 2009-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#1545678 8 Answer by Triptych for How do I replace all punctuation in my string with "" in Python? Triptych 2009-10-09T19:36:50Z 2009-10-09T19:36:50Z <p>Simple regular expression:</p> <pre><code>import re &gt;&gt;&gt; s = "Business -- way's" &gt;&gt;&gt; s = re.sub(r'[^\w\s]', '', s) &gt;&gt;&gt; s "Business ways" </code></pre> http://stackoverflow.com/questions/1544672/storing-parameters-in-a-class-and-how-to-access-them/1544694#1544694 6 Answer by Triptych for Storing parameters in a class, and how to access them. Triptych 2009-10-09T16:03:20Z 2009-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#1544637 0 Answer by Triptych for Condense this Python statement without destroying readability Triptych 2009-10-09T15:52:43Z 2009-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 &lt; 0: return 'UH OH!' else: return 'OK' </code></pre> <p>In practice:</p> <pre><code>&gt;&gt;&gt; no_negatives(9) 'OK' &gt;&gt;&gt; no_negatives(0) 'OK' &gt;&gt;&gt; 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#1543844 3 Answer by Triptych for Comprehensions in Python and Javascript are only very basic? Triptych 2009-10-09T13:42:04Z 2009-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>&gt;&gt;&gt; [(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#1535554 2 Answer by Triptych for Resource scheduling application Triptych 2009-10-08T04:00:23Z 2009-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 = &lt;thursday, 1pm&gt; proposed.end = &lt;thursday, 2pm&gt; # Look for meetings that intersect with or straddle proposed meeting conflicts = &lt;SELECT * FROM meeting WHERE meeting.start BETWEEN proposed.start AND proposed.end OR meeting.end BETWEEN proposed.start AND proposed.end OR meeting.start &lt;= proposed.start AND meeting.end &gt;= proposed.end&gt; if conflicts.length &gt; 0: # We have a conflict! </code></pre> http://stackoverflow.com/questions/1531402/for-list-unless-empty-in-python/1531505#1531505 2 Answer by Triptych for For list unless empty in python Triptych 2009-10-07T13:02:12Z 2009-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#1528137 0 Answer by Triptych for Regex for extraction in Python Triptych 2009-10-06T21:14:40Z 2009-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#1511600 0 Answer by Triptych for Python loop | "do-while" over a tree Triptych 2009-10-02T20:19:21Z 2009-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#1510415 0 Answer by Triptych for HTML: Making a link lead to the anchor centered in the middle of the page Triptych 2009-10-02T15:55:50Z 2009-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#1497409 1 Answer by Triptych for Javascript Incompatibility with Mozilla Triptych 2009-09-30T10:58:05Z 2009-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>&lt;/body&gt;</code> tag). </p> http://stackoverflow.com/questions/1495510/combining-dictionaries-of-lists-in-python/1495552#1495552 3 Answer by Triptych for Combining Dictionaries Of Lists In Python Triptych 2009-09-30T00:09:15Z 2009-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#1489059 0 Answer by Triptych for What is the efficient Algorithm for Solving Jigshaw Puzzle ? Triptych 2009-09-28T20:02:04Z 2009-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#1478088 0 Answer by Triptych for Python chat : delete variables to clean memory in functions? Triptych 2009-09-25T15:44:19Z 2009-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#1478031 0 Answer by Triptych for Should I care about JavaScript engine speed when using jQuery? Triptych 2009-09-25T15:32:42Z 2009-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#1472092 1 Answer by Triptych for Small Tables in Python? Triptych 2009-09-24T14:31:39Z 2009-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#1456390 3 Answer by Triptych for Two way / reverse map [python] Triptych 2009-09-21T19:31:29Z 2009-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#1800565 Comment by Triptych on Firebug debugging JavaScript Triptych 2009-11-25T23:08:18Z 2009-11-25T23:08:18Z Then 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-strptime Comment by Triptych on How can I account for "AM" or "PM" with datetime.strptime? Triptych 2009-11-18T22:12:01Z 2009-11-18T22:12:01Z Thanks 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#1759485 Comment by Triptych on How can I account for "AM" or "PM" with datetime.strptime? Triptych 2009-11-18T22:10:00Z 2009-11-18T22:10:00Z Ugh. Of course. Thanks. http://stackoverflow.com/questions/1732234/the-correct-caseformat-of-variable-and-methods-and-for-python/1732241#1732241 Comment by Triptych on The correct case&format of variable and methods and for Python Triptych 2009-11-13T22:15:05Z 2009-11-13T22:15:05Z Wow - 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#1681002 Comment by Triptych on Google Apps Engine mail fetch Triptych 2009-11-12T18:26:30Z 2009-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#1681002 Comment by Triptych on Google Apps Engine mail fetch Triptych 2009-11-09T15:11:17Z 2009-11-09T15:11:17Z Haha it's fine. Thanks for standing up for me. http://stackoverflow.com/questions/1689463/javascript-clear Comment by Triptych on Javascript clear Triptych 2009-11-06T18:38:13Z 2009-11-06T18:38:13Z What 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-step Comment by Triptych on How flatten a list of lists one step Triptych 2009-11-06T16:34:49Z 2009-11-06T16:34:49Z How 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#1538689 Comment by Triptych on newbie question: why are python strings and tuples are made immutable? Triptych 2009-10-27T19:01:39Z 2009-10-27T19:01:39Z Buuuuut you can key by any user-created object instance, which are obviously mutable. The &quot;key&quot; 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#1596471 Comment by Triptych on filtering lists in python Triptych 2009-10-22T15:18:26Z 2009-10-22T15:18:26Z what 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-copy Comment by Triptych on Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough) Triptych 2009-10-21T14:44:43Z 2009-10-21T14:44:43Z When 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#1596471 Comment by Triptych on filtering lists in python Triptych 2009-10-20T18:33:21Z 2009-10-20T18:33:21Z Should at least mention the O(n^2) performance characteristic, no? http://stackoverflow.com/questions/1595611/how-to-properly-create-a-custom-object-in-javascript Comment by Triptych on How to "properly" create a custom object in JavaScript? Triptych 2009-10-20T16:35:51Z 2009-10-20T16:35:51Z There is no &quot;best&quot; way. http://stackoverflow.com/questions/1515850/how-to-run-both-python-2-6-and-3-0-on-the-same-windows-xp-box/1515858#1515858 Comment by Triptych on how to run both python 2.6 and 3.0 on the same windows XP box? Triptych 2009-10-19T13:58:19Z 2009-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#1330753 Comment by Triptych on What is cross browser support for JavaScript 1.7's new features? Specifically array comprehensions and the "let" statement. Triptych 2009-10-19T13:53:55Z 2009-10-19T13:53:55Z v8 is Google's javascript engine, not microsoft's.