User Prairiedogg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T06:49:20Zhttp://stackoverflow.com/feeds/user/27462http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1782639/geospatial-library-for-the-iphone0Geospatial library for the iPhone Prairiedogg2009-11-23T11:43:55Z2009-11-23T11:56:01Z
<p>I'm thinking about creating a location-aware iPhone app that could work offline by coming packaged with a list of points of interest (POIs). The app would read the user's current location from <code>CoreLocation</code> and produce a list of the POIs in order of proximity to the user's current location.</p>
<p>I need two basic geospatial functions to get this application off the ground. The first is a function that tests if a point (the user's current location) lies within certain geospatial boundaries. The second is a function that can give me the distance between two lat/lon points. I would use the second function to sort the list of POIs by proximity to the user's current location.</p>
<p>I understand that this problem area is well traveled and there are open-source options. The leading candidate (that I know of) is the <a href="http://trac.osgeo.org/geos/" rel="nofollow">GEOS</a> C++ library. The way I imagine I would use this is by compiling GEOS as a static library (and linking as a project dependency, as you do to include the <a href="http://github.com/facebook/three20" rel="nofollow">three20</a> library.)</p>
<p>My question is:</p>
<ol>
<li><p>What is the best way to get the two necessary functions into my application.</p></li>
<li><p>If the best answer to question 1 is compiling GEOS as a static library and linking it to my project, could anyone who has done this before offer some pointers? I'm a novice at compilation, static library building, etc. I would love to see some example code or tutorials on how to get GEOS compiled and included in a project with a trivial example usage.</p></li>
</ol>
http://stackoverflow.com/questions/1036996/interesting-python-system-utilities-you-have-made/1041633#10416331Answer by Prairiedogg for Interesting Python system utilities you have made?Prairiedogg2009-06-25T00:35:45Z2009-11-11T03:49:08Z<p>I wrote a script that uses rsync to backup a remote directory tree on a local drive, and then starts rotating the backups after an arbitrary number of runs using only the deltas (sorta like time machine on the mac). Got that sucker running on a few geographically separate machines and feel much better about the safety of my data from destruction at least.</p>
<p>Large parts of the script were ported from other people's bash scripts, so that provided a nice stable feature scope to crib off of - maybe taking a look at some utility shell scripts would give you an idea to "translate" it into python, thus making it a little more extensible and readable.</p>
<p>You can check out the <a href="http://bitbucket.org/prairiedogg/pd%5Frsync/" rel="nofollow">repo</a> on bitbucket.</p>
http://stackoverflow.com/questions/1619172/itunes-connect-api/1619635#16196350Answer by Prairiedogg for iTunes Connect APIPrairiedogg2009-10-25T00:53:18Z2009-10-25T00:53:18Z<p>Here is a small project that may be helpful to you in automating the download of piano reports from iTunes Connect. It's a python script to automate the login / download of daily sales files and I use it daily in conjunction with some other scripts to parse that data. Hook it up to a cron job with some error checking (the reports never seem to be generated at the same time) and you'll be good to go.</p>
<p><a href="http://code.google.com/p/appdailysales/" rel="nofollow">http://code.google.com/p/appdailysales/</a></p>
http://stackoverflow.com/questions/1586041/django-and-executing-a-separate-py-to-manipute-a-database/1586561#15865612Answer by Prairiedogg for django and executing a separate .py to manipute a databasePrairiedogg2009-10-19T01:19:40Z2009-10-19T01:19:40Z<p>You might also check out <a href="http://github.com/django-extensions/django-extensions" rel="nofollow">django-extensions</a>, which has a built-in manage.py extension called "runscript" that executes any python script in your django project's context.</p>
http://stackoverflow.com/questions/1522210/nslocale-currentlocale-always-returns-enus-not-users-current-language3[NSLocale currentLocale] always returns "en_US" not user's current languagePrairiedogg2009-10-05T20:28:56Z2009-10-06T21:35:41Z
<p>I'm in the processes of internationalizing an iPhone app - I need to make some programmatic changes to some views based on what the user's current locale is. I'm going nuts because no matter what the language preference on the iPhone simulator or actual hardware are, <code>locale</code> always evaluates to "en_US":</p>
<pre><code>NSString *locale = [[NSLocale currentLocale] localeIdentifier];
NSLog(@"current locale: %@", locale);
</code></pre>
<p>The crazy thing is that the rest of the application behaves as expected. The correct strings are selected from the Localization.strings file and used in the interface, and the correct .xib files for the selected locale are used.</p>
<p>I have also tried the following, to no avail and with the same result:</p>
<pre><code>NSString *locale = [[NSLocale autoupdatingCurrentLocale] localeIdentifier];
NSLog(@"current locale: %@", locale);
</code></pre>
<p>Is there something simple I'm missing? A preference or an import perhaps?</p>
<p><strong>Update:</strong></p>
<p>As Darren's answer suggests, the preference I'm looking for is not in <code>NSLocale</code>, rather it is here:</p>
<pre><code>NSUserDefaults* defs = [NSUserDefaults standardUserDefaults];
NSArray* languages = [defs objectForKey:@"AppleLanguages"];
NSString* preferredLang = [languages objectAtIndex:0];
NSLog(@"preferredLang: %@", preferredLang);
</code></pre>
http://stackoverflow.com/questions/1247554/iphone-tableview-with-a-lot-of-images/1247664#12476640Answer by Prairiedogg for iphone tableview with a lot of imagesPrairiedogg2009-08-08T01:08:43Z2009-08-08T01:08:43Z<p>Great scrolling performance results have been reported by subclassing UITableViewCell and drawing the contents of each cell directly. See the accepted answer for <a href="http://stackoverflow.com/questions/1106658/custom-draw-a-uitableviewcell/1107051">this question</a> for more details and links to code samples.</p>
http://stackoverflow.com/questions/406121/flattening-a-shallow-list-in-python11Flattening a shallow list in pythonPrairiedogg2009-01-02T05:40:31Z2009-07-17T11:51:35Z
<p>On a django project, I was hoping to flatten a shallow list with a nested list comprehension, like this:</p>
<pre><code>[image for image in menuitem.image_set.all() for menuitem in list_of_menuitems]
</code></pre>
<p>But I get in trouble of the <code>NameError</code> variety there, because the <code>name 'menuitem' is not defined</code>. After googling and looking around on SO, I got the desired results with a <code>reduce</code> statement:</p>
<pre><code>reduce(list.__add__, map(lambda x: list(x), [mi.image_set.all() for mi in list_of_menuitems]))
</code></pre>
<p>(note, I need that <code>list(x)</code> call there because x is a django <code>QuerySet</code> object)</p>
<p>But the <code>reduce</code> method is fairly unreadable. So my question is:</p>
<p>Is there a simple way to flatten this list with a list comprehension, or failing that, what would you all consider to be the best way to flatten a shallow list like this, balancing performance and readability.</p>
<p><strong>Update</strong>: Thanks to everyone who contributed to this question. Here is a summary of what I learned. I'm also making this a community wiki in case others want to add to or correct these observations.</p>
<p>My original reduce statement is redundant and is better written this way:</p>
<pre><code>>>> reduce(list.__add__, (list(mi.image_set.all()) for mi in list_of_menuitems))
</code></pre>
<p>This is the correct syntax for a nested list comprehension (Brilliant summary <a href="http://stackoverflow.com/users/3002/df">dF</a>!):</p>
<pre><code>>>> [image for mi in list_of_menuitems for image in mi.image_set.all()]
</code></pre>
<p>But neither of these methods are as efficient as using <code>itertools.chain</code>:</p>
<pre><code>>>> from itertools import chain
>>> list(chain(*[mi.image_set.all() for mi in h.get_image_menu()]))
</code></pre>
http://stackoverflow.com/questions/1106658/custom-draw-a-uitableviewcell/1107051#11070513Answer by Prairiedogg for Custom draw a UITableViewCellPrairiedogg2009-07-10T00:01:26Z2009-07-10T00:01:26Z<p>Loren Brichter (author of Tweetie) talked about this in one of the iTunes U Stanford iPhone Programming course lectures. He said that he had gotten great scrolling performance results by subclassing UITableViewCell and drawing the contents of each cell directly and he gives a code example in <a href="http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/" rel="nofollow">his blog post on the subject</a>.</p>
<p>He also notes that apple has added <a href="http://developer.apple.com/iphone/library/samplecode/TableViewSuite/index.html" rel="nofollow">a similar example</a> in one of their code examples.</p>
http://stackoverflow.com/questions/1081402/generating-forms-from-models-a-la-django-modelforms-in-objective-c1Generating forms from models (a la django ModelForms) in Objective-CPrairiedogg2009-07-04T03:08:26Z2009-07-09T12:34:25Z
<p>I'm taking the plunge into iPhone development after about two years working with django. As I've done tutorials and read documentation, one of the things that strikes me as inconvenient about the various libraries used in iPhone development is the amount of repetition required when creating user input forms for data models. </p>
<p>I know of two conventional approaches to user input form creation:</p>
<ol>
<li><p>Create a group of UITextFields in Interface Builder that correspond with the properties on the model class and link them up to corresponding IBOutlets on a custom form controller.</p></li>
<li><p>Create a form view programatically with UITextFields in tables with a custom form view controller class. The class keeps a list of names that correspond to the properties of a model in an array, and then iterate over the array to create UITextFields for each table cell. Use special casing to determine which model attribute is being iterated over, and use that information to create table cells with corresponding UILabels and UITextFields.*</p></li>
</ol>
<p>Of the two, only the first seems practical for iterative development, the second is painfully verbose and extremely difficult (for me) to read. With the introspective capabilities of Objective-C it seems like it would be possible to write code that accepted a model class as an argument and generate a form controller (and perhaps even a form view) from that information at runtime.</p>
<p>So I have three questions:</p>
<ol>
<li><p>Are there conventional alternate approaches to creating form views and controllers for models other than the two I've listed above? I'm not loving either approach I've listed there.</p></li>
<li><p>Is automatic generation of form controllers / views at runtime feasible in Objective-C, or am I just barking up the wrong tree?</p></li>
<li><p>Has such automatic generation been attempted or accomplished already? (a little googling turned up nothing)</p></li>
</ol>
<p>*My main reference for this comes from Example #6 in Chapter 9: Navigation Controllers and Table Views of Apress' "<a href="http://apress.com/book/view/9781430224594" rel="nofollow">Beginning iPhone 3 Development</a>"</p>
http://stackoverflow.com/questions/1081678/beginning-os-x-iphone-development-reference-texts/1081752#10817521Answer by Prairiedogg for Beginning OS X & iPhone Development: Reference textsPrairiedogg2009-07-04T07:45:33Z2009-07-04T09:36:32Z<p>I come from a web dev background and just started picking up iPhone dev as well. Here are the top three resources I've used in the past couple weeks to get up to speed:</p>
<ol>
<li><p><a href="http://www.apress.com/book/view/1430224592" rel="nofollow">Beginning iPhone 3 Development: Exploring the iPhone SDK</a> - I realize this may be the same book you mention that you've already read, but the linked version is an update to cover the changes introduced in the recently released iPhone 3.0 SDK. It's only available as an eBook right now, but that's good because you can cut and paste code examples to help you get rolling more quickly. I had a copy of the old version of this book and found it worth my while to get the 3.0 version as some of the code examples are deprecated and there are some new technologies in the 3.0 SDK that they give some brief but helpful coverage to, like Core Data. </p></li>
<li><p><a href="http://developer.apple.com/iphone/" rel="nofollow">Apple's iPhone Developer Documentation</a> - Good when viewed through a web browser but much better when downloaded through xCode and browsed locally. Reading through the code snippets and guides really helped me turn the corner on some basic technologies like Core Data on the iPhone.</p></li>
<li><p>When the documentation, guides, and tutorials I was going over got too dry and boring and my brain needed a rest, I would flip on an episode of the Stanford University iTunes Course. <a href="http://deimos3.apple.com/WebObjects/Core.woa/Browse/itunes.stanford.edu.2024353965.02024353968" rel="nofollow">iTunes link</a></p></li>
</ol>
http://stackoverflow.com/questions/1026280/whats-the-standard-convention-for-creating-a-new-nsarray-from-an-existing-nsarra4What's the standard convention for creating a new NSArray from an existing NSArray?Prairiedogg2009-06-22T09:31:22Z2009-06-23T08:47:19Z
<p>Let's say I have an <code>NSArray</code> of <code>NSDictionaries</code> that is 10 elements long. I want to create a second <code>NSArray</code> with the values for a single key on each dictionary. The best way I can figure to do this is:</p>
<pre><code> NSMutableArray *nameArray = [[NSMutableArray alloc] initWithCapacity:[array count]];
for (NSDictionary *p in array) {
[nameArray addObject:[p objectForKey:@"name"]];
}
self.my_new_array = array;
[array release];
[nameArray release];
}
</code></pre>
<p>But in theory, I should be able to get away with not using a mutable array and using a counter in conjunction with <code>[nameArray addObjectAtIndex:count]</code>, because the new list should be exactly as long as the old list. Please note that I am NOT trying to filter for a subset of the original array, but make a new array with exactly the same number of elements, just with values dredged up from the some arbitrary attribute of each element in the array. </p>
<p>In python one could solve this problem like this:</p>
<pre><code>new_list = [p['name'] for p in old_list]
</code></pre>
<p>or if you were a masochist, like this:</p>
<pre><code>new_list = map(lambda p: p['name'], old_list)
</code></pre>
<p>Having to be slightly more explicit in objective-c makes me wonder if there is an accepted common way of handling these situations.</p>
http://stackoverflow.com/questions/933500/custom-markup-in-django/934715#9347150Answer by Prairiedogg for Custom Markup in DjangoPrairiedogg2009-06-01T12:59:55Z2009-06-01T12:59:55Z<p>Django comes with a built-in contrib app that provides filters to display data using several different markup languages, including textile and markdown.</p>
<p>See <a href="http://docs.djangoproject.com/en/dev/ref/contrib/#markup" rel="nofollow">the relevant docs</a> for more info.</p>
http://stackoverflow.com/questions/933092/generic-many-to-many-relationships/933315#9333150Answer by Prairiedogg for Generic many-to-many relationshipsPrairiedogg2009-06-01T02:02:47Z2009-06-01T02:02:47Z<p>You might get around this problem by simplifying your schema to include a single <code>Client</code> table with a flag to indicate what type of client it was, instead of having two separate models.</p>
<pre><code>from django.db import models
from django.utils.translation import ugettext_lazy as _
class Client(models.Model):
PERSON, CORPORATION = range(2)
CLIENT_TYPES = (
(PERSON, _('Person')),
(CORPORATION, _('Corporation')),
)
type = models.PositiveIntegerField(choices=CLIENT_TYPES, default=PERSON)
city = models.CharField(max_length=16)
first_name = models.CharField(max_length=16, blank=True, null=True)
last_name = models.CharField(max_length=16, blank=True, null=True)
corporate_name = models.CharField(max_length=16, blank=True, null=True)
tax_no = models.PositiveIntegerField(blank=True, null=True)
def save(self, *args, **kwargs):
"""
Does some validation ensuring that the person specific fields are
filled in when self.type == self.PERSON, and corporation specific
fields are filled in when self.type == self.CORPORATION ...
"""
# conditional save logic goes here
super(Client, self).save(*args, **kwargs)
</code></pre>
<p>If you do things this way you might not have to mess around with Generic Foreign Keys at all. As an added convenience you can also write custom managers for the Client model like <code>Client.corporate.all()</code>, <code>Client.person.all()</code>, to return pre-filtered querysets containing only the type of clients that you want.</p>
<p>This also may not be the best way of solving your problem. I'm just throwing it out there as one potential possibility. I don't know if there's conventional wisdom about smashing together two similar models and using a save override to ensure data integrity. It seems like it could be potentially problematic ... I'll let the community learn me on this one.</p>
http://stackoverflow.com/questions/433162/can-i-access-constants-in-settings-py-from-templates-in-django/433255#4332558Answer by Prairiedogg for Can I access constants in settings.py from templates in Django?Prairiedogg2009-01-11T17:28:50Z2009-06-01T01:29:27Z<p>Django provides access to certain, frequently-used settings constants to the template such as <code>settings.MEDIA_URL</code> and some of the language settings if you use django's built in generic views or pass in a context instance keyword argument in the <code>render_to_response</code> shortcut function. Here's an example of each case:</p>
<pre><code>from django.shortcuts import render_to_response
from django.template import RequestContext
from django.views.generic.simple import direct_to_template
def my_generic_view(request, template='my_template.html'):
return direct_to_template(request, template)
def more_custom_view(request, template='my_template.html'):
return render_to_response(template, {}, context_instance=RequestContext(request))
</code></pre>
<p>These views will both have several frequently used settings like <code>settings.MEDIA_URL</code> available to the template as <code>{{ MEDIA_URL }}</code>, etc.</p>
<p>If you're looking for access to other constants in the settings, then simply unpack the constants you want and add them to the context dictionary you're using in your view function, like so:</p>
<pre><code>from django.conf import settings
from django.shortcuts import render_to_response
def my_view_function(request, template='my_template.html'):
context = {'favorite_color': settings.FAVORITE_COLOR}
return render_to_response(template, context)
</code></pre>
<p>Now you can access <code>settings.FAVORITE_COLOR</code> on your template as <code>{{ favorite_color }}</code>. </p>
http://stackoverflow.com/questions/333329/firefox-handles-xxx-submit-safari-doesnt-what-can-be-done1Firefox handles xxx.submit(), Safari doesn't ... what can be done?Prairiedogg2008-12-02T08:22:25Z2009-03-06T16:43:22Z
<p>I'm trying to make a pull down menu post a form when the user selects (releases the mouse) on one of the options from the menu. This code works fine in FF but Safari, for some reason, doesn't submit the form. I re-wrote the code using jquery to see if jquery's .submit() implementation handled the browser quirks better. Same result, works in FF doesn't work in safari. </p>
<p>The following snippets are from the same page, which has some django template language mixed in.</p>
<p>Here's the vanilla js attempt:</p>
<pre><code>function formSubmit(lang) {
if (lang != '{{ LANGUAGE_CODE }}') {
document.getElementById("setlang_form").submit();
}
}
</code></pre>
<p>Here's the jquery attempt:</p>
<pre><code>$(document).ready(function() {
$('#lang_submit').hide()
$('#setlang_form option').mouseup(function () {
if ($(this).attr('value') != '{{ LANGUAGE_CODE }}') {
$('#setlang_form').submit()
}
});
});
</code></pre>
<p>and here's the form:</p>
<pre><code><form id="setlang_form" method="post" action="{% url django.views.i18n.set_language %}">
<fieldset>
<select name="language">
{% for lang in interface_languages %}
<option value="{{ lang.code }}" onmouseup="formSubmit('{{ lang.name }}')" {% ifequal lang.code LANGUAGE_CODE %}selected="selected"{% endifequal %}>{{ lang.name }}</option>
{% endfor %}
</select>
</fieldset>
</form>
</code></pre>
<p>You can see a page with the vanilla code working on it at: <a href="http://tinytrans.com/" rel="nofollow">tinytrans.com</a> (I promise its not midget porn.)</p>
<p>My question is, how can I get this working in Safari?</p>
http://stackoverflow.com/questions/467985/adding-a-generic-image-field-onto-a-modelform-in-django1Adding a generic image field onto a ModelForm in djangoPrairiedogg2009-01-22T03:45:49Z2009-02-15T02:10:21Z
<p>I have two models, <code>Room</code> and <code>Image</code>. <code>Image</code> is a generic model that can tack onto any other model. I want to give users a form to upload an image when they post information about a room. I've written code that works, but I'm afraid I've done it the hard way, and specifically in a way that violates DRY.</p>
<p>Was hoping someone who's a little more familiar with django forms could point out where I've gone wrong. </p>
<p><strong>Update:</strong></p>
<p>I've tried to clarify why I chose this design in comments to the current answers. To summarize: </p>
<p>I didn't simply put an <code>ImageField</code> on the <code>Room</code> model because I wanted more than one image associated with the Room model. I chose a generic Image model because I wanted to add images to several different models. The alternatives I considered were were multiple foreign keys on a single <code>Image</code> class, which seemed messy, or multiple <code>Image</code> classes, which I thought would clutter my schema. I didn't make this clear in my first post, so sorry about that.</p>
<p>Seeing as none of the answers so far has addressed how to make this a little more DRY I did come up with my own solution which was to add the upload path as a class attribute on the image model and reference that every time it's needed.</p>
<pre><code># Models
class Image(models.Model):
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
image = models.ImageField(_('Image'),
height_field='',
width_field='',
upload_to='uploads/images',
max_length=200)
class Room(models.Model):
name = models.CharField(max_length=50)
image_set = generic.GenericRelation('Image')
# The form
class AddRoomForm(forms.ModelForm):
image_1 = forms.ImageField()
class Meta:
model = Room
# The view
def handle_uploaded_file(f):
# DRY violation, I've already specified the upload path in the image model
upload_suffix = join('uploads/images', f.name)
upload_path = join(settings.MEDIA_ROOT, upload_suffix)
destination = open(upload_path, 'wb+')
for chunk in f.chunks():
destination.write(chunk)
destination.close()
return upload_suffix
def add_room(request, apartment_id, form_class=AddRoomForm, template='apartments/add_room.html'):
apartment = Apartment.objects.get(id=apartment_id)
if request.method == 'POST':
form = form_class(request.POST, request.FILES)
if form.is_valid():
room = form.save()
image_1 = form.cleaned_data['image_1']
# Instead of writing a special function to handle the image,
# shouldn't I just be able to pass it straight into Image.objects.create
# ...but it doesn't seem to work for some reason, wrong syntax perhaps?
upload_path = handle_uploaded_file(image_1)
image = Image.objects.create(content_object=room, image=upload_path)
return HttpResponseRedirect(room.get_absolute_url())
else:
form = form_class()
context = {'form': form, }
return direct_to_template(request, template, extra_context=context)
</code></pre>
http://stackoverflow.com/questions/383073/django-how-can-i-use-my-model-classes-to-interact-with-my-database-from-outside/383102#3831023Answer by Prairiedogg for Django: How can I use my model classes to interact with my database from outside Django?Prairiedogg2008-12-20T08:39:53Z2008-12-20T08:39:53Z<p>Depending on your specific needs, <a href="http://code.google.com/p/django-command-extensions/wiki/CommandExtensions" rel="nofollow">django-command-extensions</a> might save you a bit of time. To run any script as-is without messing around with environment variables just type:</p>
<pre><code>./manage.py runscript path/to/my/script.py
</code></pre>
<p>django-command-extensions also has commands for automating scripts as cron jobs, which is something you mentioned that you'd like to do.</p>
<p>If you are a more nuts and bolts type of person, you might check out this <a href="http://www.b-list.org/weblog/2007/sep/22/standalone-django-scripts/" rel="nofollow">very detailed post</a> outlining how to make "standalone" django scripts to be run from cron jobs and whatnot.</p>
http://stackoverflow.com/questions/366838/how-to-localize-content-of-a-django-application/367698#3676983Answer by Prairiedogg for How to localize Content of a Django applicationPrairiedogg2008-12-15T07:40:50Z2008-12-15T07:40:50Z<p>I would suggest checking out <a href="http://code.google.com/p/django-multilingual/" rel="nofollow">django-multilingual</a>. It is a third party app that lets you define translation fields on your models.</p>
<p>Of course, you still have to type in the actual translations, but they are stored transparently in the database (as opposed to in static PO files), which is what I believe you are asking about.</p>
http://stackoverflow.com/questions/306425/generating-login-and-registration-forms-with-contrib-auth-in-django/360630#3606302Answer by Prairiedogg for Generating Login and Registration Forms with Contrib.Auth in DjangoPrairiedogg2008-12-11T19:46:20Z2008-12-11T19:46:20Z<p>James Bennet's <a href="http://code.google.com/p/django-registration/" rel="nofollow">django-registration</a> is an excellent helper application used for a common registration / login pattern.</p>
http://stackoverflow.com/questions/353489/cleaner-way-to-query-on-a-dynamic-number-of-columns-in-django/353602#3536028Answer by Prairiedogg for Cleaner way to query on a dynamic number of columns in Django?Prairiedogg2008-12-09T17:37:46Z2008-12-11T19:41:57Z<p>Build the query as a dictionary and use the ** operator to unpack the options as keyword arguments to the filter method.</p>
<pre><code>op_kwargs = {}
for op in self.cleaned_data['options']:
op_kwargs[op] = True
cars = CarModel.objects.filter(**op_kwargs)
</code></pre>
<p>This is covered in the <a href="http://docs.djangoproject.com/en/dev/topics/db/queries/#retrieving-all-objects" rel="nofollow">django documentation</a> and has been covered on <a href="http://stackoverflow.com/questions/310732/in-django-how-does-one-filter-a-queryset-with-dynamic-field-lookups">SO</a> as well.</p>
http://stackoverflow.com/questions/353571/beginner-trying-to-understand-how-apps-interact-in-django/353667#35366710Answer by Prairiedogg for Beginner: Trying to understand how apps interact in DjangoPrairiedogg2008-12-09T18:01:25Z2008-12-09T18:33:17Z<p>Take a look at django's built-in <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#ref-contrib-contenttypes" rel="nofollow">contenttypes framework</a>:</p>
<p><code>django.contrib.contenttypes</code></p>
<p>It allows you develop your applications as stand-alone units. This is what the django developers used to allow django's built-in <a href="http://docs.djangoproject.com/en/dev/ref/contrib/comments/#ref-contrib-comments-index" rel="nofollow">comment framework</a> to attach a comment to any model in your project.</p>
<p>For instance, if you have some content object that you want to "attach" to other content objects of different types, like allowing each user to leave a "favorite" star on a blog post, image, or user profile, you can create a <code>Favorite</code> model with a <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#generic-relations" rel="nofollow">generic relation field</a> like so:</p>
<pre><code>from django.db import models
from django.contrib.auth.models import User
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic
class Favorite(models.Model):
user = models.ForeignKey(User)
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
</code></pre>
<p>In this way you can add a <code>Favorite</code> star from any user to any model in your project. If you want to add API access via the recipient model class you can either add a <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#reverse-generic-relations" rel="nofollow">reverse generic relation field</a> on the recipient model (although this would be "coupling" the two models, which you said you wanted to avoid), or do the lookup through the <code>Favorite</code> model with the <code>content_type</code> and <code>object_id</code> of the recipient instance, see the <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#reverse-generic-relations" rel="nofollow">official docs</a> for an example. </p>
http://stackoverflow.com/questions/266114/setting-up-a-python-web-development-environment-on-osx/275578#2755781Answer by Prairiedogg for Setting up a Python web development environment on OSXPrairiedogg2008-11-09T03:54:34Z2008-11-09T03:54:34Z<p>I run a linux virtual machine on my mac laptop, this allows me to keep my development environment and production environments perfectly in sync (and make snapshots for easy experimentation / rollback). I've found <a href="http://www.vmware.com/download/fusion/" rel="nofollow">VMWare Fusion</a> works the best, but there are free open source alternatives such as <a href="http://www.virtualbox.org/wiki/Downloads" rel="nofollow">VirtualBox</a> if you just want to get your feet wet.</p>
<p>I share the source folders from the guest linux operating system on my mac and edit them with the mac source editor of my choosing (I use <a href="http://www.eclipse.org/downloads/" rel="nofollow">eclipse</a> / <a href="http://pydev.sourceforge.net/download.html" rel="nofollow">pydev</a> because the otherwise excellent <a href="http://macromates.com/" rel="nofollow">textmate</a> doesn't deal well with Chinese text yet). I've documented the software setup for the guest linux operating system <a href="http://wiki.slicehost.com/doku.php?id=dream_geodjango_server" rel="nofollow">here</a>, it's optimized for serving multiple django apps (including geodjango).</p>
<p>For extra added fun, you can edit your mac's /etc/hosts file to make yourdomainname.com resolve to your guest linux boxes internal IP and have a simple way to work on / test multiple web projects online or offline without too much hassle.</p>
http://stackoverflow.com/questions/196924/how-to-ensure-user-submit-only-english-text/197922#1979223Answer by Prairiedogg for How to ensure user submit only english textPrairiedogg2008-10-13T15:10:05Z2008-10-13T15:10:05Z<p>Google has a javascript API that has an implementation of language detection. I've only play tested with it, never used it in production.</p>
<p><a href="http://code.google.com/apis/ajaxlanguage/documentation/#Detect" rel="nofollow">http://code.google.com/apis/ajaxlanguage/documentation/#Detect</a></p>
http://stackoverflow.com/questions/1417782/how-to-run-iphone-program-with-zombies-instrumentComment by Prairiedogg on How to run iPhone program with Zombies instrument?Prairiedogg2009-11-30T07:09:49Z2009-11-30T07:09:49ZI'm having the same problem, I followed the single answer here and like Anthony D my Zombies option is still grayed out.http://stackoverflow.com/questions/1782639/geospatial-library-for-the-iphone/1782693#1782693Comment by Prairiedogg on Geospatial library for the iPhone Prairiedogg2009-11-23T12:11:35Z2009-11-23T12:11:35ZWhat I meant by geospatial boundaries was some sort of geometry (maybe a polygon projected on a sphere or a model of the earth or something). For my use case (determining whether a lat/lon point falls inside a certain city) a rectangle that covers the outside of the city would work just fine.http://stackoverflow.com/questions/1520379/how-to-update-numpy-on-mac-os-x-snow-leopard/1520408#1520408Comment by Prairiedogg on How to update Numpy on Mac OS X Snow Leopard?Prairiedogg2009-11-11T01:24:18Z2009-11-11T01:24:18ZI tried googling it, and this was the most helpful information I found.http://stackoverflow.com/questions/662434/click-logging-with-javascript/662516#662516Comment by Prairiedogg on Click Logging with JavaScriptPrairiedogg2009-10-23T05:37:48Z2009-10-23T05:37:48ZI've implemented something like this on one of my sites, the problem is that its really hard to sort the "noise" out of the click logs. I found that there was about a 50:1 ratio of spider clicks to human clicks. AFAIK most spiders don't bother loading a JS interpreter for each page they visit, so using JS to log outbound clicks seems reasonable enough.http://stackoverflow.com/questions/1522210/nslocale-currentlocale-always-returns-enus-not-users-current-language/1522612#1522612Comment by Prairiedogg on [NSLocale currentLocale] always returns "en_US" not user's current languagePrairiedogg2009-10-06T04:06:31Z2009-10-06T04:06:31ZThanks Darren, that got me started, I also figured out how to get the current language setting, which is what I was really trying to do.http://stackoverflow.com/questions/780897/how-do-i-find-all-the-property-keys-of-a-kvc-compliant-objective-c-object/780934#780934Comment by Prairiedogg on How do I find all the property keys of a KVC compliant Objective-C object?Prairiedogg2009-10-05T03:17:10Z2009-10-05T03:17:10Zadd #import "objc/runtime.h"http://stackoverflow.com/questions/978187/default-dataset-for-core-data-based-iphone-applicationComment by Prairiedogg on Default dataset for Core Data based iPhone applicationPrairiedogg2009-10-02T15:18:00Z2009-10-02T15:18:00ZI've been populating coredata databases on the first application run from plists, resulting in very long first run load times. I keep seeing people say "use the pre-populated .sqlite databases that you generate in the application bundle". The CoreData books example shows you how to use the .sqlite file once you've found it, but where is it in the first place? I found the answer here: <a href="http://ablogontech.wordpress.com/2009/07/13/using-a-pre-populated-sqlite-database-with-core-data-on-iphone-os-3-0/" rel="nofollow">ablogontech.wordpress.com/2009/07/…</a>http://stackoverflow.com/questions/1509869/chinese-domain-names-when-and-howComment by Prairiedogg on Chinese domain names: when and how?Prairiedogg2009-10-02T14:32:31Z2009-10-02T14:32:31ZI actually just read something about this here: <a href="http://www.guardian.co.uk/technology/2009/sep/30/icann-agreement-us" rel="nofollow">guardian.co.uk/technology/2009/…</a>, does anyone have any information about unicode URLs, how they work, and yeah - how they will be distributed?http://stackoverflow.com/questions/515314/navigationitem-title-doesnt-get-refreshed/516230#516230Comment by Prairiedogg on navigationItem.title doesnt get refreshedPrairiedogg2009-09-01T04:38:15Z2009-09-01T04:38:15ZI had the same issue and this is what worked for me, FWIW. It still feels a bit "hacky" to me.http://stackoverflow.com/questions/1202839/get-request-data-in-django-form/1204136#1204136Comment by Prairiedogg on get request data in Django formPrairiedogg2009-07-30T02:43:06Z2009-07-30T02:43:06ZCode example is better in this answer than in mine, so I deleted mine and upvoted this one, although you'll want a == instead of = in the if clause in the clean_email_address method.http://stackoverflow.com/questions/1081402/generating-forms-from-models-a-la-django-modelforms-in-objective-c/1103569#1103569Comment by Prairiedogg on Generating forms from models (a la django ModelForms) in Objective-CPrairiedogg2009-07-09T13:02:49Z2009-07-09T13:02:49ZThanks for your thoughtful reply, you know - it's EXACTLY because of what you say "Rarely is the user interface the complex part of an iPhone application", that I think the boring details that you have to repeat over and over again are likely candidates for abstraction. Isn't that how it should be? Cases are handled implicitly by convention when they are generic, and overridden when they get complex and application specific. Right guys? ... Guyshttp://stackoverflow.com/questions/1100924/best-way-to-denormalize-data-in-django/1101410#1101410Comment by Prairiedogg on Best way to denormalize data in Django?Prairiedogg2009-07-09T07:30:32Z2009-07-09T07:30:32ZI take this approach as well, haven't had problems so far.http://stackoverflow.com/questions/1081402/generating-forms-from-models-a-la-django-modelforms-in-objective-c/1081858#1081858Comment by Prairiedogg on Generating forms from models (a la django ModelForms) in Objective-CPrairiedogg2009-07-06T15:27:06Z2009-07-06T15:27:06ZThanks Tom, I've edited my question a little, you're correct that it was not clear enough originally.http://stackoverflow.com/questions/1082648/building-with-corelocation-framework-simulator-and-device/1082737#1082737Comment by Prairiedogg on Building with CoreLocation framework, simulator and devicePrairiedogg2009-07-05T01:21:23Z2009-07-05T01:21:23ZI'm not entirely sure about this, but can't you select the build target of each framework with a checkbox after single clicking them?http://stackoverflow.com/questions/1081402/generating-forms-from-models-a-la-django-modelforms-in-objective-c/1081858#1081858Comment by Prairiedogg on Generating forms from models (a la django ModelForms) in Objective-CPrairiedogg2009-07-04T16:31:52Z2009-07-04T16:31:52ZI described two approaches above for creating an input form for data to go into a model. I'm not sure how what you've written here differs in any way from what I described in #1.