User Matthew Schinckel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:53:49Z http://stackoverflow.com/feeds/user/188 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925898/django-unhandled-exception/1925931#1925931 1 Answer by Matthew Schinckel for Django Unhandled Exception Matthew Schinckel 2009-12-18T02:36:48Z 2009-12-18T02:36:48Z <p>That's what DEBUG=True is for: to show the full traceback. The idea is that regular users do not want (nor do you want them to) see anything other than a simple error message.</p> http://stackoverflow.com/questions/1858023/ruby-system-command-not-working-outside-console/1858118#1858118 3 Answer by Matthew Schinckel for Ruby system command not working outside console Matthew Schinckel 2009-12-07T06:07:18Z 2009-12-07T06:07:18Z <p>Is <code>growlnotify</code> in the PATH that TextMate uses?</p> <p>Try passing the complete path to growlnotify: ie <code>/usr/local/bin/growlnotify</code></p> http://stackoverflow.com/questions/1857527/django-populating-a-database-for-test-purposes/1857545#1857545 3 Answer by Matthew Schinckel for Django - Populating a database for test purposes. Matthew Schinckel 2009-12-07T02:53:36Z 2009-12-07T02:57:42Z <p>You can use fixtures for this purpose, and the <a href="http://docs.djangoproject.com/en/dev/ref/django-admin/?from=olddocs#loaddata-fixture-fixture" rel="nofollow">loaddata</a> management command.</p> <p>One approach is to do it like this.</p> <ol> <li><p>Prepare your test database.</p></li> <li><p>Use dumpdata to create JSON export of the database.</p></li> <li><p>Put this in the <code>fixtures</code> directory of your application.</p></li> <li><p>Write your unit tests to load this "fixture".</p></li> </ol> http://stackoverflow.com/questions/1811562/rolling-my-own-version-control/1811807#1811807 0 Answer by Matthew Schinckel for Rolling my own "Version Control" Matthew Schinckel 2009-11-28T06:48:52Z 2009-11-28T06:48:52Z <p>You could look at DropBox as a simple versioning system. Not sure it will do everything you want, but it will have each saved iteration as a "version".</p> <p>Plus, you get online access, and "backups", all included.</p> http://stackoverflow.com/questions/832366/problem-with-nsstring-and-nsmutableurlrequest/1781465#1781465 0 Answer by Matthew Schinckel for Problem with NSString and NSMutableURLRequest Matthew Schinckel 2009-11-23T06:42:29Z 2009-11-23T06:42:29Z <p>The code you are using to generate your base64Encoded string is broken.</p> <p>Try using the method outlined at the bottom of the page: <a href="http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html" rel="nofollow">http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html</a></p> http://stackoverflow.com/questions/1691076/activate-virtualenv-via-os-system/1691123#1691123 7 Answer by Matthew Schinckel for Activate virtualenv via os.system() Matthew Schinckel 2009-11-06T23:02:18Z 2009-11-06T23:02:18Z <p>Each call to os.system runs the command in a new subshell, which has the same properties as the original python process.</p> <p>Try putting the commands into one string separated by semicolons.</p> http://stackoverflow.com/questions/1659337/inheriting-directly-from-a-built-in-type-versus-its-wrapper-class-in-python/1659358#1659358 1 Answer by Matthew Schinckel for Inheriting directly from a built-in type versus its wrapper class in Python Matthew Schinckel 2009-11-02T03:56:20Z 2009-11-02T03:56:20Z <p>I found, on the page you linked to, a hint as to the answer:</p> <blockquote> <p>In versions of Python prior to 2.2, you could not directly subclass built-in datatypes like strings, lists, and dictionaries. To compensate for this, Python comes with wrapper classes that mimic the behavior of these built-in datatypes: UserString, UserList, and UserDict. Using a combination of normal and special methods, the UserDict class does an excellent imitation of a dictionary. In Python 2.2 and later, you can inherit classes directly from built-in datatypes like dict.</p> </blockquote> <p>In reality, today you probably want to sub-class dict, rather than UserDict.</p> http://stackoverflow.com/questions/1658945/django-uniquetogether-and-flagging-objects-as-deleted/1659035#1659035 1 Answer by Matthew Schinckel for Django unique_together and flagging objects as "deleted" Matthew Schinckel 2009-11-02T01:30:38Z 2009-11-02T01:30:38Z <p>You could have a unique constraint:</p> <pre><code>class Meta: unique_together = ( ('name', 'active'),) </code></pre> <p>However, that means you can only have one active and one inactive object with the same name.</p> <p>If you make active a NullBooleanField, then you can have NULL for active, and have (IIRC) a limitless number of objects that are inactive with the same name. PostgreSQL, at least, interprets a NULL value as part of a constraint as not breaking the constraint.</p> http://stackoverflow.com/questions/1517474/only-showing-year-in-django-admin-a-yearfield-instead-of-datefield/1523198#1523198 0 Answer by Matthew Schinckel for Only showing year in django admin, a YearField instead of DateField? Matthew Schinckel 2009-10-06T01:25:22Z 2009-10-06T01:25:22Z <p>Also, and this isn't that relevant for your case, but is useful being aware of, don't use datetime.date.today(), or datetime.datetime.now() as defaults. This is executed once, when the server is started up.</p> <p>You are much better off passing the callables in:</p> <pre><code>date = models.DateField(default=datetime.date.today) </code></pre> <p>Note, you could use a lambda to make it relative:</p> <pre><code>date = models.DateField(default=lambda : datetime.date.today() - datetime.timedelta(days=6210)) </code></pre> <p>Of course, this is naive, and assumes there have been 5 leap years in the past 17 years.</p> http://stackoverflow.com/questions/1484696/dateformat-in-django-and-app-engine/1486799#1486799 2 Answer by Matthew Schinckel for DateFormat in Django and App Engine? Matthew Schinckel 2009-09-28T12:38:58Z 2009-09-28T12:38:58Z <p>forms.DateInput takes a format keyword argument, and this can be used to control the format that is represented (I seem to remember, anyway):</p> <pre><code>class MyForm(ModelForm): mydate = forms.DateField(widget=forms.DateInput(format="%d/%m/%y")) class Meta: model = MyObject </code></pre> <p>I ended up subclassing both the Field and the Widget, as I wanted to be able to control the formats even more.</p> http://stackoverflow.com/questions/1483647/django-model-form-include-fields-from-related-models/1486758#1486758 1 Answer by Matthew Schinckel for django model Form. Include fields from related models Matthew Schinckel 2009-09-28T12:27:22Z 2009-09-28T12:27:22Z <p>Both answers are correct: Inline Formsets make doing this easy.</p> <p>Be aware, however, that the inline can only go one way: from the model that has the foreign key in it. Without having primary keys in both (bad, since you could then have A -> B and then B -> A2), you cannot have the inline formset in the related_to model.</p> <p>For instance, if you have a UserProfile class, and want to be able to have these, when shown, have the User object that is related shown as in inline, you will be out of luck.</p> <p>You can have custom fields on a ModelForm, and use this as a more flexible way, but be aware that it is no longer 'automatic' like a standard ModelForm/inline formset.</p> http://stackoverflow.com/questions/1486703/how-to-implement-cookie-support-in-ruby-net-http/1486743#1486743 0 Answer by Matthew Schinckel for How to implement cookie support in ruby net/http? Matthew Schinckel 2009-09-28T12:21:30Z 2009-09-28T12:21:30Z <p>You can send receive cookies using headers.</p> <p>You can store the header in any persistence framework. Whether it is some sort of database, or files.</p> http://stackoverflow.com/questions/1469679/understanding-python-profile-output/1470325#1470325 2 Answer by Matthew Schinckel for Understanding Python profile output Matthew Schinckel 2009-09-24T08:01:11Z 2009-09-25T05:57:55Z <p>I'll support Fragsworth by saying that you'll want to split up your function into smaller ones.</p> <p>Having said that, you are reading the output correctly: the tottime is the one to watch. </p> <p>Now for where your slowdown is likely to be:</p> <p>Since there seem to be 100000 calls to appendBallot, and there aren't any obvious loops, I'd suggest it is in your assert. Because you are executing:</p> <pre><code>assert(ballotID not in self.ballotIDs) </code></pre> <p>This will actually act as a loop. Thus, the first time you call this function, it will iterate through a (probably empty) array, and then assert if the value was found. The 100000th time it will iterate through the entire array.</p> <p>And there is actually a possible bug here: if a ballot is deleted, then the next ballot added would have the same id as the last added one (unless that were the one deleted). I think you would be better off using a simple counter. That way you can just increment it each time you add a ballot. Alternatively, you could use a UUID to get unique ids.</p> <p>Alternatively, if you are looking at some level of persistence, use an ORM, and get it to do the ID generation, and unique checking for you.</p> http://stackoverflow.com/questions/1402470/java-errors-and-syntax-any-help-appreciated/1402519#1402519 0 Answer by Matthew Schinckel for Java errors and syntax. Any help appreciated Matthew Schinckel 2009-09-09T22:42:23Z 2009-09-09T22:42:23Z <p>One of the biggest issues beginning programmers seem to have is not being able to read and interpret error messages very well.</p> <p>You would be well served by carefully examining the errors that <code>javac</code> (or any compiler/interpreter) provides. Maybe even start by making some mistakes that you understand in your code (ie, assign an incorrect typed value to a variable, extend a loop beyond the bounds) and see how your compiler handles these.</p> http://stackoverflow.com/questions/1391584/easy-way-of-installing-python-apps-without-using-python-path-or-muli-symlink-in-s/1391947#1391947 3 Answer by Matthew Schinckel for easy way of installing python apps without using PYTHON path or muli symlink in site-package Matthew Schinckel 2009-09-08T04:19:34Z 2009-09-08T04:19:34Z <p>Have a look at <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow">virtualenv</a>.</p> <p>It may do what you are after.</p> http://stackoverflow.com/questions/1360672/using-netrc-with-sftp/1360855#1360855 0 Answer by Matthew Schinckel for using .netrc with sftp Matthew Schinckel 2009-09-01T06:35:50Z 2009-09-01T06:35:50Z <p>Try looking into scp, as you can use passwordless login (ssh keys) to do this.</p> <p>You may be able to use the same techniques with SFTP, I'm not sure.</p> http://stackoverflow.com/questions/1360808/rubys-open-uri-and-cookies/1360841#1360841 0 Answer by Matthew Schinckel for Ruby's open-uri and cookies Matthew Schinckel 2009-09-01T06:31:48Z 2009-09-01T06:31:48Z <p>You need to add a "Cookie" header.</p> <p>I'm not sure if open-uri can do this or not, but it can be done using Net::HTTP.</p> <pre><code># Create a new connection object. conn = Net::HTTP.new(site, port) # Get the response when we login, to set the cookie. # body is the encoded arguments to log in. resp, data = conn.post(login_path, body, {}) cookie = resp.response['set-cookie'] # Headers need to be in a hash. headers = { "Cookie" =&gt; cookie } # On a get, we don't need a body. resp, data = conn.get(path, headers) </code></pre> http://stackoverflow.com/questions/355486/can-you-bind-to-the-timeinterval-attribute-of-an-nsdatepicker 1 Can you Bind to the timeInterval attribute of an NSDatePicker? Matthew Schinckel 2008-12-10T09:12:45Z 2009-08-30T19:08:59Z <p>I've got a Core Data application that has an Event class, which has a start date and a finish date. It's trivial to bind these to a pair of NSDatePicker widgets, but I wanted to make it work with the NSRangeDateMode available in Leopard.</p> <p>The NSDatePicker has a pair of methods that deal with timeInterval, but I don't seem to be able to bind to this.</p> <p><strong>Update</strong>: I've used a manual call to do the binding, and it half works:</p> <pre><code>[picker bind:@"timeInterval" toObject:array withKeyPath:@"selection.timeInterval" options:options]; </code></pre> <p>It sets the timeInterval in the NSDatePicker when the underlying object is changed, but does not set the underlying object when the NSDatePicker's timeInterval is changed.</p> http://stackoverflow.com/questions/1288498/using-the-same-decorator-with-arguments-with-functions-and-methods 0 Using the same decorator (with arguments) with functions and methods. Matthew Schinckel 2009-08-17T15:08:12Z 2009-08-17T16:26:31Z <p>I have been trying to create a decorator that can be used with both functions and methods in python. This on it's own is not that hard, but when creating a decorator that takes arguments, it seems to be.</p> <pre><code>class methods(object): def __init__(self, *_methods): self.methods = _methods def __call__(self, func): 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) </code></pre> <p>The above code wraps the function/method correctly, but in the case of a method, the <code>request</code> argument is the instance it is operating on, not the first non-self argument.</p> <p>Is there a way to tell if the decorator is being applied to a function instead of a method, and deal accordingly?</p> http://stackoverflow.com/questions/1288498/using-the-same-decorator-with-arguments-with-functions-and-methods/1288600#1288600 0 Answer by Matthew Schinckel for Using the same decorator (with arguments) with functions and methods. Matthew Schinckel 2009-08-17T15:28:51Z 2009-08-17T15:28:51Z <p>A partial (specific) solution I have come up with relies on exception handling. I am attempting to create a decorator to only allow certain HttpRequest methods, but make it work with both functions that are views, and methods that are views.</p> <p>So, this class will do what I want:</p> <pre><code>class methods(object): def __init__(self, *_methods): self.methods = _methods def __call__(self, func): @wraps(func) def inner(*args, **kwargs): try: if args[0].method in self.methods: return func(*args, **kwargs) except AttributeError: if args[1].method in self.methods: return func(*args, **kwargs) return HttpResponseMethodNotAllowed(self.methods) return inner </code></pre> <p>Here are the two use cases: decorating a function:</p> <pre><code>@methods("GET") def view_func(request, *args, **kwargs): pass </code></pre> <p>and decorating methods of a class:</p> <pre><code>class ViewContainer(object): # ... @methods("GET", "PUT") def object(self, request, pk, *args, **kwargs): # stuff that needs a reference to self... pass </code></pre> <p>Is there a better solution than to use exception handling?</p> http://stackoverflow.com/questions/1253023/relationships-in-django-admin/1253042#1253042 0 Answer by Matthew Schinckel for Relationships in Django Admin Matthew Schinckel 2009-08-10T03:51:19Z 2009-08-10T03:51:19Z <p>You will need something along the lines of:</p> <pre><code># admin.py from django.contrib import admin from models import * class TagsInline(admin.TabularInline): model = Tag extra = 1 class EntryAdmin(admin.ModelAdmin): inlines = (TagsInline, ) admin.site.register(Entry, EntryAdmin) admin.site.register(Tag) </code></pre> <p>(Note, this code was written in a browser!)</p> http://stackoverflow.com/questions/1193853/how-does-ruby-handle-bytes-binary/1194200#1194200 2 Answer by Matthew Schinckel for How Does Ruby handle bytes/binary? Matthew Schinckel 2009-07-28T13:46:27Z 2009-07-28T13:46:27Z <p>Don't know if this helps enough, but you can index the bits in an integer in ruby.</p> <pre><code>n = 0b010101 n # =&gt; 21 n = 21 n[0] # =&gt; 1 n[1] # =&gt; 0 n[2] # =&gt; 1 n[3] # =&gt; 0 n[4] # =&gt; 1 n[5] # =&gt; 0 </code></pre> http://stackoverflow.com/questions/1115399/git-hangs-up-unexpectedly-but-the-push-works/1163963#1163963 0 Answer by Matthew Schinckel for git hangs up unexpectedly (but the push works) Matthew Schinckel 2009-07-22T08:55:37Z 2009-07-22T08:55:37Z <p>I get errors with post-commit hooks in Mercurial that make it seem like the transaction failed, but it still succeeds.</p> <p>Could be something similar.</p> http://stackoverflow.com/questions/1152050/filtering-items-in-inlineformset 0 Filtering items in InlineFormset Matthew Schinckel 2009-07-20T07:04:39Z 2009-07-22T00:35:10Z <p>I am currently using inlineformset_factory to get a formset with Holidays for a Person, but I only want to display the Holiday objects that are in the future.</p> <pre><code>HolidaysFormset = inlineformset_factory(Person, Holiday) </code></pre> <p>Within the Person class, it is easy to get the future holidays:</p> <pre><code>def future_holidays(self): return self.holidays.filter(end__gte=datetime.date.today()) </code></pre> <p>I have looked at the relevant source code, and the formfield_callback looked slightly promising, but that is only called on a per field basis, and cannot be used (I think) to limit which objects match.</p> <p>Any suggestions? Will I be best off creating my own FormSet, or a sub-class of Holiday? Or should I be looking into using a custom Manager?</p> http://stackoverflow.com/questions/1152050/filtering-items-in-inlineformset/1162480#1162480 0 Answer by Matthew Schinckel for Filtering items in InlineFormset Matthew Schinckel 2009-07-22T00:35:10Z 2009-07-22T00:35:10Z <p>One solution is to provide a new FormSet Base class, with the <code>.get_queryset()</code> method overridden.</p> <pre><code>class BaseFutureHolidaysFormSet(BaseInlineFormSet): def get_queryset(self): return BaseInlineFormSet.get_queryset(self).filter( finish__gte=datetime.date.today() ) </code></pre> <p>Then use this in the factory method:</p> <pre><code>HolidaysFormSet = inlineformset_factory(Person, Holiday, formset=BaseFutureHolidaysFormSet) </code></pre> <p>This works, as intended.</p> <p>(Oh, a thankyou to <a href="http://www.thenestedfloat.com/articles/limiting-inline-admin-objects-in-django" rel="nofollow">The Nested Float</a>, as this type of solution is discussed there.) </p> http://stackoverflow.com/questions/1157844/how-to-intall-tomcat-as-a-daemon-on-os-x/1157871#1157871 2 Answer by Matthew Schinckel for How to intall Tomcat as a daemon on OS X? Matthew Schinckel 2009-07-21T08:07:26Z 2009-07-21T08:07:26Z <p>You could write your own LaunchDaemon script for it.</p> <p>Launch Services can be used to set up user or system-based startup.</p> http://stackoverflow.com/questions/1134085/rendering-a-value-as-text-instead-of-field-inside-a-django-form/1152061#1152061 1 Answer by Matthew Schinckel for Rendering a value as text instead of field inside a Django Form Matthew Schinckel 2009-07-20T07:08:01Z 2009-07-20T07:08:01Z <p>You can also use a new widget: I did this so that I could have a widget that created a text display of a date, and a hidden form with the same date in it, so it could be visible to the user, but they cannot change it.</p> <p>Here is an initial (still testing/to be cleaned up) version:</p> <pre><code>class DayLabelWidget(forms.Widget): def render(self, name, value, attrs): final_attrs = self.build_attrs(attrs, name=name) if hasattr(self, 'initial'): value = self.initial if type(value) == type(u''): value = datetime.date(*map(int, value.split('-'))) return mark_safe( "%s" % value.strftime("%A (%d %b %Y)") ) + mark_safe( "&lt;input type='hidden' name='%s' value='%s' /&gt;" % ( name, value ) ) def _has_changed(self, initial, data): return False </code></pre> <p>You then use this in the field as <code>(widget=DayLabelWidget,)</code>.</p> http://stackoverflow.com/questions/1141504/name-this-python-ruby-language-construct-using-array-values-to-satisfy-function/1141520#1141520 8 Answer by Matthew Schinckel for Name this python/ruby language construct (using array values to satisfy function parameters) Matthew Schinckel 2009-07-17T05:26:05Z 2009-07-18T06:35:35Z <p>In ruby, it is often called "splat".</p> <p>Also in ruby, you can use it to mean 'all of the other elements in the list'.</p> <pre><code>a, *rest = [1,2,3,4,5,6] a # =&gt; 1 rest # =&gt; [2, 3, 4, 5, 6] </code></pre> <p>It can also appear on either side of the assignment operator:</p> <pre><code>a = d, *e </code></pre> <p>In this usage, it is a bit like scheme's cdr, although it needn't be all but the head of the list.</p> http://stackoverflow.com/questions/1141484/can-you-find-out-if-a-django-model-instance-is-dirty 1 Can you find out if a Django Model instance is "dirty"? Matthew Schinckel 2009-07-17T05:11:36Z 2009-07-17T06:43:39Z <p>I really like the feature of SQLAlchemy that allows you to see if an object is dirty: if it has been modified since it was retrieved from the database, or the last time it was saved.</p> <p>Is it possible to find this information from the Django ORM?</p> <p>Note this is not the same as <a href="http://stackoverflow.com/questions/110803/dirty-fields-in-django">Dirty fields in django</a>, as I don't care about what the previous data was, although S.Lott's answer may provide a way to do it, but I would like a way that doesn't hit the database.</p> <p>I have also looked at the <code>django.db.transaction.is_dirty()</code>, but this doesn't seem to be the solution.</p> http://stackoverflow.com/questions/1141484/can-you-find-out-if-a-django-model-instance-is-dirty/1141619#1141619 1 Answer by Matthew Schinckel for Can you find out if a Django Model instance is "dirty"? Matthew Schinckel 2009-07-17T06:10:22Z 2009-07-17T06:10:22Z <p>A solution that does do a database query:</p> <pre><code>class DirtyMixin(object): @property def is_dirty(self): db_obj = self.get(self.pk) for f in self._meta.local_fields: if self.__getattribute__(f.name) != db_obj.__getattribute__(f.name): return True return False </code></pre> <p>You can then add this as an ancestor class to a model. Or, monkey-patch the forms.Model class, if you like.</p> <pre><code>from django.db import models models.Model.__bases__ = (DirtyMixin,) + models.Model.__bases__ </code></pre> http://stackoverflow.com/questions/1925383/issue-with-manytomany-relationships-not-updating-inmediatly-after-save Comment by Matthew Schinckel on Issue with ManyToMany Relationships not updating inmediatly after save Matthew Schinckel 2009-12-18T00:59:39Z 2009-12-18T00:59:39Z So, are you changing the pk of objects? http://stackoverflow.com/questions/1911783/how-to-markup-a-ladder-draw Comment by Matthew Schinckel on How to markup a ladder/draw Matthew Schinckel 2009-12-16T02:06:23Z 2009-12-16T02:06:23Z Why avoid using a table? It is tabular data. Semantically, a table would be the best choice. http://stackoverflow.com/questions/1811562/rolling-my-own-version-control/1811731#1811731 Comment by Matthew Schinckel on Rolling my own "Version Control" Matthew Schinckel 2009-11-28T06:46:42Z 2009-11-28T06:46:42Z I think that the point Bill was making is that these are <i>incremental</i> backups: it doesn't just keep the most recent. You can go back to an earlier version. http://stackoverflow.com/questions/832366/problem-with-nsstring-and-nsmutableurlrequest/832402#832402 Comment by Matthew Schinckel on Problem with NSString and NSMutableURLRequest Matthew Schinckel 2009-11-23T06:31:02Z 2009-11-23T06:31:02Z Auctually, I seem to have reproduced it. It must be with how we are getting the string. I am using some code I found to base64Encode the username/password, and clearly it is failing. http://stackoverflow.com/questions/1708292/meaning-of-using-commas-and-underscores-with-python-assignment-operator/1708344#1708344 Comment by Matthew Schinckel on Meaning of using commas and underscores with Python assignment operator? Matthew Schinckel 2009-11-10T21:36:46Z 2009-11-10T21:36:46Z Yeah, but in the context given above, it is a &quot;don't care&quot; variable. http://stackoverflow.com/questions/1455126/unique-booleanfield-value-in-django Comment by Matthew Schinckel on Unique BooleanField value in Django? Matthew Schinckel 2009-11-02T01:32:10Z 2009-11-02T01:32:10Z Not necessarily: if you use a NullBooleanField, then you should be able to have: (a True, a False, any number of NULLs). http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/36316#36316 Comment by Matthew Schinckel on What are some useful TextMate features? Matthew Schinckel 2009-10-17T08:43:29Z 2009-10-17T08:43:29Z You can also use <code>hg diff | mate -</code> to get a diff of the mercurial repo. http://stackoverflow.com/questions/816918/how-to-make-textmate-work-well-with-nfs/818591#818591 Comment by Matthew Schinckel on How to make textmate work well with NFS? Matthew Schinckel 2009-10-02T02:16:52Z 2009-10-02T02:16:52Z Note: the latest ReMate plugins will enable turning this on/off on a volume by volume basis, which is good enough for me. http://stackoverflow.com/questions/1484696/dateformat-in-django-and-app-engine Comment by Matthew Schinckel on DateFormat in Django and App Engine? Matthew Schinckel 2009-09-28T12:37:02Z 2009-09-28T12:37:02Z Duplicate - <a href="http://stackoverflow.com/questions/907351/european-date-input-in-django-admin" rel="nofollow" title="european date input in django admin">stackoverflow.com/questions/907351/&hellip;</a> http://stackoverflow.com/questions/1469679/understanding-python-profile-output/1470325#1470325 Comment by Matthew Schinckel on Understanding Python profile output Matthew Schinckel 2009-09-25T05:57:27Z 2009-09-25T05:57:27Z My bad. Will fix. http://stackoverflow.com/questions/1381346/easiest-way-to-write-a-python-program-with-access-to-django-database-functionalit/1381619#1381619 Comment by Matthew Schinckel on Easiest way to write a Python program with access to Django database functionality Matthew Schinckel 2009-09-05T12:43:39Z 2009-09-05T12:43:39Z You can probably have the cron job run as the apache user. http://stackoverflow.com/questions/1238775/programming-languages-that-define-the-problem-instead-of-the-solution/1238808#1238808 Comment by Matthew Schinckel on Programming languages that define the problem instead of the solution? Matthew Schinckel 2009-08-06T13:21:56Z 2009-08-06T13:21:56Z Prolog is very parallelisable. The order of evaluation of clauses can happen in any order, and even at the same time. http://stackoverflow.com/questions/1230973/local-machine-admin-rights Comment by Matthew Schinckel on Local Machine Admin rights? Matthew Schinckel 2009-08-05T03:06:53Z 2009-08-05T03:06:53Z You mean <code>sudo</code>, right? (GRIN) http://stackoverflow.com/questions/127591/using-caps-lock-as-esc-on-a-mac/258047#258047 Comment by Matthew Schinckel on Using Caps Lock as Esc on a Mac Matthew Schinckel 2009-07-29T02:13:12Z 2009-07-29T02:13:12Z Actually, I had to write a patch to do this. It was for an older version, but I am still using it now: <a href="http://sourceforge.net/tracker/?group_id=65339&amp;atid=510607" rel="nofollow">sourceforge.net/tracker/&hellip;</a> http://stackoverflow.com/questions/1141504/name-this-python-ruby-language-construct-using-array-values-to-satisfy-function/1141568#1141568 Comment by Matthew Schinckel on Name this python/ruby language construct (using array values to satisfy function parameters) Matthew Schinckel 2009-07-28T14:02:52Z 2009-07-28T14:02:52Z Yes, you are correct. I meant map.