User Boolean - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T02:38:10Zhttp://stackoverflow.com/feeds/user/8359http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805868/how-can-i-order-by-genericforeignkey2How can I order by GenericForeignKey?Boolean2009-11-26T22:03:51Z2009-12-03T20:20:29Z
<p>My model is:</p>
<pre><code>class Subscription(models.Model):
user = models.ForeignKey(User, related_name='subscription', editable=False)
following_content_type = models.ForeignKey(ContentType, editable=False)
following_id = models.PositiveIntegerField(editable=False)
following = generic.GenericForeignKey('following_content_type', 'following_id')
created_at = models.DateTimeField(auto_now_add=True, editable=False)
email_notification = models.BooleanField(default=False)
class Meta:
ordering = ["-following__created_at"]
</code></pre>
<p>This ordering isn't working. What's the proper way to setup default ordering based on a GenericForeignKey?</p>
http://stackoverflow.com/questions/130061/book-and-tutorial-recommedations-for-django-1-014Book and tutorial recommedations for Django 1.0Boolean2008-09-24T21:22:00Z2009-12-03T12:49:10Z
<p>Please share your book or tutorial recommendations for the latest release (1.0) of Django.</p>
http://stackoverflow.com/questions/1759558/how-can-i-use-conditional-sorting-at-django-queries0How can I use conditional sorting at Django queries?Boolean2009-11-18T22:19:42Z2009-11-19T02:39:39Z
<p>I'm implementing a basic forum app. I would like to sort the questions by their last reply time.
I have the following line:</p>
<pre><code> questions = Question.objects.filter(deleted=False).order_by("last_comment__created_at")
</code></pre>
<p>However, this query ignores the new questions with no answers. What would be the best way to fix this without creating a new field at Question model?</p>
http://stackoverflow.com/questions/1671446/country-state-city-dropdown-menus-inside-the-django-admin-inline0Country/State/City dropdown menus inside the Django admin inlineBoolean2009-11-04T02:49:56Z2009-11-04T13:24:42Z
<p>I have a city foreign key in by BusinessBranch model. My City model also has a state and country foreign keys for State and County models. I'm having hard time displaying State and Country dropdown menus inside my BusinessBranchInline. What would be the best way to achieve this? It would be great if the dropdowns filter items based on the value of its parent. </p>
<p><img src="http://i33.tinypic.com/15n69mq.png" alt="django admin screenshot" /></p>
http://stackoverflow.com/questions/210169/how-to-port-from-drupal-to-django2How to port from Drupal to Django?Boolean2008-10-16T20:29:50Z2009-07-01T15:45:37Z
<p>What would be the best way to port an existing Drupal site to a Django application?
I have around 500 pages (mostly books module) and around 50 blog posts. I'm not using any 3rd party modules.
I would like to keep the current URLS (for SEO purposes) and migrate database to Django. I will create a simple blog application, so migrating blog posts should be ok. What would be the best way to serve 500+ pages with Django? I would like to use Admin to edit/add new pages.</p>
http://stackoverflow.com/questions/835069/which-sqlite-administration-console-do-you-recommend/835892#8358920Answer by Boolean for Which SQLite administration console do you recommend?Boolean2009-05-07T17:05:51Z2009-05-07T17:05:51Z<p>I've been using Adobe Air app <a href="http://www.dehats.com/drupal/?q=node/58" rel="nofollow">Lita</a>. It's buggy but ok for simple tasks.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/70056#700563Answer by Boolean for What non-programming books should programmers read?Boolean2008-09-16T07:24:58Z2009-04-10T15:54:20Z<h2><a href="http://rads.stackoverflow.com/amzn/click/0385512058" rel="nofollow">Never Eat Alone: And Other Secrets to Success, One Relationship at a Time</a></h2>
<p>by Keith Ferrazzi</p>
<p><img src="http://2.bp.blogspot.com/%5FnbT9-uzeDfo/SWb0L2nq1GI/AAAAAAAAAPo/cJXg8SwC5pg/s320/NeverEatAlone.jpg" alt="cover" /></p>
<p><em>Comments from duplicate answer by <a href="http://stackoverflow.com/users/5551/flory">Flory</a></em>:<br />
I did not think that I would like it before I got the book but I really enjoyed it. It is basically about how to build a relationships. Prior to reading it I expected it to be very trite and about how to use people for your own ends. Instead it was the opposite in how to be used to everyone's ends. Very interesting.</p>
http://stackoverflow.com/questions/333441/adding-a-uilabel-to-a-uitoolbar2Adding a UILabel to a UIToolbarBoolean2008-12-02T09:23:11Z2009-02-07T02:36:09Z
<p>I'm trying to add a label to my toolbar. Button works great, however when I add the label object, it crashes. Any ideas?</p>
<pre><code>UIBarButtonItem *setDateRangeButton = [[UIBarButtonItem alloc] initWithTitle:@"Set date range"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(setDateRangeClicked:)];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, 20, 20)];
label.text = @"test";
[toolbar setItems:[NSArray arrayWithObjects:setDateRangeButton,label, nil]];
// Add the toolbar as a subview to the navigation controller.
[self.navigationController.view addSubview:toolbar];
// Reload the table view
[self.tableView reloadData];
</code></pre>
http://stackoverflow.com/questions/383966/best-way-to-return-the-language-of-a-given-string6Best way to return the language of a given string Boolean2008-12-21T01:12:56Z2008-12-21T15:07:56Z
<p>More specifically, I'm trying to check if given string (a sentence) is in Turkish. </p>
<p>I can check if the string has Turkish characters such as Ç, Ş, Ü, Ö, Ğ etc. However that's not very reliable as those might be converted to C, S, U, O, G before I receive the string.</p>
<p>Another method is to have the 100 most used words in Turkish and check if the sentence includes any/some of those words. I can combine these two methods and use a point system. </p>
<p>What do you think is the most efficient way to solve my problem in Python?</p>
<p>Related question: <a href="http://stackoverflow.com/questions/257125/human-language-of-a-document">(human) Language of a document</a> (Perl, Google Translation API)</p>
http://stackoverflow.com/questions/169362/how-can-i-compress-a-folder-and-email-the-compressed-file-in-python3How can I compress a folder and email the compressed file in Python?Boolean2008-10-03T23:53:35Z2008-10-04T02:40:11Z
<p>I would like to compress a folder and all its sub-folders/files, and email the zip file as an attachment. What would be the best way to achieve this with Python? </p>
http://stackoverflow.com/questions/129800/how-can-i-find-out-what-category-a-product-belongs-to2How can I find out what category a product belongs to?Boolean2008-09-24T20:35:25Z2008-09-24T21:05:43Z
<p>Basically, when a user inputs a product name (such as "iPhone 3g"), I would like to know the parent categories of that item (such as Electronics / Mobile phones). Is there a web api (ie. for ebay, amazon etc.) or any other way to figure out that information?</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/66726#667260Answer by Boolean for What Hosting Service is best for Django applications?Boolean2008-09-15T20:41:09Z2008-09-15T20:41:09Z<p>Another vote for webfaction. They seem to be heavily focused on Python and it was their starting point. Admin interface seems to be simple and easy to use. </p>
http://stackoverflow.com/questions/1759558/how-can-i-use-conditional-sorting-at-django-queries/1760561#1760561Comment by Boolean on How can I use conditional sorting at Django queries?Boolean2009-11-19T14:37:23Z2009-11-19T14:37:23ZThanks for the answer. As I mentioned in the question, I'm trying to do this without modifying the Question model.http://stackoverflow.com/questions/333441/adding-a-uilabel-to-a-uitoolbar/333509#333509Comment by Boolean on Adding a UILabel to a UIToolbarBoolean2008-12-02T18:59:34Z2008-12-02T18:59:34ZThank you!
I got the idea.
http://stackoverflow.com/questions/210169/how-to-port-from-drupal-to-django/210315#210315Comment by Boolean on How to port from Drupal to Django?Boolean2008-10-17T05:34:44Z2008-10-17T05:34:44ZThanks, I have a better picture in my mind now.http://stackoverflow.com/questions/210169/how-to-port-from-drupal-to-djangoComment by Boolean on How to port from Drupal to Django?Boolean2008-10-17T05:33:53Z2008-10-17T05:33:53ZThank you, I missed that onehttp://stackoverflow.com/questions/169362/how-can-i-compress-a-folder-and-email-the-compressed-file-in-python/169406#169406Comment by Boolean on How can I compress a folder and email the compressed file in Python?Boolean2008-10-04T16:03:48Z2008-10-04T16:03:48ZThank you very much. It wasn't a homework. I'm a php programmer who's trying to switch to Python. Your answer helped me a lot.http://stackoverflow.com/questions/129800/how-can-i-find-out-what-category-a-product-belongs-to/129836#129836Comment by Boolean on How can I find out what category a product belongs to?Boolean2008-09-24T20:54:56Z2008-09-24T20:54:56ZThat would be very useful. I like how detailed it is. Thank you for sharing.http://stackoverflow.com/questions/129800/how-can-i-find-out-what-category-a-product-belongs-to/129833#129833Comment by Boolean on How can I find out what category a product belongs to?Boolean2008-09-24T20:51:48Z2008-09-24T20:51:48ZThank you. That was exactly what I needed. I also like the "spellSuggestion" field, which would be really useful.