Martin v. Löwis

22,824
reputation
1588 views

Registered User

name Martin v. Löwis
member for 1 year
seen yesterday
website
location Berlin
age 39
Dec
6
awarded  Epic
Dec
6
awarded  Mortarboard
Dec
3
awarded  Guru
Nov
27
accepted How to debug filesystem “access denied” errors on win32?
Nov
25
comment Joomla conditional menu item
How can I apply this approach to menu items?
Nov
25
asked Joomla conditional menu item
Nov
25
comment Determining when to try an IPv6 connection and when to use IPv4.
@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.
Nov
16
accepted Tools and Methods
Nov
12
accepted Is possible to persist data in the .net assembly Metadata or Header?
Nov
9
accepted Can I express “may / may not contain” rules spanning multiple levels in XML Schema?
Nov
1
answered Killer facility or scenario that would make another JVM a better choice than the Sun JVM?
Nov
1
awarded  Yearling
Oct
31
awarded  Nice Answer
Oct
29
awarded  Nice Answer
Oct
27
accepted Rename a bunch of files in debian
Oct
27
revised Receive WM_COPYDATA struct in WPF or Console C# app
typo in title
Oct
27
answered Rename a bunch of files in debian
Oct
27
accepted How to type cast a literal in C
Oct
26
answered Does any version control system have a “persistent local only change” feature?
Oct
26
accepted OS API allocates members in struct. Free just the struct or every member first?
Oct
26
answered OS API allocates members in struct. Free just the struct or every member first?
Oct
26
comment operator= (T *r) in nested templates
Hmm. It works fine without public for me, in gcc 4.3.4.
Oct
26
accepted operator= (T *r) in nested templates
Oct
26
answered Escaping ‘<’ and ‘>’ in xml when using xml.dom.minidom
Oct
26
answered operator= (T *r) in nested templates
Oct
26
revised operator= (T *r) in nested templates
break long error messages
Oct
26
answered Calculate time taken by each cpp file to compile in VS2005?
Oct
26
answered Pylons importing Psycopg2 error
Oct
26
comment Asymptotic Notation - does n (log n) (log n) simplify?
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).
Oct
26
accepted Unfixable circular dependency
Oct
25
accepted Problem with EOF in C
Oct
25
comment Problem with EOF in C
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 ".", e.g. in SMTP) will end the input; the assumption is that this is unlikely to occur in real text.
Oct
25
comment Unfixable circular dependency
@Murali: apparently, this is "just" 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.
Oct
25
answered Problem with EOF in C
Oct
25
answered Why use integers smaller than 32bit ?
Oct
25
answered Unfixable circular dependency
Oct
25
comment Find Monday’s date with Python
Coming Monday or past Monday?
Oct
25
comment What widespread languages are LL(k)?
@Ellery: maybe you should ask the question more clearly if you want a different answer.
Oct
25
comment What widespread languages are LL(k)?
@Arak: right; this is probably more relevant than the need for declarations. Interestingly enough, Algol-68 solved both problems with a two-level grammar.
Oct
25
answered What widespread languages are LL(k)?
Oct
25
comment Asymptotic Notation - does n (log n) (log n) simplify?
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)
Oct
25
comment Asymptotic Notation - does n (log n) (log n) simplify?
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 inside the O(f) notation (i.e. the fs), not the Os.
Oct
25
accepted Friendlier error messages on import for missing modules
Oct
25
comment Asymptotic Notation - does n (log n) (log n) simplify?
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.
Oct
25
comment Sankey diagrams in Python
What kind of output would you require/expect?
Oct
25
comment OSPM - power management in OS
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.
Oct
25
answered how to implement conditional htmlspecialchars?
Oct
25
answered Asymptotic Notation - does n (log n) (log n) simplify?
Oct
25
accepted What should happen when a generator function is assigned?
Oct
24
accepted Why is there a different string class in every C++ platform out there?