User Kevin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:55:08Z http://stackoverflow.com/feeds/user/2678 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48884/amazon-api-library-for-python 7 Amazon API library for Python? Kevin 2008-09-07T23:18:33Z 2009-10-07T18:40:03Z <p>What Python libraries do folks use for querying Amazon product data? (Amazon Associates Web Service - used to be called E-Commerce API, or something along those lines).</p> <p>Based on my research, PyAWS (<a href="http://pyaws.sourceforge.net/" rel="nofollow">http://pyaws.sourceforge.net/</a>) seems okay, but still pretty raw (and hasn't been updated in a while). Wondering if there's an obvious canonical library that I'm just missing.</p> http://stackoverflow.com/questions/42482/best-way-to-extract-text-from-a-word-doc-without-using-com-automation 7 Best way to extract text from a Word doc without using COM/automation? Kevin 2008-09-03T20:18:47Z 2009-09-07T14:55:20Z <p>Is there a reasonable way to extract plain text from a Word file that doesn't depend on COM automation? (This is a a feature for a web app deployed on a non-Windows platform - that's non-negotiable in this case.)</p> <p>Antiword seems like it might be a reasonable option, but it seems like it might be abandoned.</p> <p>A Python solution would be ideal, but doesn't appear to be available.</p> http://stackoverflow.com/questions/227101/can-i-block-search-crawlers-for-every-site-on-an-apache-web-server/227138#227138 0 Answer by Kevin for Can I block search crawlers for every site on an Apache web server? Kevin 2008-10-22T19:04:00Z 2008-10-22T19:04:00Z <p>Depending on your deployment scenario, you should look for ways to deploy different robots.txt files to dev/stage/test/prod (or whatever combination you have). Assuming you have different database config files or (or whatever's analogous) on the different servers, this should follow a similar process (you <em>do</em> have different passwords for your databases, right?)</p> <p>If you don't have a one-step deployment process in place, this is probably good motivation to get one... there are tons of tools out there for different environments - Capistrano is a pretty good one, and favored in the Rails/Django world, but is by no means the only one.</p> <p>Failing all that, you could probably set up a global Alias directive in your Apache config that would apply to all virtualhosts and point to a restrictive robots.txt</p> http://stackoverflow.com/questions/202337/how-do-i-make-the-business-case-for-python/202409#202409 0 Answer by Kevin for How do I make the business case for Python? Kevin 2008-10-14T19:03:15Z 2008-10-14T19:03:15Z <p>For many classes of problems, Python hits the sweet spot of power-vs-development speed: it's significantly more powerful (and maintainable) than batch/VBScript, but has a lot less overhead (and is usually much faster to develop in) than Java et. al.</p> http://stackoverflow.com/questions/124166/make-a-div-fade-away-nicely-after-a-given-amount-of-time/124194#124194 0 Answer by Kevin for Make a <div> fade away nicely after a given amount of time Kevin 2008-09-23T21:59:34Z 2008-09-23T21:59:34Z <p>I know you're down on libraries, but I'd recommend taking a look at moo.fx: <a href="http://moofx.mad4milk.net/" rel="nofollow">http://moofx.mad4milk.net/</a> - I think it's like 3k.</p> <p>jQuery is pretty damn small too.</p> http://stackoverflow.com/questions/121866/why-does-django-generate-http-500-errors-for-static-media-when-debug-is-set-to-fa/122068#122068 2 Answer by Kevin for Why does Django generate HTTP 500 errors for static media when Debug is set to False? Kevin 2008-09-23T16:19:27Z 2008-09-23T16:19:27Z <p>It sounds like you might be trying to serve your static media using the Django development server. Take a look at <a href="http://docs.djangoproject.com/en/dev/howto/deployment/" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/deployment/</a> for some deployment scenarios/howtos and <a href="http://docs.djangoproject.com/en/dev/howto/static-files/" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/static-files/</a> for how to serve static files (but note the disclaimer about NOT using those methods in production).</p> <p>In general, I'd look at your server logs and see where it's trying to fetch the files from. I suspect the 500 errors are really 404 errors, but they become 500 errors because Django can't find or render the 404.html template. If that's not the case, it would be helpful if you could post the specific 500 error you're getting.</p> http://stackoverflow.com/questions/121218/client-side-detection-of-http-request-method/121231#121231 3 Answer by Kevin for Client-side detection of HTTP request method Kevin 2008-09-23T14:11:14Z 2008-09-23T14:11:14Z <p>In a word - No</p> http://stackoverflow.com/questions/121169/configure-trac-for-anonymous-ticket-submissions/121195#121195 3 Answer by Kevin for Configure trac for anonymous ticket submissions Kevin 2008-09-23T14:05:55Z 2008-09-23T14:05:55Z <p>Go to Admin > Permissions, then give "anonymous" the TICKET_CREATE and TICKET_MODIFY privileges (actions).</p> <p>See: <a href="http://trac.edgewall.org/wiki/TracPermissions" rel="nofollow">http://trac.edgewall.org/wiki/TracPermissions</a></p> http://stackoverflow.com/questions/54237/is-there-a-way-to-highlight-the-target-of-a-bookmark-www-site-com-page-htmboo/54278#54278 1 Answer by Kevin for Is there a way to highlight the target of a bookmark? (www.site.com/page.htm#bookmark) ? Kevin 2008-09-10T14:54:21Z 2008-09-10T14:54:21Z <p>Use your favorite JS toolkit to add a "highlight" (or whatever) class to the item containing (or contained in) the anchor.</p> <p>Something like:</p> <pre><code>jQuery(location.hash).addClass('highlight'); </code></pre> <p>Of course, you'd need to call that onready or click if you want it triggered by other links on the page, and you'll want to have the .highlight class defined. You could also make your jQuery selector traverse up or down depending on the container you want highlighted.</p> http://stackoverflow.com/questions/54217/ajax-xmlhttprequest-object-limt/54241#54241 0 Answer by Kevin for AJAX XMLHttpRequest object limt Kevin 2008-09-10T14:42:28Z 2008-09-10T14:42:28Z <p>I don't think so, but there's a limit of two simultaneous HTTP connections per domain per client (you can override this in Firefox, but practically no one does so).</p> http://stackoverflow.com/questions/50194/source-control-for-everyone/50388#50388 0 Answer by Kevin for Source Control for Everyone? Kevin 2008-09-08T18:38:53Z 2008-09-08T18:38:53Z <p>"Project files" is potentially vague - if the files in question aren't primarily ASCII files and are Word documents or what have you, I'm not sure that traditional source control tools will really work.</p> <p>SVN et. al. will happily support binary files, but you if that's all you're using it for then you don't really get most of the useful features and generally end up confusing the non-technical users. SVN (and git, etc.) are tools designed for programmers - if you're just looking for a good way to manage document revisions and keep a history, I'm guessing there are better tools for your particular platform (though I don't know enough to recommend a particular one).</p> <p>That said, if they are mostly ASCII files, I suspect TortoiseSVN is your best bet.</p> http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/48700#48700 3 Answer by Kevin for What Hosting Service is best for Django applications? Kevin 2008-09-07T19:22:57Z 2008-09-07T19:22:57Z <p>@<a href="#2733" rel="nofollow">Patrick</a>: the big issue with hosting a Django app on Google App Engine is that GAE requires you to use BigTable for storage, and that isn't (and likely won't be) integrated with Django's ORM. So, if you're looking to do anything with the database side of things, you'll either have to write a fair amount of GAE-specific code, or it isn't for you.</p> http://stackoverflow.com/questions/43834/recommended-web-development-environment-on-mac/43846#43846 Comment by Kevin on Recommended web development environment on Mac? Kevin 2008-09-09T21:55:50Z 2008-09-09T21:55:50Z Be careful about using Django for Google App Engine... GAE doesn't have a &quot;normal&quot; database backend, which tends to be a problem for 90% of web projects. That's not to say it can't be done, but you definitely should be aware of the issues. If databases aren't an issue, +1 for Django!