Konrad Rudolph
|
Registered User
|
I’m a bioinformatics student at the Freie Universität Berlin. My programming interests span from C++ over .NET and dynamic languages all the way to XHMTL/CSS. I think in data structures and dream in “patterns and metapatterns […] of ideas manifest”. My shell is Yes, I am occasionally tweeting. I’ve also got a blog concerning bioinformatics, programming and random ramblings. |
|
1h |
comment |
Hobbyist - Developer Book Recommendations “VB is archaic” – nonsense. C is archaic! Undisputably, and largely undisputed. And see how many people still use it. |
|
3h |
comment |
Why do we have generics when we can store things(values and ref) in a ArrayList? Why use a fork when you’ve got a spoon? ;-) |
|
6h |
comment |
What is the Liskov Substitution Principle? @DrPizza: Absolutely. However, two things. Firstly, such relationships can still be modelled in OOP, albeit incompletely or using more complex detours (pick whichever suits your problem). Secondly, there’s no better alternative. Other mappings/modellings have the same or similar problems. ;-) |
|
15h |
comment |
C# ‘is’ operator performance. @JubJub: no. A failing as basically performs the same operation as is (namely, the type check). The only difference is that it then returns null instead of false. |
|
1d |
accepted | The Greedy Option of Regex is really needed? |
|
1d |
accepted | Regex to validate at most 2 numbers and at most 4 alphabets in an string of length 6. |
|
1d |
comment |
Why is there no CMS written in C++? Have you stopped beating your wife? – There are C++ CMS. |
|
1d |
comment |
Why does C have a distinction between -> and . ? +1, really good summary. |
|
1d |
comment |
What do you think of multiline lambdas in VB 10 @Heinzi: True, but being beginner friendly is no longer the aim of VB, according to Microsoft. And if a language is beginners friendly at the expense of professional programmers, then it’s simply no longer apt for professional programmers – which would be a pity for me, since I really like VB. |
|
1d |
comment |
What’s the most challenging algorithm you ever implemented? No, that’s bullsh-t, pure and simple. There are algorithms with a lot of special cases that it’s really hard to write meaningful tests for. Probabilistic algorithms in particular can be hellishly difficult to implement correctly, never mind debug (when (not if!) they exhibit bugs). Consider that almost all implementations of binary search were buggy for twenty years after the publication of the algorithm, until quite recently. And binary search is ridiculously easy. It’s trivial! googleresearch.blogspot.com/2006/06/… |
|
2d |
comment |
What do you think of multiline lambdas in VB 10 Addressing your readability concerns: In theory you could be right. In practice, however, this is simply not an issue in other languages, other things being equal. Parentheses are certainly not easy to overlook. – If they were, most modern programming just languages wouldn’t work. |
|
2d |
comment |
What do you think of multiline lambdas in VB 10 First off, AddressOf is complete bogus. We don’t take an address of a function, we’re converting a function group to a delegate (although technically, AddressOf doesn’t even do that, it just disambiguates syntactically). Secondly, that is a completely uninteresting implementation detail. What we want to do here is treating a function as any old object. And this may rub some VB programmers the wrong way but that’s just too bad. No sympathy from me. I want to use a powerful language, not one catering to people who are afraid of useful and fundamental concepts. |
|
2d |
comment |
LaTeX Optional Arguments I think the question was about how to determine whether an optional argument was given, not providing a default. |
|
2d |
answered | The Greedy Option of Regex is really needed? |
|
2d |
comment |
Help needed for Regular expression. Do you notice that your problem is horribly underspecified? Even with the amendments in the comments, there are a lot of dangerous assumptions and undefined special cases hanging around, ready to cause trouble. And while I think (after the current problem description) that this could be solved by a regular expression, it might still not be a good idea, what with changing requirements and updating the code to reflect them. |
|
2d |
comment |
C++: How to Perform Deep Cloning of Generic Type Funny: I found myself upvoting the question (it’s a good question about C++ fundamentals) and all the answers, since every answer provides unique bits of good information. |
|
2d |
comment |
How to use std::transform with templates @youngthing: Then you just haven’t used a lot of compilers. g++ requires return type int on main (with the -pedantic flag set, which should always be the case). |
|
Nov 27 |
comment |
Which Typesafe Enum in C++ Are You Using? @Roddy: so basically you’re using a feature that just one compiler supports, on up-to-date systems (as opposed to most systems, which do not have gcc 4.4 yet)? |
|
Nov 27 |
comment |
What is the default content-type/charset? Well, it seems as though this site actually really uses ISO-8859-1 so no harm in trying that. |
|
Nov 27 |
answered | What is the default content-type/charset? |
|
Nov 27 |
comment |
constructor as default argument Sorry, but this is a bad, non-idiomatic solution. As Tim has said, it is buggy, and there’s absolutely no need to use heap allocation here. |
|
Nov 26 |
revised |
Graph theory question, Java. Which algorithm to achieve the following. added 212 characters in body |
|
Nov 26 |
comment |
Graph theory question, Java. Which algorithm to achieve the following. @Keith: true, not exactly like maximum flow. Although I like the idea of the chopped-up truck. ;-) |
|
Nov 26 |
answered | Graph theory question, Java. Which algorithm to achieve the following. |
|
Nov 26 |
answered | Is it possible to clone a ValueType? |
|
Nov 25 |
comment |
Suggestions needed: alternative to overloading “is” and “as” operators in .NET You mustn’t ignore case-insensitive languages if you want your library to succeed – but the good news is that case-insensitive languages (at least VB!) can work with such code very well, even though Is and As are reserved words here. The context (i.e. as methods) make this usage feasible. |
|
Nov 25 |
comment |
Does the D programming language have a future? I don’t agree on your niche. D, and also C++, fill a completely different niche than C# and Java, i.e. system programming. C++ isn’t all about OOP and in fact OOP is only a minor possible programming style in modern C++. D and C#/Java aren’t fighting for the same niche at all, as far as I see it. The rest of this answer is good, though. |
|
Nov 25 |
comment |
Pathfinding with weighted routes Why is A* out of the question? |
|
Nov 25 |
answered | Function Template Specialization on Function Pointers |
|
Nov 25 |
answered | Can I Set The Value Of A Text Input Field Using A Variable? |
|
Nov 24 |
answered | Java Math(s) Parsing API |
|
Nov 24 |
comment |
Is this really “correct” and unambiguous? @earlz: Yes this whole new mathematical rigour is also a typical stumbling block for CS freshmen. Don’t worry, it will pass with practice. I remember that I had great difficulties with some of it, in particular the meaning of implication. |
|
Nov 24 |
comment |
Is this really “correct” and unambiguous? @earlz: yes, that’s normal. In fact (at leasy in Germany), Boolean logic is actually a recap from high school and only mentioned very briefly in CS. Boolean logic is essential for all the rest of CS because it lays the foundation for all arguments pertaining to algorithms. |
|
Nov 24 |
answered | Is this really “correct” and unambiguous? |
|
Nov 24 |
comment |
Fast Random Generator @Bobby: depressingly, true. Precompiling own code won’t help, though. |
|
Nov 23 |
awarded | ● Nice Answer |
|
Nov 23 |
comment |
C++ naming: read_input() vs. readInput() @Adam: so why would it be desirable to differentiate optically between STL code and own code? That never made sense to me, yet people use it in all kinds of environments (not only C++). That’s what namespaces are there for – and they do incredibly good work. |
|
Nov 23 |
comment |
Can you #define a comment in C? Uh, no. That code won’t work at all. |
|
Nov 23 |
comment |
How does interfaces get Equals and other methods defined in Object class @Krishna: well, interfaces in .NET are reference types so although this seems quite wacky, they are derived from System.Object in that regard. |
|
Nov 23 |
accepted | Why can I not assign a List of concrete types to a List of that concrete’s interface? |
|
Nov 23 |
awarded | ● Enlightened |
|
Nov 23 |
accepted | Why are .NET value types sealed? |
|
Nov 23 |
comment |
fast way to delete files @MSalters: are you sure about the name lookup? I don’t think FileInfo can skip name lookup when invoking Delete. A FileInfo doesn’t have to correspond to an existing file, not even to an existing directory. Granted, the situation may be different for network shares but I don’t think so. Furthermore, the FileInfo instances must first be constructed and even if you get them by iterating over a directory they are probably constructed using the normal constructor. |
|
Nov 23 |
accepted | How to get .NET array type from the string “string[]”? |
|
Nov 23 |
comment |
How do i convert 100% into px in HTML I was about to suggest that. +1 |
|
Nov 23 |
comment |
Why I cannot derive from long? Why use long for storage at all? I fail to see the advantage … unless for interop with P/Invoke (or similar scenarios where low-level access makes sense). |
|
Nov 23 |
answered | Why I cannot derive from long? |
|
Nov 23 |
revised |
What’s the HTML tag that doesn’t process HTML inside of it? added 113 characters in body |
|
Nov 23 |
answered | What’s the HTML tag that doesn’t process HTML inside of it? |
|
Nov 23 |
answered | How to get .NET array type from the string “string[]”? |
