User Jim Robert - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T17:51:43Zhttp://stackoverflow.com/feeds/user/2908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django/1790921#17909212Answer by Jim Robert for Validating Uploaded Files in DjangoJim Robert2009-11-24T15:46:46Z2009-11-24T15:46:46Z<p>This is a little bit specific to your hosting environment, but here is what I do:</p>
<p>Serve all user uploaded content with Nginx instead of apache, and serve it all as static content (it will not run any of the php or cgi, even if the users upload it)</p>
http://stackoverflow.com/questions/405540/what-is-a-cyclic-data-structure-good-for6What is a cyclic data structure good for?Jim Robert2009-01-01T22:06:09Z2009-11-22T23:36:32Z
<p>Hello,</p>
<p>I was just reading through "Learning Python" by Mark Lutz and came across this code sample:</p>
<pre><code>
>>> L = ['grail']
>>> L.append(L)
>>> L
['grail', [...]]
</code></pre>
<p>It was identified as a cyclic data structure.</p>
<p>So I was wondering, and here is my question:</p>
<h2><strong>What is a 'cyclic data structure' used for in real life programming?</strong></h2>
<p>There seems to be a little confusion, which i think stems from the very brief code sample... here's a few more lines using the same object L</p>
<pre><code>
>>> L[0]
'grail'
>>> L[1][0]
'grail'
>>> L[1][1][0]
'grail'
</code></pre>
<h2><strong>edit</strong>: I'll be honest, I still don't really get it. can anyone give some code samples?</h2>
http://stackoverflow.com/questions/1720262/programatically-separate-stylesheet-into-sub-stylesheets/1777665#17776655Answer by Jim Robert for Programatically separate stylesheet into sub-stylesheets?Jim Robert2009-11-22T02:49:43Z2009-11-22T02:56:11Z<p>This should get you started:</p>
<pre><code>#!/usr/bin/env python
import cssutils
PATH_TO_CSS_FILE = 'old_huge_css_file.css'
LAYOUT = ('display', 'width', 'height', 'margin', 'padding',
'position', 'top', 'left', 'bottom', 'right')
COLOR = ('color', 'background', 'border', 'background-color')
FONTS = ('font', 'font-size')
def strip_styles(infile_path, outfile_path, properties_to_keep):
stylesheet = cssutils.parseFile(infile_path)
for rule in stylesheet:
if not rule.type == rule.STYLE_RULE:
continue
[ rule.style.removeProperty(p) for p in rule.style.keys()
if not p in properties_to_keep ]
f = open(outfile_path, 'w')
f.write(stylesheet.cssText)
f.close()
segments = (
('layout.css', LAYOUT),
('color.css', COLOR),
('fonts.css', FONTS),
)
for segment in segments:
strip_styles(PATH_TO_CSS_FILE, *segment)
</code></pre>
<p>You'll need <a href="http://code.google.com/p/cssutils/" rel="nofollow">CssUtils</a></p>
<p>And obviously I havn't filled in the tuples at the beginning with every possible css property. I'll leave that as an exercise to the reader</p>
<p><strong>note</strong>: It will leave all the comments in the stylesheet even though many of them will not pertain to the separated styles.</p>
<p>Also, all styles not enumerated in the <code>LAYOUT</code>, <code>COLOR</code>, and <code>FONTS</code> variables at the top will be filtered out. </p>
<p>You can easily modify the <code>strip_styles</code> function to filter out the styles in those three variables to make a 4th stylesheet that contains all the misc. properties if you like</p>
http://stackoverflow.com/questions/1750290/fractal-image-scaling-with-python0Fractal image scaling with PythonJim Robert2009-11-17T17:02:45Z2009-11-17T18:48:42Z
<p>I am in a position where <strong>relatively low resolution</strong> images are provided (via an API, higher resolution images are not available) and <strong>high resolution</strong> images need to be generated.</p>
<p>I've taken a look at <a href="http://www.pythonware.com/products/pil/" rel="nofollow">PIL</a> and it's just great for about everything... Except scaling up images.</p>
<p>It has the common <a href="http://www.pythonware.com/library/pil/handbook/image.htm#Image.resize" rel="nofollow">resizing algorithms</a>:</p>
<ul>
<li>Nearest Neighbor</li>
<li>Bilinear</li>
<li>Bicubic</li>
<li>Anti-aliased</li>
</ul>
<p>I would like to use Fractal Resizing (as per <a href="http://www.codinghorror.com/blog/archives/000903.html" rel="nofollow">jeff's post on coding horror</a>), but alas, PIL has no support for this kind of resizing.</p>
<p>Further Google searches yield no alternative libraries to provide fractal image resizing either.</p>
<p>Does such a thing exist or do I really have to buckle down and write my own fractal resizing algorithm?</p>
<p>I'm no expert but from my current vantage point, that looks like a pretty steep learning curve :(</p>
<p>If no such library exists, maybe you have some advice where to learn about fractal compression algorithms?</p>
http://stackoverflow.com/questions/1748534/selectrelated-and-many-to-many-fields-with-ajax-django/1748965#17489651Answer by Jim Robert for select_related() and many to many fields with ajax (Django)Jim Robert2009-11-17T13:41:29Z2009-11-17T16:43:18Z<p>You may want to do a <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#in-bulk-id-list" rel="nofollow">bulk select using those ids</a> (probably the easiest solution)</p>
<pre><code>item_ids = [1, 2, 5]
Item.objects.in_bulk(item_ids)
# Another option:
Item.objects.filter(id__in=item_ids)
</code></pre>
<p><strong>edit:</strong> My advice is to either use <a href="http://code.google.com/p/django-tagging/" rel="nofollow">django-tagging</a> which handles this for you. OR just add a method to your Item model that gets the tags (and uses cache liberally)</p>
<pre><code>from django.core.cache import cache
class Item(models.Model):
...
def get_tags(self):
cache_key = "item_%s_tags" % self.id
cache_timeout = 600 # 10 minutes or whatever
tags = cache.get(cache_key, False)
if not tags:
tags = self.tags.all()
cache.set(cache_key, tags, cache_timeout)
return tags
</code></pre>
http://stackoverflow.com/questions/1744751/how-can-i-pass-a-variable-as-an-option-when-creating-a-jquery-ui-accordion/1744782#17447820Answer by Jim Robert for How can I pass a variable as an option when creating a jQuery UI accordion?Jim Robert2009-11-16T20:50:56Z2009-11-16T20:50:56Z<p>Not totally sure what you're looking for, but something like this may work</p>
<pre><code>$(acc_id).accordion({
alwaysOpen: false,
active: false,
autoheight: false,
header: $(this).find('h3.ui-accordion3-header').text(),
clearStyle: true
});
</code></pre>
http://stackoverflow.com/questions/1744203/django-admin-onetoone-relation-as-an-inline1Django Admin: OneToOne Relation as an Inline?Jim Robert2009-11-16T19:10:26Z2009-11-16T20:30:09Z
<p>I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base <code>Product</code> model, and I'd like to edit it all on one page.</p>
<p>It is possible to have a OneToOne relation as an Inline? If not, what is the best way to add a few fields to a given page of my admin that will eventually be saved into the OneToOne relation?</p>
<p>for example:</p>
<pre><code>class Product(models.Model):
name = models.CharField(max_length=100)
...
class MyProduct(models.Model):
product = models.OneToOne(Product)
...
</code></pre>
<p>I tried this for my admin but it does not work, and seems to expect a Foreign Key:</p>
<pre><code>class ProductInline(admin.StackedInline):
model = Product
fields = ('name',)
class MyProductAdmin(admin.ModelAdmin):
inlines = (AlbumProductInline,)
admin.site.register(MyProduct, MyProductAdmin)
</code></pre>
<p>Which throws this error: <code><class 'satchmo.product.models.Product'> has no ForeignKey to <class 'my_app.models.MyProduct'></code></p>
<p>Is the only way to do this a <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#form" rel="nofollow">Custom Form</a>?</p>
<p><strong>edit:</strong> Just tried the following code to add the fields directly... also does not work:</p>
<pre><code>class AlbumAdmin(admin.ModelAdmin):
fields = ('product__name',)
</code></pre>
http://stackoverflow.com/questions/1729565/what-shapes-can-you-draw-in-css5What shapes can you Draw in Css?Jim Robert2009-11-13T14:31:43Z2009-11-13T18:26:00Z
<p>I recently came across a <a href="http://desandro.com/resources/css-speech-bubble-icon" rel="nofollow">trick for drawing triangles</a> in css (it's the 'point' of the comment). And it's obvious how to draw a circle and rectangle/square. It seems like this would be enough to draw pretty much any shape (as long as you don't mind ignoring IE for circles)</p>
<pre><code><span class='red-triangle'></span>
<span class='blue-circle'></span>
<span class='green-square'></span>
</code></pre>
<p>css:</p>
<pre><code>.red-triangle {
display: block;
height: 0;
width: 0;
border-bottom: 1em solid #f00;
border-left: 1em solid transparent;
}
.blue-circle {
display: block;
height: 10px;
width: 10px;
background-color: #00f;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
}
.green-square {
background-color: #0f0;
display: block;
height: 10px;
width: 10px;
}
</code></pre>
<p>What other useful and clever tricks should I know about? :)</p>
http://stackoverflow.com/questions/1408846/development-experience-with-netsuite/1724175#17241751Answer by Jim Robert for Development experience with NetSuiteJim Robert2009-11-12T17:58:02Z2009-11-12T17:58:02Z<p>It's been a while, but I stumbled on this post while maintaining a legacy netsuite app and figured I'd put in my two cents (again).</p>
<p>Netsuite is a pretty terrible development experience if you have any experience with web development.</p>
<p>You can't FTP into your site's files, There is no good source of documentation, so there will be lots of guesswork, and the system is out of date (table based design, no progressive enhancement, etc)</p>
<p>I think it's helpful to non-developers to have all the hand holding, but if you understand scripting languages, html, css, etc. It just gets in your way.</p>
<p>I have moved on to <a href="http://python.org/" rel="nofollow">python</a> / <a href="http://www.djangoproject.com/" rel="nofollow">django</a> / <a href="http://www.satchmoproject.com/" rel="nofollow">satchmo</a> for all my current ventures and the development experience has been much nicer</p>
http://stackoverflow.com/questions/1707981/nasty-ie6-ul-li-stair-bug/1708002#17080020Answer by Jim Robert for Nasty IE6 <ul> <li> stair bugJim Robert2009-11-10T13:34:55Z2009-11-10T13:34:55Z<p>I think you want to float the <code><li></code> elements instead of the links within them</p>
<p>just move the <code>float: left;</code> from the links to the <code><li></code>s</p>
<p>Also remove the float: left; from the <code><ul></code></p>
http://stackoverflow.com/questions/1702562/speeding-up-the-first-page-load-in-django3Speeding Up the First Page Load in djangoJim Robert2009-11-09T17:38:17Z2009-11-09T22:19:36Z
<p>When I update the code on my website I (naturally) restart my apache instance so that the changes will take effect.</p>
<p>Unfortunately the first page served by each apache instance is quite slow while it loads everything into RAM for the first time (5-7 sec for this particular site).</p>
<p>Subsequent requests only take 0.5 - 1.5 seconds so I would like to eliminate this effect for my users.</p>
<p>Is there a better way to get everything loaded into RAM than to do a wget x times (where x is the number of apache instances defined by ServerLimit in my http.conf)</p>
<p>Writing a restart script that restarts apache and runs wget 5 times seems kind of hacky to me.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1701036/which-side-of-the-api-chasm0Which side of the api chasm?Jim Robert2009-11-09T13:38:13Z2009-11-09T16:00:35Z
<p>I am torn between to DRY and loose coupling :(</p>
<p>I have two sites which you can link your account and then the sites can share data (via a RESTful api...)</p>
<p>one site is a media aggregation site and the other is a media store where people can buy digital media (music/photo/video).</p>
<p>My boss wants to emulate the itunes store and have a built-in store in the aggregation site where people can buy the stuff they like and have it added to their account automatically.</p>
<p>I have 99% of the templates and views (django) written for the store site, that I would need to display the content on the media site.</p>
<p>Should I just render the templates and deliver pre-rendered html (via api) to the media (aggregation) site, (and obey DRY) or should I deliver json to avoid tightly coupled custom templates on the store side? </p>
<p>Or maybe a hybrid design would work better? deliver pre-rendered chunks of html (like a top 10 products in a <code><ol></code>) and let the media site request the chunks it needs?</p>
<p><del>The hybrid design seems most promising to me (right now), but will probably result is a lot more api calls (and therefore more database queries)</del></p>
<p>What do you think?</p>
<p><strong>edit - A new idea:</strong> (as seen in the comment) What do you think of having the store site loaded up with some custom css into an iframe?</p>
<p>I think that should eliminate confusion, reduce the amount of tightly coupled code to 2 of 3 dozen lines or so, and save me the massive headache of maintaining two sets of templates that are almost identical.</p>
http://stackoverflow.com/questions/1689031/overhead-of-a-round-trip-to-mysql2Overhead of a Round-trip to MySql?Jim Robert2009-11-06T17:18:28Z2009-11-06T18:47:51Z
<p>So I've been building django applications for a while now, and drinking the cool-aid and all: only using the ORM and never writing custom SQL.</p>
<p>The main page of the site (the primary interface where users will spend 80% - 90% of their time) was getting slow once you have a large amount of user specific content (ie photos, friends, other data, etc)</p>
<p>So I popped in the sql logger (was pre-installed with pinax, I just enabled it in the settings) and imagine my surprise when it reported over <strong>500 database queries</strong>!! With hand coded sql I hardly ever ran more than 50 on the most complex pages.</p>
<p>In hindsight it's not all together surprising, but it seems that this can't be good.</p>
<p>...even if only a dozen or so of the queries take 1ms+</p>
<p>So I'm wondering, <strong>how much overhead is there on a round trip to mysql</strong>? django and mysql are running on the <strong>same server</strong> so there shouldn't be any networking related overhead.</p>
http://stackoverflow.com/questions/1677167/document-ready-is-getting-called-multiple-times/1677446#16774461Answer by Jim Robert for document.ready is getting called multiple timesJim Robert2009-11-04T23:40:26Z2009-11-04T23:40:26Z<p>I put together this demo code but wasn unable to reproduce the issue... hopefully it helps you out...</p>
<pre><code><html>
<head>
<title>test</title>
</head>
<body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// do some javascript like highlighting
// form elements with specific classes
$('.some-element').css('background', '#eec');
});
</script>
display header here
<script type="text/javascript">
$(document).ready(function() {
$('body').append("<p>test</p>");
});
</script>
<p class='some-element'>
my about us page
display footer
</p>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1677071/need-help-with-this-jquery-animation/1677278#16772781Answer by Jim Robert for Need help with this jQuery animationJim Robert2009-11-04T22:59:50Z2009-11-04T23:10:24Z<p><code>animate</code> is adding css to the style attribute of the <code>li</code> items. </p>
<p>You probably need to clear these extra styles</p>
<p>try checking these values:</p>
<pre><code>alert(listItem.css('top'));
alert(listItemPushed.css('top'));
</code></pre>
<p>you probably need to clear these css attributes in your callback function after you move the pushed <code>li</code></p>
<p>so</p>
<pre><code>listItemPushed.animate({ top: (top2-top1) }, 300);
listItem.animate({ top: (top1 - top2) }, 300, 'linear', function() {
listItemPushed.before(listItem);
});
</code></pre>
<p>would become something like...</p>
<pre><code>listItemPushed.animate({ top: (top2-top1) }, 300);
listItem.animate({ top: (top1 - top2) }, 300, 'linear', function() {
listItemPushed.before(listItem);
listItem.css('top', '0');
listItemPushed.css('top', '0');
});
</code></pre>
<p>After thinking about this a little more, I think you need to move the bottom object up by the height of the top element, and the top element down by the height of the bottom one. </p>
<p>take a look at <a href="http://docs.jquery.com/CSS/height" rel="nofollow">jquery's height method</a>:</p>
<pre><code>listItem.height()
</code></pre>
http://stackoverflow.com/questions/1661262/check-if-object-is-file-like-in-python/1661307#16613070Answer by Jim Robert for Check if object is file-like in PythonJim Robert2009-11-02T13:22:41Z2009-11-02T13:22:41Z<p>I think the best way is to just put the read in a try block. IE</p>
<pre><code>try:
data = fp.read()
except:
raise
</code></pre>
http://stackoverflow.com/questions/1655509/can-i-access-the-dict-object-for-the-local-scope0Can I access the __dict__ object for the local scope?Jim Robert2009-10-31T20:20:09Z2009-10-31T20:44:01Z
<p>Here is my situation...</p>
<p>I am trying to dynamically generate a bunch of stuff in my settings.py file on a django site.</p>
<p>I am setting up several sites, (via sites framework) and I want to have some values I plug in to a function that will generate a portion of the settings file for each site.</p>
<p>for example:</p>
<pre><code>from universal_settings import *
SITE_NAME = 'First Site'
SITE_SLUG = 'firstsite'
DEFAULT_FROM_EMAIL = '%s <noreply@otakupride.com>' % SITE_NAME
ROOT_URLCONF = 'mysite.urls.%s' % SITE_SLUG
TEMPLATE_DIRS += ( os.path.join(PROJECT_ROOT, "templates", SITE_SLUG), )
</code></pre>
<p>obviously it's a huge violation of DRY to have those last 3 lines in the settings file for every site running this code. So I want to do something like this</p>
<pre><code>from universal_settings import *
from utils import get_dynamic_settings
SITE_NAME = 'First Site'
SITE_SLUG = 'firstsite'
get_dynamic_settings( locals() )
</code></pre>
<p>And here is the function</p>
<pre><code># WARNING: THIS CODE DOES NOT WORK!
def get_dynamic_settings(context_dict):
global DEFAULT_FROM_EMAIL
global ROOT_URLCONF
global TEMPLATE_DIRS
DEFAULT_FROM_EMAIL = '%s <noreply@otakupride.com>' % context_dict['SITE_NAME']
ROOT_URLCONF = 'mysite.urls.%s' % context_dict['SITE_SLUG']
TEMPLATE_DIRS += ( os.path.join(PROJECT_ROOT, "templates", context_dict['SITE_SLUG']), )
</code></pre>
<p>so my question is... how do I add things to the scope of the settings file? it doesn't seem to have a <strong>dict</strong> object available to the variables within it.</p>
<p>Maybe I'm going about this all wrong? Thanks for your help!</p>
<p>PS - my understanding of the <code>global</code> keyword is that it tells the compiler that the function means to manipulate a global variable <strong>within it's own file</strong> - is there such a thing for the file which the function is called?</p>
http://stackoverflow.com/questions/1396529/multiple-file-selection-for-an-upload-control/1632296#16322960Answer by Jim Robert for Multiple file selection for an upload controlJim Robert2009-10-27T17:09:31Z2009-10-27T17:09:31Z<p>If you prefer to use JQuery - check out this plugin (it's very nice)</p>
<p><a href="http://www.uploadify.com" rel="nofollow">http://www.uploadify.com</a></p>
http://stackoverflow.com/questions/1454727/do-properties-work-on-django-model-fields0do properties work on django model fields?Jim Robert2009-09-21T14:13:17Z2009-10-26T13:19:59Z
<p>I think the best way to ask this question is with some code... can I do this? (<strong>edit</strong>: ANSWER: no)</p>
<del><pre><code>
class MyModel(models.Model):
foo = models.CharField(max_length = 20)
bar = models.CharField(max_length = 20)
def get_foo(self):
if self.bar:
return self.bar
else:
return self.foo
def set_foo(self, input):
self.foo = input
foo = property(get_foo, set_foo)
</code></pre>
</del>
<p><del>or do I have to do it like this:</del></p>
<h2>Yes, you have to do it like this:</h2>
<pre><code>class MyModel(models.Model):
_foo = models.CharField(max_length = 20, db_column='foo')
bar = models.CharField(max_length = 20)
def get_foo(self):
if self.bar:
return self.bar
else:
return self._foo
def set_foo(self, input):
self._foo = input
foo = property(get_foo, set_foo)
</code></pre>
<p><strong>note</strong>: you can keep the column name as 'foo' in the database by passing a db_column to the model field. This is very helpful when you are working on an existing system and you don't want to have to do db migrations for no reason</p>
http://stackoverflow.com/questions/1624518/how-to-avoid-repetition-of-exception-handling/1624589#16245895Answer by Jim Robert for How to avoid repetition of exception handling?Jim Robert2009-10-26T12:43:35Z2009-10-26T12:43:35Z<p>I would probably try move the file operations into separate functions and wrap those in a try... except</p>
<p>actually I just got an even better idea... put the error handling into a decorator and apply the decorator to each of the functions that does file operations</p>
<pre><code>def catch_io_errors(fn):
def decorator(*args, **kwargs):
try:
return fn(*args, **kwargs)
except IOError:
quit('whatever error text')
return decorator
</code></pre>
<p>then you can put all file ops into their own functions and apply the decorator</p>
<pre><code>@catch_io_errors
def read_file():
with safe_open(myfile, 'r') as f:
for i in f:
print i
</code></pre>
<p>or if you need compatibility with python 2.3:</p>
<pre><code>def read_file():
with safe_open(myfile, 'r') as f:
for i in f:
print i
read_file = catch_io_errors(read_file)
</code></pre>
http://stackoverflow.com/questions/1601586/foreign-key-needs-a-value-from-the-keys-table-to-match-a-column-in-another-table/1602490#16024902Answer by Jim Robert for Foreign key needs a value from the key's table to match a column in another table.Jim Robert2009-10-21T17:59:06Z2009-10-22T13:02:19Z<p>You could use the <code>pre_save</code> signal and raise an error if they do no match... The effect would be similar to overridding save (it gets called before save)</p>
<p>The problem is creating/deleting/updating the many-to-many relation will not trigger save (or consequentially <code>pre_save</code> or <code>post_save</code>)</p>
<h2>Update</h2>
<p>Try using the <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ManyToManyField.through" rel="nofollow"><code>through</code> argument on your many-to-many relation</a></p>
<p>That lets you manually define the intermediary table for the m2m relation, which will give you access to the signals, as well as the functions. </p>
<p>Then you can choose signals or overloading as you please</p>
http://stackoverflow.com/questions/1596589/why-are-asynchronous-processes-not-called-synchronous/1596614#15966142Answer by Jim Robert for Why are Asynchronous processes not called Synchronous?Jim Robert2009-10-20T18:52:17Z2009-10-20T18:52:17Z<p>I would guess it's because they are not synchronized ;)</p>
<p>In other words... if one process gets stopped, killed, or is waiting for something, the other will carry on</p>
http://stackoverflow.com/questions/1596552/django-urls-without-a-trailing-slash-do-not-redirect/1596600#15966005Answer by Jim Robert for django urls without a trailing slash do not redirectJim Robert2009-10-20T18:49:39Z2009-10-20T18:49:39Z<p>check your <code>APPEND_SLASH</code> setting in the settings.py file</p>
<p><a href="http://docs.djangoproject.com/en/dev/ref/settings/#append-slash" rel="nofollow">more info in the django docs</a></p>
http://stackoverflow.com/questions/1596546/problem-authenticating-by-doing-a-post-to-an-https-page/1596581#15965811Answer by Jim Robert for Problem authenticating by doing a POST to an HTTPS page.Jim Robert2009-10-20T18:45:45Z2009-10-20T18:45:45Z<p>Any REST call you are typing into your address bar is an HTTP GET (or HTTPS GET) not POST - </p>
<p>maybe this is the problem? </p>
<p>just change</p>
<pre><code><form method="POST">
</code></pre>
<p>to</p>
<pre><code><form method="GET">
</code></pre>
http://stackoverflow.com/questions/1577800/django-custom-sql-in-the-connection-string0Django - Custom SQL in the connection stringJim Robert2009-10-16T12:35:24Z2009-10-16T13:42:21Z
<p>Hello, I have had some issues with downtime as a result of hitting the <code>max_user_connections</code> limit in MySql.</p>
<p>The <strong>default connection timeout is 8 hours</strong>, so once we hit the limit (and having no access to kill the connections on our shared hosting) I simply had to wait 8 hours for the connections to time out.</p>
<p>I would like to add the following code to my connection string:</p>
<pre><code>SET wait_timeout=300;
</code></pre>
<p>Which would <strong>change the timeout to 5 minutes</strong>. As you can imagine, I'm much happier to deal with 5 minutes of downtime than 8 hours. ;)</p>
<p>Is there a good way of adding <strong>custom SQL to the connection string in django</strong>?</p>
<p>If not, it has been suggested that we write some <strong>middleware</strong> that runs the SQL before the view is processed.</p>
<p>That might work, but I would feel more comfortable knowing that the query was absolutely <strong>guaranteed to run for every connection</strong>, even if more than one connection is opened for each view.</p>
<p>Thanks!</p>
<p>PS - before you tell me I should just hunt down the code that is keeping the connections from being closed - <strong><em>Never Fear!</em></strong> - we are doing that, but I would like to have this extra insurance against another 8 hour block of downtime</p>
http://stackoverflow.com/questions/1565358/updating-models/1566502#15665021Answer by Jim Robert for Updating ModelsJim Robert2009-10-14T14:11:07Z2009-10-14T14:11:07Z<p>If you've already made the changes to the live database, you can probably just change the models and restart your webserver. </p>
<p>As long as your Field names match between the database and the models you shouldn't have any issues.</p>
<p>That being said, it is a <strong><em>much</em></strong> better idea to use a migration tool like south (as Dominic suggested already)</p>
http://stackoverflow.com/questions/1555060/how-to-save-a-model-without-sending-a-signal/1556235#15562351Answer by Jim Robert for How to save a model without sending a signal?Jim Robert2009-10-12T18:46:43Z2009-10-12T18:46:43Z<p>It's a bit of a hack, but you can do something like this:</p>
<p>use a unique identifier with a filter and then use the update method of the queryset (which does not trigger the signals)</p>
<pre><code>user_id = 142187
User.objects.filter(id=user_id).update(name='tom')
</code></pre>
http://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/228293#2282930Answer by Jim Robert for Programming texts and reference material for my Kindle DX, creating the ultimate reference device?Jim Robert2008-10-23T02:06:19Z2009-10-09T20:45:53Z<p>I'm quite tired and don't have the time to submit these all as seperate answers, but <a href="http://en.wikibooks.org/wiki/Main%5FPage" rel="nofollow">Wikibooks</a> has quite a few in the <a href="http://en.wikibooks.org/wiki/Wikibooks%3AComputing%5Fdepartment" rel="nofollow">computing department</a>, and they're all available free, as either HTML or PDF.</p>
<p>Here are a few:</p>
<ul>
<li><a href="http://en.wikibooks.org/wiki/ASP.NET" rel="nofollow">ASP.NET</a></li>
<li><a href="http://en.wikibooks.org/wiki/Programming%3ACocoa" rel="nofollow">Cocoa</a></li>
<li><a href="http://en.wikibooks.org/wiki/Python%5FProgramming" rel="nofollow">Python</a></li>
<li><a href="http://en.wikibooks.org/wiki/PHP%5FProgramming" rel="nofollow">PHP</a></li>
<li><a href="http://en.wikibooks.org/wiki/Ruby%5FProgramming" rel="nofollow">Ruby</a></li>
</ul>
<p>Good luck and good night!</p>
<p>PS - you're making me want a <a href="http://en.wikipedia.org/wiki/Amazon%5FKindle" rel="nofollow">Kindle</a> now ;)</p>
http://stackoverflow.com/questions/174025/how-do-you-trigger-javascript-functions-from-flash2How do you trigger javascript functions from flash?Jim Robert2008-10-06T12:08:24Z2009-10-06T15:22:16Z
<p>How do you trigger a javascript function using actionscript in flash?</p>
<p>The goal is to trigger jQuery functionality from a flash movie</p>
http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-in15Can a Bash script tell what directory it's in?Jim Robert2008-09-12T20:39:56Z2009-09-26T20:38:02Z
<p>How do I get the path of the directory in which a bash script is located FROM that bash script.</p>
<p>For instance, lets say I want to use a bash script as a launcher for another application. I want to change working directory to the one where the bash script is located so I can operate on the files in that directory like so: </p>
<p><code>$ ./application</code></p>
http://stackoverflow.com/questions/59936/slowing-down-the-playback-of-an-audio-file-without-changing-its-pitch/1777603#1777603Comment by Jim Robert on Slowing down the playback of an audio file without changing its pitch?Jim Robert2009-11-23T20:17:34Z2009-11-23T20:17:34ZI'm pretty sure that first idea will just lower the quality while leaving the playback speed the samehttp://stackoverflow.com/questions/1770526/complete-jqgridComment by Jim Robert on complete jqGrid?Jim Robert2009-11-20T14:25:02Z2009-11-20T14:25:02Zespecially when your rep makes it clear that you have contributed nothing to the community :/http://stackoverflow.com/questions/1750290/fractal-image-scaling-with-python/1750331#1750331Comment by Jim Robert on Fractal image scaling with PythonJim Robert2009-11-17T17:17:16Z2009-11-17T17:17:16ZI absolutely will... if I can convince my boss haha (I have a feeling if it looks like it'll take more than a few days to write, we'll just use a cgi or something. this isn't our core business)http://stackoverflow.com/questions/1744751/how-can-i-pass-a-variable-as-an-option-when-creating-a-jquery-ui-accordion/1744782#1744782Comment by Jim Robert on How can I pass a variable as an option when creating a jQuery UI accordion?Jim Robert2009-11-17T16:32:11Z2009-11-17T16:32:11Zcan I get the accepted answer? or at least an upvote? hahahttp://stackoverflow.com/questions/1746377/checking-for-content-in-django-request-post/1746399#1746399Comment by Jim Robert on Checking for content in Django request.POSTJim Robert2009-11-17T14:04:03Z2009-11-17T14:04:03ZI also recommend this approach :)http://stackoverflow.com/questions/1746994/what-is-the-cleanest-way-to-add-code-to-contrib-authComment by Jim Robert on What is the cleanest way to add code to contrib.authJim Robert2009-11-17T13:22:14Z2009-11-17T13:22:14Zfor the record: in terms of security, it's better to have the salt first (see: <a href="http://programming.arantius.com/how-to-salt-your-hash" rel="nofollow">programming.arantius.com/how-to-salt-your-hash/…</a>)http://stackoverflow.com/questions/1744203/django-admin-onetoone-relation-as-an-inline/1744445#1744445Comment by Jim Robert on Django Admin: OneToOne Relation as an Inline?Jim Robert2009-11-17T13:18:04Z2009-11-17T13:18:04ZAny reccomendation for adding multiple sub-types in this way (since they'll all be a OneToOne to product)?http://stackoverflow.com/questions/1744203/django-admin-onetoone-relation-as-an-inline/1744445#1744445Comment by Jim Robert on Django Admin: OneToOne Relation as an Inline?Jim Robert2009-11-17T13:17:19Z2009-11-17T13:17:19Zoh, pro-tip! =Dhttp://stackoverflow.com/questions/1744051/why-do-so-many-javascript-scripts-append-random-numbers-to-things-collision/1744089#1744089Comment by Jim Robert on Why do so many Javascript scripts append random numbers to things? Collision?Jim Robert2009-11-16T20:58:00Z2009-11-16T20:58:00ZI use revision numbers (svn gives an int, hg gives a uuid)http://stackoverflow.com/questions/1744203/django-admin-onetoone-relation-as-an-inline/1744445#1744445Comment by Jim Robert on Django Admin: OneToOne Relation as an Inline?Jim Robert2009-11-16T20:15:41Z2009-11-16T20:15:41Zunfortunately the parent model is already registered with admin, and I would prefer not to go off patching/forking satchmo itselfhttp://stackoverflow.com/questions/1729565/what-shapes-can-you-draw-in-cssComment by Jim Robert on What shapes can you Draw in Css?Jim Robert2009-11-13T14:36:30Z2009-11-13T14:36:30ZI would have included examples but stackoverflow strips out "style" attributes for security reasons :(http://stackoverflow.com/questions/153947/whats-faster-php-vs-asp-vs-jsp-vs-cgi-etc/1172981#1172981Comment by Jim Robert on What's faster? PHP vs ASP vs JSP vs CGI etcJim Robert2009-11-12T14:12:30Z2009-11-12T14:12:30Zthis isn't really a fair comparison, php on mod_php is significantly faster on linux than windows, not to mention that windows xp isn't exactly a serverhttp://stackoverflow.com/questions/153947/whats-faster-php-vs-asp-vs-jsp-vs-cgi-etc/655466#655466Comment by Jim Robert on What's faster? PHP vs ASP vs JSP vs CGI etcJim Robert2009-11-12T14:10:52Z2009-11-12T14:10:52ZI disagree with that sentiment, keep learning all the time! Also, C and php are very different!http://stackoverflow.com/questions/1702945/compiling-windows-binaries-from-ubuntuComment by Jim Robert on Compiling windows binaries from Ubuntu?Jim Robert2009-11-09T18:51:20Z2009-11-09T18:51:20ZWhat is the game? Also I use ubuntu linux as my primary OS so I'm happy to hear this, but wouldn't it be prudent to design primarily for windows due to the vastly larger userbase?http://stackoverflow.com/questions/1700577/is-it-possible-to-redefine-reverse-in-a-django-project/1700673#1700673Comment by Jim Robert on Is it possible to redefine reverse in a Django project?Jim Robert2009-11-09T18:48:52Z2009-11-09T18:48:52Z...even if you are monkeypatching django, it's still the answer to his question