User mikl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T10:18:26Zhttp://stackoverflow.com/feeds/user/66851http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1295520/good-resources-for-learning-pl-pgsql3Good resources for learning PL/pgSQL?mikl2009-08-18T17:59:46Z2009-11-24T08:06:49Z
<p>I've been looking around the net trying to find good resources for learning PostgreSQL's procedural programming language, PL/pgSQL.</p>
<p>So far the only thing I've managed to dig up is the <a href="http://www.postgresql.org/docs/8.4/interactive/plpgsql.html" rel="nofollow">tutorial in the PostgreSQL documentation</a>. While that is good, I've been looking for something more in-depth. Can you recommend anything?</p>
http://stackoverflow.com/questions/1568493/what-version-is-5-2-0-8etch13-really/1568516#15685162Answer by mikl for What version is 5.2.0-8+etch13 really?mikl2009-10-14T19:42:13Z2009-10-14T19:42:13Z<p>Not really. <code>-8etch13</code> signifies that the Debian maintainer has applied no less than 13 revisions of his own patchset to PHP 5.2.0 and 8 of some other patchset.</p>
<p>Much of this goes towards backporting fixes from newer versions of PHP, so it doesn't really correspond to any particular PHP release.</p>
<p>So while it's better than PHP 5.2.0, it's not as good as PHP 5.2.11. If you have issues, I would recommend trying to upgrade to the latest PHP 5.2 (on a testing server, obviously). I've experienced strange bugs before with Debian's PHP packages.</p>
http://stackoverflow.com/questions/629696/deploying-google-analytics-with-django/1559982#15599822Answer by mikl for Deploying Google Analytics With Djangomikl2009-10-13T12:45:30Z2009-10-13T12:45:30Z<p>A little late to the party, but there's a reusable Django app called <a href="http://github.com/montylounge/django-google-analytics" rel="nofollow">django-google-analytics</a>. The easiest way to use it is:</p>
<ol>
<li>Add the <code>google_analytics</code> application to your <code>INSTALLED_APPS</code> section of your <code>settings.py</code>.</li>
<li>In your base template, usually a <code>base.html</code>, insert this tag at the very top: <code>{% load analytics %}</code></li>
<li>In the same template, insert the following code right before the closing body tag: <code>{% analytics "UA-xxxxxx-x" %}</code> the <code>UA-xxxxxx-x</code> is a unique Google Analytics code for your domain.</li>
</ol>
http://stackoverflow.com/questions/1119722/base-62-conversion-in-python3Base 62 conversion in Pythonmikl2009-07-13T14:19:41Z2009-09-28T14:20:24Z
<p>How would you convert an integer to base 62 (like hexadecimal, but with these digits: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ').</p>
<p>I have been trying to find a good Python library for it, but they all seems to be occupied with converting strings. The Python base64 module only accepts strings and turns a single digit into four characters. I was looking for something akin to what URL shorteners use.</p>
http://stackoverflow.com/questions/1018981/how-to-dynamically-reconfigure-drupals-jquery-based-autocomplete-at-runtime0How to dynamically reconfigure Drupal's jQuery-based autocomplete at runtime?mikl2009-06-19T16:55:08Z2009-09-04T14:08:43Z
<p><a href="http://drupal.org/" rel="nofollow">Drupal</a> has a very well-architected, <a href="http://jquery.com/" rel="nofollow">jQuery</a>-based <a href="http://cvs.drupal.org/viewvc.py/drupal/drupal/misc/autocomplete.js?revision=1.23&view=markup&pathrev=DRUPAL-6" rel="nofollow">autocomplete.js</a>. Usually, you don't have to bother with it, since it's configuration and execution is handled by the Drupal form API.</p>
<p>Now, I need a way to reconfigure it at runtime (with JavaScript, that is). I have a standard drop down select box with a text field next to it, and depending what option is selected in the select box, I need to call different URLs for autocompletion, and for one of the options, autocompletion should be disabled entirely. Is it possible to reconfigure the existing autocomplete instance, or will I have to somehow destroy and recreate?</p>
http://stackoverflow.com/questions/1341358/set-size-on-backgroundimage-with-css/1341371#13413713Answer by mikl for Set size on backgroundimage with css?mikl2009-08-27T14:09:37Z2009-08-27T14:27:32Z<p><strong>Not possible</strong>. The background will always be as large as it can be, but you can stop it from repeating itself with <a href="http://www.eskimo.com/~bloo/indexdot/css/properties/colorbg/bgrepeat.htm" rel="nofollow"><code>background-repeat</code></a>.</p>
<pre><code>background-repeat: no-repeat;
</code></pre>
<p>Secondly, the background does not go into margin-area of a box, so if you want to have the background only be on the actual contents of a box, you can use margin instead of padding.</p>
<p>Thirdly, you can control where the background image starts. By default it's the top left corner of a box, but you can control that with <a href="http://www.eskimo.com/~bloo/indexdot/css/properties/colorbg/bgposit.htm" rel="nofollow"><code>background-position</code></a>, like this:</p>
<pre><code>background-position: center top;
</code></pre>
<p>or perhaps</p>
<pre><code>background-position: 20px -14px;
</code></pre>
<p>Negative positioning is used a lot with <a href="http://css-tricks.com/css-sprites/" rel="nofollow">CSS sprites</a>.</p>
http://stackoverflow.com/questions/1336403/drupal-6-module-for-program-syntax-higlighting/1336529#13365290Answer by mikl for Drupal 6 module for program syntax higlightingmikl2009-08-26T18:09:03Z2009-08-26T18:09:03Z<p><a href="http://drupal.org/" rel="nofollow">Drupal.org</a> uses <a href="http://drupal.org/project/codefilter" rel="nofollow">code filter</a>. It is very simple to set up and has no external dependencies (like GeSHI does).</p>
<p>If you only need to highlight PHP code, I'd recommend code filter, since GeSHI takes a lot of time to set up and maintain.</p>
http://stackoverflow.com/questions/1336448/publishing-the-head-of-a-branch-without-all-the-previous-commit-objects/1336479#13364792Answer by mikl for Publishing the HEAD of a branch without all the previous commit objectsmikl2009-08-26T17:59:23Z2009-08-26T18:05:28Z<p>Take a look at <a href="http://stackoverflow.com/questions/160608/how-to-do-a-git-export-like-svn-export">this question</a>.</p>
<p>You could also just swap out the <code>.git</code> folder in your source tree with a different one, and check your code into that when you want to publish.</p>
<p>You can not, however, set up a branch in the same Git repository without sharing the history, because of the way Git works. A repository has a root commit of the initial state, and all other commits are simply deltas against that commit.</p>
<p>But while we are at it, if you don't want to expose version control history, why not simply publish the code as a tarball with a version number, no reason to drag Git into it :)</p>
http://stackoverflow.com/questions/1307442/crash-and-socket-failure-9-signalling-processes-with-sudo/1307765#13077652Answer by mikl for Crash and Socket Failure: 9-signalling Processes with Sudomikl2009-08-20T17:43:35Z2009-08-20T17:43:35Z<p>This more a Server Fault kind of question, but try running psql like this:</p>
<pre><code>sudo -u postgres psql
</code></pre>
<p>When you install PostgreSQL, there's no user account created for your current user, so you'd have to create one.</p>
<p>That can be achieved like this (where <em>masi</em> is the wanted username):</p>
<pre><code>sudo -u postgres createuser -sdrPE masi
</code></pre>
http://stackoverflow.com/questions/1119754/using-python-to-convert-color-formats/1299963#12999630Answer by mikl for Using Python to convert color formats?mikl2009-08-19T13:35:17Z2009-08-19T13:35:17Z<p>There's a module called <a href="http://code.google.com/p/python-colormath/" rel="nofollow">Python Colormath</a> which provides a lot of different conversions. Highly recommended.</p>
http://stackoverflow.com/questions/1291140/drupal-6-programmatically-altering-user-values-how-do-you-use-profilesaveprof/1295593#12955931Answer by mikl for Drupal 6: Programmatically Altering User Values (how do you use profile_save_profile??)mikl2009-08-18T18:13:04Z2009-08-18T18:13:04Z<p>I think the problem is that you're specifying <code>$register</code> (the last parameter) as <code>TRUE</code>. That is only used when creating new accounts, so if set, you will only be able to save the profile fields available on the registration page, which is probably not what you want.</p>
<p>Since it's not a required parameter, you can just leave it out.</p>
<p>When it comes to the format of edit, it expects the same format as the <code>$form_state['values']</code> you would have if the values where coming from a form, for example:</p>
<pre><code><?php
$edit = array(
'fencing_style' => 'Aggressive',
'favorite_weapon' => 'sabre',
'left_handed' => FALSE,
);
profile_save_profile($edit, $user, 'Fencing Information');
</code></pre>
http://stackoverflow.com/questions/1173798/django-really-slow-with-large-datasets-after-doing-some-python-profiling/1177600#11776000Answer by mikl for Django (?) really slow with large datasets after doing some python profilingmikl2009-07-24T13:19:01Z2009-07-24T13:19:01Z<p>When dealing with large sets of data, you can also save a lot of CPU and memory by using the <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#values-fields" rel="nofollow">ValuesQuerySet</a> that accesses the query results more directly instead of creating a model object instance for each row in the result.</p>
<p>It's usage looks a bit like this:</p>
<pre><code>Blog.objects.order_by('id').values()
</code></pre>
http://stackoverflow.com/questions/1165288/is-file-transfer-possible-to-iphone-3-0-via-bluetooth-or-not/1165304#11653040Answer by mikl for Is file transfer possible to iPhone 3.0 via Bluetooth or not?mikl2009-07-22T13:37:31Z2009-07-22T13:37:31Z<p>To my knowledge, no – the iPhone OS does currently not support filetransfers via Bluetooth. I think you will have to jailbreak the software to get enough access to the Bluetooth stack to pull it off.</p>
<p>It is very telling that even if you have Bluetooth turned on in your iPhone, it does not show up on other devices when searching for units to transfer files to. I suppose it's saying something in its Bluetooth signature that tells other devices that it doesn't receive files.</p>
http://stackoverflow.com/questions/1113277/how-do-i-do-large-non-blocking-updates-in-postgresql/1113318#11133181Answer by mikl for How do I do large non-blocking updates in PostgreSQL?mikl2009-07-11T09:25:44Z2009-07-11T10:21:08Z<p>I am by no means a DBA, but a database design where you'd frequently have to update 35 million rows might have… issues.</p>
<p>A simple <code>WHERE status IS NOT NULL</code> might speed up things quite a bit (provided you have an index on status) – not knowing the actual use case, I'm assuming if this is run frequently, a great part of the 35 million rows might already have a null status.</p>
<p>However, you can make loops within the query via the <a href="http://www.postgresql.org/docs/8.3/static/plpgsql-control-structures.html#PLPGSQL-CONTROL-STRUCTURES-LOOPS" rel="nofollow">LOOP statement</a>. I'll just cook up a small example:</p>
<pre><code>CREATE OR REPLACE FUNCTION nullstatus(count INTEGER) RETURNS integer AS $$
DECLARE
i INTEGER := 0;
BEGIN
FOR i IN 0..(count/1000 + 1) LOOP
UPDATE orders SET status = null WHERE (order_id > (i*1000) and order_id <((i+1)*1000));
RAISE NOTICE 'Count: % and i: %', count,i;
END LOOP;
RETURN 1;
END;
$$ LANGUAGE plpgsql;
</code></pre>
<p>It can then be run by doing something akin to:</p>
<pre><code>SELECT nullstatus(35000000);
</code></pre>
<p>You might want to select the row count, but beware that the exact row count can take a lot of time. The PostgreSQL wiki has an article about <a href="http://wiki.postgresql.org/wiki/Slow%5FCounting" rel="nofollow">slow counting and how to avoid it</a>.</p>
<p>Also, the RAISE NOTICE part is just there to keep track on how far along the script is. If you're not monitoring the notices, or do not care, it would be better to leave it out.</p>
http://stackoverflow.com/questions/1108225/non-blocking-javascript/1108430#11084300Answer by mikl for Non-blocking Javascriptmikl2009-07-10T08:42:22Z2009-07-10T08:42:22Z<p><a href="http://www.websiteoptimization.com/speed/tweak/defer/" rel="nofollow">Deferring execution of JavaScript</a> can be a really good solution if you have some JavaScript that is not critical to have loaded immediately.</p>
http://stackoverflow.com/questions/1027714/how-to-execute-a-file-within-the-python-interpreter/1028096#10280961Answer by mikl for How to execute a file within the python interpreter?mikl2009-06-22T16:18:11Z2009-06-22T16:18:11Z<blockquote>
<p>I'm trying to use variables and settings from that file, not to invoke a separate process.</p>
</blockquote>
<p>Well, simply importing the file with <code>import filename</code> (minus .py, needs to be in the same directory or on your <code>PYTHONPATH</code>) will run the file, making its variables, functions, classes, etc. available in the <code>filename.variable</code> namespace.</p>
<p>So if you have <code>cheddar.py</code> with the variable spam and the function eggs – you can import them with <code>import cheddar</code>, access the variable with <code>cheddar.spam</code> and run the function by calling <code>cheddar.eggs()</code></p>
<p>If you have code in <code>cheddar.py</code> that is outside a function, it will be run immediately, but building applications that runs stuff on import is going to make it hard to reuse your code. If a all possible, put everything inside functions or classes.</p>
http://stackoverflow.com/questions/1020798/how-do-i-get-a-link-to-parent-node-in-nodecomments-in-drupal-6/1025596#10255962Answer by mikl for How do I get a link to parent node in nodecomments in drupal 6?mikl2009-06-22T05:38:16Z2009-06-22T05:38:16Z<p>The patch you were pointing at is for the 6.x-2.x-dev version (what's going to be nodecomment 2.0 for Drupal 6 someday), and is thus of little use in your case, sorry.</p>
<p>You could simply do something like</p>
<pre><code><?php print l('Back to product', 'node/' . $node->comment_target_nid); ?>
</code></pre>
<p>in your <code>node-comment.tpl.php</code> to get a link back to the product.</p>
<p>If you want to do more advanced stuff (like load the product node to get its title or other attributes), I'd suggest you make a preprocess function in your theme (or even create a module, depending how great your needs are).</p>
<p>Here's a good resource on preprocess functions: <a href="http://drupal.org/node/223430" rel="nofollow">Setting up variables for use in a template (preprocess functions)</a>.</p>
http://stackoverflow.com/questions/1023409/displaying-rss-feeds-in-drupal/1025434#10254340Answer by mikl for Displaying RSS feeds in Drupalmikl2009-06-22T04:17:13Z2009-06-22T04:17:13Z<p>Well, if you want to consume RSS-feeds (ie. read the RSS feeds from other sites), Drupal's aggregator module will set you up. It is a part of Drupal core, so you need only enable it and add some feeds.</p>
<p>The aggregator module powers some rather large RSS syndication sites, like <a href="http://drupal.org/planet/" rel="nofollow">Planet Drupal</a>.</p>
http://stackoverflow.com/questions/1018981/how-to-dynamically-reconfigure-drupals-jquery-based-autocomplete-at-runtime/1024135#10241350Answer by mikl for How to dynamically reconfigure Drupal's jQuery-based autocomplete at runtime?mikl2009-06-21T15:19:51Z2009-06-21T15:19:51Z<p>Well, for reference, I've thrown together a hack that works, but if anyone can think of a better solution, I'd be happy to hear it.</p>
<pre><code>Drupal.behaviors.dingCampaignRules = function () {
$('#campaign-rules')
.find('.campaign-rule-wrap')
.each(function (i) {
var type = $(this).find('select').val();
$(this).find('.form-text')
// Remove the current autocomplete bindings.
.unbind()
// And remove the autocomplete class
.removeClass('form-autocomplete')
.end()
.find('select:not(.dingcampaignrules-processed)')
.addClass('dingcampaignrules-processed')
.change(Drupal.behaviors.dingCampaignRules)
.end();
if (type == 'page' || type == 'library' || type == 'taxonomy') {
$(this).find('input.autocomplete')
.removeClass('autocomplete-processed')
.val(Drupal.settings.dingCampaignRules.autocompleteUrl + type)
.end()
.find('.form-text')
.addClass('form-autocomplete');
Drupal.behaviors.autocomplete(this);
}
});
};
</code></pre>
<p>This code comes from the <a href="http://github.com/kdb/ding/tree/master/sites/all/modules/ding%5Fcampaign" rel="nofollow">ding_campaign module</a>. Feel free to check out the code if you need to do something similar. It's all GPL2.</p>
http://stackoverflow.com/questions/1021445/stack-overflow-module-for-drupal1Stack Overflow module for Drupal [closed]mikl2009-06-20T11:25:16Z2009-06-20T13:01:27Z
<p>I've made a nice little <a href="http://drupal.org/project/stackoverflow" rel="nofollow">Drupal module for Stack Overflow</a>. Currently it enables display of the Stack Overflow.</p>
<p>The main advantage to just embedding the flair through JavaScript or iFrames is that this module uses Drupal's APIs for theming and caching, so it'll be faster and more performant, and in addition it should be a bit easier to set up instead of using custom blocks with raw code in them.</p>
<p>In the future I'll add the ability for each user to fill in his Stack Overflow/Server Fault/SuperUser ID and have his flair(s) show up on his user profile.</p>
<p>You can see the module in action and find more details in <a href="http://mikkel.hoegh.org/blog/2009/introducing-stack-overflow-module-drupal" rel="nofollow">my blog post about it</a>.</p>
<p>Bugs, suggestions, etc. should be posted in the <a href="http://drupal.org/project/issues/stackoverflow" rel="nofollow">issue queue</a>.</p>
<p>(This is not a question, but there's <a href="http://stackoverflow.com/questions/228759/stackoverflow-windows-taskbar-notifier">precedence</a> for posting Stack Overflow <a href="http://stackoverflow.com/questions/558672/stackoverflow-favorites-wordpress-plugin-sidebar-widget">implementations</a> here under the so-tool tag).</p>
http://stackoverflow.com/questions/1013493/coalesce-function-for-php2Coalesce function for PHP?mikl2009-06-18T15:49:14Z2009-06-18T16:43:18Z
<p>Many programming languages has a coalesce function (<a href="http://www.postgresql.org/docs/8.3/interactive/functions-conditional.html#AEN14484" rel="nofollow">example</a>). PHP, sadly, does not.</p>
<p>What would be the most efficient way to implement one in PHP?</p>
http://stackoverflow.com/questions/1013493/coalesce-function-for-php/1013522#10135220Answer by mikl for Coalesce function for PHP?mikl2009-06-18T15:54:44Z2009-06-18T15:54:44Z<p>I'm currently using this, but I wonder if it couldn't be improved with some of the new features in PHP 5.</p>
<pre><code>function coalesce() {
$args = func_get_args();
foreach ($args as $arg) {
if (!empty($arg)) {
return $arg;
}
}
return $args[0];
}
</code></pre>
http://stackoverflow.com/questions/995234/how-can-this-be-written-on-a-single-line/995239#9952394Answer by mikl for How can this be written on a single line?mikl2009-06-15T09:40:44Z2009-06-15T09:40:44Z<p>It probably could be, but as per the “Readability counts.” rule (<a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">PEP 20</a>), I'd say it's a bad idea. :)</p>
<p>On the other hand you have “Flat is better than nested.” and “Sparse is better than dense.”, so I guess it's a matter of taste :)</p>
http://stackoverflow.com/questions/994729/why-does-this-code-break-out-of-loop/994775#9947750Answer by mikl for why does this code break out of loop ?mikl2009-06-15T06:49:54Z2009-06-15T08:43:31Z<p>Well, it didn't reach the break point. The problem is that <code>while()</code> does not loop at all. To do an infinite loop, do <code>while (1):</code> (since the while condition must evaluate to true. Here's a working (cleaned up) sample.</p>
<pre><code>import math
t = raw_input()
k = []
a = 0.0
for i in range(0,int(t)):
s = float(raw_input())
b = 1.0
c = 1.0
a= float(s)
if a == 0:
continue
else:
d = math.atan(1.0/b) + math.atan(1.0/c)
v = math.atan(1.0/a)
print v
print d
while True:
if v == d:
print 'bar'
break
b += 1
c += 1
d = math.atan(1.0/b) + math.atan(1.0/c)
print d
k.append(int(b)+int(c))
for i in range(0,int(t)):
print k[i]
</code></pre>
http://stackoverflow.com/questions/984708/drupal-salesforce-with-nusoap/990223#9902232Answer by mikl for Drupal-Salesforce with NuSOAPmikl2009-06-13T07:29:29Z2009-06-13T07:29:29Z<p>Check out the <a href="http://framework.zend.com/manual/en/zend.soap.client.html" rel="nofollow">Zend SOAP client</a>, I think that can work without the PHP extension as well.</p>
<p>In any case, I wouldn't touch NuSOAP with a ten foot array, it's very outdated. Latest release was in 2005.</p>
http://stackoverflow.com/questions/990157/what-is-a-good-programming-language-for-beginners/990170#99017012Answer by mikl for What is a good programming language for beginners?mikl2009-06-13T06:56:28Z2009-06-13T06:56:28Z<p><a href="http://python.org" rel="nofollow">Python</a>. There's a very good introduction called <a href="http://www.diveintopython.org/" rel="nofollow">Dive into Python</a>. Additional <a href="http://openbookproject.net/thinkCSpy/index.xhtml" rel="nofollow">How to think like a computer scientist</a> is full programming introduction course made with Python. Highly recommended.</p>
http://stackoverflow.com/questions/987740/django-mod-wsgi-and-daemon-mode-problem-bashforkcannot-allocate-memory/990100#9901000Answer by mikl for Django, mod-wsgi, and daemon mode; problem "bash:fork:cannot allocate memory"mikl2009-06-13T06:13:09Z2009-06-13T06:28:49Z<p>Well, running a server without a swap space (swap is usually not a file, but a hard disk partition on Linux) is a recipe for a disaster. Adding one would almost certainly fix your problem.</p>
<p>Basically, it's not uncommon for what ever you have running on your server to allocate all the RAM available. To have your server running as fast as possible, it's desirable to have all or as much as possible of the information your server needs to do its job available in RAM.</p>
<p>To explain the concept of virtual memory, a server with only 512 MB RAM might easily have its RAM used up, but the operating system's kernel will need to have some sort of reserve, so there will always be memory available for allocation, if for example (in your case) a new user logging in needing to start a shell like <code>bash</code>.</p>
<p>So if the server has swap available, you'll be allowed to allocate memory, even if all the physical memory is in use already. Usually, this will cause the kernel to move some of the seldom accessed information from RAM to swap, giving your new process a bit of real, physical memory.</p>
<p>But if the kernel has no virtual memory available (RAM is full and swap is full or missing), it has no other options than denying the request to allocate memory. Which will cause situations like this where you can't login.</p>
<p>To prevent this from happening, the current advise is to create a swapping space twice as large as your physical memory (1 GB in this case), although that would probably not need to exceed 4 GB in most cases.</p>
http://stackoverflow.com/questions/989629/sharing-transaction-scope-between-threads-in-python-django-postgresql/990076#9900762Answer by mikl for Sharing transaction scope between threads in python/django? (PostgreSQL)mikl2009-06-13T05:55:35Z2009-06-13T06:01:58Z<p>I'd say that's impossible. To my knowledge, each thread has its own PostgreSQL session to be able to run concurrently. And given that PostgreSQL is an <a href="http://en.wikipedia.org/wiki/Multiversion%5Fconcurrency%5Fcontrol" rel="nofollow">MVCC</a> database, one thread will not have access to the other's changes, until the transaction is committed – which it won't be in the case of a Django 1.1 <code>TestCase</code>.</p>
<p>If you need to test stuff that runs concurrently, I'm pretty sure that you need to use a <a href="http://docs.djangoproject.com/en/dev/topics/testing/#django.test.TransactionTestCase" rel="nofollow"><code>TransactionTestCase</code></a>.</p>
http://stackoverflow.com/questions/985530/best-way-to-disable-client-caching/985542#9855425Answer by mikl for Best way to disable client caching mikl2009-06-12T08:04:24Z2009-06-12T08:09:24Z<p><a href="http://drupal.org/" rel="nofollow">Drupal</a> 6 does this (which works in every browser known by me):</p>
<ul>
<li><strong>Expires</strong>: Sun, 19 Nov 1978 05:00:00 GMT</li>
<li><strong>Last-Modified</strong>: Fri, 12 Jun 2009 08:01:46 GMT (the actual modification date)</li>
<li><strong>Cache-Control</strong>: store, no-cache, must-revalidate, post-check=0, pre-check=0</li>
</ul>
<p>No pragma header in this instance. I'm not sure why your example doesn't work, it might be the negative timestamps, this works on ~250.000 Drupal sites :)</p>
http://stackoverflow.com/questions/985058/efficient-week-statistics-for-a-queryset3Efficient week statistics for a QuerySetmikl2009-06-12T04:52:05Z2009-06-12T08:02:58Z
<p>I am working on an open source Django time tracking app, <a href="http://djime.github.com/" rel="nofollow">Djime</a>, and I'm trying to come up with a more efficient way to produce statistics. So far, we've had some rather long-winded procedural code that would get all TimeSlices for a period, and collate them together in a huge nested list/dictionary mess.</p>
<p>What I'd like to do is to set up a more efficient system – an object or function that would take a QuerySet of TimeSlices and collate them by user, task, and/or day.</p>
<p>Our model looks like this (simplified):</p>
<pre><code>class TimeSlice(models.Model):
task = models.ForeignKey(Task)
user = models.ForeignKey(User)
begin = models.DateTimeField(default=datetime.datetime.now)
duration = models.PositiveIntegerField(null=True, blank=True) # Num. of seconds
note = models.TextField(null=True, blank=True)
</code></pre>
http://stackoverflow.com/questions/1756600/when-youre-the-origin-repo-in-git-how-do-you-do-a-local-pull/1756624#1756624Comment by mikl on When you're the origin repo in git, how do you do a local pull?mikl2009-11-18T16:14:13Z2009-11-18T16:14:13ZSince he is talking about the master repository, there is nothing to add a remote to.http://stackoverflow.com/questions/1669354/jquerys-html-and-uri-encoding/1669400#1669400Comment by mikl on jQUery's HTML and URI Encodingmikl2009-11-03T18:59:31Z2009-11-03T18:59:31ZDepending on the receiving webserver/application, there should not be a problem with slashes in the query-part of the URL, but if you want have it clean, you could replace the slashes with dashes or similar.
I'd also recommend using the ISO 8601 date format (2009-11-01) since that's completely unambiguous (where 11/01/2009 would mean January 11th in Denmark).http://stackoverflow.com/questions/1566075/mysql-maxjoinsize-error-need-to-optimize-queryComment by mikl on MySQL MAX_JOIN_SIZE Error! Need to optimize query.mikl2009-10-14T13:02:24Z2009-10-14T13:02:24ZYou should probably specify LEFT JOIN or another specific join type, based on your needs.http://stackoverflow.com/questions/1341358/set-size-on-backgroundimage-with-css/1341371#1341371Comment by mikl on Set size on backgroundimage with css?mikl2009-08-27T14:15:52Z2009-08-27T14:15:52ZWell, that's not possible. There might be options for doing that in future versions of CSS, but that's a long way off.http://stackoverflow.com/questions/1327978/sorting-words-not-lines-in-vim/1328106#1328106Comment by mikl on Sorting words (not lines) in VIMmikl2009-08-25T13:28:32Z2009-08-25T13:28:32ZI'd hardly say a convoluted Perl script is an improvement…http://stackoverflow.com/questions/1291140/drupal-6-programmatically-altering-user-values-how-do-you-use-profilesaveprof/1295593#1295593Comment by mikl on Drupal 6: Programmatically Altering User Values (how do you use profile_save_profile??)mikl2009-08-22T08:39:48Z2009-08-22T08:39:48ZWell, I thinks that's a bit hard to say, not knowing your specific use case. Whatever works best for you :)http://stackoverflow.com/questions/1315447/django-how-to-get-only-2-object-for-a-combination-of-fields-with-a-querysetComment by mikl on Django - How to get only 2 object for a combination of fields with a querysetmikl2009-08-22T08:32:45Z2009-08-22T08:32:45ZI think what you might be looking for is better distinct support, which is not currently available, but there's a patch for it:
<a href="http://code.djangoproject.com/ticket/6422" rel="nofollow">code.djangoproject.com/ticket/6422</a>http://stackoverflow.com/questions/1291140/drupal-6-programmatically-altering-user-values-how-do-you-use-profilesaveprof/1295593#1295593Comment by mikl on Drupal 6: Programmatically Altering User Values (how do you use profile_save_profile??)mikl2009-08-19T13:33:11Z2009-08-19T13:33:11ZYeah, profile_save_profile() overwrites all the existing values – not very elegant: <a href="http://api.drupal.org/api/function/profile_save_profile/6" rel="nofollow">api.drupal.org/api/function/…</a>
The profile module is one of the darker corners of Drupal's API, and it has been completely remade in Drupal 7 – so it'll be much easier to work with – flexibility and extensibility.http://stackoverflow.com/questions/1295520/good-resources-for-learning-pl-pgsql/1295985#1295985Comment by mikl on Good resources for learning PL/pgSQL?mikl2009-08-19T13:31:22Z2009-08-19T13:31:22ZOkay, thanks for the suggestions :)http://stackoverflow.com/questions/1295520/good-resources-for-learning-pl-pgsql/1296472#1296472Comment by mikl on Good resources for learning PL/pgSQL?mikl2009-08-19T13:26:42Z2009-08-19T13:26:42ZOkay, I think I'm going to just bite the bullet and dig through it, even though it looks a bit intimidating.http://stackoverflow.com/questions/1295520/good-resources-for-learning-pl-pgsqlComment by mikl on Good resources for learning PL/pgSQL?mikl2009-08-18T18:25:26Z2009-08-18T18:25:26ZOkay, wikified.http://stackoverflow.com/questions/1295446/html-snippet-from-python/1295519#1295519Comment by mikl on HTML snippet from Pythonmikl2009-08-18T18:02:21Z2009-08-18T18:02:21ZYeah, Python is not PHP. Embedding code in HTML is bad style and the fast road to maintenance nightmares.http://stackoverflow.com/questions/1119722/base-62-conversion-in-pythonComment by mikl on Base 62 conversion in Pythonmikl2009-07-14T09:42:56Z2009-07-14T09:42:56Z@Mike Cooper: Base 64 is not optimised for numbers, and thus not really applicable for this use case. @Miles: Yes, the baseconverter class that Simon Willison posted at <a href="http://www.djangosnippets.org/snippets/1431/" rel="nofollow">djangosnippets.org/snippets/1431</a> seems like a worthy competitor. I might do a benchmark some time to find the most efficient one :)http://stackoverflow.com/questions/1119722/base-62-conversion-in-python/1119967#1119967Comment by mikl on Base 62 conversion in Pythonmikl2009-07-13T15:11:11Z2009-07-13T15:11:11ZYeah, I looked at that earlier, but it converts strings, not numbers :)http://stackoverflow.com/questions/1119722/base-62-conversion-in-python/1119769#1119769Comment by mikl on Base 62 conversion in Pythonmikl2009-07-13T14:47:04Z2009-07-13T14:47:04ZOops, I think I'll change it to return 0 if num <= 0 :)