User Ross - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:35:55Z http://stackoverflow.com/feeds/user/14794 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/129941#129941 2 Answer by Ross for What Hosting Service is best for Django applications? Ross 2008-09-24T20:59:51Z 2008-09-24T20:59:51Z <p>Another cheer for <strong>Slicehost</strong> here.</p> <p>Even if you do't use them as a host, they have some <a href="http://articles.slicehost.com/django" rel="nofollow"><strong>amazing public tutorials</strong></a> that help you set up the whole stack for a Django server: OS, web server(s), database, Django, etc.</p> http://stackoverflow.com/questions/62064/the-best-django-webcasts-videos/129914#129914 0 Answer by Ross for The best Django webcasts/videos Ross 2008-09-24T20:54:34Z 2008-09-24T20:54:34Z <p>First, <strong>don't read the Django book</strong>. It's very outdated. Instead, read the <a href="http://docs.djangoproject.com/en/dev/" rel="nofollow">official Django docs</a>.</p> <p>Also, here's another link to the <a href="http://www.youtube.com/view_play_list?p=D415FAF806EC47A1" rel="nofollow">Django Con videos</a> on YouTube (as listed by the guys at TWID).</p> http://stackoverflow.com/questions/125957/nginx-setup-question/129855#129855 2 Answer by Ross for nginx setup question Ross 2008-09-24T20:44:48Z 2008-09-24T20:44:48Z <p>Perhaps lighttpd is using some kind of caching? There's a great article <a href="http://www.igvita.com/2008/02/11/nginx-and-memcached-a-400-boost/" rel="nofollow">here</a> that describes how to set up memcached with nginx for a reported 400% performance boost.</p> <p>The nginx doc on the memcached module is <a href="http://wiki.codemongers.com/NginxHttpMemcachedModule" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/72852/how-to-do-relative-imports-in-python/80078#80078 0 Answer by Ross for How to do relative imports in Python? Ross 2008-09-17T04:45:26Z 2008-09-17T04:45:26Z <p>On a related note, <a href="http://www.python.org/dev/peps/pep-3100/" rel="nofollow">Python 3</a> will change the default handling of imports to be absolute by default; relative imports will have to be explicitly specified.</p> http://stackoverflow.com/questions/68986/whats-a-good-lightweight-python-mvc-framework/80050#80050 1 Answer by Ross for What's a good lightweight Python MVC framework? Ross 2008-09-17T04:37:16Z 2008-09-17T04:37:16Z <p>I'm also on the Django boat. Here are a few reasons why:</p> <ul> <li>You'll likely save time with Django's <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#ref-contrib-admin" rel="nofollow">admin interface</a> in avoiding manual queries.</li> <li>Django's <a href="http://docs.djangoproject.com/en/dev/topics/templates/#topics-templates" rel="nofollow">templating system</a> is fantastic</li> <li>Django has a WONDERFUL <a href="http://www.djangoproject.com/community/" rel="nofollow">community</a>, very eager to help (see #django on <a href="http://freenode.net" rel="nofollow">freenode</a>)</li> </ul> http://stackoverflow.com/questions/70528/why-are-pythons-private-methods-not-actually-private/80000#80000 1 Answer by Ross for Why are Python's 'private' methods not actually private? Ross 2008-09-17T04:29:45Z 2008-09-17T04:29:45Z <p>Similar behavior exists when module attribute names begin with a single underscore (e.g. _foo).</p> <p>Module attributes named as such will not be copied into an importing module when using the <code>from*</code> method, e.g.:</p> <pre><code>from bar import * </code></pre> <p>However, this is a convention and not a language constraint. These are not private attributes; they can be referenced and manipulated by any importer. Some argue that because of this, Python can not implement true encapsulation.</p> http://stackoverflow.com/questions/68645/python-static-variable/79840#79840 0 Answer by Ross for python static variable Ross 2008-09-17T04:01:08Z 2008-09-17T04:01:08Z <p>To avoid any potential confusion, I would like to contrast static variables and immutable objects.</p> <p>Some primitive object types like integers, floats, strings, and touples are immutable in Python. This means that the object that is referred to by a given name cannot change if it is of one of the aforementioned object types. The name can be reassigned to a different object, but the object itself may not be changed.</p> <p>Making a variable static takes this a step further by disallowing the variable name to point to any object but that to which it currently points. (Note: this is a general software concept and not specific to Python; please see others' posts for information about implementing statics in Python).</p> http://stackoverflow.com/questions/77086/which-is-faster-python-webpages-or-php-webpages/79744#79744 11 Answer by Ross for Which is faster, python webpages or php webpages? Ross 2008-09-17T03:44:12Z 2008-09-17T03:44:12Z <p>It sounds like you don't want to compare the two <strong>languages</strong>, but that you want to compare two <strong>web systems</strong>.</p> <p>This is tricky, because there are many variables involved.</p> <p>For example, Python web applications can take advantage of <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a> to talk to web servers, which is faster than any of the typical ways that PHP talks to web servers (even mod_php ends up being slower if you're using Apache, because Apache can only use the Prefork MPM with mod_php rather than multi-threaded MPM like Worker).</p> <p>There is also the issue of code compilation. As you know, Python is compiled just-in-time to byte code (.pyc files) when a file is run each time the file changes. Therefore, after the first run of a Python file, the compilation step is skipped and the Python interpreter simply fetches the precompiled .pyc file. Because of this, one could argue that Python has a native advantage over PHP. However, optimizers and caching systems can be installed for PHP websites (my favorite is <a href="http://eaccelerator.net/" rel="nofollow">eAccelerator</a>) to much the same effect.</p> <p>In general, enough tools exist such that one can pretty much do everything that the other can do. Of course, as others have mentioned, there's more than just speed involved in the business case to switch languages. We have an app written in oCaml at my current employer, which turned out to be a mistake because the original author left the company and nobody else wants to touch it. Similarly, the PHP-web community is much larger than the Python-web community; VPS hosts are more likely to offer PHP support than Python support; etc.</p> <p>But back to speed. You must recognize that the question of speed here involves many moving parts. Fortunately, many of these parts can be independently optimized, affording you various avenues to seek performance gains.</p> http://stackoverflow.com/questions/77552/id-is-a-bad-variable-name-in-python/79500#79500 0 Answer by Ross for 'id' is a bad variable name in Python Ross 2008-09-17T03:00:17Z 2008-09-17T03:05:57Z <p>In response to:</p> <blockquote> <p>id is a rather specialized built-in function that is rarely used in business logic. Therefore I don't see a problem in using it as a variable name in a tight and well-written function, whre it's clear that id doesn't mean the built-in function.</p> </blockquote> <p>While this is true, it's probably a good idea to be more specific with this variable name than simply "id". Lots of things have IDs (especially if you're working with a RDBMS), and as the second line of Tim Peters's <em>The Zen of Python</em> tells us:</p> <blockquote> <p>Explicit is better than implicit.</p> </blockquote> <p>See the rest by running: <code>import this</code></p> http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435300#435300 Comment by Ross on Does Google Analytics have peformance overhead? Ross 2009-03-07T09:13:01Z 2009-03-07T09:13:01Z Google may have better servers, but they don't deliver the file gzipped if possible; 22k isn't a huge file, it's large enough to benefit from gzipping, especially being plain text (it cuts it down to 10k on my server.).