User Martin v. L&#246;wis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:17:16Z http://stackoverflow.com/feeds/user/33006 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795343/joomla-conditional-menu-item 0 Joomla conditional menu item Martin v. Löwis 2009-11-25T07:58:07Z 2009-11-25T11:10:49Z <p>I'd like to create a menu item in Joomla that points to one article when the user is logged out, and a different article when the user is logged in. I tried creating two menu items, and make them conditional by setting the access level. However, with that strategy, I can only make the logged-in item appear after login; I found no way to make the other menu item go away after login.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1656639/killer-facility-or-scenario-that-would-make-another-jvm-a-better-choice-than-the/1656647#1656647 1 Answer by Martin v. Löwis for Killer facility or scenario that would make another JVM a better choice than the Sun JVM? Martin v. Löwis 2009-11-01T08:10:23Z 2009-11-01T08:10:23Z <p>Not strictly a JVM, but still a Java implementation: <a href="http://gcc.gnu.org/java/" rel="nofollow">gcj</a>. It has the advantage of supporting many processors, so if you target one of the embedded processors, gcj may be your only choice. Plus, since it is a true compiler (not just a JIT), you save the overhead of JIT compilation (both in memory and cycles) on the embedded target.</p> http://stackoverflow.com/questions/1633496/rename-a-bunch-of-files-in-debian/1633524#1633524 1 Answer by Martin v. Löwis for Rename a bunch of files in debian Martin v. Löwis 2009-10-27T20:42:11Z 2009-10-27T20:42:11Z <p>You need to consider multiplicities:</p> <pre><code>rename 's/(\d+)\:(\d+)\:(\d+)\:(\d+)\:(\d+)\:(\d+)-(.*)-(.?).wav/$1$2$3.$4$5$6.$7.$8.wav/' ./* </code></pre> http://stackoverflow.com/questions/1625629/does-any-version-control-system-have-a-persistent-local-only-change-feature/1625653#1625653 0 Answer by Martin v. Löwis for Does any version control system have a "persistent local only change" feature? Martin v. Löwis 2009-10-26T16:07:16Z 2009-10-26T16:07:16Z <p>This is doable if you can combine multiple repositories into one working tree. The most simple solution would be symlinks.</p> <p>The problem (which makes it hard) is that VCSs want to preserve the notion of change sets. So if you commit such a file together with regular versioned files - should the changes belong to the changeset or not? Having the same changeset mean different things on different machines is clearly confusing.</p> <p>With multiple repositories, you can certainly have commits that go in one repository or the other. How much local setup this requires depends on the VCS system. For example, for svn:externals, you would need to use the same <code>file:</code> repository on each machine, but they could point to different sets of files. With symlinks, you could organize it in any form you please (assuming the symlink itself is not versioned).</p> http://stackoverflow.com/questions/1623687/os-api-allocates-members-in-struct-free-just-the-struct-or-every-member-first/1623739#1623739 1 Answer by Martin v. Löwis for OS API allocates members in struct. Free just the struct or every member first? Martin v. Löwis 2009-10-26T08:54:37Z 2009-10-26T08:54:37Z <p>IIUC, you need to overallocate the buffer beyond the size of the structure, to accommodate for any output strings as well. EnumPrinters will tell you if the memory block was too small. As you can't know upfront how much memory you will need, you typically call it twice: once to learn the amount of memory needed, and the second time with an appropriately-sized buffer. You then deallocate the buffer with the same API that you used for allocation (e.g. malloc/free).</p> http://stackoverflow.com/questions/1623607/escaping-and-in-xml-when-using-xml-dom-minidom/1623638#1623638 2 Answer by Martin v. Löwis for Escaping '<' and '>' in xml when using xml.dom.minidom Martin v. Löwis 2009-10-26T08:21:57Z 2009-10-26T08:21:57Z <p>If you use <code>"&lt;"</code> <strong>as text</strong> in XML, you need to escape it, else it is considered markup. So xml.dom is right in escaping it, since you've asked for a text node.</p> <p>Assuming you really want to insert a piece of XML, I recommend to use <code>createElement("hello")</code>. If you have a fragment of XML that you don't know the structure of, you should first parse it, and then move the nodes of that parse result into the other tree.</p> <p>If you want to hack, you can inherit from xml.dom.minidom.Text, and overwrite the writexml method. See the source of minidom for details.</p> http://stackoverflow.com/questions/1623575/operator-t-r-in-nested-templates/1623614#1623614 6 Answer by Martin v. Löwis for operator= (T *r) in nested templates Martin v. Löwis 2009-10-26T08:15:17Z 2009-10-26T08:15:17Z <p>The base operator= gets hidden by implicit assignment operators, so that it doesn't take part in the overloading anymore. You need to write <code>_ref_vector</code> as</p> <pre><code>template &lt;typename T&gt; class _ref_vector : public _reference&lt;vector&lt;T&gt; &gt; { using _reference&lt;vector&lt;T&gt; &gt;::operator=; }; </code></pre> <p>As there is no compiler-added version of simplySetIt, lookup will find it in the base class.</p> http://stackoverflow.com/questions/1623447/calculate-time-taken-by-each-cpp-file-to-compile-in-vs2005/1623509#1623509 0 Answer by Martin v. Löwis for Calculate time taken by each cpp file to compile in VS2005? Martin v. Löwis 2009-10-26T07:38:19Z 2009-10-26T07:38:19Z <p>I would replace cl.exe with a wrapper binary that takes the individual times. You'll have to write your own wrapper binary, but may consider using <a href="https://sourceforge.net/projects/vsextcomp/" rel="nofollow">vsextcomp</a> as a starting point.</p> http://stackoverflow.com/questions/1623449/pylons-importing-psycopg2-error/1623501#1623501 1 Answer by Martin v. Löwis for Pylons importing Psycopg2 error Martin v. Löwis 2009-10-26T07:34:42Z 2009-10-26T07:34:42Z <p>Could it be that the postgres installation was removed/updated? The symbol is supposed to come from libpq.</p> http://stackoverflow.com/questions/1622092/problem-with-eof-in-c/1622108#1622108 8 Answer by Martin v. Löwis for Problem with EOF in C Martin v. Löwis 2009-10-25T21:20:25Z 2009-10-25T21:20:25Z <p>After you received an EOF from the terminal, <strong>you will not receive any additional data</strong>. There is no way of un-EOF-ing the input - the end of the file is, well, the end.</p> <p>So you should define that each variable is input on a separate line, and have users press enter instead of EOF. You still need to check whether you have received eof, because that means that the user actually typed EOF, and you won't see anything else - in this case, you need to break out of the loop and print an error message.</p> http://stackoverflow.com/questions/1622077/why-use-integers-smaller-than-32bit/1622094#1622094 3 Answer by Martin v. Löwis for Why use integers smaller than 32bit ? Martin v. Löwis 2009-10-25T21:16:45Z 2009-10-25T21:16:45Z <p>If it is a plain variable, nothing is gained by using a shorter width, and some performance may get lost. The compiler will automatically widen storage to a full processor word, so even if you only declare 16 bits, it likely takes 32 bits on the stack. In addition, the compiler may need to perform certain truncation operations in some cases (e.g. when the field is part of a struct); these can cause a slight overhead.</p> <p>It really only matters for structs and arrays, i.e. if you have many values. For a struct, you may save some memory, at the expense of the overhead I mention above. Plus, you may be forced to use a smaller size if the struct needs to follow some external layout. For an array, memory savings can be relevant if the array is large.</p> http://stackoverflow.com/questions/1622044/unfixable-circular-dependency/1622074#1622074 5 Answer by Martin v. Löwis for Unfixable circular dependency Martin v. Löwis 2009-10-25T21:07:35Z 2009-10-25T21:07:35Z <p>My recommendation: move EEActions into the base class - it <em>is</em> part of the interface, after all:</p> <pre><code>class IKeyEvent { public: enum EEActions { A_FEW_ACTIONS }; virtual void OnKey(EEActions action, char multiplier) = 0; }; class EventDispatcher : public IKeyEvent { private: void OnKey(EventDispatcher::EEActions action, char multiplier); }; </code></pre> <p>If you then also make the inheritance from IKeyEvent public, you can continue to refer to the enum as <code>EventDispatcher::EEActions</code> (despite the enum being defined in the base type).</p> http://stackoverflow.com/questions/1621593/what-widespread-languages-are-llk/1621632#1621632 6 Answer by Martin v. Löwis for What widespread languages are LL(k)? Martin v. Löwis 2009-10-25T18:24:51Z 2009-10-25T18:24:51Z <p>It depends on the definition of "language". If you ask</p> <blockquote> <p>What programming language is correctly parsable with an LL(k) parser?</p> </blockquote> <p>then none is, not even pascal or xml, since they are all context-sensitive. A context-free grammar cannot detect errors such as identifiers that are used without being defined, or match the opening and closing tag in XML. If you ask</p> <blockquote> <p>What programming language can be conveniently parsed with an LL(k) parser, assuming that further analysis of well-formedness must be added on top of parsing?</p> </blockquote> <p>then <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> is proof that <a href="http://www.antlr.org/grammar/list" rel="nofollow">nearly every programming language</a> can be processed with a (version of an) LL(k) parser.</p> http://stackoverflow.com/questions/1620100/how-to-implement-conditional-htmlspecialchars/1620107#1620107 0 Answer by Martin v. Löwis for how to implement conditional htmlspecialchars? Martin v. Löwis 2009-10-25T05:42:37Z 2009-10-25T05:42:37Z <p>I would make two scripts: jquery.autocomplete.js, and jquery.autocomplete.pre.js. In the latter, don't call htmlspecialchars.</p> http://stackoverflow.com/questions/1620087/asymptotic-notation-does-n-log-n-log-n-simplify/1620101#1620101 5 Answer by Martin v. Löwis for Asymptotic Notation - does n (log n) (log n) simplify? Martin v. Löwis 2009-10-25T05:40:09Z 2009-10-25T05:40:09Z <p>In general, you can't multiply complexities like this: for heap sort, N indicates the number of items in the heap, whereas for the big integers, N probably indicates the upper bound of possible values. In general, these don't have to be related, so that it's rather N log N log M (where M is the range that the items may take).</p> <p>In a specific application, most likely, the large integers follow some specific distribution. For example, it may be known that they are all below 10^20. If so, the comparison operations take constant time (determined by an upper bound of 10^20). Then, log M is also constant, and the entire complexity is in O(N log N).</p> http://stackoverflow.com/questions/1618829/what-should-happen-when-a-generator-function-is-assigned/1618840#1618840 2 Answer by Martin v. Löwis for What should happen when a generator function is assigned? Martin v. Löwis 2009-10-24T19:28:24Z 2009-10-24T19:37:41Z <p>If you have reference semantics in your language, and assignment is usually reference assignment, then you want option 1.</p> <p>This is what happens in Python, where generates <em>are</em> objects, and assignment <em>is</em> reference assignment (even though you invoke .next() to retrieve the next value, rather than "calling" the generator).</p> <p>Here is a brief demonstration how this behaves in Python:</p> <pre><code>&gt;&gt;&gt; def gen(): ... for i in range(42): ... yield i ... &gt;&gt;&gt; f = gen().next &gt;&gt;&gt; a = f() &gt;&gt;&gt; b = f() &gt;&gt;&gt; g = f &gt;&gt;&gt; c = g() &gt;&gt;&gt; d = f() &gt;&gt;&gt; a, b, c, d (0, 1, 2, 3) </code></pre> http://stackoverflow.com/questions/1618811/do-all-standard-c-features-work-in-c-cli/1618819#1618819 5 Answer by Martin v. Löwis for Do all Standard C++ features work in C++/CLI? Martin v. Löwis 2009-10-24T19:19:24Z 2009-10-24T19:19:24Z <p>If you actually change the class to be a managed (gc) class, then no, it will sometimes break. In particular, the semantics of the delete operator is changed, as the objects are now managed by the garbage collector; deleting an object might not release any memory.</p> http://stackoverflow.com/questions/1618798/why-is-there-a-different-string-class-in-every-c-platform-out-there/1618815#1618815 9 Answer by Martin v. Löwis for Why is there a different string class in every C++ platform out there? Martin v. Löwis 2009-10-24T19:17:05Z 2009-10-24T19:17:05Z <p>The reason for multiple string classes is that the C++ standard was finalized fairly late (in 1998); it then took some time until all systems actually provided a correct C++ library. By that time, all these competing string classes where already written.</p> <p>In addition, in some cases, people want to inherit from a single base class, which std::string wouldn't do.</p> http://stackoverflow.com/questions/1618762/friendlier-error-messages-on-import-for-missing-modules/1618786#1618786 2 Answer by Martin v. Löwis for Friendlier error messages on import for missing modules Martin v. Löwis 2009-10-24T19:08:24Z 2009-10-24T19:08:24Z <p>I would put additional modules into the package which, when imported, print out the more helpful message, and then raise a regular ImportError. When the true module is installed, your modules will get shadowed (make sure you add the directory where they live at the <em>end</em> of sys.path).</p> http://stackoverflow.com/questions/1618773/mapping-complex-python-objects-to-django-models/1618780#1618780 1 Answer by Martin v. Löwis for Mapping complex python objects to django models Martin v. Löwis 2009-10-24T19:04:56Z 2009-10-24T19:04:56Z <p>It somewhat depends on what specific behavior you want to encode. In most cases, you should try to put per-object behavior into the model class. It's a regular Python class, after all, so you can give it any methods you desire. You do need to account for the persistant nature, of course, e.g. by avoiding additional member data beyond those specified in the schema.</p> http://stackoverflow.com/questions/1618240/how-to-support-both-ipv4-and-ipv6-connections/1618259#1618259 8 Answer by Martin v. Löwis for How to support both IPv4 and IPv6 connections Martin v. Löwis 2009-10-24T15:24:12Z 2009-10-24T15:24:12Z <p>The best approach is to create an IPv6 server socket that can also accept IPv4 connections. To do so, create a regular IPv6 socket, turn <em>off</em> the socket option <code>IPV6_V6ONLY</code>, bind it to the "any" address, and start receiving. IPv4 addresses will be presented as IPv6 addresses, in the <a href="http://en.wikipedia.org/wiki/IPv6#IPv4%5Fmapped%5Faddresses" rel="nofollow">IPv4-mapped</a> format.</p> <p>The major difference across systems is whether <code>IPV6_V6ONLY</code> is a) available, and b) turned on or off by default. It is turned off by default on Linux (i.e. allowing dual-stack sockets without setsockopt), and is turned on on most other systems. </p> <p>In addition, the IPv6 stack on Windows XP doesn't support that option. In these cases, you will need to create two separate server sockets, and place them into select or into multiple threads.</p> http://stackoverflow.com/questions/1617706/how-to-crowd-source-my-web-crawling/1617720#1617720 0 Answer by Martin v. Löwis for how to crowd source my web crawling Martin v. Löwis 2009-10-24T11:22:38Z 2009-10-24T11:22:38Z <p>If it's a specific web side, I recommend to talk to the website operators rather than trying to crawl anonymously.</p> http://stackoverflow.com/questions/1617666/using-python-how-do-i-get-an-array-of-file-info-objects-based-on-a-search-of-a/1617710#1617710 2 Answer by Martin v. Löwis for Using Python, how do I get an array of file info objects, based on a search of a file system? Martin v. Löwis 2009-10-24T11:18:29Z 2009-10-24T11:18:29Z <pre><code>import os, time allfiles = [] now = time.time() # walk will return triples (current dir, list of subdirs, list of regular files) # file names are relative to dir at first for dir, subdirs, files in os.walk("/storage/disk-1/Media/Video/TV"): for f in files: if not f.endswith(".avi"): continue # compute full path name f = os.path.join(dir, f) st = os.stat(f) if st.st_mtime &lt; now - 3600*24*7: # too old continue allfiles.append((f, st)) </code></pre> <p>This will return all files that find also returned, as a list of pairs (filename, stat result).</p> http://stackoverflow.com/questions/1611897/compile-error-unqualified-id-before/1611919#1611919 1 Answer by Martin v. Löwis for Compile error unqualified-id before Martin v. Löwis 2009-10-23T07:46:05Z 2009-10-23T07:46:05Z <p>In C++, you put the square brackets after the variable name, e.g.</p> <pre><code>Node allNode[10]; </code></pre> <p>However, when dealing with dynamically-allocated arrays, use a pointer type:</p> <pre><code>Node *allNode = new Node[10]; </code></pre> http://stackoverflow.com/questions/1611799/preserve-case-in-configparser/1611877#1611877 2 Answer by Martin v. Löwis for Preserve case in ConfigParser? Martin v. Löwis 2009-10-23T07:33:21Z 2009-10-23T07:33:21Z <p>The documentation is confusing. What they mean is this:</p> <pre><code>import ConfigParser, os def get_config(): config = ConfigParser.ConfigParser() config.optionxform=str try: config.read(os.path.expanduser('~/.myrc')) return config except Exception, e: log.error(e) c = get_config() print c.options('rules') </code></pre> <p>I.e. override optionxform, instead of calling it; overriding can be done in a subclass or in the instance. When overriding, set it to a function (rather than the result of calling a function).</p> <p>I have now reported <a href="http://bugs.python.org/issue7188" rel="nofollow">this as a bug</a>.</p> http://stackoverflow.com/questions/1611733/size-of-int-in-c-on-different-architectures/1611744#1611744 12 Answer by Martin v. Löwis for Size of int in C on different architectures Martin v. Löwis 2009-10-23T06:47:52Z 2009-10-23T06:47:52Z <p>C99, in <a href="http://en.wikipedia.org/wiki/Stdint.h" rel="nofollow">stdint.h</a>, defines types like <code>int8_t</code> and <code>int16_t</code>.</p> http://stackoverflow.com/questions/1611618/how-to-post-form-data-on-an-utf-8-page-to-a-western-european-iso-page/1611719#1611719 1 Answer by Martin v. Löwis for How to post form data on an UTF-8 page to a western european (ISO) page Martin v. Löwis 2009-10-23T06:41:45Z 2009-10-23T06:41:45Z <p>IIUC, it doesn't really matter what the web pages on the old site are encoded in, as the form will be on the new site. What matters is what encoding the server of the old site expects. And if the server expects the data to be submitted in latin-1, you only have two choices:</p> <ol> <li>change the server to acccept the data in UTF-8 (perhaps under a different URL)</li> <li>make sure the client submits the data in Latin-1</li> </ol> <p>As you have ruled out option 1, your only choice is option 2 (but do reconsider doing option 1). For option 2, you again have choices, one being to use a proxy as you propose. However, it would probably be better if the page containing the form was encoded in Latin-1 (despite the rest of the site being UTF-8). This should work well if you don't want to display non-latin-1 information on the page (such as Chinese text). You just have to explain to asp.net that this specific page should be rendered in latin-1 (and the web server should send an appropriate Content-type).</p> http://stackoverflow.com/questions/1611479/how-to-implement-thread-library/1611486#1611486 3 Answer by Martin v. Löwis for How to implement thread library ? Martin v. Löwis 2009-10-23T05:13:33Z 2009-10-23T05:13:33Z <p>Threads are sometimes implemented purely in user space (then also called "green threads"), but typically in kernel space. The <a href="http://en.wikipedia.org/wiki/Thread%5F%28computer%5Fscience%29" rel="nofollow">wikipedia article</a> explains it nicely.</p> http://stackoverflow.com/questions/1608939/how-to-scale-a-tcp-listener-on-modern-multicore-multisocket-machines/1609003#1609003 0 Answer by Martin v. Löwis for How to scale a TCP listener on modern multicore/multisocket machines.... Martin v. Löwis 2009-10-22T18:07:09Z 2009-10-22T18:07:09Z <p>Several systems have been developed to improve on select(2) performance: <a href="http://people.freebsd.org/~jlemon/papers/kqueue.pdf" rel="nofollow">kqueue</a>, <a href="http://manpages.courier-mta.org/htmlman7/epoll.7.html" rel="nofollow">epoll</a>, and <a href="http://developers.sun.com/solaris/articles/polling%5Fefficient.html" rel="nofollow"><code>/dev/poll</code></a>. In all these systems, you can have a pool of worker threads waiting for tasks; you will not be forced to setup all file handles over and over again when done with one of them.</p> http://stackoverflow.com/questions/1608842/types-that-define-eq-are-unhashable-in-python-3-x/1608882#1608882 10 Answer by Martin v. Löwis for Types that define `__eq__` are unhashable in Python 3.x? Martin v. Löwis 2009-10-22T17:51:11Z 2009-10-22T17:51:11Z <p>Yes, if you define <code>__eq__</code>, the default <code>__hash__</code> (namely, hashing the address of the object in memory) goes away. This is important because hashing needs to be consistent with equality: equal objects need to hash the same.</p> <p>The solution is simple: just define <code>__hash__</code> along with defining <code>__eq__</code>.</p> http://stackoverflow.com/questions/1795343/joomla-conditional-menu-item/1796244#1796244 Comment by Martin v. Löwis on Joomla conditional menu item Martin v. Löwis 2009-11-25T13:08:27Z 2009-11-25T13:08:27Z How can I apply this approach to menu items? http://stackoverflow.com/questions/1350592/determining-when-to-try-an-ipv6-connection-and-when-to-use-ipv4/1352129#1352129 Comment by Martin v. Löwis on Determining when to try an IPv6 connection and when to use IPv4. Martin v. Löwis 2009-11-25T07:54:40Z 2009-11-25T07:54:40Z @Andrew: Notice that this is a different problem. As Tore reports, the majority of problems is caused by Opera, which (apparently) doesn't implement fallback to IPv4 properly. There are then additional failures - however, there are also other web browsers which show the same flaw. There are then also misconfigurations in the IPv6 net causing such problems; those get likely fixed as people run into them. So activating a dual-stack webserver indeed needs to be considered carefully. If you write TCP clients, I stand by my recommendation to use the OS configuration. http://stackoverflow.com/questions/1623575/operator-t-r-in-nested-templates/1623614#1623614 Comment by Martin v. Löwis on operator= (T *r) in nested templates Martin v. Löwis 2009-10-26T08:23:19Z 2009-10-26T08:23:19Z Hmm. It works fine without public for me, in gcc 4.3.4. http://stackoverflow.com/questions/1620087/asymptotic-notation-does-n-log-n-log-n-simplify/1620101#1620101 Comment by Martin v. Löwis on Asymptotic Notation - does n (log n) (log n) simplify? Martin v. Löwis 2009-10-26T07:22:26Z 2009-10-26T07:22:26Z No need to apologize :-) If the parameters are not independent, you still need to define the precise dependency (or an upper bound for it) to get useful results. For example, in a graph, if you have N nodes and E edges, in general, E may be as as N^2. So if you have an algorithm that is O(N*E), this means O(N^3). However, if you know that your nodes have a fixed degree, then E is in O(N), and the entire algorithm in O(N^2). http://stackoverflow.com/questions/1622092/problem-with-eof-in-c/1622108#1622108 Comment by Martin v. Löwis on Problem with EOF in C Martin v. Löwis 2009-10-25T21:37:38Z 2009-10-25T21:37:38Z There are several convention: a) an empty line (double enter) will terminate the input; this should work fine unless your multi-line input should also allow for empty lines. b) some stop character (often &quot;.&quot;, e.g. in SMTP) will end the input; the assumption is that this is unlikely to occur in real text. http://stackoverflow.com/questions/1622044/unfixable-circular-dependency Comment by Martin v. Löwis on Unfixable circular dependency Martin v. Löwis 2009-10-25T21:24:12Z 2009-10-25T21:24:12Z @Murali: apparently, this is &quot;just&quot; a refactoring problem; IKeyEvent is being added now, whereas EventDispatcher has been around. I don't think it's fundamentally wrong to add interfaces as you go. http://stackoverflow.com/questions/1622038/find-mondays-date-with-python Comment by Martin v. Löwis on Find Monday's date with Python Martin v. Löwis 2009-10-25T21:00:20Z 2009-10-25T21:00:20Z Coming Monday or past Monday? http://stackoverflow.com/questions/1621593/what-widespread-languages-are-llk/1621632#1621632 Comment by Martin v. Löwis on What widespread languages are LL(k)? Martin v. Löwis 2009-10-25T20:23:19Z 2009-10-25T20:23:19Z @Ellery: maybe you should ask the question more clearly if you want a different answer. http://stackoverflow.com/questions/1621593/what-widespread-languages-are-llk/1621632#1621632 Comment by Martin v. Löwis on What widespread languages are LL(k)? Martin v. Löwis 2009-10-25T18:36:46Z 2009-10-25T18:36:46Z @Arak: right; this is probably more relevant than the need for declarations. Interestingly enough, Algol-68 solved both problems with a two-level grammar. http://stackoverflow.com/questions/1620087/asymptotic-notation-does-n-log-n-log-n-simplify Comment by Martin v. Löwis on Asymptotic Notation - does n (log n) (log n) simplify? Martin v. Löwis 2009-10-25T18:17:32Z 2009-10-25T18:17:32Z It should be clear from the responses that combining complexities isn't as trivial as you might think. If you are interested in people helping you analyze this automaton minimisation, I propose that you start all over with a separate question (perhaps explaining/referencing the algorithm a little so people know what specific algorithm you use) http://stackoverflow.com/questions/1620087/asymptotic-notation-does-n-log-n-log-n-simplify/1620101#1620101 Comment by Martin v. Löwis on Asymptotic Notation - does n (log n) (log n) simplify? Martin v. Löwis 2009-10-25T18:13:11Z 2009-10-25T18:13:11Z You can certainly analyse the complexity of a complex algorithm by analysing the complexity of the subalgorithms. However, a) you need to keep track what the problem size is; in your example, the subalgorithm has a parameter completely independent of the parameter for the whole algorithm, and b) you can, at best, combine the functions <i>inside</i> the O(f) notation (i.e. the fs), not the Os. http://stackoverflow.com/questions/1620087/asymptotic-notation-does-n-log-n-log-n-simplify/1620101#1620101 Comment by Martin v. Löwis on Asymptotic Notation - does n (log n) (log n) simplify? Martin v. Löwis 2009-10-25T08:36:06Z 2009-10-25T08:36:06Z The edit doesn't make sense, mathematically: O(f) is a set; namely a set of all functions bound by f. So you can't really nest the O applications. http://stackoverflow.com/questions/1620125/sankey-diagrams-in-python Comment by Martin v. Löwis on Sankey diagrams in Python Martin v. Löwis 2009-10-25T05:54:20Z 2009-10-25T05:54:20Z What kind of output would you require/expect? http://stackoverflow.com/questions/1620121/ospm-power-management-in-os Comment by Martin v. Löwis on OSPM - power management in OS Martin v. Löwis 2009-10-25T05:52:18Z 2009-10-25T05:52:18Z That's a lot of questions - is that homework? I recommend splitting it into separate questions. You also need to indicate what operating system you use, and what CPU. http://stackoverflow.com/questions/1618773/mapping-complex-python-objects-to-django-models/1618780#1618780 Comment by Martin v. Löwis on Mapping complex python objects to django models Martin v. Löwis 2009-10-24T19:45:33Z 2009-10-24T19:45:33Z Yes: instances of UpperClass are regular Python objects, with regular attributes attr1 and attr2 (read out of the database).