User interstar - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:30:35Z http://stackoverflow.com/feeds/user/8482 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1592082/arduino-sending-midi-up-the-usb 1 Arduino : sending MIDI up the USB interstar 2009-10-20T01:54:23Z 2009-11-30T15:04:41Z <p>I'm interested in making an Arduino based MIDI controller to talk to my computer. Looking at other examples of Arduino MIDI (eg. <a href="http://itp.nyu.edu/physcomp/Labs/MIDIOutput" rel="nofollow">http://itp.nyu.edu/physcomp/Labs/MIDIOutput</a>), they all seem to wire up a dedicated 5 pin DIN. Which makes sense as this is the original cable to connect keyboards, expanders and sequencers together.</p> <p>However, I want to send MIDI to my PC. A 5-pin DIN is just going to have to be plugged into a conversion box which connects to my PC via USB. And I already have a USB cable to connect my Arduino to my PC. So why can't I just use this?</p> <p>I'm assuming what would stop me is that these conversion boxes all come with drivers which know how to handle the signal coming in over USB. Whereas, say, a virtual synth on my computer wouldn't expect or know how to handle raw bytes coming in in via the serial port. So is there a standard / free equivalent to these drivers that I could use for my own project? Or, if not, what would it take to write one? Where could I find out more about this?</p> http://stackoverflow.com/questions/920271/django-model-with-two-generic-contenttype-foreign-keys 0 django model with two generic (content_type) foreign keys? interstar 2009-05-28T10:56:50Z 2009-11-08T13:18:20Z <p>I'm trying to create a mapping table between two generic (content_type) references, one for "agents" and one for "resources".</p> <p>So I take the usual way I make a generic foreign key : </p> <pre><code>content_type = models.ForeignKey(ContentType) object_id = models.PositiveIntegerField() resource = generic.GenericForeignKey('content_type', 'object_id') </code></pre> <p>And I try to make a model with two.</p> <pre><code>agent_content_type = models.ForeignKey(ContentType) agent_object_id = models.PositiveIntegerField() agent = generic.GenericForeignKey('agent_content_type', 'agent_object_id') resource_content_type = models.ForeignKey(ContentType) resource_object_id = models.PositiveIntegerField() resource = generic.GenericForeignKey('resource_content_type', 'resource_object_id') </code></pre> <p>But this now throws up the following errors : </p> <blockquote> <p>myapp.mymodel: Accessor for field 'resource_content_type' clashes with related field 'ContentType.mymodel_set'. Add a related_name argument to the definition for 'resource_content_type'.</p> </blockquote> <p>And similar for the agent.</p> <p>What's going on here? And what should I do?</p> <p>cheers </p> <p>phil</p> http://stackoverflow.com/questions/1584733/python-things-which-are-neither-true-nor-false 5 Python things which are neither True nor False interstar 2009-10-18T12:09:00Z 2009-10-19T02:51:43Z <p>I just found this :</p> <pre><code>a = (None,) print (a is True) print (a is False) print (a == True) print (a == False) print (a == None) print (a is None) if a : print "hello" if not a : print "goodbye" </code></pre> <p>which produces :</p> <pre><code>False False False False False False hello </code></pre> <p>So a neither is, nor equals True nor False, but acts as True in an if statement. </p> <p>Why?</p> <p>Update : </p> <p>actually, I've just realized that this isn't as obscure as I thought. I get the same result for a=2, as well (though not for a=0 or a=1, which are considered equal to False and True respectively)</p> http://stackoverflow.com/questions/1154315/javascript-firebug-cannot-access-optimized-closure-what-does-it-mean 9 Javascript + Firebug : "cannot access optimized closure" What does it mean? interstar 2009-07-20T15:41:42Z 2009-10-14T21:19:02Z <p>I just got the following error in a piece of javascript (in Firefox 3.5, with Firebug running)</p> <pre><code>cannot access optimized closure </code></pre> <p>I know, superficially, what caused the error. I had a line </p> <pre><code>options.length() </code></pre> <p>instead of </p> <pre><code>options.length </code></pre> <p>Fixing this bug, made the message go away. But I'm curious. What does this mean? What is an optimized closure? Is optimizing an enclosure something that the javascript interpretter does automatically? What does it do?</p> http://stackoverflow.com/questions/245094/upgrading-google-application-engine-program-to-use-unicode 1 Upgrading Google Application Engine program to use unicode interstar 2008-10-28T22:20:23Z 2009-10-04T03:53:15Z <p>I have a simple Google App Engine app, that I wrote using ordinary strings. I realize I want to make it handle unicode. Are there any gotchas with this? I'm thinking of all the strings that I currently already have in the live database. (From real users who I don't want to upset.)</p> http://stackoverflow.com/questions/1380948/django-sessioncookiedomain 1 Django SESSION_COOKIE_DOMAIN interstar 2009-09-04T18:53:27Z 2009-10-02T10:13:01Z <p>I'm seeing something mysterious with the SESSION_COOKIE_DOMAIN setting in django.</p> <p>Normally, when I have this set to ".mydomain.net" it works fine. But occasionally cookies don't seem to be being set, because when I log in, I'm not remembered in the session and I become AnonymousUser when I get to the next page.</p> <p>In these circumstances, if, I change my settings file so that SESSION_COOKIE_DOMAIN is now None or "", then the site behaviour returns to normal. If I change SESSION_COOKIE_DOMAIN back to mydomain, the problem returns.</p> <p>Any ideas? Is this likely to be a silent failure in the settings? Or could it be something to do with my server configuration? Or the machine I'm accessing the site from?</p> http://stackoverflow.com/questions/1487926/django-how-do-i-call-reverse-on-a-link-to-a-static-image-file 0 Django : How do I call "reverse" on a link to a static image file? interstar 2009-09-28T16:13:42Z 2009-09-28T16:32:28Z <p>In Django, I have images stored in site_media like this : </p> <pre><code>/site_media/somepath/image.jpg </code></pre> <p>The urls.py file has been set up to server these using :</p> <pre><code>urlpatterns += patterns('', (r'^site_media/(?P&lt;path&gt;.*)$', 'staticfiles.views.serve') ) urlpatterns += patterns('', (r'^site_media/(?P&lt;path&gt;.*)$', 'staticfiles.views.serve') ) </code></pre> <p>So how can I make a reverse() or {% url %} call to one of these images?</p> http://stackoverflow.com/questions/1472373/anyone-know-an-up-to-date-september-2009-example-of-file-uploading-in-django 0 Anyone know an up-to-date (September 2009) example of file-uploading in Django? interstar 2009-09-24T15:16:31Z 2009-09-24T16:58:48Z <p>UPDATE : thanks to posters below, it's clear that the official documentation is up-to-date. Best to read that carefully rather than skim a bunch of other pages that turn up in Google.</p> <p><hr /></p> <p>I keep finding examples and snippets for uploading files in Django, but then reading people saying that they're out of date.</p> <p>Here are my basic confusions (from seeing various examples) around the web.</p> <p>Do I have to save the file data myself manually (ie. open a file and write it, as in <a href="http://docs.djangoproject.com/en/dev/topics/http/file-uploads/" rel="nofollow">this example</a>) or does Django now save the file automatically when I save a model which has a field of type File?</p> <p>Do I have to manually get the file data from somewhere in order to copy it <em>in</em> to this field in the model? I mean, I understand that request.FILES is deprecated) but when I upload a file from a custom HTML-form (using a &lt;input type="file" tag) the cleaned_data for this field is None, even though the request.FILES dictionary still seems to contain the data. So how am I meant to pick up the file data and put it into the model's field? (If that's what I'm meant to do?)</p> <p>cheers</p> <p>phil</p> http://stackoverflow.com/questions/1467612/are-python-modules-first-class-citizens 6 Are python modules first class citizens? interstar 2009-09-23T17:56:19Z 2009-09-23T17:59:30Z <p>I mean, can I create them dynamically?</p> http://stackoverflow.com/questions/1450800/django-debugging-templatetags 1 Django : debugging templatetags interstar 2009-09-20T11:09:27Z 2009-09-20T11:27:22Z <p>How on earth do people debug Django templatetags?</p> <p>I created one, based on a working example, my new tag looks the same to me as the existing one. But I just get a </p> <pre><code>'my_lib' is not a valid tag library: Could not load template library from django.templatetags.my_lib, No module named my_lib </code></pre> <p>I know that this is probably because of something failing when defining the lib. But how do I see what's going on?</p> <p>What do you use to debug this situation?</p> http://stackoverflow.com/questions/207265/where-next-after-haskell 2 Where next, after Haskell? [closed] interstar 2008-10-16T02:50:54Z 2009-09-10T08:44:55Z <p>I tend to have a stereotype of Haskell as the most "advanced" (high-level, sophisticated, powerful, abstract) language. One which has lots of weird features that, if I could grasp them, would make me a super-hero programmer.</p> <p>But what comes <em>after</em> Haskell? What languages and new kinds of abstraction are being invented now in academia which make even Haskell look like Blub?</p> http://stackoverflow.com/questions/619049/why-should-one-not-use-community-wiki-for-questions 4 Why should one NOT use community wiki for questions? [closed] interstar 2009-03-06T14:34:43Z 2009-08-25T23:59:23Z <p>By default I make my SO questions Community Wiki, but recently people have been commenting that I should NOT do this.</p> <p>Is there some kind of rule as to when you shouldn't? I can't see anything about it in the FAQ and I can't even see anywhere to ask the question on Uservoice.</p> <p>Seems a strange restriction. I make stuff wiki so other people can tweak and improve the question. It's still a real question. People can still opt-out individually if they don't like their answers being community wiki and still gain rep.</p> <p><a href="http://stackoverflow.uservoice.com/pages/general/suggestions/134726-sort-out-the-rules-for-community-wiki" rel="nofollow">Here's the link to the suggestion in uservoice to improve the FAQ.</a></p> http://stackoverflow.com/questions/1275486/django-how-can-i-see-a-list-of-urlpatterns 0 Django : How can I see a list of urlpatterns? interstar 2009-08-14T00:49:17Z 2009-08-14T05:45:10Z <p>How can I see the current urlpatterns that "reverse" is looking in? </p> <p>I'm calling reverse in a view with an argument that I think should work, but doesn't. Any way I can check what's there and why my pattern isn't?</p> http://stackoverflow.com/questions/451583/erlang-disallowed-nodes-maybe-cookie-question 3 Erlang : Disallowed Nodes / Maybe Cookie question. interstar 2009-01-16T19:13:15Z 2009-08-11T08:22:58Z <p>Trying to get two erlang nodes talking to each other : one on a Ubuntu machine and one on Windows XP.</p> <p>We're getting a "<strong>Connection attempt from disallowed node</strong>" message which prevents one node receiving messages from the other.</p> <p>They're both using 5.XXX versions of Erlang OTP. </p> <p>Both nodes have the same cookie ( .erlang.cookie)</p> <p>We are starting the receiver node with :</p> <pre><code>erl -name fred@ipaddress </code></pre> <p>and calling the function on it with 'fred@ipaddress' (in single quotes)</p> <p>We've turned firewalls off.</p> <p>So what else may be preventing the connection?</p> <p>Update : we're using erlang:get_cookie() to check the cookie on both nodes, and the values are different. So is this the problem. We think we're setting the cookie by putting the same .erlang.cookie file in the directory where we run erlang on both machines. But maybe this is the wrong place?</p> <p>Update 2 : thanks for the answers everyone. We chose Ranok's as our answer because it worked well for us. I'm sure some of the alternative ways of setting the cookie would be fine too.</p> http://stackoverflow.com/questions/1251476/pinax-signup-and-accounts 2 Pinax Signup and Accounts interstar 2009-08-09T14:18:53Z 2009-08-09T22:52:37Z <p>Does anyone know a good link to documentation about Pinax signup and "Accounts". I'm trying to work out how to implement our sign-up process in Django / Pinax and am trying to navigate my way between Django's User and Profile classes and the Account class in Pinax..</p> <p>The main issue for us is we have a sign-up form with several extra questions that must be answered at the point of requesting an account. Membership then needs to be accepted by an admin before the account is enabled. At which point, the answers to these extra questions will be stored in the user's profile.</p> <p>I'm torn between two rival approaches.</p> <p>1) Create the User and Profile object at the time of the request. But flag them as "pending" in some way, until approval.</p> <p>2) Create some kind of alternative model class to temporarily store these values until approval. At which point I create the User and Profile objects and copy the information into them.</p> <p>I'm trying to infer from the Pinax signup code which of these approaches is most "with the grain" of Pinax, but it's not clear.</p> <p>So, experienced Django/Pinax developers. Which of these is the more "pinactic" way to go about things?</p> http://stackoverflow.com/questions/1221240/django-content-type-how-do-i-get-an-object 0 Django content-type : how do I get an object? interstar 2009-08-03T08:38:56Z 2009-08-03T08:46:03Z <p>If I have a django content_type reference (the id of the model.class and the id of the object), what's the best way to get the actual object itself?</p> <p>Sounds trivial but I can't actually see an example anywhere.</p> http://stackoverflow.com/questions/1207780/django-error-with-custom-inclusiontag-cant-find-file 0 Django : error with custom inclusion_tag, can't find file interstar 2009-07-30T16:36:48Z 2009-07-30T17:02:31Z <p>I'm trying to write a custom inclusion_tag in django.</p> <p>Following the example on <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/custom-template-tags/</a></p> <p>I'm just writing </p> <p>@register.inclusion_tag('test.html')</p> <p>where test.html is a file in the same directory ( apps/my_app/templatetags) as the .py file which defines it.</p> <p>But I'm getting a</p> <p>TemplateDoesNotExist: test.html</p> <p>error. Which I suppose is because django can't find the template.</p> <p>How could I check this? And what determines where django looks for the file?</p> http://stackoverflow.com/questions/1200344/where-do-browsers-store-dynamically-downloaded-javascript 1 Where do browsers store dynamically downloaded Javascript? interstar 2009-07-29T13:38:05Z 2009-07-29T16:46:41Z <p>This question ( <a href="http://stackoverflow.com/questions/1199467/weird-browser-ajax-error-extra-junk-appears-at-the-end-of-javascript-files-in">http://stackoverflow.com/questions/1199467/weird-browser-ajax-error-extra-junk-appears-at-the-end-of-javascript-files-in</a> ) set me thinking ... I know what happens when I dynamically update the DOM on a web, page. At least, there's a tree of nodes representing the document and I can modify it.</p> <p>But where does a browser put Javascript? How does a library like YUI dynamically load extra code?</p> http://stackoverflow.com/questions/1199467/weird-browser-ajax-error-extra-junk-appears-at-the-end-of-javascript-files-in 0 Weird browser / ajax error : Extra junk appears at the end of javascript files in firefox interstar 2009-07-29T11:05:32Z 2009-07-29T11:27:30Z <p>This is a weird one.</p> <p>We're writing a Django application with some rich javascript UI, using both Yahoo YUI and jQuery.</p> <p>Our main page template now includes a fair number of js files. And we're starting to see a strange error in Firefox (3 and 3.5) . Sometimes the javascript crashes. And inspecting in Firebug we see that a syntax error occurred in one of the YUI .js files. When we look at the line in Firebug, we see that it's actually a line that doesn't exist in the original file, but seems to be some junk javascript that's got appended.</p> <p>For example, the last part of a despaceed yahoo-dom-event.js is</p> <pre><code>YAHOO.register("yahoo-dom-event", YAHOO, {version: "2.7.0", build: "1799"}); </code></pre> <p>According to Firebug, this now seems to have a near copy of this file appended on the end, starting with </p> <pre><code>return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O&lt;N;O=O+1){var M=I[O]... </code></pre> <p>Perhaps this is some of the earlier code that's overflowed a buffer somewhere. </p> <p>So, has anyone else experienced anything like this? Or knows this as a bug in one of the components of our stack :</p> <ul> <li>Django</li> <li>lighttpd</li> <li>Firefox</li> <li>Firebug</li> <li>YUI </li> <li>jQuery (also on the page)</li> </ul> http://stackoverflow.com/questions/1189142/django-how-can-i-see-what-custom-tags-have-been-defined 1 Django : How can I see what custom tags have been defined? interstar 2009-07-27T16:18:21Z 2009-07-28T15:44:25Z <p>I'm having trouble with a custom tag in Django.</p> <p>Is there any way I can see a list of what custom tags have been defined and are currently registered?</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/351458#351458 1 Answer by interstar for What is the strangest/weirdest program you've ever made? interstar 2008-12-09T00:48:37Z 2009-07-23T01:30:54Z <p><a href="http://www.gbloink.com" rel="nofollow">Gbloink</a>! </p> http://stackoverflow.com/questions/1125107/django-how-can-i-find-a-list-of-models-that-the-orm-knows 5 Django : How can I find a list of models that the ORM knows? interstar 2009-07-14T12:40:58Z 2009-07-14T20:24:17Z <p>In Django, is there a place I can get a list of or look up the models that the ORM knows about?</p> http://stackoverflow.com/questions/1084271/best-practice-for-managing-project-variants-in-git 2 Best practice for managing project variants in Git? interstar 2009-07-05T15:33:10Z 2009-07-09T06:49:36Z <p>I have to develop two Django projects which share 90% of the same code, but have some variations in several applications, templates and within the model itself.</p> <p>I'm using Git for distributed source-control.</p> <p>My requirements are that :</p> <ul> <li><p>common code for both projects is developed in one place (Project1's development environment)</p></li> <li><p>periodically this is merged into the development environment of the second project (Project2)</p></li> <li><p>the variations are not easily encapsulated within apps. (eg. there are apps. such as "profiles" which vary between Project1 and Project2 but for which there's also an ongoing common evolution)</p></li> <li><p>both Project1 and Project2 have public repositories, so that I can collaborate with others</p></li> <li><p>similarly Project1 and Project2 ought to have development, demo, staging and production servers.</p></li> <li><p>however, the public repository is not on the same server in both cases. So, for example, when I'm developing in Project1, I want to be able to "push" to my github server, but not have Project2 stuff going there. </p></li> <li><p>there are files such as local_settings.py which are completely different between Project1 and Project2, but should be shared between multiple developers of each Project</p></li> </ul> <p>So what's the best way of managing this situation?</p> <p>What would seem to be ideal would be something like a "filtered pull" where instead of .gitignore saying "ignore this file entirely", I can say "ignore this file when pulling from that repo" I couldn't see anything quite like that in the documentation, but might there be something like that?</p> http://stackoverflow.com/questions/1087730/is-there-a-way-to-list-django-signals 1 Is there a way to list Django signals? interstar 2009-07-06T15:48:08Z 2009-07-06T15:59:17Z <p>Is there a way to see which signals have been set in Django?</p> http://stackoverflow.com/questions/1086377/django-error-thrown-by-database-relation-mytable-does-not-exist-for-a-co 1 Django : Error thrown by database : relation "_mytable" does not exist (for a content_type) . Lost app-name interstar 2009-07-06T10:29:15Z 2009-07-06T10:29:15Z <p>In Django, I have a model, let's call it "MyTable" which uses a content_type Foreign Key to refer to, amongst other things, Profile.</p> <p>In most cases (as in my unit-tests) I have no trouble with it, but in a certain circumstance in the view I try to save a Profile object (with Profile's .save() ) and the database throws this exception :</p> <pre><code>relation "_mytable" does not exist </code></pre> <p>I presume that this is because of some reverse-lookup that the ORM is making between the Profile and MyTable due to the ForeignKey from MyTable to Profile.</p> <p>Now there definitely is a relation in the database called myapp_mytable. But in this case, the ORM seems to have lost the app-name. Checking the SQL confirms this, it really is trying to select from _mytable instead of myapp_mytable. </p> <p>Anyone seen anything like this or have suggestions?</p> http://stackoverflow.com/questions/1086248/django-i-have-a-save-which-is-failing-how-can-i-see-the-sql-thats-generated 3 Django : I have a save() which is failing. How can I see the SQL that's generated? interstar 2009-07-06T09:46:09Z 2009-07-06T09:50:43Z <p>I have a failing model.save() in my Django app. How can I see the SQL that was generated by it?</p> http://stackoverflow.com/questions/1084978/problem-importing-files-in-django-settings-py 1 Problem importing files in Django settings.py interstar 2009-07-05T22:41:26Z 2009-07-06T09:25:05Z <p>I have a Django project which seemed to work pretty well with settings.py, which also imported a local_settings.py without problem.</p> <p>I've now added the following lines at the end of the settings file :</p> <pre><code>try: from extras import * except ImportError, e: print "import extras failed :: " + `e` </code></pre> <p>extras.py is a file of extra configuration information sitting in the same directory as settings.py and local_settings.py, however, I'm now getting :</p> <pre><code>import extras failed :: ImportError('Settings cannot be imported, because environment variable DJANGO_SETTINGS_MODULE is undefined.',) </code></pre> <p>This seems to be due to me trying to </p> <pre><code>from django.contrib.auth.models import User,UserManager from django.db import models </code></pre> <p>in that extras.py file.</p> <p>Anyone have any ideas?</p> <p>cheers</p> http://stackoverflow.com/questions/1079629/django-queries-generic-contenttypes 0 Django queries, generic content_types interstar 2009-07-03T14:32:59Z 2009-07-03T14:57:05Z <p>I have a question about django content_types</p> <p>In the example of filtering a QuerySet for a generic content type on <a href="http://www.djangoproject.com/documentation/models/generic_relations/" rel="nofollow">http://www.djangoproject.com/documentation/models/generic_relations/</a> there are the following lines.</p> <pre><code>ctype = ContentType.objects.get_for_model(quartz) TaggedItem.objects.filter(content_type__pk=ctype.id, object_id=quartz.id) </code></pre> <p>Can anyone explain what content_type__pk means? </p> <p>Does the __ mean that there's an indirection going on? What does that mean in the context of the left-hand side of a match in the filter? </p> <p>I see that in the model definition </p> <pre><code>content_type = models.ForeignKey(ContentType) </code></pre> <p>but when translated into the database there is no field called content_type, but there is a content_type_id ... so is it that content_type__pk actually translates into content_type_id? And if so, why didn't they use this in the filter example?</p> http://stackoverflow.com/questions/1075106/how-do-i-find-the-memory-address-of-a-python-django-model-object 0 How do I find the memory address of a Python / Django model object? interstar 2009-07-02T15:35:53Z 2009-07-02T16:05:41Z <p>An ordinary object, I can use </p> <pre><code>o.__repr__() </code></pre> <p>to see something like </p> <pre><code>'&lt;__main__.A object at 0x9d78fec&gt;' </code></pre> <p>But, say, a Django User just returns </p> <pre><code>&lt;User:bob&gt; </code></pre> <p>How can I see the actual address of one of these, or compare whether two such model-objects are actually the same object or not?</p> http://stackoverflow.com/questions/1027421/django-what-gets-executed-as-the-server-starts-as-a-request-comes-in 1 Django : What gets executed as the server starts? As a request comes in? interstar 2009-06-22T14:08:16Z 2009-06-23T15:18:59Z <p>I've been doing some class hacking in Django. And I call my changes from settings.py as I figure this runs before anything else.</p> <p>However, I've just come across a situation where this doesn't work for me. So, is there another place <em>after</em> settings.py, which I can guarantee will always be run by the server before it starts handling any requests? </p> http://stackoverflow.com/questions/1592088/a-simple-framework-for-google-app-engine-like-sinatra Comment by interstar on A simple framework for Google App Engine (like Sinatra)? interstar 2009-10-20T02:59:54Z 2009-10-20T02:59:54Z Funny. I was thinking I wanted something like that, just yesterday. Getting sick of running backwards and forwards between urls.py (in django) or the yaml file in GAE. http://stackoverflow.com/questions/1487926/django-how-do-i-call-reverse-on-a-link-to-a-static-image-file/1487957#1487957 Comment by interstar on Django : How do I call "reverse" on a link to a static image file? interstar 2009-09-28T16:32:32Z 2009-09-28T16:32:32Z ok, thanks. I'll do that. http://stackoverflow.com/questions/1472373/anyone-know-an-up-to-date-september-2009-example-of-file-uploading-in-django/1472432#1472432 Comment by interstar on Anyone know an up-to-date (September 2009) example of file-uploading in Django? interstar 2009-09-24T16:46:25Z 2009-09-24T16:46:25Z actually. On second thoughts, the file doesn't seem to be saved anywhere. So I do have to do this manually?? http://stackoverflow.com/questions/1472373/anyone-know-an-up-to-date-september-2009-example-of-file-uploading-in-django/1472432#1472432 Comment by interstar on Anyone know an up-to-date (September 2009) example of file-uploading in Django? interstar 2009-09-24T16:17:35Z 2009-09-24T16:17:35Z thanks. Yes I missed the request.FILES being passed into the form constructor in the official documentation example. I was reading another site which was showing it being accessed explicitly and a comments saying that this was out-of-date. http://stackoverflow.com/questions/1467612/are-python-modules-first-class-citizens/1467635#1467635 Comment by interstar on Are python modules first class citizens? interstar 2009-09-24T02:34:57Z 2009-09-24T02:34:57Z Ah. That's nice. http://stackoverflow.com/questions/1450800/django-debugging-templatetags/1450823#1450823 Comment by interstar on Django : debugging templatetags interstar 2009-09-20T14:11:18Z 2009-09-20T14:11:18Z Thanks guys. Good advice. Actually I found the problem : my file didn't have the same name as the library being included. Stupidly I assumed that the name in the {% load .. %} was the name of the app. http://stackoverflow.com/questions/44109/extending-the-user-model-with-custom-fields-in-django/965859#965859 Comment by interstar on Extending the User model with custom fields in Django interstar 2009-08-09T14:30:39Z 2009-08-09T14:30:39Z Maybe, but you want to say why? I had to do this, simply because none of the other options worked for me. http://stackoverflow.com/questions/1207780/django-error-with-custom-inclusiontag-cant-find-file/1207944#1207944 Comment by interstar on Django : error with custom inclusion_tag, can't find file interstar 2009-07-30T20:00:23Z 2009-07-30T20:00:23Z ok, I found, thanks http://stackoverflow.com/questions/1200344/where-do-browsers-store-dynamically-downloaded-javascript/1200377#1200377 Comment by interstar on Where do browsers store dynamically downloaded Javascript? interstar 2009-07-29T14:44:51Z 2009-07-29T14:44:51Z Thanks. That was interesting, but not quite what I was asking about. I was thinking more of the dynamic loading under the control of the program. An answer to my previous question made it sound as though YUI was dynamically adding code to an in-memory copy of a js file and it was the organization of code in the browser's memory I was curious about. http://stackoverflow.com/questions/1199467/weird-browser-ajax-error-extra-junk-appears-at-the-end-of-javascript-files-in/1199562#1199562 Comment by interstar on Weird browser / ajax error : Extra junk appears at the end of javascript files in firefox interstar 2009-07-29T11:37:20Z 2009-07-29T11:37:20Z Thanks. So, if I understand you correctly, you're saying that this extra, which I emphasize <i>isn't</i> in the source file on the server, could be a deliberately dynamically loaded compressed version of some other code? http://stackoverflow.com/questions/1086377/django-error-thrown-by-database-relation-mytable-does-not-exist-for-a-co Comment by interstar on Django : Error thrown by database : relation "_mytable" does not exist (for a content_type) . Lost app-name interstar 2009-07-06T16:02:33Z 2009-07-06T16:02:33Z maybe not ... seem to have fixed ordering, but problem persists. http://stackoverflow.com/questions/1086377/django-error-thrown-by-database-relation-mytable-does-not-exist-for-a-co Comment by interstar on Django : Error thrown by database : relation "_mytable" does not exist (for a content_type) . Lost app-name interstar 2009-07-06T11:41:57Z 2009-07-06T11:41:57Z yes ... the ordering <i>is</i> weird. Will keep investigating in that direction, cheers http://stackoverflow.com/questions/1086377/django-error-thrown-by-database-relation-mytable-does-not-exist-for-a-co Comment by interstar on Django : Error thrown by database : relation "_mytable" does not exist (for a content_type) . Lost app-name interstar 2009-07-06T10:50:34Z 2009-07-06T10:50:34Z that's an interesting thought ... let me check http://stackoverflow.com/questions/1086248/django-i-have-a-save-which-is-failing-how-can-i-see-the-sql-thats-generated/1086270#1086270 Comment by interstar on Django : I have a save() which is failing. How can I see the SQL that's generated? interstar 2009-07-06T10:14:40Z 2009-07-06T10:14:40Z That's it. Thanks. http://stackoverflow.com/questions/1084271/best-practice-for-managing-project-variants-in-git/1084306#1084306 Comment by interstar on Best practice for managing project variants in Git? interstar 2009-07-05T21:52:57Z 2009-07-05T21:52:57Z The point is that template differences may depend on the whim of each project. Today, the designers, clients etc. might prefer that Project1 template is broken into three tabbed areas, whereas Project2 shows them as a single scrolling page. In a month's time, Project2 might have adopted tabs, but using a different js widget library. What varies can vary enormously. What's constant is not what the template includes, but what includes it. (And passes information into it.)