User davidavr - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:22:03Z http://stackoverflow.com/feeds/user/8247 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1451486/access-file-name-in-automator-from-folder-action 0 Access file name in Automator from Folder Action davidavr 2009-09-20T17:15:26Z 2009-09-20T17:52:27Z <p>I'm trying to create a simple Automator workflow that will prompt me for where to move and rename a PDF when I download one from the web. I want to use this for downloading my monthly financial statements.</p> <p>I'm getting stuck at what I thought would be a simple problem: passing the name of the new file(s) from the Folder Action into the Automator workflow.</p> <p>How is this done? I tried the "Get Specified Finder Items" action, disabling its input, and passed that to "Set Value of Variable" and in turn to "Ask for Conformation" so I could display the name of the file. It seems whatever I try, I cannot find how to pass the name of the newly downloaded files to the Automator workflow.</p> <p>This seems like it should be simple. Does someone have an example of an Automator workflow triggered by a Folder Action that passes the files into the workflow?</p> http://stackoverflow.com/questions/185673/how-do-i-sync-application-data-between-an-iphone-and-another-computer 10 How do I sync application data between an iPhone and another computer? davidavr 2008-10-09T02:13:07Z 2009-08-16T16:55:26Z <p>I'm working on an iPhone application that would allow viewing and editing of data that I want to keep in sync with a desktop application. I don't see anything in the SDK that directly addresses data synchronization, nor can I find anything that allows my to "hook" into the iTunes sync process.</p> <p>I could do something kludgy like hiding the data in a photo or address book entry, but that just seems like a bad idea. I could use WebDAV or HTTP to get/put data to a server, but it makes the application more complicated.</p> <p>I guess I was expecting this to be a common use-case for iPhone apps (syncing arbitrary application data between a desktop and the iPhone) and that there would be a set of APIs in the SDK that cover this. Maybe there is and I just can't find it.</p> http://stackoverflow.com/questions/87058/how-do-you-submit-a-csr-certificate-signing-request-to-the-apple-developer-port 1 How do you submit a CSR (Certificate Signing Request) to the Apple Developer Portal? davidavr 2008-09-17T20:05:05Z 2009-08-11T04:38:09Z <p>According to <a href="http://developer.apple.com/iphone/gettingstarted/docs/signingcodeforiphonedev.action" rel="nofollow">this link</a> on Apple's Developer site (login required):</p> <blockquote> <p>you use the Certificate Assistant in the Keychain Access utility to create a Certificate Signing Request (CSR), which you submit for approval using the Program Portal of the iPhone Developer Program</p> </blockquote> <p>Well I've created the certificate but I've had no luck finding out how to submit the certificate for approval. I was hoping to do this without signing up for the developer program ($99) since I only want to test apps on my iPhone - not submit them to the App Store (yet).</p> <p>Can someone post the link to the "portal" where I can submit this?</p> http://stackoverflow.com/questions/600268/mkdir-p-functionality-in-python/600606#600606 1 Answer by davidavr for mkdir -p functionality in python davidavr 2009-03-01T21:47:58Z 2009-03-02T01:47:26Z <p>I think Asa's answer is essentially correct, but you could extend it a little to act more like <code>mkdir -p</code>, either:</p> <pre><code>import os def mkdir_path(path): if not os.access(path, os.F_OK): os.mkdirs(path) </code></pre> <p>or</p> <pre><code>import os import errno def mkdir_path(path): try: os.mkdirs(path) except os.error, e: if e.errno != errno.EEXIST: raise </code></pre> <p>These both handle the case where the path already exists silently but let other errors bubble up.</p> http://stackoverflow.com/questions/592931/why-doesnt-python-have-static-variables/593226#593226 7 Answer by davidavr for Why doesn't Python have static variables? davidavr 2009-02-27T01:41:57Z 2009-02-27T01:41:57Z <p>One alternative to a class is a function attribute:</p> <pre><code>def foo(arg): if not hasattr(foo, 'cache'): foo.cache = get_data_dict() return foo.cache[arg] </code></pre> <p>While a class is probably cleaner, this technique can be useful and is nicer, in my opinion, then a global. </p> http://stackoverflow.com/questions/585540/iphone-development-related-podcasts/585863#585863 1 Answer by davidavr for iPhone Development Related Podcasts? davidavr 2009-02-25T12:50:11Z 2009-02-25T12:50:11Z <p>The <a href="http://www.pragprog.com" rel="nofollow">Pragmatic Programmer</a> has some video casts, but they are $5 each. There is a two-part series on <a href="http://pragprog.com/screencasts/v-mcxcode/becoming-productive-in-xcode" rel="nofollow">using Xcode</a>, and five-part series on <a href="http://www.pragprog.com/screencasts/v-bdiphone/writing-your-first-iphone-application" rel="nofollow">writing your first iPhone application</a>.</p> http://stackoverflow.com/questions/584538/how-to-show-button-done-on-number-pad-on-iphone/584685#584685 0 Answer by davidavr for How to show button 'Done' on number pad on iPhone? davidavr 2009-02-25T04:07:06Z 2009-02-25T04:07:06Z <p>The trick I've seen used is to make a custom transparent button the size of the whole view and then in its click method, have the text field resign first responder. So the user can click anywhere outside of the field to dismiss the keypad.</p> http://stackoverflow.com/questions/571522/whats-the-reason-of-providing-some-of-the-default-methods-in-the-global-scope-in/571926#571926 0 Answer by davidavr for What's the reason of providing some of the default methods in the global scope in Python? davidavr 2009-02-21T01:53:36Z 2009-02-21T01:53:36Z <p>They are fairly discoverable:</p> <pre><code>&gt;&gt;&gt; import __builtin__ &gt;&gt;&gt; dir(__builtin__) ['ArithmeticError', 'AssertionError', ... ... </code></pre> <p>or better</p> <pre><code>&gt;&gt;&gt; help(__builtin__) Help on built-in module __builtin__: NAME __builtin__ - Built-in functions, exceptions, and other objects. ... </code></pre> http://stackoverflow.com/questions/515917/where-do-you-put-global-application-data-in-an-iphone-app 3 Where do you put global application data in an iPhone app? davidavr 2009-02-05T13:38:26Z 2009-02-05T18:20:57Z <p>I have an app that allows the user to view, manipulate and manage a collection of Schedule objects. Different parts of the app need access to this data. I've experimented with making the collection a singleton, but I didn't find that very clean.</p> <p>I recently changed to storing the global data in the AppDelegate class and using:</p> <pre><code>MyAppDelegate *delegate = [[UIApplication sharedApplication] delegate]; [delegate.myGlobalData doSomething]; </code></pre> <p>Which eliminates the need for my global data to be a singleton, but is really just taking advantage of the UIApplication singleton.</p> <p>There really isn't just one primary view controller where it makes sense to store it in my case. So I was wondering what different strategies people use to address this.</p> http://stackoverflow.com/questions/497654/django-workflow-when-modifying-models-frequently/498098#498098 2 Answer by davidavr for Django workflow when modifying models frequently? davidavr 2009-01-31T02:43:29Z 2009-01-31T02:43:29Z <p>To add to Matthew's response, I often also use custom SQL to provide initial data as documented <a href="http://docs.djangoproject.com/en/dev/howto/initial-data/#providing-initial-sql-data" rel="nofollow">here</a>.</p> <p>Django just looks for files in <code>&lt;app&gt;/sql/&lt;modelname&gt;.sql</code> and runs them after creating tables during <code>syncdb</code> or <code>sqlreset</code>. I use custom SQL when I need to do something like populate my Django tables from other non-Django database tables.</p> http://stackoverflow.com/questions/494554/best-remote-desktop-software-for-mac/495673#495673 3 Answer by davidavr for Best Remote Desktop Software for Mac davidavr 2009-01-30T14:32:40Z 2009-01-30T14:32:40Z <p>I use UltraVNC from Windows with the built-in Screen Sharing and it works fine. You just need to setup the right port forwarding on the firewall (5500 is the default for VNC).</p> http://stackoverflow.com/questions/490508/left-function-in-javascript-or-jquery/491526#491526 2 Answer by davidavr for Left() function in Javascript or jQuery davidavr 2009-01-29T13:06:34Z 2009-01-29T13:06:34Z <p>To answer your other question, you can add a <code>left()</code> funtion to JavaScript's built-in <code>String</code> <code>prototype</code> class so all other strings will inherit it:</p> <pre><code>String.prototype.left = function(n) { return this.substring(0, n); } </code></pre> <p>And once you include this you can say:</p> <pre><code>var num = "1008px".left(4); </code></pre> <p>I add helpers like <code>trim</code> and <code>capitalize</code> in a base JavaScript file for these kinds of things.</p> http://stackoverflow.com/questions/476261/python-as-your-main-language-possible/480618#480618 0 Answer by davidavr for Python as your main language. Possible? davidavr 2009-01-26T17:30:05Z 2009-01-26T17:30:05Z <p>At my current job, we use Python almost exclusively (except for a little bit of VBA in Excel when we are forced to). It was a decision I made here when I started and have never regretted it. It is a little tougher to find people with Python experience, though, so I really look for good programmers that are interested in learning.</p> <p>But that's also an opportunity for you: while there may be fewer Python jobs than Java jobs, for example, there are also fewer people with Python skills than Java skills so if you know Python, you may have a better shot at those openings.</p> http://stackoverflow.com/questions/479897/how-do-you-remove-duplicates-from-a-list-in-python/480135#480135 0 Answer by davidavr for How do you remove duplicates from a list in Python? davidavr 2009-01-26T15:22:18Z 2009-01-26T15:22:18Z <p>> but I don't know how to retrieve the list members from the hash in alphabetical order.</p> <p>Not really your main question, but for future reference Rod's answer using <code>sorted</code> can be used for traversing a <code>dict</code>'s keys in sorted order:</p> <pre><code>for key in sorted(my_dict.keys()): print key, my_dict[key] ... </code></pre> <p>and also because <code>tuple</code>'s are ordered by the first member of the tuple, you can do the same with <code>items</code>:</p> <pre><code>for key, val in sorted(my_dict.items()): print key, val ... </code></pre> http://stackoverflow.com/questions/372434/jquery-autocomplete-how-to-handle-extra-data/372858#372858 3 Answer by davidavr for jQuery autocomplete - How to handle extra data? davidavr 2008-12-16T21:39:58Z 2008-12-16T21:39:58Z <p>Use the <code>result</code> method of the <code>autocomplete</code> plugin to handle this. The data is passed as an array to the callback and you just need to save <code>data[1]</code> somewhere. Something like this:</p> <pre><code>$("#my_field").autocomplete(...).result(function(event, data, formatted) { if (data) { $("#the_id").attr("value", data[1]); } }); </code></pre> http://stackoverflow.com/questions/370055/programatically-switching-views-in-cocoa-touch/370390#370390 4 Answer by davidavr for Programatically Switching Views in Cocoa Touch davidavr 2008-12-16T03:29:18Z 2008-12-16T03:29:18Z <p>I use <code>presentModalViewController:animated:</code> to bring up a settings view from my main window's <code>UIViewController</code> and then when the user presses "done" in the settings view I call <code>dismissModalViewControllerAnimated:</code> from the settings view (reaching back to the parent view) like this:</p> <pre><code>[[self parentViewController] dismissModalViewControllerAnimated:YES]; </code></pre> http://stackoverflow.com/questions/362426/implementing-a-command-action-parameter-style-command-line-interfaces/362700#362700 5 Answer by davidavr for Implementing a "[command] [action] [parameter]" style command-line interfaces? davidavr 2008-12-12T13:17:11Z 2008-12-12T13:17:11Z <p>The <code>cmd</code> module would probably work well for this.</p> <p>Example:</p> <pre><code>import cmd class Calc(cmd.Cmd): def do_add(self, arg): print sum(map(int, arg.split())) if __name__ == '__main__': Calc().cmdloop() </code></pre> <p>Run it:</p> <pre><code>$python calc.py (Cmd) add 4 5 9 (Cmd) help Undocumented commands: ====================== add help (Cmd) </code></pre> <p>See the <a href="http://docs.python.org/library/cmd.html" rel="nofollow">Python docs</a> or <a href="http://blog.doughellmann.com/2008/05/pymotw-cmd.html" rel="nofollow">PyMOTW site</a> for more info.</p> http://stackoverflow.com/questions/361675/python-doctest-vs-unittest/361788#361788 3 Answer by davidavr for Python - doctest vs. unittest davidavr 2008-12-12T03:25:02Z 2008-12-12T03:25:02Z <p>Using both is a valid and rather simple option. The <code>doctest</code> module provides the <code>DoctTestSuite</code> and <code>DocFileSuite</code> methods which create a unittest-compatible testsuite from a module or file, respectively.</p> <p>So I use both and typically use doctest for simple tests with functions that require little or no setup (simple types for arguments). I actually think a few doctest tests <em>help</em> document the function, rather than detract from it.</p> <p>But for more complicated cases, and for a more comprehensive set of test cases, I use unittest which provides more control and flexibility.</p> http://stackoverflow.com/questions/357997/does-python-have-something-like-anonymous-inner-classes-of-java/359651#359651 5 Answer by davidavr for Does Python have something like anonymous inner classes of Java? davidavr 2008-12-11T15:06:37Z 2008-12-11T15:06:37Z <p>Python doesn't support this directly (anonymous classes) but because of its terse syntax it isn't really necessary:</p> <pre><code>class MyOptionParser(OptionParser): def exit(self, status=0, msg=None): # body of method p = MyOptionParser() </code></pre> <p>The only downside is you add MyOptionParser to your namespace, but as John Fouhy pointed out, you can hide that inside a function if you are going to do it multiple times.</p> http://stackoverflow.com/questions/358016/convert-python-to-c/358109#358109 14 Answer by davidavr for Convert Python to C# davidavr 2008-12-11T00:33:01Z 2008-12-11T00:33:01Z <p>I would think in the time it takes you to figure out a way to do such a conversion with output that is actually useful, you could learn Python enough to follow the code. It has one of the simplest syntaxes of any language and some people even refer to it as "executable pseudo-code."</p> <p>You might also learn something else along the way...</p> http://stackoverflow.com/questions/309945/how-to-quote-a-string-value-explicitly-python-db-api-psycopg2/310011#310011 0 Answer by davidavr for How to quote a string value explicitly (Python DB API/Psycopg2) davidavr 2008-11-21T20:07:31Z 2008-11-21T20:07:31Z <p>This is going to be DB dependent. In the case of MySQLdb, for example, the <code>connection</code> class has a <code>literal</code> method that will convert the value to the correct escaped representation for passing to MySQL (that's what <code>cursor.execute</code> uses).</p> <p>I imagine Postgres has something similar, but I don't think there is a function to escape values as part of the DB API 2.0 spec.</p> http://stackoverflow.com/questions/272188/code-coverage-and-unit-testing-of-python-code/272605#272605 2 Answer by davidavr for Code Coverage and Unit Testing of Python Code davidavr 2008-11-07T16:22:17Z 2008-11-07T16:22:17Z <p>There is also <a href="http://darcs.idyll.org/~t/projects/figleaf/doc/" rel="nofollow">figleaf</a> which I think is based on Ned Batchelder's coverage.py. We use <a href="http://somethingaboutorange.com/mrl/projects/nose/" rel="nofollow">nose</a> as the driver for the testing. It all works pretty well. We write our unit tests using the built-in unittest and doctest modules.</p> http://stackoverflow.com/questions/211695/what-is-an-easy-way-to-create-a-trivial-one-off-python-object/211918#211918 2 Answer by davidavr for What is an easy way to create a trivial one-off Python object? davidavr 2008-10-17T12:19:07Z 2008-10-17T12:19:07Z <p>I use <a href="http://code.activestate.com/recipes/361668/" rel="nofollow">attrdict</a>:</p> <pre><code>class attrdict(dict): def __init__(self, *args, **kwargs): dict.__init__(self, *args, **kwargs) self.__dict__ = self </code></pre> <p>Depending on your point of view, you probably think it's either a big kludge or quite clever. But whatever you think, it does make for nice looking code, and is compatible with a dict:</p> <pre><code>&gt;&gt;&gt; ad = attrdict({'foo': 100, 'bar': 200}) &gt;&gt;&gt; ad.foo 100 &gt;&gt;&gt; ad.bar 200 &gt;&gt;&gt; ad.baz = 'hello' &gt;&gt;&gt; ad.baz 'hello' &gt;&gt;&gt; ad {'baz': 'hello', 'foo': 100, 'bar': 200} &gt;&gt;&gt; isinstance(ad, dict) True </code></pre> http://stackoverflow.com/questions/202939/which-python-framework-to-use/203332#203332 1 Answer by davidavr for which python framework to use? davidavr 2008-10-15T00:31:10Z 2008-10-15T00:31:10Z <p>You should also take a look at <a href="http://mdp.cti.depaul.edu/" rel="nofollow">web2py</a> which has good docs and is a very nice framework for building wep apps.</p> http://stackoverflow.com/questions/193919/what-are-good-rules-of-thumb-for-python-imports/194085#194085 2 Answer by davidavr for What are good rules of thumb for python imports? davidavr 2008-10-11T13:49:34Z 2008-10-11T20:21:18Z <p>Others have covered most of the ground here but I just wanted to add one case where I will use <code>import X as Y</code> (temporarily), when I'm trying out a new version of a class or module.</p> <p>So if we were migrating to a new implementation of a module, but didn't want to cut the code base over all at one time, we might write a <code>xyz_new</code> module and do this in the source files that we had migrated:</p> <pre><code>import xyz_new as xyz </code></pre> <p>Then, once we cut over the entire code base, we'd just replace the <code>xyz</code> module with <code>xyz_new</code> and change all of the imports back to</p> <pre><code>import xyz </code></pre> http://stackoverflow.com/questions/189912/what-package-manager-do-you-prefer-for-mac-os-x/191114#191114 4 Answer by davidavr for What package manager do you prefer for Mac OS X? davidavr 2008-10-10T12:53:06Z 2008-10-10T12:53:06Z <p>I used to use MacPorts but more recently have been just using the source and building locally. The problem I kept running into with MacPorts and Fink was that sometimes the package I wanted to get had only been built against an older version of other libraries so it would want to install a bunch of older dependencies to get the one simple thing I wanted working.</p> <p>This was really a problem when it came to simple Python libraries: I'd try to install some Python library from MacPorts which had only been "built" against 2.4 and I only had 2.5 installed so MacPorts would <em>pull down and install the full Python 2.4 distro along with the library</em>.</p> <p>I'm finding most source distros "just work" on OS X these days so it hasn't been a big problem.</p> http://stackoverflow.com/questions/185536/in-opengl-how-can-you-get-items-to-draw-back-to-front/189939#189939 0 Answer by davidavr for In openGL, how can you get items to draw back to front? davidavr 2008-10-10T02:38:24Z 2008-10-10T02:38:24Z <p>As AlanKley pointed out, the way to do this is to disable the depth buffer. The painter's algorithm is really a 2D scan-conversion technique used to render polygons in the correct order when you don't have something like a z-buffer. But you wouldn't apply it to 3D polygons. You'd typically transform and project them (handling intersections with other polygons) and then sort the resulting list of 2D projected polygons by their projected z-coordinate, then draw them in reverse z-order.</p> <p>I've always thought of the painter's algorithm as an alternate technique for hidden surface removal when you can't (or don't want to) use a z-buffer.</p> http://stackoverflow.com/questions/186916/configuration-file-with-list-of-key-value-pairs-in-python/187135#187135 1 Answer by davidavr for Configuration file with list of key-value pairs in python davidavr 2008-10-09T12:57:56Z 2008-10-09T12:57:56Z <p>I typically do as Daren suggested, just make your config file a Python script:</p> <pre><code>patterns = { 'file .* does not exist': 'file not found', 'user .* not found': 'authorization error', } </code></pre> <p>Then you can use it as:</p> <pre><code>import config for pattern in config.patterns: if re.search(pattern, log_message): print config.patterns[pattern] </code></pre> <p>This is what Django does with their settings file, by the way.</p> http://stackoverflow.com/questions/185389/mvc-model-structure-in-python/185692#185692 4 Answer by davidavr for MVC model structure in Python davidavr 2008-10-09T02:22:03Z 2008-10-09T02:22:03Z <p>There is an inconsistency in your specification. You say Database.py needs to import all Model classes to do ORM but then you say the User class need access to the Database to do queries.</p> <p>Think of these as layers of an API. The Database class provides an API (maybe object-oriented) to some physical persistence layer (such as DB-API 2.0). The Model classes, like User, use the Database layer to load and save their state. There is no reason for the Database.py class to import all the Model classes, and in fact you wouldn't want that because you'd have to modify Database.py each time you created a new Model class - which is a code smell.</p> http://stackoverflow.com/questions/176918/in-python-how-do-i-find-the-index-of-an-item-given-a-list-containing-it/178399#178399 4 Answer by davidavr for In Python, how do I find the index of an item given a list containing it? davidavr 2008-10-07T13:19:56Z 2008-10-07T13:19:56Z <p>One thing that is really helpful in learning Python is to use the interactive help function:</p> <pre><code>&gt;&gt;&gt; help(["foo", "bar", "baz"]) Help on list object: class list(object) ... | | index(...) | L.index(value, [start, [stop]]) -&gt; integer -- return first index of value | </code></pre> <p>which will often lead you to the method you are looking for.</p> http://stackoverflow.com/questions/1451486/access-file-name-in-automator-from-folder-action/1451571#1451571 Comment by davidavr on Access file name in Automator from Folder Action davidavr 2009-09-20T18:12:21Z 2009-09-20T18:12:21Z @Hai - thanks, that seems to work. And I can also pass the name of the new file to a shell script via &quot;Run Shell Script&quot; using stdin. http://stackoverflow.com/questions/87058/how-do-you-submit-a-csr-certificate-signing-request-to-the-apple-developer-port/1258471#1258471 Comment by davidavr on How do you submit a CSR (Certificate Signing Request) to the Apple Developer Portal? davidavr 2009-08-19T02:28:09Z 2009-08-19T02:28:09Z Josh Gagnon provided a link above, but to summarize: 1) After creating a CSR, log in to the iPhone Developer Program Portal and navigate to ‘Certificates’ &gt; ‘Development’ and click ‘Add Certificate’. 2) Click the ‘Choose file’ button, select your CSR and click ‘Submit’. If the Key Size was not set to 2048 bits during the CSR creation process, the Portal will reject the CSR. 3) Upon submission, Team Admins will be notified via email of the certificate request. 4) Once your CSR is approved or rejected by a Team Admin, you will be notified via email of the change in your certificate status. http://stackoverflow.com/questions/592931/why-doesnt-python-have-static-variables/593226#593226 Comment by davidavr on Why doesn't Python have static variables? davidavr 2009-02-27T12:37:09Z 2009-02-27T12:37:09Z @gs: Yes, this is a shortcoming. I was looking for some way to reference the current function instead of using the name (something like self) but I don't think there is such a way. You could do a &quot;this = foo&quot; at the very top and then reference &quot;this&quot; everywhere so a rename would be easy to maintain. http://stackoverflow.com/questions/585540/iphone-development-related-podcasts/585863#585863 Comment by davidavr on iPhone Development Related Podcasts? davidavr 2009-02-26T18:54:56Z 2009-02-26T18:54:56Z @schooner: You could read the discussion forums for the videos. Here is the one for Writing Your first iPhone Application: <a href="http://forums.pragprog.com/forums/84" rel="nofollow">forums.pragprog.com/forums/84</a> http://stackoverflow.com/questions/585540/iphone-development-related-podcasts/585863#585863 Comment by davidavr on iPhone Development Related Podcasts? davidavr 2009-02-26T04:20:35Z 2009-02-26T04:20:35Z @schooner: Sorry, I should have been more clear that I hadn't actually watched them. I just wanted to point them out because I stumbled across a blog that spoke highly of them. I think there might be free previews of some of them so you can get a taste without laying down any cash. http://stackoverflow.com/questions/577562/is-python-a-job-seekers-choice/577788#577788 Comment by davidavr on Is Python a job seeker's choice davidavr 2009-02-23T15:58:20Z 2009-02-23T15:58:20Z I call bull. I'm the CTO at my firm and I picked Python because it made sense for what we were trying to do. We don't pick software, hardware or vendors based on who we can sue if things don't workout. That's ridiculous. We pick them on how they are going to help solve problems. http://stackoverflow.com/questions/90032/reasons-not-to-use-django/92535#92535 Comment by davidavr on Reasons not to use django davidavr 2009-02-09T17:29:25Z 2009-02-09T17:29:25Z Yes, I moved off Django in early/middle 2007 so I was on the dev branch of the 0.96 release. Waiting for aggregation support was not a realistic option at that point. Maybe in a few months it will be. http://stackoverflow.com/questions/497114/is-there-a-python-equivalent-of-perls-x-operator/497119#497119 Comment by davidavr on Is there a Python equivalent of Perl's x operator? davidavr 2009-02-02T14:34:12Z 2009-02-02T14:34:12Z @Mat: Note, I didn't say it was a dumb question. By &quot;lazy programmer&quot; I meant that people aren't looking very hard or experimenting in the interpreter very much before they post to SO. Maybe that's a good thing because it shows that SO is very effective at answering straightforward questions. http://stackoverflow.com/questions/497114/is-there-a-python-equivalent-of-perls-x-operator/497119#497119 Comment by davidavr on Is there a Python equivalent of Perl's x operator? davidavr 2009-01-31T02:45:14Z 2009-01-31T02:45:14Z @S.Lott: So right. SO is quickly becoming the lazy programmer's alternative to reading any documentation. http://stackoverflow.com/questions/490508/left-function-in-javascript-or-jquery/491526#491526 Comment by davidavr on Left() function in Javascript or jQuery davidavr 2009-01-29T13:27:33Z 2009-01-29T13:27:33Z @annakata: substr() has not been standardized by ECMAScript and is thus deprecated. And still, you'd need to specify the start and length, but you are right, left() is just a convenience. http://stackoverflow.com/questions/483666/python-reverse-inverse-a-mapping/483680#483680 Comment by davidavr on Python reverse / inverse a mapping davidavr 2009-01-29T12:56:08Z 2009-01-29T12:56:08Z @sykora: unless it's documented in the dict class, I think you are depending on an implementation detail which is risky. http://stackoverflow.com/questions/483666/python-reverse-inverse-a-mapping/483680#483680 Comment by davidavr on Python reverse / inverse a mapping davidavr 2009-01-27T22:11:25Z 2009-01-27T22:11:25Z Do values() and keys() guarantee that they will return their items in the same order? If not, then you wouldn't end up with the mapping that you started with. http://stackoverflow.com/questions/482405/parsing-a-file-with-column-data-in-python/482907#482907 Comment by davidavr on Parsing a file with column data in Python davidavr 2009-01-27T12:40:51Z 2009-01-27T12:40:51Z +1 for using a standard module http://stackoverflow.com/questions/477096/python-import-coding-style/477107#477107 Comment by davidavr on python import coding style davidavr 2009-01-26T17:22:46Z 2009-01-26T17:22:46Z Not a great example since you put the import <i>inside</i> the for loop rather than just inside the definition of f(). But, yes, in general the local import does have a cost. http://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/75010#75010 Comment by davidavr on What is the best way to force yourself to master vi? davidavr 2009-01-24T14:52:27Z 2009-01-24T14:52:27Z I think this is excellent advice and applies equally to learning other tools like an IDE, debugger, or even something like Excel.