User Konrad Rudolph - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T23:31:50Zhttp://stackoverflow.com/feeds/user/1968http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805619/graph-theory-question-java-which-algorithm-to-achieve-the-following/1805661#18056612Answer by Konrad Rudolph for Graph theory question, Java. Which algorithm to achieve the following.Konrad Rudolph2009-11-26T21:12:33Z2009-11-26T21:31:00Z<p>This sounds (almost) exactly like the <a href="http://en.wikipedia.org/wiki/Maximum%5Fflow%5Fproblem" rel="nofollow">maximum flow problem</a> which can be solved efficiently using the <a href="http://en.wikipedia.org/wiki/Ford-Fulkerson%5Falgorithm" rel="nofollow">Ford-Fulkerson algorithm</a>.</p>
<p>As Keith has pointed out in a comment, maximum the algorithm has to be varied slightly to only find <em>one</em> path with maximized minimum path segment, since the truck can’t be split into multiple parts.</p>
http://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype/1803932#18039322Answer by Konrad Rudolph for Is it possible to clone a ValueType?Konrad Rudolph2009-11-26T14:20:12Z2009-11-26T14:20:12Z<p>Why do you need cloning code anyway? Value types <em>should</em> usually be immutable anyway and this isn’t changed by boxing. Therefore, a well-designed value type has no requirement for cloning.</p>
http://stackoverflow.com/questions/1794640/function-template-specialization-on-function-pointers/1795403#17954030Answer by Konrad Rudolph for Function Template Specialization on Function PointersKonrad Rudolph2009-11-25T08:15:10Z2009-11-25T08:15:10Z<p>As an explanation: you are trying to create a <em>partial</em> specialization of a function template. C++ just doesn’t allow that, full stop. Partial specializations only exist for class templates.</p>
<p>gf has posted the solution: use SFINAE (preferably via Boost).</p>
http://stackoverflow.com/questions/1795309/can-i-set-the-value-of-a-text-input-field-using-a-variable/1795328#17953281Answer by Konrad Rudolph for Can I Set The Value Of A Text Input Field Using A Variable?Konrad Rudolph2009-11-25T07:55:11Z2009-11-25T07:55:11Z<p>You did not escape your input properly. Use the function <a href="http://de.php.net/htmlentities" rel="nofollow"><code>htmlentities</code></a> on <em>every</em> variable that is displayed on the HTML page. Otherwise you might get invalid text (as you’ve noticed) or worse, a big security hole, because a malicious user can enter arbitrary HTML/JavaScript combinations that will be included in your HTML.</p>
http://stackoverflow.com/questions/1792261/java-maths-parsing-api/1792345#17923450Answer by Konrad Rudolph for Java Math(s) Parsing APIKonrad Rudolph2009-11-24T19:23:37Z2009-11-24T19:23:37Z<p>I may just be daft but isn’t the old, GPL’ed Jep still <a href="http://sourceforge.net/projects/jep/" rel="nofollow">available as open source</a>?</p>
http://stackoverflow.com/questions/1792062/is-this-really-correct-and-unambiguous/1792152#17921520Answer by Konrad Rudolph for Is this really "correct" and unambiguous?Konrad Rudolph2009-11-24T18:55:27Z2009-11-24T18:55:27Z<blockquote>
<p>Where did the <code>IF</code> boolean operator come from? I've never heard of such an operator that is basically equivalent in Cish code to <code>a==true?b:true</code>. I have a very hard time grasping it's usage. </p>
</blockquote>
<p>This operator is more commonly called “implication”. What do you mean by “where did [it] come from”?</p>
<p>And yes, implication <em>is</em> hard to grasp and your mistake is completely typical.</p>
<p>You can explain the implication by noting that under false premises, <em>everything</em> can be explained, even bogus (for example, we can mathematically prove that 1 = 2 if we use the premise that division by 0 is legal). For that reason, <code>0 -> x</code> is always true, no matter the value of <code>x</code> (i.e. the implication can produce the result).</p>
<p>On the other hand, if your premises are correct, an implication will lead to a correct result, thus <code>1 -> 1</code> is true (a true premise implies a true result), and <code>1 -> 0</code> is false (a true premise cannot imply a false result).</p>
http://stackoverflow.com/questions/1782927/why-i-cannot-derive-from-long/1782981#17829814Answer by Konrad Rudolph for Why I cannot derive from long?Konrad Rudolph2009-11-23T12:51:13Z2009-11-23T12:51:13Z<blockquote>
<p>My function returns some long value which contains two values in lower and higher 32 bits.</p>
</blockquote>
<p>That sounds like a really, really dirty hack. It could be appropriate for close-to-metal languages (e.g. C) but not for a higher-level, object-oriented language.</p>
<p>In OO languages, you extend the type system, not harass existing types to do your bidding. Thus, the solution should be to create a new type which carries your information.</p>
http://stackoverflow.com/questions/1782884/whats-the-html-tag-that-doesnt-process-html-inside-of-it/1782901#17829010Answer by Konrad Rudolph for What's the HTML tag that doesn't process HTML inside of it?Konrad Rudolph2009-11-23T12:34:29Z2009-11-23T12:43:33Z<p>You’re probably talking about CDATA sections?</p>
<pre><code><![CDATA[<img src='cat.jpg'/>]]>
</code></pre>
<p>Be careful though, this doesn’t work very well in some browsers. Plus, <del>I <em>think</em> it doesn’t exist in HTML, only in XML</del>. <a href="http://www.flightlab.com/~joe/sgml/cdata.html" rel="nofollow">It exists in HTML</a> but browser support is not reliable. It’s better to just escape everything.</p>
http://stackoverflow.com/questions/1782835/how-to-get-net-array-type-from-the-string-string/1782860#17828607Answer by Konrad Rudolph for How to get .NET array type from the string "string[]"?Konrad Rudolph2009-11-23T12:27:13Z2009-11-23T12:27:13Z<p>What exactly is your problem? <code>Type.GetType</code> works fine:</p>
<pre><code>Console.WriteLine(typeof(string[]));
var type = Type.GetType("System.String[]");
Console.WriteLine(type);
</code></pre>
<p>Prints:</p>
<pre><code>System.String[]
System.String[]
</code></pre>
<p>so clearly this works as expected.</p>
http://stackoverflow.com/questions/1782779/regular-expression-back-referencing/1782800#17828003Answer by Konrad Rudolph for regular expression back referencingKonrad Rudolph2009-11-23T12:15:22Z2009-11-23T12:15:22Z<blockquote>
<p>I thought that the \w part matches "H"</p>
</blockquote>
<p><code>\w</code> matches any alphanumerical character (and underscore). It <em>also</em> happens to match <code>H</code> but that’s not terribly interesting since the regular expression then goes on to say that this has to be matched <em>twice</em> – which <code>H</code> can’t in your text (since it doesn’t appear twice consecutively), and neither is any of the other characters, just <code>l</code>. So the regular expression matches <code>ll</code>.</p>
http://stackoverflow.com/questions/1781914/how-does-interfaces-get-equals-and-other-methods-defined-in-object-class/1781922#17819220Answer by Konrad Rudolph for How does interfaces get Equals and other methods defined in Object classKonrad Rudolph2009-11-23T09:11:51Z2009-11-23T09:11:51Z<p>The same happens in C#: <code>Equals</code> and <code>GetHashCode</code> are methods implemented in the <code>System.Object</code> class. Your own classes can – but don’t always need to – override them.</p>
<p>Like in Java, the default <code>object</code> implementation performs reference equality (for <code>class</code>es). I.e. the following holds for two objects <code>a</code> and <code>b</code>: <code>a.Equals(b)</code> implies <code>object.ReferenceEquals(a, b)</code> (but not vice-versa, since <code>a</code> can be <code>null</code>). <code>GetHashCode</code> is implemented to match this behaviour.</p>
<p>For <code>struct</code>s the situation is slightly different: <code>Equals</code> by default tries to compare all fields in the <code>struct</code> for pairwise equality.</p>
http://stackoverflow.com/questions/1779313/returning-a-pointer-vs-passing-a-reference-to-an-object-to-store-the-answer-in-c/1779336#17793360Answer by Konrad Rudolph for Returning a pointer vs. passing a reference to an object to store the answer in C++Konrad Rudolph2009-11-22T17:25:21Z2009-11-22T17:35:35Z<p>If the alternatives are really as given, it’s not clear why you need a reference/pointer at all; you could also just return by value:</p>
<pre><code>Node computeNode() {
// Do some computation before creating a node object.
Node newNode;
newNode.member1 = xyz;
newNode.member2 = abc;
return newNode;
}
</code></pre>
<p>Despite what many people think, this isn’t actually very inefficient because <a href="http://cpp-next.com/archive/2009/08/want-speed-pass-by-value/" rel="nofollow">the compiler can (and will!) elide most of the unnecessary copies</a>.</p>
<p>Semantically, this is the solution that you want, unless the node gets stored somewhere else <em>as well</em> and you need to preserve reference identity.</p>
http://stackoverflow.com/questions/1779199/traverse-matrix-in-diagonal-strips/1779221#17792211Answer by Konrad Rudolph for Traverse Matrix in Diagonal stripsKonrad Rudolph2009-11-22T16:44:52Z2009-11-22T16:44:52Z<blockquote>
<p>I thought this problem had a trivial solution, couple of for loops and some fancy counters</p>
</blockquote>
<p>Precisely.</p>
<p>The important thing to notice is that if you give each item an index (<em>i</em>, <em>j</em>) then items on the same diagonal have the same value <em>j</em>+<em>n</em>–<em>i</em>, where <em>n</em> is the width of your matrix. So if you iterate over the matrix in the usual way (i.e. nested loops over <em>i</em> and <em>j</em>) then you can keep track of the diagonals in an array that is addressed in the above mentioned way.</p>
http://stackoverflow.com/questions/1778871/how-do-i-determine-which-kind-of-tree-data-structure-to-choose/1778964#177896413Answer by Konrad Rudolph for How do I determine which kind of tree data structure to choose?Konrad Rudolph2009-11-22T15:06:35Z2009-11-22T15:06:35Z<p>Let’s pick them off one by one, shall we?</p>
<blockquote>
<ul>
<li>Unbalanced binary trees</li>
</ul>
</blockquote>
<p>For search tasks, never. Basically, their performance characteristics will be completely unpredictable and the overhead of balancing a tree won’t be so big as to make unbalanced trees a viable alternative.</p>
<p>Apart from that, unbalanced binary trees of course have other uses, but not as search trees.</p>
<blockquote>
<ul>
<li>AVL trees</li>
</ul>
</blockquote>
<p>They are easy to develop but their performance is generally surpassed by other balancing strategies because balancing them is comparatively time-intensive. <a href="http://en.wikipedia.org/wiki/AVL%5Ftree#Comparison%5Fto%5Fother%5Fstructures" rel="nofollow">Wikipedia claims</a> that they perform better in lookup-intensive scenarios because their height is slightly less in the worst case.</p>
<blockquote>
<ul>
<li>Red-black trees</li>
</ul>
</blockquote>
<p>These are used inside most of C++’ <code>std::map</code> implemenations and probably in a few other standard libraries as well. However, there’s <a href="http://idlebox.net/2007/stx-btree/stx-btree-0.8.3/doxygen-html/speedtest.html" rel="nofollow">good evidence</a> that they are actually worse than B(+) trees in <em>every</em> scenario due to caching behaviour of modern CPUs. Historically, when caching wasn’t as important (or as good), they surpassed B trees when used in main memory.</p>
<blockquote>
<ul>
<li>2-3 trees</li>
<li>B-trees</li>
<li>B*-trees</li>
</ul>
</blockquote>
<p>These require the most careful consideration of all the trees, since the different constants used are basically “magical” constans which relate in weird and sometimes unpredictable way to the underlying hardware architecture. For example, the optimal number of child nodes per level can depend on the size of a memory page or cache line.</p>
<p>I know of no good, general rule to distinguish between them.</p>
<blockquote>
<ul>
<li>Tries</li>
</ul>
</blockquote>
<p>Completely different. Tries are also search trees, but for text retrieval of substrings in a corpus. A trie is an uncompressed prefix tree (i.e. a tree in which the paths from root to leaf nodes correspond to all the prefixes of a given string).</p>
<p>Tries should be compared to, and offset against, <em>suffix trees</em>, <em>suffix arrays</em> and <em>q-gram indices</em> – not so much against other search trees because the <em>data</em> that they search is different: instead of discrete words in a corpus, the latter index structures allow a <em>factor search</em>.</p>
<blockquote>
<ul>
<li>Heaps</li>
</ul>
</blockquote>
<p>As you’ve already said, they are not search trees at all.</p>
http://stackoverflow.com/questions/1778538/how-many-gcc-optimization-levels-are-there/1778544#17785441Answer by Konrad Rudolph for How many GCC optimization levels are there?Konrad Rudolph2009-11-22T12:16:52Z2009-11-22T12:16:52Z<p>There are four: <code>-O0</code> (no optimization) up to <code>-O3</code> (maximum). Everything else is the same as <code>-O3</code>.</p>
http://stackoverflow.com/questions/1775216/sigint-handling-and-getline/1775231#17752313Answer by Konrad Rudolph for SIGINT handling and getlineKonrad Rudolph2009-11-21T11:25:17Z2009-11-21T11:25:17Z<p>Try adding the following immediately before your <code>cout</code> statement:</p>
<pre><code>cin.clear(); // Clear flags
cin.ignore(); // Ignore next input (= Ctr+C)
</code></pre>
http://stackoverflow.com/questions/1775208/c-how-can-i-build-a-datetime-object-from-a-datetime-present-in-a-string-object/1775210#17752105Answer by Konrad Rudolph for C# , How can i build a DateTime object from a datetime present in a string object ?Konrad Rudolph2009-11-21T11:22:07Z2009-11-21T11:22:07Z<p>Have a look at the <a href="http://msdn.microsoft.com/en-us/library/1k1skd40.aspx" rel="nofollow"><code>DateTime.Parse</code></a> or <a href="http://msdn.microsoft.com/en-us/library/w2sa9yss.aspx" rel="nofollow"><code>DateTime.ParseExact</code></a> methods.</p>
<p>Simplest case:</p>
<pre><code>var result = DateTime.Parse(str);
</code></pre>
http://stackoverflow.com/questions/1775190/is-it-possible-to-embeded-js-into-c/1775209#17752090Answer by Konrad Rudolph for Is it possible to embeded js into c#Konrad Rudolph2009-11-21T11:20:48Z2009-11-21T11:20:48Z<p>The way you write it it sounds like a giant cop-out of learning C# properly. Unless you actually mean that you want to use JavaScript for client-side control of your project, this is a no-go (and it doesn’t sounds like you meant client-side scripting).</p>
<p>That said, .NET actually allows you to mix assemblies from different languages effortlessly, but this only applies to .NET languages which can be compiled to .NET IL (bytecode) and I’m not aware of a JS-to-IL-compiler.</p>
http://stackoverflow.com/questions/1772606/why-can-i-not-assign-a-list-of-concrete-types-to-a-list-of-that-concretes-interf/1774974#17749742Answer by Konrad Rudolph for Why can I not assign a List of concrete types to a List of that concrete's interface?Konrad Rudolph2009-11-21T08:55:16Z2009-11-21T08:55:16Z<p>The accepted solution is quite inefficient for large lists, and completely unnecessary. You can change the signature of your method ever so slightly to make the code work <em>without</em> any conversions, either implicit or explicit:</p>
<pre><code>public class Runner
{
public static void Main()
{
var myList = new List<Concrete>();
DoStuffWithInterfaceList(myList); // compiler doesn't allow this
}
public static void DoStuffWithInterfaceList<T>(List<T> listOfInterfaces)
where T: IConcrete
{ }
}
</code></pre>
<p>Notice that the method is now generic and uses a type constraint to ensure that it can only be called with lists of <code>IConcrete</code> subtypes.</p>
http://stackoverflow.com/questions/1769306/why-are-net-value-types-sealed/1769336#176933621Answer by Konrad Rudolph for Why are .NET value types sealed?Konrad Rudolph2009-11-20T09:29:10Z2009-11-20T10:42:50Z<p>The reason is that most inheritance techniques relate to runtime polymorphism (virtual functions) and those don’t work on value types: for runtime polymorphism to have any meaning, objects need to be treated as references – this isn’t specific to .NET either, it’s simply a technical detail of how virtual functions are implemented.</p>
<p>Value types form an exception to .NET’s rule, precisely to allow lightweight objects that don’t require indirection via references. So runtime polymorphism doesn’t work for them and most aspects of inheritance become meaningless.</p>
<p>(There’s an exception: a value type object can be boxed, which allows for virtual methods inherited from <code>System.Object</code> to be called.)</p>
<p>To address one of your points:</p>
<blockquote>
<ul>
<li>You could cast from a derived struct to the base, since they would overlap the same memory.</li>
</ul>
</blockquote>
<p>No, this would not be possible – casting a value type would <em>copy</em> its value. We’re not dealing with references here, so no overlap in memory. Casting a value type to its base type is therefore meaningless (again, unless we’re talking about conversion to <code>object</code> which actually performs boxing under the hood, and <em>also</em> operates on a <em>copy</em> of the value).</p>
<p><strong>Still not clear?</strong> Let’s look at an example.</p>
<p>Let’s say we’ve got the hypothetical <code>struct Shape</code> and, inheriting from it, the <code>struct Circle</code>. <code>Shape</code> defines a virtual <code>Draw</code> method (which accepts a <code>Graphics</code> object). Now, let’s say we want to draw a shape on a canvas. This, of course, works perfectly well:</p>
<pre><code>var circle = new Circle(new Point(10, 10), 20);
circle.Draw(e.Graphics); // e.Graphics = graphics object of our form.
</code></pre>
<p>– But here we don’t actually use inheritance at all. To make use of inheritance, imagine instead the following <code>DrawObject</code> helper method:</p>
<pre><code>void DrawObject(Shape shape, Graphics g) {
// Do some preparation on g.
shape.Draw(g);
}
</code></pre>
<p>And we call it elsewhere with a <code>Circle</code>:</p>
<pre><code>var circle = new Circle(new Point(10, 10), 20);
DrawObject(circle, e.Graphics);
</code></pre>
<p>– And, <strong>ka-blam</strong> – this code doesn’t draw a circle. Why? Because when we pass the circle to the <code>DrawObject</code> method, we do two things:</p>
<ul>
<li>We <em>copy</em> it.</li>
<li>We <em>slice</em> it, i.e. the object <code>shape</code> object is really no longer a <code>Circle</code> – neither the original one nor a copy. Instead, its <code>Circle</code> portion was “sliced” away during copying and only the <code>Shape</code> portion remains. <code>shape.Draw</code> now calls the <code>Draw</code> method of <code>Shape</code>, not of <code>Circle</code>.</li>
</ul>
<p>In C++, you can actually cause this behaviour. For that reason, OOP in C++ only works on pointers and references, not on value types directly. And for that same reason, .NET only allows inheritance of reference types because you couldn’t use it for value types anyway.</p>
<p>Notice that the above code <em>does</em> work in .NET if <code>Shape</code> is an interface. In other words, a <em>reference</em> type. Now the situation is different: your <code>circle</code> object will <em>still</em> be copied but it will also be boxed into a reference.</p>
<p>Now, .NET <em>could</em> theoretically allow you to inherit a <code>struct</code> from a <code>class</code>. Then the above code would work just as well as if <code>Shape</code> were an interface. But then, the whole advantage of having a <code>struct</code> in the first place vanishes: for all intents and purposes (except for local variables which <em>never</em> get passed to another method, hence no utility of inheritance) your <code>struct</code> would behave as an immutable reference type instead of a value type.</p>
http://stackoverflow.com/questions/1766336/call-a-function-in-vims-autocmd-command1Call a function in Vim’s `autocmd` commandKonrad Rudolph2009-11-19T20:36:50Z2009-11-20T00:44:14Z
<p>I want to use the <code>expand</code> function in an <code>autocmd</code>. In particular, I am adapting a <a href="http://stackoverflow.com/questions/1240037/recommended-build-system-for-latex/1394702#1394702">tip</a> by Paul Biggar and I wanted to use the following auto command in my <code>.gvimrc</code>:</p>
<pre><code>autocmd FileType tex set makeprg=rubber-info\ expand("%:t:r").log
</code></pre>
<p>– Which of course doesn’t work. So what I actually want this to mean is that upon opening a <code>tex</code> file, the <code>makeprg</code> variable is set to the value of <code>rubber-info filename.log</code> where <code>filename</code> is the name of the TeX file without its file extension.</p>
<p>How can I accomplish this?</p>
http://stackoverflow.com/questions/1240037/recommended-build-system-for-latex/1767038#17670380Answer by Konrad Rudolph for Recommended build system for latex?Konrad Rudolph2009-11-19T22:29:44Z2009-11-19T22:29:44Z<p>I wanted to use the script you posted in your <a href="http://stackoverflow.com/questions/1240037/recommended-build-system-for-latex/1394702#1394702">final answer</a>.</p>
<p>Unfortunately, it didn’t work with my setting (MacVim with vim-latexsuite, Skim as the viewer and XeTeX). I also use forward search (i.e. I use the feature that pressing <kbd>\ls</kbd> in Vim will jump to the corresponding point in the PDF document in the open viewer).</p>
<p>Furthermore, my document isn’t called <code>thesis.tex</code> (big surprise; it’s not a thesis). I’ve therefore done some more configuration work that I’d like to share. Attention, my bash skills are horrible.</p>
<pre><code>#!/bin/bash
set -x
ulimit -t 10 # sometimes pdflatex gets stuck
if [ "$1" = "" ]; then
echo "No target name specified"
exit 1
fi
TARGET=$1
SOURCE=$1.tex
TMPSOURCE=_$TARGET.tex
TMPTARGET=_$TARGET
while [ 1 ]; do
# Compile a different file ($TMPSOURCE.pdf) so that it doesn't reload mid-compile
cp $SOURCE $TMPSOURCE
# better than running pdflatex manually, as this wont rebuild if there's nothing there.
latexmk -pdf -silent $TMPTARGET > /dev/null
# For rubber-info
cp $TMPTARGET.log $TARGET.log
if [ -e $TMPTARGET.pdf ]; then # Check the compile succeeded first
# No output file yet.
[ ! -e $TARGET.pdf ]
HASNOPDF=$?
# ignore if it's unchanged.
# OS X diff doesn't consider binary files. Single-line output, return value 2
diff $TARGET.pdf $TMPTARGET.pdf
OUTPUTDIFFERS=$?
if [ $HASNOPDF -eq 0 -o $OUTPUTDIFFERS -ne 0 ]; then
# Do NOT RM since Skim cannot deal with this.
cp $TMPTARGET.pdf $TARGET.pdf
fi
fi
sleep 1 # give it time to be killed by a CTRL-C
done
</code></pre>
<p>This compiles a temporary file and copies it back to whatever name was given (instead of the other way round as your script does); usage of the script:</p>
<pre><code>./scriptname project
</code></pre>
<p>Where <code>project</code> is the name of the TeX file, without file extension.</p>
<p>I’ve also changed the <code>rubber-info</code> line:</p>
<pre><code>autocmd FileType tex exe "set makeprg=rubber-info\\ _" . expand("%:t:r") . ".log"
</code></pre>
<p>And I needed to patch my <code>latexmk</code> to use XeTeX since the name of the executable was hard-coded.</p>
<p>Unfortunately, this still destroys the output PDF file when I’ve saved my document before completing a statement, since <code>latexmk</code> seems to <em>always</em> produce a PDF file, even on error – and its return code is always 0, which sucks.</p>
<p>(To clarify this, say that I’ve just typed <code>emph{</code> into my document and save it. The background script will promptly compile the document, and fail. But it will still produce a (largely empty) output file).</p>
<p>Additionally, forward search no longer works properly; it basically jumps to a wrong point in the document. I suspect that this has something to do with my copying the document before compilation.</p>
<p>So, this is still a completely unsatisfactory solution, even though I didn’t even enable continuous saving on typing in MacVim yet.</p>
http://stackoverflow.com/questions/1766347/why-does-this-compile-with-the-dev-c-compiler-and-not-visual-studios-one/1766423#17664233Answer by Konrad Rudolph for Why does this compile with the Dev-C++ compiler and not Visual Studio's one ?Konrad Rudolph2009-11-19T20:50:17Z2009-11-19T20:50:17Z<p>This isn’t valid C++ – the Visual C++ compiler does <strong>not</strong> contain an up-to-date C compiler (rather a C subset of C++) and in particular it doesn’t implement C99 or anything newer. Your code uses features that the Visual C++ compiler doesn’t know (<code>int arr[n]</code>).</p>
http://stackoverflow.com/questions/1765733/when-are-infinite-loops-are-useful-in-php/1765773#17657730Answer by Konrad Rudolph for When are infinite loops are useful in PHP?Konrad Rudolph2009-11-19T19:08:21Z2009-11-19T19:08:21Z<p>Paul Biggar has posted a <a href="http://stackoverflow.com/questions/1240037/recommended-build-system-for-latex/1394702#1394702">make script for LaTeX projects</a> which uses an infinite loop to run in the background and continually tries to rebuild the LaTeX sources.</p>
<p>The only way to terminate the script is to kill it externally (e.g. using <kbd>Ctrl</kbd>+<kbd>C</kbd>).</p>
<p>(Granted, not PHP (Bash, actually) but the same script could well be implemented in PHP instead.)</p>
http://stackoverflow.com/questions/1765736/create-a-jpeg-file-in-c-imagesfolder-based-on-the-image-stored-in-the-database-i/1765751#17657511Answer by Konrad Rudolph for Create a jpeg file in c:\imagesFolder based on the Image stored in the database in vb.netKonrad Rudolph2009-11-19T19:04:48Z2009-11-19T19:04:48Z<p>In what format do you have the file? As a byte array? In that case, simply write</p>
<pre><code>My.Computer.FileSystem.WriteAllBytes( _
"C:\images\" & imagename & ".jpg", ImageData, False)
</code></pre>
http://stackoverflow.com/questions/1763543/ternary-operator-associativity-in-c-can-i-rely-on-it/1763562#176356215Answer by Konrad Rudolph for Ternary operator associativity in C# - can I rely on it?Konrad Rudolph2009-11-19T14:14:04Z2009-11-19T14:14:04Z<p>Yes, you can rely on this (not only in C# but in all (that I know) other languages with a conditional operator) and your use-case is actually a pretty common practice although some people abhor it.</p>
<p>The relevant section in ECMA-334 (the C# standard) is 14.13 §3:</p>
<blockquote>
<p>The conditional operator is right-associative, meaning that operations are grouped from right to left.
[Example: An expression of the form <code>a ? b : c ? d : e</code> is evaluated as <code>a ? b : (c ? d : e)</code>. end
example] </p>
</blockquote>
http://stackoverflow.com/questions/1761416/convert-string-to-int/1761427#17614274Answer by Konrad Rudolph for convert string[] to int?[]Konrad Rudolph2009-11-19T07:06:07Z2009-11-19T07:06:07Z<p>By parsing and using Linq:</p>
<pre><code>string[] input = { "1", "3", "x" }
var result = input.Select(
s => { int i; return (int.TryParse(s, out i)) ? i : (int?) null; }).ToArray();
</code></pre>
<p>… but I grant that this is a bit cryptic. I wouldn’t use a lambda expression here. For clarity, this should belong to a proper function <code>ParseNullableInt</code>. Then you can call it like this:</p>
<pre><code>var result = input.Select(ParseNullableInt).ToArray();
</code></pre>
http://stackoverflow.com/questions/1758375/c-improved-algorithm/1758403#17584039Answer by Konrad Rudolph for C# Improved algorithmKonrad Rudolph2009-11-18T19:21:10Z2009-11-18T19:21:10Z<p><strong>EDIT</strong> Better solution: use <a href="http://msdn.microsoft.com/en-us/library/system.linq.enumerable.except.aspx" rel="nofollow"><code>Except</code></a> which isn’t symmetrical, unlike <code>Intersect</code>.</p>
<p>1 & 2: you can use the <a href="http://msdn.microsoft.com/en-us/library/bb460136.aspx" rel="nofollow"><code>Intersect</code></a> extension method to do this. <em>However</em>, if your second array contains elements not found in the first one, these will then be in the resulting list: <code>Intersect</code> works symmetrically.</p>
<p>As for “two-way closure”, I’ve never heard of this term and I rather doubt that it’s an established technical term.</p>
http://stackoverflow.com/questions/1756594/convert-charw-to-uxxxx-c/1756613#17566131Answer by Konrad Rudolph for Convert &#char(w); to \uxxxx C#Konrad Rudolph2009-11-18T15:02:53Z2009-11-18T15:02:53Z<p>First, get the codepoint by converting it to <code>int</code>. Then, use <code>String.Format</code> to obtain the Unicode code string:</p>
<pre><code>string result = string.Format("\\u{0:x4}", (int) chr);
</code></pre>
<p>or:</p>
<pre><code>string result = "\\u" + ((int) chr).ToString("x4");
</code></pre>
http://stackoverflow.com/questions/1756004/can-two-different-strings-generate-the-same-md5-hash-code/1756027#175602710Answer by Konrad Rudolph for Can two different strings generate the same MD5 hash code?Konrad Rudolph2009-11-18T13:38:51Z2009-11-18T13:38:51Z<p>MD5 is a <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">hash function</a> – so yes, two different strings can absolutely generate colliding MD5 codes.</p>
<p>In particular, note that MD5 codes have a fixed length so the possible number of MD5 codes is limited. The number of strings (of any length), however, is definitely unlimitd so it logically follows that there <em>must</em> be collisions.</p>
http://stackoverflow.com/questions/1805619/graph-theory-question-java-which-algorithm-to-achieve-the-following/1805661#1805661Comment by Konrad Rudolph on Graph theory question, Java. Which algorithm to achieve the following.Konrad Rudolph2009-11-26T21:29:23Z2009-11-26T21:29:23Z@Keith: true, not <i>exactly</i> like maximum flow. Although I like the idea of the chopped-up truck. ;-)http://stackoverflow.com/questions/1805619/graph-theory-question-java-which-algorithm-to-achieve-the-following/1805654#1805654Comment by Konrad Rudolph on Graph theory question, Java. Which algorithm to achieve the following.Konrad Rudolph2009-11-26T21:15:39Z2009-11-26T21:15:39ZThe solution is fortunately much simpler than TSP.http://stackoverflow.com/questions/1783901/suggestions-needed-alternative-to-overloading-is-and-as-operators-in-netComment by Konrad Rudolph on Suggestions needed: alternative to overloading "is" and "as" operators in .NETKonrad Rudolph2009-11-25T18:49:38Z2009-11-25T18:49:38ZYou 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!) <i>can</i> work with such code very well, even though <code>Is</code> and <code>As</code> <i>are</i> reserved words here. The context (i.e. as methods) make this usage feasible.http://stackoverflow.com/questions/250511/does-the-d-programming-language-have-a-future/619632#619632Comment by Konrad Rudolph on Does the D programming language have a future?Konrad Rudolph2009-11-25T18:41:26Z2009-11-25T18:41:26ZI 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.http://stackoverflow.com/questions/1795375/pathfinding-with-weighted-routesComment by Konrad Rudolph on Pathfinding with weighted routesKonrad Rudolph2009-11-25T08:16:33Z2009-11-25T08:16:33ZWhy is A* out of the question?http://stackoverflow.com/questions/1792062/is-this-really-correct-and-unambiguous/1792093#1792093Comment by Konrad Rudolph on Is this really "correct" and unambiguous?Konrad Rudolph2009-11-24T19:05:42Z2009-11-24T19:05:42Z@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 <i>great</i> difficulties with some of it, in particular the meaning of implication.http://stackoverflow.com/questions/1792062/is-this-really-correct-and-unambiguous/1792093#1792093Comment by Konrad Rudolph on Is this really "correct" and unambiguous?Konrad Rudolph2009-11-24T18:57:26Z2009-11-24T18:57:26Z@earlz: yes, that’s normal. In fact (at leasy in Germany), Boolean logic is actually a <i>recap</i> 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 <i>all</i> arguments pertaining to algorithms.http://stackoverflow.com/questions/1790776/fast-random-generator/1790831#1790831Comment by Konrad Rudolph on Fast Random GeneratorKonrad Rudolph2009-11-24T15:40:06Z2009-11-24T15:40:06Z@Bobby: depressingly, true. Precompiling own code won’t help, though.http://stackoverflow.com/questions/1785416/c-naming-readinput-vs-readinput/1785527#1785527Comment by Konrad Rudolph on C++ naming: read_input() vs. readInput()Konrad Rudolph2009-11-23T20:28:13Z2009-11-23T20:28:13Z@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 <i>namespaces</i> are there for – and they do incredibly good work.http://stackoverflow.com/questions/1785205/can-you-define-a-comment-in-c/1785241#1785241Comment by Konrad Rudolph on Can you #define a comment in C?Konrad Rudolph2009-11-23T19:01:00Z2009-11-23T19:01:00ZUh, no. That code won’t work at all.http://stackoverflow.com/questions/1781914/how-does-interfaces-get-equals-and-other-methods-defined-in-object-class/1781922#1781922Comment by Konrad Rudolph on How does interfaces get Equals and other methods defined in Object classKonrad Rudolph2009-11-23T18:57:26Z2009-11-23T18:57:26Z@Krishna: well, interfaces in .NET are reference types so although this seems quite wacky, they are derived from <code>System.Object</code> in that regard.http://stackoverflow.com/questions/1782789/how-to-avoid-events-at-component-or-dialog-creation-in-net/1782827#1782827Comment by Konrad Rudolph on How to avoid events at Component or Dialog creation in .Net?Konrad Rudolph2009-11-23T15:18:12Z2009-11-23T15:18:12Z@SoMoS: No, events are not raised simply “because the object has been initialized”. In particular, a <code>SelectedIndexChanged</code> event or <code>TextChanged</code> event isn’t be raised until this actually happens – which, granted, <i>can</i> happen due to init code in <code>InitializeComponent</code>. As for the second method hiding bugs: simply not true. And if your object can be constructed by different means than the constructor (i.e. deserializer), you have to make sure to initialize all volatile objects there, as well.http://stackoverflow.com/questions/1783118/fast-way-to-delete-files/1783147#1783147Comment by Konrad Rudolph on fast way to delete filesKonrad Rudolph2009-11-23T15:11:27Z2009-11-23T15:11:27Z@MSalters: are you sure about the name lookup? I don’t think <code>FileInfo</code> can skip name lookup when invoking <code>Delete</code>. A <code>FileInfo</code> 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 <code>FileInfo</code> instances must first be constructed and even if you get them by iterating over a directory they are probably constructed using the normal constructor.http://stackoverflow.com/questions/1783021/how-do-i-convert-100-into-px-in-html/1783033#1783033Comment by Konrad Rudolph on How do i convert 100% into px in HTMLKonrad Rudolph2009-11-23T13:08:05Z2009-11-23T13:08:05ZI was about to suggest that. +1http://stackoverflow.com/questions/1782927/why-i-cannot-derive-from-long/1782971#1782971Comment by Konrad Rudolph on Why I cannot derive from long?Konrad Rudolph2009-11-23T12:52:07Z2009-11-23T12:52:07ZWhy use <code>long</code> 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).