User Anders Rune Jensen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T09:59:51Zhttp://stackoverflow.com/feeds/user/13995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/882712/sending-html-email-in-python/1901298#19012980Answer by Anders Rune Jensen for Sending HTML email in PythonAnders Rune Jensen2009-12-14T14:42:05Z2009-12-14T14:42:05Z<p>Just a big fat warning. If you are sending non-ascii email using python < 3.0, consider using the email in django. It wraps utf-8 strings correctly, and also is much simpler to use. You have been warned :-)</p>
http://stackoverflow.com/questions/1894101/will-i-ever-use-java-again/1894517#18945170Answer by Anders Rune Jensen for Will I ever use Java again?Anders Rune Jensen2009-12-12T19:58:33Z2009-12-12T19:58:33Z<p>In 10 years, when you climbed the latter of imperative programming languages, and reached the one and true <a href="http://www.clojure.org" rel="nofollow">language</a>, then your java skills will become handy again.</p>
http://stackoverflow.com/questions/88302/macro-support-in-f5macro support in F#Anders Rune Jensen2008-09-17T22:22:28Z2009-11-25T20:15:53Z
<p>After reading Practical Common Lisp I finally understood what the big deal about macros was, and I have been looking for a language for the .NET platform that supports this. There are a few lisp dialects for .NET but from what I have been able to gather all are either very beta or abandoned. Recently my interest has been sparked by Clojure, but it's for the java platform and while on probably could use ikvm it doesn't feel some integrated. Especially when you want to do stuff like WPF.</p>
<p>Recently I have been hearing whisper about F#, I tried to look at the documentation if I could find anything about macro support, but haven't found it. So does anyone know?</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1756722/how-to-improve-clojures-error-messages2How to improve Clojures error messagesAnders Rune Jensen2009-11-18T15:19:25Z2009-11-24T23:51:08Z
<p>I've been playing a bit with Clojure and so far is fairly impressed, but one thing that I keep running into is wierd error messages from Clojure. This comes in two forms: Java errors, like null pointer exceptions and in clojure syntax errors, like missing parenthesis pair. I was wondering if anyone know of a way to get better error messages?</p>
<p>Part of it is of course from learning a new language, but improving the error messages can never hurt :)</p>
http://stackoverflow.com/questions/515114/the-best-mdx-references-on-the-net5The best MDX references on the netAnders Rune Jensen2009-02-05T09:09:47Z2009-11-23T16:01:04Z
<p>What is the best references/links,cheatsheets for the MDX language? Here are a few starters that I have collected. Please share yours :)</p>
<ul>
<li><a href="http://www.gumper.com/mdx.html" rel="nofollow">http://www.gumper.com/mdx.html</a></li>
<li><a href="http://www.sqlserveranalysisservices.com/OLAPPapers/InventoryManagement%20in%20AS2005v2.htm" rel="nofollow">http://www.sqlserveranalysisservices.com/OLAPPapers/InventoryManagement%20in%20AS2005v2.htm</a></li>
<li><a href="http://www.ssas-info.com/ssas-cheat-sheets/72-cheat-sheets/880-time-mdx-cheat-sheets" rel="nofollow">http://www.ssas-info.com/ssas-cheat-sheets/72-cheat-sheets/880-time-mdx-cheat-sheets</a> </li>
</ul>
http://stackoverflow.com/questions/237307/prototypes-versus-classes8prototypes versus classesAnders Rune Jensen2008-10-26T01:08:54Z2009-11-20T03:52:43Z
<p>Steve Yegge recently posted an <a href="http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html" rel="nofollow">interesting blog post</a> on what he calls the universal design pattern. In there he details using prototypes as a modelling tool, instead of classes. I like the way this introduces less coupling compared to inheritance. But that is something one can get with classes as well, by implementing classes in terms of other classes, instead of inheritance. Does anyone else have success stories of using prototypes, and can maybe help explain where using prototypes is advantageous compared to classes. I guess it comes down to static modelling versus dynamic modelling, but more examples would be very welcome.</p>
http://stackoverflow.com/questions/1257955/multilingual-windows-application-using-c-net/1316086#13160861Answer by Anders Rune Jensen for Multilingual windows application using C#.NETAnders Rune Jensen2009-08-22T14:29:28Z2009-11-17T06:54:02Z<p>We wrapped gettext and used that. The positives being that one can just add a new translation and everything works. One can change language on the fly. And that it easy for translators because one can just send them a simple text file that they can edit.</p>
<p>We didn't release or put it out into a project yet, but we might do that if people find it interesting.</p>
http://stackoverflow.com/questions/193536/how-can-i-simulate-macros-in-javascript4How can I simulate macros in JavaScript?Anders Rune Jensen2008-10-11T01:15:39Z2009-10-26T10:53:34Z
<p>I know that JavaScript doesn't support macros (Lisp-style ones) but I was wondering if anyone had a solution to maybe simulate macros? I Googled it, and one of the solutions suggested using eval(), but as he said, would be quite costly. </p>
<p>They don't really have to be very fancy. I just want to do simple stuff with them. And it shouldn't make debugging significantly harder :)</p>
http://stackoverflow.com/questions/1599538/var1-var2-true-advantages-disadvantages/1599561#15995610Answer by Anders Rune Jensen for var1 = var2 = true; Advantages/Disadvantages?Anders Rune Jensen2009-10-21T08:58:42Z2009-10-21T08:58:42Z<p>It just fits stuff into one line instead of multiple lines. And also makes it clear that you actually intended var1 and var2 to have the same value.</p>
<pre><code>var1 = true;
var2 = true;
</code></pre>
<p>Could look like a c/p bug ;-)</p>
http://stackoverflow.com/questions/1492507/parse-mp3-file-in-net-v4-0/1492539#14925390Answer by Anders Rune Jensen for Parse MP3 file in .NET v4.0Anders Rune Jensen2009-09-29T13:25:19Z2009-09-29T13:25:19Z<p>You might have a look at the <a href="http://developer.novell.com/wiki/index.php/TagLib%5FSharp" rel="nofollow">taglib library</a> for .NET. It can do both reading and writing of id3 tags among other things.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1432231#14322314Answer by Anders Rune Jensen for What's your most controversial programming opinion?Anders Rune Jensen2009-09-16T10:45:47Z2009-09-16T10:45:47Z<p><strong>Garbage collection is overrated</strong></p>
<p>Many people consider the introduction of garbage collection in Java one of the biggest improvements compared to C++. I consider the introduction to be very minor at best, well written C++ code does all the memory management at the proper places (with techniques like RAII), so there is no need for a garbage collector. </p>
http://stackoverflow.com/questions/1407162/what-is-yield-return-in-c/1407213#14072137Answer by Anders Rune Jensen for What is yield return in C#?Anders Rune Jensen2009-09-10T19:23:13Z2009-09-10T19:23:13Z<p>Yield is not only for iteration or enumeration. It's also a great way to encapsulate state.</p>
http://stackoverflow.com/questions/1407185/which-university-has-the-most-respected-computer-science-degree/1407193#14071931Answer by Anders Rune Jensen for Which University has the most respected Computer Science degree?Anders Rune Jensen2009-09-10T19:20:06Z2009-09-10T19:20:06Z<p>I'd go for MIT if you are talking about the US.</p>
http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development/1316091#13160913Answer by Anders Rune Jensen for How to get started in operating system developmentAnders Rune Jensen2009-08-22T14:31:59Z2009-08-22T14:31:59Z<p>I found Robert Love's Linux Kernel Development quite interesting. It tells you about how the different subsystems in the Linux kernel works in a very down-to-earth way. Since the source is available Linux is a prime candidate for something to hack on.</p>
http://stackoverflow.com/questions/886221/does-django-scale/1315525#13155252Answer by Anders Rune Jensen for Does Django Scale?Anders Rune Jensen2009-08-22T08:45:45Z2009-08-22T08:45:45Z<p>If you have a site with some static content, then putting a Varnish server in front will dramatically increase your performance. Even a single box can then easily spit out 100mbit of traffic.</p>
<p>Note that with dynamic content, using something like Varnish becomes a lot more tricky.</p>
http://stackoverflow.com/questions/1221110/windows-like-services-development-in-linux-using-mono/1221193#12211931Answer by Anders Rune Jensen for Windows like services development in LINUX using MONO?Anders Rune Jensen2009-08-03T08:22:44Z2009-08-03T08:22:44Z<p>As for LINUX (Unix api), you can use the <a href="http://www.go-mono.org/docs/index.aspx?tlink=0@N:Mono.Unix" rel="nofollow">Mono.UNIX library</a> that is included with mono. Although as a general rule you should try to stick with portable solutions instead of stuff like Mono.UNix or p/invoke whenever possible.</p>
http://stackoverflow.com/questions/31559/any-thoughts-on-devexpress-xpo-orm-package/237288#2372883Answer by Anders Rune Jensen for Any thoughts on DevExpress XPO ORM Package?Anders Rune Jensen2008-10-26T00:50:45Z2009-07-23T09:59:35Z<p>I have found XPO very frustrating to work with. The main idea of an ORM is to abstract away the underlying data structure. But very quickly you'll notice that they have the default string length hardcoded to 60 chars, so you end up adding these ugly string.unlimited things around every string. So much for abstraction...</p>
<p>When modelling more complex object you have to use a lot of syntax that really has no place in your object model, like XPCollection. I wanted to store a class which had a dictionary of strings on the class, but sadly XPO was not able to automatically store this into the database.</p>
<p>So while it works ok for simple types, it very quickly breaks down when you want to store more complex things. That combined with their mediocre support really leaves a LOT to be desired.</p>
http://stackoverflow.com/questions/1164410/what-is-a-good-way-to-think-about-c-references/1164428#11644280Answer by Anders Rune Jensen for What is a good way to think about C++ references?Anders Rune Jensen2009-07-22T10:42:43Z2009-07-22T10:42:43Z<p>I think of it as a pointer container.</p>
http://stackoverflow.com/questions/424952/are-single-threaded-applications-a-dead-technology/1164299#11642990Answer by Anders Rune Jensen for Are single-threaded applications a dead technology?Anders Rune Jensen2009-07-22T10:17:38Z2009-07-22T10:17:38Z<p>Maybe the question should be reformulated to: "is running a program on one only core a dead technology". That would make it a lot more general. If you look at the recent added web workers added to firefox 3.5 and other major browsers, then they do support multiple cores, but using processes and message passing. A much saner approach than threading. In the end it all depends on the problem at hand. Using multiple cores really only makes a difference if the problem at hand is CPU bound. </p>
<p>I would also like to add that your application might not be the only running process on the machine (<em>hint</em>).</p>
http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/1164201#11642011Answer by Anders Rune Jensen for What are some things that you do to make sure a project is ready to be released?Anders Rune Jensen2009-07-22T09:52:07Z2009-07-22T10:00:40Z<p>You are asking for final steps. In case your development team has been eating their own dog food the final steps should just be releasing what you have. Though there are some good pointers as to when this should be done:</p>
<ul>
<li>Have all the stake holders (developers doing the code) say the code is good</li>
<li>Make sure that no major feature has been added recently (watch development rate as phjr wrote)</li>
<li>Let the users pound it. The users should already have been using the code, now is the time for them to take responsibility</li>
<li>Make sure that everyone is committed to doing the release</li>
<li>Make sure that the final steps phase is short (it should be if you have been eating your own dog food)</li>
</ul>
http://stackoverflow.com/questions/789996/release-engineering-what-books/1164161#11641611Answer by Anders Rune Jensen for Release engineering: what books?Anders Rune Jensen2009-07-22T09:42:33Z2009-07-22T09:42:33Z<p>This <a href="http://www.youtube.com/watch?v=i7pkyDUX5uM" rel="nofollow">talk</a> given by Theo de Raadt (OpenBSD maintainer) is an excellent introduction to release engineering. It's only 30 minutes long, but contains lots of golden nuggets of wisdom extracted over the last 10+ years of doing 6 month releases in a fairly big Open Source project.</p>
http://stackoverflow.com/questions/1063438/sqlite3-and-multiple-processes/1063817#10638170Answer by Anders Rune Jensen for sqlite3 and multiple processes...Anders Rune Jensen2009-06-30T13:54:41Z2009-06-30T13:54:41Z<p>The SQLite FAQ about exactly <a href="http://sqlite.org/faq.html#q5" rel="nofollow">this</a></p>
http://stackoverflow.com/questions/1062140/c-compilation-time-for-large-projects-compared-to-c/1062558#10625581Answer by Anders Rune Jensen for C# compilation time for large projects (compared to C++)Anders Rune Jensen2009-06-30T08:56:58Z2009-06-30T11:42:36Z<p>It is also my observation that C# is significantly faster to compile than C++. One of the main reasons is of course templates that don't need to be in headers in C#, as there are no headers. But heavy use of templates (mostly any modern C++ library like Boost) is killing the compile time in C++.</p>
http://stackoverflow.com/questions/1048003/hi-i-need-to-write-insert-query-in-sqlite3-in-iphone/1048458#10484580Answer by Anders Rune Jensen for Hi I need to write Insert Query in SQLite3 in iPhoneAnders Rune Jensen2009-06-26T10:45:56Z2009-06-26T10:45:56Z<p>SQlite doesn't have stored procedudes that you need to do logic like this. But you can always extend sqlite with simple C-functions. Or you could simply code this logic in whatever language you are writing your program in. I don't think the performance hit is that great. Did your profiling show that this is a critical path that needs to be optimized?</p>
http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/1047948#10479481Answer by Anders Rune Jensen for What's the strangest corner case you've seen in C# or .NET?Anders Rune Jensen2009-06-26T08:18:15Z2009-06-26T08:18:15Z<p>The scoping in c# is truly bizarre at times. Lets me give you one example:</p>
<pre><code>if (true)
{
OleDbCommand command = SQLServer.CreateCommand();
}
OleDbCommand command = SQLServer.CreateCommand();
</code></pre>
<p>This fails to compile, because command is redeclared? There are some interested guesswork as to why it works that way in this <a href="http://stackoverflow.com/questions/404899/scope-of-variables-in-a-delegate">thread on stackoverflow</a> and in <a href="http://people.iola.dk/arj/2009/01/02/scoping-rules-in-c/" rel="nofollow">my blog</a>.</p>
http://stackoverflow.com/questions/144277/is-the-mono-net-project-included-in-latest-release-of-most-popular-linux-distros/949256#9492560Answer by Anders Rune Jensen for Is the mono .NET project included in latest release of most popular linux distros?Anders Rune Jensen2009-06-04T08:29:20Z2009-06-04T08:29:20Z<p>I think the biggest reason for not using it would be political. That being said, I think mono is an excellent enviroment to develop in when writing programs for Linux and I would recommend it to anyone writing a new application.</p>
http://stackoverflow.com/questions/947285/deselection-on-a-wpf-listbox-with-extended-selection-mode2Deselection on a WPF listbox with extended selection modeAnders Rune Jensen2009-06-03T21:13:01Z2009-06-03T21:39:43Z
<p>I have a simple listbox with extended selection mode. Selection works almost perfectly fine like it works in explorer. But deselection doesn't really work all that well. What I want is that when I click on something outside the range of elements in the listbox I want all elements to be deselected. I doesn't seem to behave that way by default and I did a dirty hack involving selectionchanged and mouseup to hack it up. But there has to be a better way. Any ideas?</p>
http://stackoverflow.com/questions/828185/how-to-adjust-padding-in-xaml-label/947339#9473390Answer by Anders Rune Jensen for How to adjust padding in xaml labelAnders Rune Jensen2009-06-03T21:23:56Z2009-06-03T21:23:56Z<p>Have you tried margin?</p>
http://stackoverflow.com/questions/193547/what-is-the-best-way-to-do-loops-in-javascript16What is the best way to do loops in JavaScriptAnders Rune Jensen2008-10-11T01:21:18Z2009-02-12T22:07:25Z
<p>I have stumbled into several methods of looping in JavaScript, what I like the most is:</p>
<pre><code>for(var i = 0; i < a.length; i++){
var element = a[i];
}
</code></pre>
<p>But as tested here (<a href="http://www.robertnyman.com/2008/04/11/javascript-loop-performance/" rel="nofollow">http://www.robertnyman.com/2008/04/11/javascript-loop-performance/</a>), it should probably be written so that the length is only calculated once. </p>
<p>In jQuery there is a .each that you can stick a function. I like this a little better, because I don't have to type the array twice, like in the above solution. </p>
<p>If JavaScript supported macros it would be a piece of cake to roll your own, but sadly it does not. </p>
<p>So what do you guys use?</p>
http://stackoverflow.com/questions/369198/multiple-dimension-restrictions-in-a-mdx-where-clause0multiple dimension restrictions in a MDX where clauseAnders Rune Jensen2008-12-15T17:59:23Z2009-02-09T22:52:23Z
<p>I have the following problem. If I query values with a keyfigure which is a function I can't specify multiple values of the same dimension restriction, but if it is not a function it works.</p>
<p>So this works:</p>
<pre><code>SELECT {[Measures].[Netto]} on columns FROM TDC where
({NonEmpty([Time].[Month].[Month].&[2008-03-01T00:00:00]),
NonEmpty([Time].[Month].[Month].&[2008-04-01T00:00:00])})
</code></pre>
<p>But this doesn't:</p>
<pre><code>SELECT {[Measures].[CalculatedFunction]} on columns FROM TDC where
({NonEmpty([Time].[Month].[Month].&[2008-03-01T00:00:00]),
NonEmpty([Time].[Month].[Month].&[2008-04-01T00:00:00])})
</code></pre>
<p>And this also works:</p>
<pre><code>SELECT {[Measures].[CalculatedFunction]} on columns FROM TDC where
({NonEmpty([Time].[Month].[Month].&[2008-03-01T00:00:00])})
</code></pre>
<p>I guess the solution is something like adding the where clause to the header but I really like this solution because it's so simple.</p>
<p>The Calucated function is:</p>
<pre><code>CREATE MEMBER CURRENTCUBE.[MEASURES].Ultimo
AS (iif ((not [Time].[Year - Month - Date].currentmember is [Time].[Year - Month - Date].defaultmember),
IIF(NOT ([Measures].[LagerStk] = 0),
Sum([Time].[Year - Month - Date].[Date].members(0):
ClosingPeriod([Time].[Year - Month - Date].[Date]),
[Measures].[LagerStk]), NULL)
,
IIF(NOT ([Measures].[LagerStk] = 0),
Sum([Time].[Year - Week - Date].[Date].members(0):
ClosingPeriod([Time].[Year - Week - Date].[Date]),
[Measures].[LagerStk]), NULL))),
VISIBLE = 1;
</code></pre>
<p>The code is inspired from this and modified for two hierarchies in the time dimension: <a href="http://www.sqlserveranalysisservices.com/OLAPPapers/InventoryManagement%20in%20AS2005v2.htm" rel="nofollow">http://www.sqlserveranalysisservices.com/OLAPPapers/InventoryManagement%20in%20AS2005v2.htm</a></p>
<p>This is on SQL server 2005 Enterprise edition.</p>
http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/1047948#1047948Comment by Anders Rune Jensen on What's the strangest corner case you've seen in C# or .NET?Anders Rune Jensen2009-11-25T20:49:36Z2009-11-25T20:49:36ZThanks. That sheds quite a lot of light on it. But really his examples are far fetched to me. Example 1 would simply give a warning in C++. I don't really see they problem. It's also sloppy programming practice to write such big function so I don't really see the point in bending over the language just to fit people who can't write proper code ;-)http://stackoverflow.com/questions/1756722/how-to-improve-clojures-error-messages/1757066#1757066Comment by Anders Rune Jensen on How to improve Clojures error messagesAnders Rune Jensen2009-11-18T19:51:26Z2009-11-18T19:51:26ZYeah maybe simply reporting bugs for some cases would be a good start :-)http://stackoverflow.com/questions/1756722/how-to-improve-clojures-error-messagesComment by Anders Rune Jensen on How to improve Clojures error messagesAnders Rune Jensen2009-11-18T19:50:35Z2009-11-18T19:50:35ZI use Emacs of course but the problem is when you forgot a pair of paranthesis. Like a for [BLA] do <MISSING () pair.http://stackoverflow.com/questions/405116/why-is-the-scope-of-if-and-delegates-this-way-in-c/405197#405197Comment by Anders Rune Jensen on Why is the scope of if and delegates this way in c#Anders Rune Jensen2009-11-09T00:04:30Z2009-11-09T00:04:30ZYou are not overwriting. The declaration in the outer scope comes <i>after</i> the inner scope. http://stackoverflow.com/questions/193536/how-can-i-simulate-macros-in-javascript/1624176#1624176Comment by Anders Rune Jensen on How can I simulate macros in JavaScript?Anders Rune Jensen2009-10-26T22:46:23Z2009-10-26T22:46:23ZNot a bad idea, but sadly the solution adds a eval and 2x function definitions too much. +1 for trying though.http://stackoverflow.com/questions/1599538/var1-var2-true-advantages-disadvantages/1599557#1599557Comment by Anders Rune Jensen on var1 = var2 = true; Advantages/Disadvantages?Anders Rune Jensen2009-10-21T09:25:05Z2009-10-21T09:25:05ZJust do a var var1, var2 = true;http://stackoverflow.com/questions/1599538/var1-var2-true-advantages-disadvantages/1599555#1599555Comment by Anders Rune Jensen on var1 = var2 = true; Advantages/Disadvantages?Anders Rune Jensen2009-10-21T09:18:40Z2009-10-21T09:18:40ZThere are costs. Among others 1 line of screen precious screen space.http://stackoverflow.com/questions/1599538/var1-var2-true-advantages-disadvantages/1599596#1599596Comment by Anders Rune Jensen on var1 = var2 = true; Advantages/Disadvantages?Anders Rune Jensen2009-10-21T09:16:07Z2009-10-21T09:16:07ZWhy not var instead of bool then :-)http://stackoverflow.com/questions/170557/what-do-you-think-of-the-direction-c-is-heading-for-compared-to-java/170569#170569Comment by Anders Rune Jensen on What do you think of the direction C# is heading for compared to Java?Anders Rune Jensen2009-10-15T18:04:30Z2009-10-15T18:04:30Z"Mono will not always lag behind MS developmental efforts" - this is blatantly false. While they have been/is lacking behind in some areas they are in front in many others. Just look at the way you can do iPhone development with Mono in C#. Try doing that with .NET. http://stackoverflow.com/questions/170557/what-do-you-think-of-the-direction-c-is-heading-for-compared-to-java/171580#171580Comment by Anders Rune Jensen on What do you think of the direction C# is heading for compared to Java?Anders Rune Jensen2009-10-15T18:01:26Z2009-10-15T18:01:26ZThe beauty of a shared infrastructure like the jvm or .net is that anyone can come up with NewJava. In my view NewJava is Clojure, it even plays well with Java, but this is getting a bit off-topic :)http://stackoverflow.com/questions/1360729/why-is-lockless-concurrency-such-a-big-deal-in-clojure/1363908#1363908Comment by Anders Rune Jensen on Why is lockless concurrency such a big deal (in Clojure)?Anders Rune Jensen2009-10-01T10:19:25Z2009-10-01T10:19:25ZYep! STM = Software Transactional Memory. That's a good work to look up if you want to know more about how this works.http://stackoverflow.com/questions/1492507/parse-mp3-file-in-net-v4-0Comment by Anders Rune Jensen on Parse MP3 file in .NET v4.0Anders Rune Jensen2009-09-30T12:42:28Z2009-09-30T12:42:28ZDid any of the proposed solutions work?http://stackoverflow.com/questions/1407162/what-is-yield-return-in-c/1407213#1407213Comment by Anders Rune Jensen on What is yield return in C#?Anders Rune Jensen2009-09-10T20:06:07Z2009-09-10T20:06:07Zthe idea is to think of yielding as creating a closure which encapsulates the state of all the variables on the stack. That might simply be something like int i = 0; yield return i++;, but could be much more advanced. I'd recommend to look at functional languages, especially lisp for good examples of this technique.http://stackoverflow.com/questions/193536/how-can-i-simulate-macros-in-javascript/1390726#1390726Comment by Anders Rune Jensen on How can I simulate macros in JavaScript?Anders Rune Jensen2009-09-09T07:46:54Z2009-09-09T07:46:54Zthis is about programming macros, not user macros to make firefox do repetitive tasks.http://stackoverflow.com/questions/1315447/django-how-to-get-only-2-object-for-a-combination-of-fields-with-a-queryset/1315476#1315476Comment by Anders Rune Jensen on Django - How to get only 2 object for a combination of fields with a querysetAnders Rune Jensen2009-08-22T08:18:59Z2009-08-22T08:18:59ZAdd a check for length to this or it will blow up if it doesn't match any objects.