User rick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T20:28:52Zhttp://stackoverflow.com/feeds/user/94633http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/795539/what-are-the-best-django-forum-app-options-out-there5What are the best Django forum app options out there?rick2009-04-27T22:30:33Z2009-12-04T16:14:19Z
<p>What do you guys recommend in the way of a forum app that can be dropped into my Django project?</p>
<p>I found this page:</p>
<p><a href="http://code.djangoproject.com/wiki/ForumAppsComparison" rel="nofollow">http://code.djangoproject.com/wiki/ForumAppsComparison</a></p>
<p>But looking for some recommendations. Thanks.</p>
http://stackoverflow.com/questions/795976/is-there-anything-in-the-django-python-world-equivalent-to-simplepie-plugin-for1Is there anything in the Django / Python world equivalent to SimplePie Plugin for Wordpress?rick2009-04-28T02:09:21Z2009-11-30T13:42:07Z
<p>I know that SimplePie itself is derived from UFP, but the features I'm wondering about are the post-processing features that are available in SimplePie for WordPress plugin:</p>
<p><a href="http://simplepie.org/wiki/plugins/wordpress/simplepie_plugin_for_wordpress/processing" rel="nofollow">http://simplepie.org/wiki/plugins/wordpress/simplepie_plugin_for_wordpress/processing</a></p>
<p>Can I find something similar to this for my Django application?</p>
<p>Can this be accomplished using Django inclusion tags?</p>
http://stackoverflow.com/questions/787940/what-attributes-should-belong-to-a-page-and-what-should-belong-to-a-model0What attributes should belong to a page and what should belong to a model?rick2009-04-25T00:27:05Z2009-10-28T22:00:02Z
<p>Say you have an Events model that contains information about the event. But what about things like slugs, titles and meta description that would go into the html? </p>
<p>It would seem like such things properly belong as attributes to a Page model rather than to an Events model.</p>
<p>Is there a correct way to do this? What are the pros and cons of one approach over the other? </p>
http://stackoverflow.com/questions/779292/how-can-you-have-wordpress-like-custom-fields-using-django-flatpages0How can you have Wordpress-like custom fields using Django flatpages?rick2009-04-22T21:22:40Z2009-10-06T17:02:28Z
<p>One of the features that makes a CMS like WordPress powerful is the ability to add additional fields that may be used in the template. WordPress has what it calls custom fields. Is there a way to do that using Django's flat pages? If not, is there another Django app that will allow page creation with the option of adding additional fields?</p>
http://stackoverflow.com/questions/895787/is-it-possible-to-save-flv-videos-streamed-via-rtmp0Is it possible to save flv videos streamed via RTMP?rick2009-05-21T23:31:28Z2009-09-02T08:51:59Z
<p>It's easy enough to find the flv file on sites that use http to serve it up, but what about when they use RTMP?</p>
http://stackoverflow.com/questions/1112645/where-to-put-message-queue-consumer-in-django1Where to put message queue consumer in Django?rick2009-07-11T01:15:39Z2009-07-21T16:17:45Z
<p>I'm using Carrot for a message queue in a Django project and followed <a href="http://github.com/ask/carrot/tree/master" rel="nofollow">the tutorial</a>, and it works fine. But the example runs in the console, and I'm wondering how I apply this in Django. The publisher class I'm calling from one of my models in models.py, so that's OK. But I have no idea where to put the consumer class. </p>
<p>Since it just sits there with .wait(), I don't know at what point or where I need to instantiate it so that it's always running and listening for messages!</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1102254/should-i-use-celery-or-carrot-for-a-django-project5Should I use Celery or Carrot for a Django project?rick2009-07-09T07:05:44Z2009-07-09T08:33:39Z
<p>I'm a little confused as to which one I should use. I think either will work, but is one better or more appropriate than the other?</p>
<p><a href="http://github.com/ask/carrot/tree/master" rel="nofollow">http://github.com/ask/carrot/tree/master</a></p>
<p><a href="http://github.com/ask/celery/tree/master" rel="nofollow">http://github.com/ask/celery/tree/master</a></p>
http://stackoverflow.com/questions/1095663/does-getorcreate-have-to-save-right-away-django4Does get_or_create() have to save right away? (Django)rick2009-07-08T01:17:30Z2009-07-08T01:29:09Z
<p>I need to use something like get_or_create() but the problem is that I have a lot of fields and I don't want to set defaults (which don't make sense anyway), and if I don't set defaults it returns an error, because it saves the object right away apparently.</p>
<p>I can set the fields to null=True, but I don't want null fields.</p>
<p>Is there any other method or any extra parameter that can be sent to get_or_create() so that it instantiates an object but doesn't save it until I call save() on it?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1090022/any-drawbacks-to-storing-an-integer-as-a-string-in-a-database3Any drawbacks to storing an integer as a string in a database?rick2009-07-07T01:58:05Z2009-07-07T07:58:05Z
<p>I have id values for products that I need store. Right now they are all integers, but I'm not sure if the data provider in the future will introduce letters or symbols into that mix, so I'm debating whether to store it now as integer or string.</p>
<p>Are there performance or other disadvantages to saving the values as strings?</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django0How do you do something after you render the view? (Django)rick2009-07-04T02:16:36Z2009-07-04T20:16:58Z
<p>I want to do something after I have rendered the view using </p>
<pre><code>return render_to_response()
</code></pre>
<p>Are signals the only way to do this? Do I need to write a custom signal or does request_finished give me enough information? Basically I need to know what page was rendered, and then do an action in response to that.</p>
<p>Thanks.</p>
<p>UPDATE FROM COMMENTS: I don't want to hold up the rendering of the page, so I want to render the page first and then do the action.</p>
http://stackoverflow.com/questions/1078127/are-nested-span-tags-ok-in-xhtml1Are nested span tags OK in XHTML?rick2009-07-03T07:10:42Z2009-07-03T07:38:02Z
<p>Will this validate in XHTML?</p>
<pre><code><span>hello<span>world</span></span>
</code></pre>
http://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript2Python Unix time doesn't work in Javascriptrick2009-07-03T00:55:59Z2009-07-03T01:07:04Z
<p>In Python, using calendar.timegm(), I get a 10 digit result for a unix timestamp. When I put this into Javscript's setTime() function, it comes up with a date in 1970. It evidently needs a unix timestamp that is 13 digits long. How can this happen? Are they both counting from the same date? </p>
<p>How can I use the same unix timestamp between these two languages?</p>
<p>In Python:</p>
<pre><code>In [60]: parseddate.utctimetuple()
Out[60]: (2009, 7, 17, 1, 21, 0, 4, 198, 0)
In [61]: calendar.timegm(parseddate.utctimetuple())
Out[61]: 1247793660
</code></pre>
<p>In Firebug:</p>
<pre><code>>>> var d = new Date(); d.setTime(1247793660); d.toUTCString()
"Thu, 15 Jan 1970 10:36:55 GMT"
</code></pre>
http://stackoverflow.com/questions/1077285/how-to-specify-time-zone-utc-when-converting-to-unix-time-python1How to specify time zone (UTC) when converting to Unix time? (Python)rick2009-07-03T00:00:45Z2009-07-03T00:33:03Z
<p>I have a utc timestamp in the IS8601 format and am trying to convert it to unix time. This is my console session:</p>
<pre><code>In [9]: mydate
Out[9]: '2009-07-17T01:21:00.000Z'
In [10]: parseddate = iso8601.parse_date(mydate)
In [14]: ti = time.mktime(parseddate.timetuple())
In [25]: datetime.datetime.utcfromtimestamp(ti)
Out[25]: datetime.datetime(2009, 7, 17, 7, 21)
In [26]: datetime.datetime.fromtimestamp(ti)
Out[26]: datetime.datetime(2009, 7, 17, 2, 21)
In [27]: ti
Out[27]: 1247815260.0
In [28]: parseddate
Out[28]: datetime.datetime(2009, 7, 17, 1, 21, tzinfo=<iso8601.iso8601.Utc object at 0x01D74C70>)
</code></pre>
<p>As you can see, I can't get the correct time back. The hour is ahead by one if i use fromtimestamp(), and it's ahead by six hours if i use utcfromtimestamp()</p>
<p>Any advice?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1010349/would-extracting-page-metadata-be-a-good-use-of-multiple-inheritance0Would extracting page metadata be a good use of multiple inheritance?rick2009-06-18T01:26:58Z2009-06-19T05:38:16Z
<p>I was wondering if I have a couple of models which both include fields like "meta_keywords" or "slug" which have to do with the web page the model instance will be displayed on, whether it would be advisable to break those page metadata elements out into their own class, say PageMeta, and have my other models subclass those via multiple inheritance?</p>
http://stackoverflow.com/questions/1016043/are-javascript-date-time-functions-dependent-on-the-client-machine2Are Javascript date/time functions dependent on the client machine?rick2009-06-19T02:00:55Z2009-06-19T04:27:37Z
<p>I was wondering if Javascript date/time functions will always return <a href="http://www.google.com/search?hl=en&rlz=1C1GGLS%5FenUS291US305&q=current%2Btime&aq=f&oq=&aqi=g10" rel="nofollow">correct, universal dates/times</a>
or whether, Javascript being a client-side language, they are dependent on what the client machine has its date set to.</p>
<p>If it is dependent on the client machine, what is the best way to get the correct universal time?</p>
http://stackoverflow.com/questions/990133/how-to-get-documentroot-to-work-on-both-localhost-and-web-host0How to get DOCUMENT_ROOT to work on both localhost and web host?rick2009-06-13T06:37:08Z2009-06-13T06:51:26Z
<p>I have a WordPress plugin that I would like to work on localhost as well as in deployment without modification, but I can't seem to set the location for a directory using one statement.</p>
<p>I would like to do this:</p>
<pre><code>$feed->set_cache_location($_SERVER['DOCUMENT_ROOT'] . '/wp-content/cache');
</code></pre>
<p>While that works on the web host. On localhost it produces this error:</p>
<pre><code>C:/xampp/htdocs/wp-content/cache/a547b8792c3144c98549be23ef1465e7.spc is not writeable
</code></pre>
<p>On localhost, I need to set it to this to get it work:</p>
<pre><code>$feed->set_cache_location($_SERVER['DOCUMENT_ROOT'] . '/mysite/wp-content/cache');
</code></pre>
<p>Surely there must be something that works both on localhost and on a web host!</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/708799/how-much-traffic-can-shared-web-hosting-for-a-python-django-site-support/979305#9793051Answer by rick for How Much Traffic Can Shared Web Hosting (for a Python Django site) support?rick2009-06-11T04:17:48Z2009-06-11T04:17:48Z<p>Most hosts support multiple sites without extra charge. Don't pick GoDaddy because of that. I never used GoDaddy hosting, but use them for domain registration, and they are absolutely terrible. Terrible UI, terrible performance. I would never trust them to host a website. The only reason I use them for domain registration is that they seem to be the cheapest option.</p>
<p>For shared web hosting, especially Python/Django, I recommend WEBFACTION.</p>
http://stackoverflow.com/questions/978581/is-it-more-efficient-to-parse-external-xml-or-to-hit-the-database1Is it more efficient to parse external XML or to hit the database?rick2009-06-10T23:09:40Z2009-06-11T02:26:38Z
<p>I was wondering when dealing with a web service API that returns XML, whether it's better (faster) to just call the external service each time and parse the XML (using ElementTree) for display on your site or to save the records into the database (after parsing it once or however many times you need to each day) and make database calls instead for that same information.</p>
http://stackoverflow.com/questions/967855/installed-apps-in-django-what-about-versions1Installed apps in Django - what about versions?rick2009-06-09T02:08:14Z2009-06-09T19:33:32Z
<p>After looking at the reusable apps chapter of Practical Django Projects and listening to the DjangoCon (Pycon?) lecture, there seems to be an emphasis on making your apps pluggable by installing them into the Python path, namely site-packages. </p>
<p>What I don't understand is what happens when the version of one of those installed apps changes. If I update one of the apps that's installed to site-packages, then won't that break all my current projects that use it? I never noticed anything in settings.py that let's you specify the version of the app you're importing.</p>
<p>I think in Ruby/Rails, they're able to freeze gems for this sort of situation. But what are we supposed to do in Python/Django?</p>
http://stackoverflow.com/questions/967817/do-you-version-control-the-invidual-apps-or-the-whole-project-or-both3Do you version control the invidual apps or the whole project or both?rick2009-06-09T01:52:03Z2009-06-09T06:33:44Z
<p>OK, so I have a Django project. I was wondering if I'm supposed to put each app in its own git repository, or is it better to just put the whole project into a git repository, or whether I should have a git repo for each app and also a git repo for the project?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/937697/can-you-pass-a-dictionary-when-replacing-strings-in-python4Can you pass a dictionary when replacing strings in Python?rick2009-06-02T02:37:59Z2009-06-04T02:32:41Z
<p>In PHP, you have preg_replace($patterns, $replacements, $string), where you can make all your substitutions at once by passing in an array of patterns and replacements.</p>
<p>What is the equivalent in Python?</p>
<p>I noticed that the string and re functions replace() and sub() don't take dictionaries...</p>
<p>Edited to clarify based on a comment by rick:
the idea is to have a dict with keys to be taken as regular expression patterns, such as <code>'\d+S'</code>, and (hopefully) constant string values (hopefully w/o backreferences). Now editing my answer accordingly (i.e. to answer the actual question).</p>
http://stackoverflow.com/questions/880668/how-to-avoid-indentation-error-after-changing-tab-stops-in-vim1How to avoid indentation error after changing tab stops in Vim?rick2009-05-19T02:00:00Z2009-06-03T22:55:20Z
<p>I used to have 8-space tabs in Vim. Then I changed to 4 spaces, but now whenever I add a line to some code I had written before changing to 4 spaces, it gives me an indentation mismatch error even though everything is lining up nicely. Is there any way to avoid this problem?</p>
http://stackoverflow.com/questions/937522/what-are-some-logic-questions-to-ask-someone-interviewing-programmers/937727#9377271Answer by rick for What are some Logic questions to ask someone interviewing (programmers)?rick2009-06-02T02:49:59Z2009-06-02T02:49:59Z<p>There's a whole book of interview puzzles.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0316919160" rel="nofollow">http://www.amazon.com/Would-Move-Mount-Microsofts-Puzzle/dp/0316919160</a></p>
http://stackoverflow.com/questions/896832/in-gitk-why-is-my-yellow-button-above-master3In gitk, why is my yellow button above master?rick2009-05-22T08:16:43Z2009-05-22T08:54:28Z
<p>I couldn't find any documentation on gitk about what the colors mean, but the problem here I think is that my yellow button has passed my master. Now when I try to do:</p>
<p>git push origin master</p>
<p>It doesn't work. How did my yellow button get over master and how do I get them back together so I can do push origin master?</p>
<p>This is what it looks like:</p>
<p><img src="http://img269.imageshack.us/img269/1923/gitkproblem.jpg" alt="alt text" /></p>
<p>Thanks!</p>
http://stackoverflow.com/questions/896853/can-i-disable-mailto-to-prevent-outlook-from-opening-2Can I disable mailto to prevent Outlook from opening? [closed]rick2009-05-22T08:23:54Z2009-05-22T08:37:21Z
<p>It's very annoying to me when I click on "Contact" buttons, links or tabs sometimes and instead of getting a contact page with a form, it's a mailto and Microsoft Outlook starts it's 10-second process of opening up.</p>
<p>I want to disable mailto on all browsers, but in particular Chrome. Is this something you do through the browsers or is this a configuration within Microsoft Windows?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/895542/what-kind-of-mental-attitude-do-you-have-to-finish-a-project/895683#8956831Answer by rick for What kind of mental attitude do you have to finish a projectrick2009-05-21T22:55:24Z2009-05-21T22:55:24Z<p>You need to set a deadline and then meet the deadline, regardless of whether all the 'required' features are implemented or not. If you are continually checking in code that is usable, then this shouldn't be a problem.</p>
http://stackoverflow.com/questions/880684/in-django-admin-how-to-filter-users-by-group0In Django admin, how to filter users by group?rick2009-05-19T02:05:29Z2009-05-19T02:15:36Z
<p>It gives you filter by staff status and superuser status, but what about groups?</p>
http://stackoverflow.com/questions/844632/can-i-put-something-in-in-bashrc-to-hide-text-editor-extension-files2Can I put something in in bashrc to hide text editor (~ extension) files?rick2009-05-10T03:32:08Z2009-05-10T18:20:22Z
<p>I'd like to do ls without seeing all the ~ files generated by vim. Is it possible?</p>
http://stackoverflow.com/questions/823357/what-is-a-good-method-for-sharing-source-code-among-3-4-developers-that-does-not/823438#8234380Answer by rick for What is a good method for sharing source code among 3-4 developers that does NOT require it to be Open Source?rick2009-05-05T05:09:20Z2009-05-05T05:09:20Z<p>Try github. It will cost you $12/month though.</p>
http://stackoverflow.com/questions/818861/how-do-you-make-a-django-app-pluggable3How do you make a Django app pluggable?rick2009-05-04T05:25:29Z2009-05-04T15:39:08Z
<p>Say for example I have a Blog app that I want to be able to drop into different projects, but I always want the Blog to be associated with some other model. For example, in one case I may want it to be associated with a user:</p>
<p>site.com/someuser/blog</p>
<p>But on another site I want it to be associated with, say, a school:</p>
<p>site.com/someschool/blog</p>
<p>Is there a way to make the Blog app pluggable so that it's not necessary to redefine the model (adding a foreign key field) whenever I drop it into a project?</p>
http://stackoverflow.com/questions/1112645/where-to-put-message-queue-consumer-in-django/1160225#1160225Comment by rick on Where to put message queue consumer in Django?rick2009-07-23T00:45:25Z2009-07-23T00:45:25ZThanks, asksol. When I asked the question before:
<a href="http://stackoverflow.com/questions/1102254/should-i-use-celery-or-carrot-for-a-django-project" rel="nofollow" title="should i use celery or carrot for a django project">stackoverflow.com/questions/1102254/…</a>
The answer seems to have been use celery if running scheduled tasks on different machines. I don't plan on using different machines, but I do want to place tasks onto a queue. Do you still think celery is the appropriate thing to use and not carrot? http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1082905#1082905Comment by rick on How do you do something after you render the view? (Django)rick2009-07-09T05:33:30Z2009-07-09T05:33:30Zit doesn't seem like it works. the rendering is held up while the code in the finally is running.http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1082905#1082905Comment by rick on How do you do something after you render the view? (Django)rick2009-07-09T00:50:47Z2009-07-09T00:50:47ZOnce it's returned, the view will be rendered right? Regardless of what is happening in the finally section?
If so, this is just what I need!http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081352#1081352Comment by rick on How do you do something after you render the view? (Django)rick2009-07-04T02:35:10Z2009-07-04T02:35:10Zyeah that would work, but i wonder if there's a way to do it solely on the server sidehttp://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-djangoComment by rick on How do you do something after you render the view? (Django)rick2009-07-04T02:33:08Z2009-07-04T02:33:08Zi dont' want to hold up the rendering of the page, so i want to render the page first and then do the actionhttp://stackoverflow.com/questions/1078127/are-nested-span-tags-ok-in-xhtml/1078174#1078174Comment by rick on Are nested span tags OK in XHTML?rick2009-07-03T23:28:11Z2009-07-03T23:28:11Zthanks. i didn't know about the direct input option!http://stackoverflow.com/questions/1016043/are-javascript-date-time-functions-dependent-on-the-client-machine/1016056#1016056Comment by rick on Are Javascript date/time functions dependent on the client machine?rick2009-06-19T02:24:00Z2009-06-19T02:24:00ZIs there an authoritative source that exposes an API? http://stackoverflow.com/questions/1010349/would-extracting-page-metadata-be-a-good-use-of-multiple-inheritance/1010420#1010420Comment by rick on Would extracting page metadata be a good use of multiple inheritance?rick2009-06-19T00:14:06Z2009-06-19T00:14:06Zis it that hard to use mixins in python? http://stackoverflow.com/questions/1010349/would-extracting-page-metadata-be-a-good-use-of-multiple-inheritanceComment by rick on Would extracting page metadata be a good use of multiple inheritance?rick2009-06-19T00:13:04Z2009-06-19T00:13:04Zyeah really i meant using it as a mixin, which is why i used the term 'multiple inheritance'http://stackoverflow.com/questions/978581/is-it-more-efficient-to-parse-external-xml-or-to-hit-the-database/979028#979028Comment by rick on Is it more efficient to parse external XML or to hit the database?rick2009-06-18T01:20:56Z2009-06-18T01:20:56Zwhy did this get voted down? i thought it was good answer :)http://stackoverflow.com/questions/967817/do-you-version-control-the-invidual-apps-or-the-whole-project-or-both/967830#967830Comment by rick on Do you version control the invidual apps or the whole project or both?rick2009-06-09T02:20:17Z2009-06-09T02:20:17ZAlex, the reason I ask is that Django seems to emphasize the notion of reusable apps. I'm intrigued by your statement, " this could theoretically be the case but I've never observed it in real life." Would you say that the idea of reusable apps in Django is more of a "nice in theory" kind of thing?http://stackoverflow.com/questions/937697/can-you-pass-a-dictionary-when-replacing-strings-in-python/937739#937739Comment by rick on Can you pass a dictionary when replacing strings in Python?rick2009-06-04T01:18:17Z2009-06-04T01:18:17ZThanks Alex. The problem I'm having is as Triptych suggested, Key Error. The replacement dictionary I have consists of regex, but the sub() method using this recipe looks up the key in the dict using the match object which is a string, for example, "12S". The dict doesn't contain the key "12S" so it throws a key error (the dict has something like '\d*S')
I don't think using .get would solve this particular problem right?http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/192908#192908Comment by rick on What is your favorite "programmer" t-shirt?rick2009-05-29T23:51:19Z2009-05-29T23:51:19Zwhere do they sell this shirt? :)http://stackoverflow.com/questions/896832/in-gitk-why-is-my-yellow-button-above-master/896956#896956Comment by rick on In gitk, why is my yellow button above master?rick2009-05-22T09:24:34Z2009-05-22T09:24:34ZPerfect. Thanks!http://stackoverflow.com/questions/896832/in-gitk-why-is-my-yellow-button-above-masterComment by rick on In gitk, why is my yellow button above master?rick2009-05-22T08:48:55Z2009-05-22T08:48:55ZTML, it just says: Everything up-to-date. It's ignoring the latest commit.