User ironfroggy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T04:17:46Zhttp://stackoverflow.com/feeds/user/19687http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1700441/environment-on-google-appengine/1700530#17005301Answer by ironfroggy for Environment on google Appengineironfroggy2009-11-09T11:49:00Z2009-11-09T11:49:00Z<p>Are you using webapp or doing CGI-style? The webapp request class is documented at <a href="http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html" rel="nofollow">the appengine docs</a>.</p>
http://stackoverflow.com/questions/1585738/prioritize-javascript-scripts-defer-not-working/1585798#15857980Answer by ironfroggy for Prioritize JavaScript Scripts: Defer Not Workingironfroggy2009-10-18T19:30:17Z2009-10-18T19:30:17Z<p>Remember that defer is not standard and only supported by IE. Also, give more information. "aren't working" isn't a lot to go by. The order of compiling and executing Javascript is well define, so if you're doing things right they should execute in the right order. However, remember that a syntax error in any block will forbid the entire block from executing, so make sure something you think is running earlier is actually running at all.</p>
http://stackoverflow.com/questions/1573579/psycopg2-disconnects-from-server0psycopg2 disconnects from serverironfroggy2009-10-15T16:38:27Z2009-10-16T18:58:24Z
<p>I've been tackling this for a while. I setup a completely new machine. I've installed a fresh copy of postgresql and all my other dependencies. Basically, I get these database disconnections at random times. I can perform identical requests and either it works or it doesn't. Very nondeterministic in outward appearance. Watching logs at Postgresql, it doesn't even get a connection. Now, I would expect that if it never connected I would get this problem when establishing the connection and getting the cursor, but I get it when trying to actually use the connection later. Given the traceback below, I would expect to see a connection made in the pg logs, and then disconnected for some reason later. I don't, so I wonder if there is some clue in that mismatch.</p>
<pre><code>Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/core/handlers/wsgi.py", line 242, in __call__
response = self.get_response(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/core/handlers/base.py", line 73, in get_response
response = middleware_method(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/middleware/locale.py", line 16, in process_request
language = translation.get_language_from_request(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/utils/translation/__init__.py", line 97, in get_language_from_request
return real_get_language_from_request(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/utils/translation/trans_real.py", line 349, in get_language_from_request
lang_code = request.session.get('django_language', None)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/contrib/sessions/backends/base.py", line 63, in get
return self._session.get(key, default)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/contrib/sessions/backends/base.py", line 172, in _get_session
self._session_cache = self.load()
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/contrib/sessions/backends/db.py", line 16, in load
expire_date__gt=datetime.datetime.now()
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/manager.py", line 120, in get
return self.get_query_set().get(*args, **kwargs)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/query.py", line 300, in get
num = len(clone)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/query.py", line 81, in __len__
self._result_cache = list(self.iterator())
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/query.py", line 238, in iterator
for row in self.query.results_iter():
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/sql/query.py", line 287, in results_iter
for rows in self.execute_sql(MULTI):
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/sql/query.py", line 2369, in execute_sql
cursor.execute(sql, params)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/backends/util.py", line 19, in execute
return self.cursor.execute(sql, params)
OperationalError: server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
</code></pre>
http://stackoverflow.com/questions/1569049/making-pythons-assert-throw-an-exception-that-i-choose/1569579#15695791Answer by ironfroggy for Making Python's `assert` throw an exception that I chooseironfroggy2009-10-14T23:36:48Z2009-10-14T23:36:48Z<p>Never use an assertion for logic! Only for optional testing checks. Remember, if Python is running with optimizations turned on, asserts aren't even compiled into the bytecode. If you're doing this, you obviously care about the exception being raised and if you care, then you're using asserts wrong in the first place.</p>
http://stackoverflow.com/questions/1533999/javascript-prototype-inheritance/1534055#15340552Answer by ironfroggy for javascript prototype inheritanceironfroggy2009-10-07T20:37:29Z2009-10-07T20:37:29Z<p>When you push a new object into obj1.list you are mutating the existing list on the prototype. When you change the name, you are assigning a property on obj1, the instance, <em>not</em> the prototype. Note the same thing would happen if you had done:</p>
<pre><code>obj1.list = ["from obj1"]
...
console.log(obj2.list) // <--- Will log [] to console
</code></pre>
http://stackoverflow.com/questions/1533599/how-to-prevent-multiple-web-requests-from-processing-the-same-records/1533638#15336381Answer by ironfroggy for How to prevent multiple web requests from processing the same records?ironfroggy2009-10-07T19:22:05Z2009-10-07T19:22:05Z<p>Use transactions. You should never have multiple threads or processes changing the same data without transactional locks and any decent database supports transactions today. Start the transaction, "grab" the winning number, and then commit. Another thread would be locked until the commit, and would only get its chance after the records are updated, when it could see its already there.</p>
http://stackoverflow.com/questions/674030/django-syncdb-locking-up-on-table-creation0Django syncdb locking up on table creationironfroggy2009-03-23T16:16:18Z2009-09-23T15:41:00Z
<p>I've added new models and pushed to our staging server, run syncdb to create their tables, and it locks up. It gets as far as 'Create table photos_photousertag' and postgres output shows the notice for creation of 'photos_photousertag_id_seq', but otherwise i get nothing on either said. I can't ctrl+c the syncdb process and I have no indication of what route to take from here. Has anyone else ran into this?</p>
http://stackoverflow.com/questions/1460501/checking-if-a-method-already-exists-before-adding-a-method-to-object-in-javascrip/1460654#14606541Answer by ironfroggy for checking if a method already exists before adding a method to object in JavaScriptironfroggy2009-09-22T15:04:34Z2009-09-22T15:04:34Z<p>As long as you are going the full prototype route and thus you must be creating these such that they can be safely constructed without side effects (which you need to do to create an instance of each to use as a prototype of sub-types), you could just test it on such an instance.</p>
<pre><code>if (!(new Car()).isBlack) {
Car.prototype.isBlack = 'false';
}
</code></pre>
http://stackoverflow.com/questions/1460587/charts-with-proper-unicode-support/1460633#14606331Answer by ironfroggy for Charts with proper unicode supportironfroggy2009-09-22T15:01:59Z2009-09-22T15:01:59Z<p>Be careful including non-ASCII directly in your source. Are you including an encoding hint in your source?</p>
<pre><code>#!/usr/bin/env python
# -*- encoding: utf-8 -*-
</code></pre>
<p>And, of course, are you sure your editor is properly saving the file in the encoding you think it is? The safest bet is still to keep source in ASCII and to do unicode string literals with escaped non-ASCII characters (like \UXXXX where XXXX is your codepoint).</p>
http://stackoverflow.com/questions/1460590/related-to-executing-java-programs-through-python/1460615#14606152Answer by ironfroggy for Related to executing Java programs through Pythonironfroggy2009-09-22T14:59:20Z2009-09-22T14:59:20Z<p>See the subprocess module for all your external process invoking needs.</p>
<pre><code>p = subprocess.Popen(['myjavaapp', 'afilename.txt'])
</code></pre>
<p>If you need to get the relative location and you aren't sure how the other command is going to take it, make it absolute.</p>
<pre><code>p = subprocess.Popen(['myjavaapp', os.path.abspath('afilename.txt')])
</code></pre>
http://stackoverflow.com/questions/1460559/getting-django-python-data-from-views-py-to-javascript-object-in-template-html/1460600#14606000Answer by ironfroggy for Getting Django Python data from views.py to javascript object in template.htmlironfroggy2009-09-22T14:57:10Z2009-09-22T14:57:10Z<p>What does that mean exactly? If you mean you think data in the template is in JavaScript terms, it isn't: You can use python objects in the template directly. If you mean, how do I embed a JSON literal from a Python dictionary or list into my template: Encode it with simplejson, which is included with Django.</p>
<p>But, you often don't want to do this for a couple reasons. If you include this dynamic data in the template, you can't cache it as easily. Shouldn't this be another view that is generating a JS file you're including? Or maybe an AJAX call to grab the data once the page is live? Take the pick for what best fits you situation.</p>
http://stackoverflow.com/questions/602417/ranking-newer-items-fairly2Ranking newer items fairly?ironfroggy2009-03-02T13:50:19Z2009-09-01T09:01:38Z
<p>Using StackOverflow itself as an example, if you had any such system where entries were voted and viewed in order of rank based on this, how do you compensate to sort newer entries fairly? That is, if ten bad answers are given and upvoted, how do you make sure people see the new entry that might be better, but hasn't had time to gather votes or even been seen all the way at the bottom?</p>
http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108639#1086390Answer by ironfroggy for What is your single favorite development tool?ironfroggy2008-09-20T16:30:37Z2009-08-20T15:40:48Z<p><a href="http://en.wikipedia.org/wiki/Kate%5F%28text%5Feditor%29" rel="nofollow">Kate</a>, which I now use on both Linux and Windows and used
on my Mac, when I still had one.</p>
http://stackoverflow.com/questions/1288498/using-the-same-decorator-with-arguments-with-functions-and-methods/1288581#12885812Answer by ironfroggy for Using the same decorator (with arguments) with functions and methods.ironfroggy2009-08-17T15:24:01Z2009-08-17T16:26:31Z<p>Since you're already defining a <code>__get__</code> to use your decorator on the Bound Method, you could pass a flag telling it if it's being used on a method or function.</p>
<pre><code>class methods(object):
def __init__(self, *_methods, called_on_method=False):
self.methods = _methods
self.called_on_method
def __call__(self, func):
if self.called_on_method:
def inner(self, request, *args, **kwargs):
print request
return func(request, *args, **kwargs)
else:
def inner(request, *args, **kwargs):
print request
return func(request, *args, **kwargs)
return inner
def __get__(self, obj, type=None):
if obj is None:
return self
new_func = self.func.__get__(obj, type)
return self.__class__(new_func, called_on_method=True)
</code></pre>
http://stackoverflow.com/questions/1097138/authorizing-localhost-with-gdata-and-authsub0Authorizing localhost with gdata and AuthSub?ironfroggy2009-07-08T09:56:18Z2009-08-09T16:39:12Z
<p>While testing I started walking through authorizing my test machine (192.168.15.6, a local IP) with YouTube, which seemed successful. That IP is listed under my authorized sites. However, any actual requests say I'm not authenticated. I'm guessing it isn't going to work because the requests seem to be coming from my Public IP, right?</p>
http://stackoverflow.com/questions/312627/non-mathematical-description-of-neural-networks8Non-mathematical Description of Neural Networksironfroggy2008-11-23T15:35:57Z2009-07-19T05:13:01Z
<p>I am not a mathematician. I enjoy a good math puzzle, but I admit my weaknesses whole heartedly. That said, I've always had an interest in Neural Networks, and while I understand them enough to implement them from scratch, I hit a wall when I need to understand any concept that I can only find mathematic proofs for. Where is the programmer's guide to neural networks, using code instead of formula to explain the practical reasonings?</p>
http://stackoverflow.com/questions/1147608/flip-events-in-non-safari-webkit-mobile-browsers1"Flip" events in non-Safari webkit mobile browsers?ironfroggy2009-07-18T14:01:14Z2009-07-18T16:18:22Z
<p>A recent <a href="http://ajaxian.com/archives/swipe-flip-iphone" rel="nofollow">Ajaxian post title "Swipe away, then quickly flip with simple jQuery plugins"</a> tells us about flip events on the iPhone Safari browser and I wanted to use them on another webkit browser, the Android Browser. </p>
<pre><code>$('.swipe').swipe({
swipeLeft: function() { $('#someDiv').fadeIn() },
swipeRight: function() { $('#someDiv').fadeOut() },
})
</code></pre>
<p>The event is triggered, but it still scrolls the page left and right. Anyone know a work around for this? I'd love to see the plugin get whatever fix is possible, so it works in more places, of course.</p>
http://stackoverflow.com/questions/1097138/authorizing-localhost-with-gdata-and-authsub/1131965#11319650Answer by ironfroggy for Authorizing localhost with gdata and AuthSub?ironfroggy2009-07-15T15:02:22Z2009-07-15T15:02:22Z<p>The documentation is split up between the API reference, the gdata guide, and the python client guide. The examples seem limited. I didn't get, from the Python guide, that the session token is a <em>new</em> token, rather than an upgrade of the existing one-use token.</p>
<pre><code>yt_service.SetAuthSubToken(token)
yt_service.UpgradeToSessionToken()
session_token = yt_service.current_token.get_token_string()
</code></pre>
<p>This gives you the new token after upgrading for a session.</p>
http://stackoverflow.com/questions/1110705/django-queryset-spanning-null-relationships-using-q/1113663#11136632Answer by ironfroggy for Django - Queryset spanning null relationships using Qironfroggy2009-07-11T12:56:37Z2009-07-11T12:56:37Z<p>Actually, you <em>can</em> combine <code>QuerySet</code>s in the same way. Like so:</p>
<pre><code>C.objects.filter(classA__fieldOfA='foo') | C.objects.filter(classB__fieldOfB='foo')
</code></pre>
http://stackoverflow.com/questions/1113479/where-to-store-secret-keys-and-password-in-python/1113642#11136420Answer by ironfroggy for Where to store secret keys and password in Pythonironfroggy2009-07-11T12:43:17Z2009-07-11T12:43:17Z<p>Any path can reference the user's home directory in a cross-platform way by expanding the common ~ (tilde) with <code>os.path.expanduser()</code>, like so:</p>
<pre><code>appdir = os.path.join(os.path.expanduser('~'), '.myapp')
</code></pre>
http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage/1101629#11016290Answer by ironfroggy for Django RelatedManager's .create() usage?ironfroggy2009-07-09T02:58:35Z2009-07-09T02:58:35Z<p>You should be using a ManyToManyField in the Play model that relates to the zero or more participants. In that code you would just be doing</p>
<pre><code>play.players.add(player)
</code></pre>
http://stackoverflow.com/questions/1101611/help-needed-improving-python-code-using-list-comprehensions/1101622#11016222Answer by ironfroggy for Help needed improving Python code using List Comprehensionsironfroggy2009-07-09T02:56:11Z2009-07-09T02:56:11Z<p>It seems fine, really. Not everything is simple (you've got several steps in an otherwise simple calculation, no matter how you frame it). There are options to reduce the copies, like using itertools.islice and itertools.izip, but (aside from izip) the extra steps in the code would just complicate it further. Not everything needs to be a list comprehension, but it is a judgement call sometimes. What looks cleaner to you? What will the next guy that reads it understand best? What will you understand when you come back to fix that bug in three months?</p>
http://stackoverflow.com/questions/1082361/automatically-pressing-a-submit-button-using-python/1082412#10824127Answer by ironfroggy for Automatically pressing a "submit" button using pythonironfroggy2009-07-04T15:30:05Z2009-07-04T15:30:05Z<p>You very rarely want to actually "press the submit button", rather than making GET or POST requests to the handler resource directly. Look at the HTML where the form is, and see what parameters its submitting to what URL, and if it is GET or POST method. You can form these requests with urllib(2) easily enough.</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1077398#10773980Answer by ironfroggy for tools to aid in browsing/following (large) python projects' source codeironfroggy2009-07-03T00:57:53Z2009-07-03T00:57:53Z<p>Document it as you go. Leave trails, improve the structure, and keep notes. By the time you've found you way around the enter codebase, you'll have a good map.</p>
http://stackoverflow.com/questions/1076309/user-upload-profile-pictures-on-django-jquery-website-in-jpg-gif-png-format/1076717#10767171Answer by ironfroggy for User upload profile pictures on django/jquery website in .jpg/.gif/.png format. How can I scale/crop them down when displaying them?ironfroggy2009-07-02T21:13:18Z2009-07-02T21:13:18Z<p>Use Django-Sorl, which will give you tags that automatically generate and cache thumbnails are different sizes, including scaling and smart-cropping. I use this, placing the files and thumbnails at a local S3-mount, and it puts all the thumbnails automatically in place where the users can grab them from S3.</p>
http://stackoverflow.com/questions/1066680/can-javascript-capture-image-download-times-in-the-client/1066712#10667121Answer by ironfroggy for Can javascript capture image download times in the client?ironfroggy2009-07-01T00:02:20Z2009-07-01T00:02:20Z<p>You could look at the Net tab in Firebug. I don't know if it can give you same information via Firebug Lite in other browsers or not.</p>
http://stackoverflow.com/questions/1057518/python-how-to-call-a-data-member-of-the-base-class-if-it-is-being-overwritten-as/1061081#10610810Answer by ironfroggy for Python: how to call a data member of the base class if it is being overwritten as a property in the derived class?ironfroggy2009-06-29T23:31:53Z2009-06-29T23:31:53Z<p>Honestly, the thing to look at here is that you're trying to twist your code around a design that is simply poor. The property descriptors handle the request for a 'foo' attribute, and you want to bypass these completely, which is just wrong. You're already causing Base.<strong>init</strong> to assign foobar._foo = 5, so thats exactly where the getter needs to look, too.</p>
<p>class Base(object):
def <strong>init</strong>(self):
self.foo = 5</p>
<pre><code>class Derived(Base):
def __init__(self):
Base.__init__(self)
@property
def foo(self):
return 1 + self._foo # DOES work of course!
@foo.setter
def foo(self, f):
self._foo = f
bar = Base()
print bar.foo
foobar = Derived()
print foobar.foo
</code></pre>
http://stackoverflow.com/questions/1041639/get-a-dict-of-all-variables-currently-in-scope-and-their-values/1041676#1041676-4Answer by ironfroggy for Get a dict of all variables currently in scope and their values ironfroggy2009-06-25T00:50:35Z2009-06-25T00:50:35Z<p>Be more specific and write more concise code, honestly.</p>
http://stackoverflow.com/questions/1037872/break-long-text/1037899#10378991Answer by ironfroggy for Break long textironfroggy2009-06-24T11:56:48Z2009-06-24T11:56:48Z<p>There is a soft-hyphen that lets you define where a word can be broken up (For example, prod-uct-iv-ity) which doesn't display any hyphens, just defines where they could show up if the word has to wrap lines. It is entity &shy;</p>
http://stackoverflow.com/questions/1037844/django-orm-query-of-two-models/1037879#10378793Answer by ironfroggy for Django ORM: query of two modelsironfroggy2009-06-24T11:53:29Z2009-06-24T11:53:29Z<p>Think about this: What will you get back? That wouldn't be an instance of either model, would it?</p>
<p>However, with the newer annotate() and F() features, you might be able to pull off something like:</p>
<pre><code>Comment.objects.all().annotate(image_path=F('user__profile__image_path'))
</code></pre>
<p>Of course, you could always just:</p>
<pre><code>Comment.objects.all().select_related()
</code></pre>
<p>and get image_path from x.user.get_profile().image_path</p>
http://stackoverflow.com/questions/1573579/psycopg2-disconnects-from-server/1579793#1579793Comment by ironfroggy on psycopg2 disconnects from serverironfroggy2009-10-17T02:08:47Z2009-10-17T02:08:47ZFinally got pointed to that earlier today and was planning to link to it myself from here. This is a real problem, and obviously a lot of us have run into it, but it can be very hard to take the evidence and find information. Thanks for the tip.http://stackoverflow.com/questions/1573579/psycopg2-disconnects-from-server/1573673#1573673Comment by ironfroggy on psycopg2 disconnects from serverironfroggy2009-10-15T20:43:52Z2009-10-15T20:43:52ZI have already logged to determine this. The connection is only made at request time, in the child, in response to the start-request signal. The child processes are already established before being sent that request to trigger the connection.http://stackoverflow.com/questions/1573579/psycopg2-disconnects-from-server/1573673#1573673Comment by ironfroggy on psycopg2 disconnects from serverironfroggy2009-10-15T17:44:34Z2009-10-15T17:44:34ZWhile I am using a preforked fastcgi backend, the connection is established per-request, in the child processes. Also, if something like this was the case I would expect the problem to be more predictable, while in reality the requests usually succeed and the failure is outwardly nondeterministic.http://stackoverflow.com/questions/1460454/why-does-python-keep-a-reference-count-on-false-and-true/1460492#1460492Comment by ironfroggy on Why does Python keep a reference count on False and True?ironfroggy2009-09-22T15:07:56Z2009-09-22T15:07:56Zthey technically have methods. Every object has methods.http://stackoverflow.com/questions/1460512/how-can-i-get-the-element-of-a-list-that-has-a-minimum-maximum-property-in-python/1460531#1460531Comment by ironfroggy on How can I get the element of a list that has a minimum/maximum property in Python?ironfroggy2009-09-22T15:06:07Z2009-09-22T15:06:07ZYou are still looping, you just have min() do it for you.http://stackoverflow.com/questions/602417/ranking-newer-items-fairlyComment by ironfroggy on Ranking newer items fairly?ironfroggy2009-09-05T22:07:08Z2009-09-05T22:07:08ZNo, it really is general. I'm building this at faircompanies.comhttp://stackoverflow.com/questions/1184921/how-to-override-targetblank-in-kml-popups-in-embedded-google-map/1185271#1185271Comment by ironfroggy on How to override target=_blank in KML popups in embedded Google map?ironfroggy2009-07-31T12:32:01Z2009-07-31T12:32:01ZThanks, I was trying all morning to figure this out myself. I'm actually using jquery.jmap.js and I think this would be useful exposed as an option to its AddFeed method. I understand why it behaves this way, but a simple flag for it would be nice.http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage/1133007#1133007Comment by ironfroggy on Django RelatedManager's .create() usage?ironfroggy2009-07-18T14:17:09Z2009-07-18T14:17:09ZIn his output he shows the Play id is 8581http://stackoverflow.com/questions/779055/multiple-databases-in-django-1-0-2-with-custom-managerComment by ironfroggy on Multiple Databases in Django 1.0.2 with custom managerironfroggy2009-07-11T13:03:16Z2009-07-11T13:03:16ZCan you be a little more patient? There is a GSOC project going on right now that is adding multiple database support to Django.http://stackoverflow.com/questions/1084977/python-how-can-i-import-all-variablesComment by ironfroggy on Python: How can I import all variables?ironfroggy2009-07-06T10:40:19Z2009-07-06T10:40:19ZIt is mostly meant for edge cases, such as when you have a "base module" and several platform specific versions that might get imported, which want to grab the contents of the base and add to it. the os module works this way, doing 'from nt import *' or 'from posix import *' depending on the platform, for example.http://stackoverflow.com/questions/1073864/does-jquery-or-javascript-have-the-concept-of-classes-and-objects/1073918#1073918Comment by ironfroggy on Does JQuery or JavaScript have the concept of classes and objects?ironfroggy2009-07-02T12:04:43Z2009-07-02T12:04:43ZDon't call it an orange when its a brick. (Javascript doesn't have classes! (yet!))http://stackoverflow.com/questions/1029891/python-unittest-is-there-a-way-to-pass-command-line-options-to-the-app/1030002#1030002Comment by ironfroggy on python, unittest: is there a way to pass command line options to the appironfroggy2009-06-23T12:07:24Z2009-06-23T12:07:24Zsure but thats data validation, not unittesting.http://stackoverflow.com/questions/1030293/simple-user-management-example-for-google-app-engine/1030357#1030357Comment by ironfroggy on Simple User management example for Google App Engine ?ironfroggy2009-06-23T02:24:00Z2009-06-23T02:24:00ZThough I have used Django-on-AppEngine, I would not advocate ignoring appengines builtin auth over django. Any reason that you do? (Yes, I use Django outside of appengine too)http://stackoverflow.com/questions/1030102/why-cant-rss-handle-the-ampersand/1030110#1030110Comment by ironfroggy on Why can't RSS handle the Ampersand?ironfroggy2009-06-23T00:56:30Z2009-06-23T00:56:30ZThis is no different than asking why you can't use raw < and > in XML texthttp://stackoverflow.com/questions/1010349/would-extracting-page-metadata-be-a-good-use-of-multiple-inheritanceComment by ironfroggy on Would extracting page metadata be a good use of multiple inheritance?ironfroggy2009-06-18T01:44:26Z2009-06-18T01:44:26ZI don't think you are giving enough information here. Can you give some examples?