User schnaader - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:39:30Z http://stackoverflow.com/feeds/user/34065 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810533#1810533 1 Answer by schnaader for Memorable 32-bit value as a constant schnaader 2009-11-27T20:28:01Z 2009-11-27T20:28:01Z <p>0xDEADBEEF 0xDEADBABE</p> <p>...</p> <p><a href="http://en.wikipedia.org/wiki/Hexspeak" rel="nofollow">Hexspeak</a></p> http://stackoverflow.com/questions/1806483/memory-leak-in-c/1806500#1806500 0 Answer by schnaader for Memory Leak in C schnaader 2009-11-27T02:30:20Z 2009-11-27T02:30:20Z <p>For differences between malloc() and new, see <a href="http://wiki.answers.com/Q/What%5Fis%5Fthe%5Fdifference%5Fbetween%5Fmalloc%5Fand%5Fnew%5Fother%5Fthan%5Fsyntax" rel="nofollow">this article</a>.</p> http://stackoverflow.com/questions/1806390/does-a-boolean-condition-in-a-for-loop-that-is-always-false-get-optimized-away/1806413#1806413 5 Answer by schnaader for Does a boolean condition in a for loop that is always false get optimized away? schnaader 2009-11-27T01:35:03Z 2009-11-27T01:35:03Z <p>An alternative would be:</p> <pre><code>if(user_set_flag){ while(1){ ComputationAndOutput(); OtherComputation(); } } else { while(1){ OtherComputation(); } } </code></pre> <p>but as Smashery already said, this is micro-optimization and won't speed your program up as much as other optimizations you can surely do.</p> http://stackoverflow.com/questions/1806277/can-i-use-a-logical-or-in-a-php-switch-statement-case/1806281#1806281 10 Answer by schnaader for Can I use a logical "or" in a PHP switch statement case? schnaader 2009-11-27T00:37:09Z 2009-11-27T00:51:11Z <p>No, but you can do this:</p> <pre><code>case 4: case 5: echo "Hilo"; break; </code></pre> <p>See the <a href="http://php.net/manual/de/control-structures.switch.php" rel="nofollow">PHP manual</a>.</p> <p>EDIT: About the AND case: switch only checks one variable, so this won't work, in this case you can do this:</p> <pre><code>switch ($a) { case 4: if ($b == 5) { echo "Hilo"; } break; // Other cases here } </code></pre> http://stackoverflow.com/questions/1806297/making-a-wchar-null-terminated/1806304#1806304 0 Answer by schnaader for Making a WCHAR null terminated schnaader 2009-11-27T00:47:32Z 2009-11-27T00:47:32Z <p>As each character of a WCHAR is 16-bit in size, you should perhaps append <code>\0\0</code> to it, but I'm not sure if this works. By the way, <code>WCHAR fileName[1];</code> is creating a <code>WCHAR</code> of length 1, perhaps you want something like <code>WCHAR fileName[1024];</code> instead.</p> http://stackoverflow.com/questions/1806278/convert-fraction-to-float/1806288#1806288 1 Answer by schnaader for Convert fraction to float? schnaader 2009-11-27T00:39:43Z 2009-11-27T00:39:43Z <p>That might be a dirty workaround, but you could convert spaces to a <code>+</code> sign to solve the 3rd case (or to a <code>-</code> if your fraction is negative).</p> http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806213#1806213 9 Answer by schnaader for Detect months with 31 days schnaader 2009-11-27T00:05:20Z 2009-11-27T00:20:25Z <p>If you're using C or Java, you can do this:</p> <pre><code>switch (month) { case 4: case 6: case 9: case 11: do something; break; } </code></pre> <p>In some languages, you could even write <code>case 4,6,9,11:</code>. Other possibilities would be to create an array [4,6,9,11], some functional languages should allow something like <code>if month in [4,6,9,11] do something;</code></p> <p>As Lior said, it depends on the language.</p> <p>EDIT: By the way, you could also do this (just for fun, bad code because not readable):</p> <pre><code>if ((abs(month-5) == 1) || (abs(month-10) == 1)) do_something; </code></pre> http://stackoverflow.com/questions/1806074/c-extract-polynomial-coefficients/1806090#1806090 1 Answer by schnaader for C++ extract polynomial coefficients schnaader 2009-11-26T23:18:16Z 2009-11-26T23:38:29Z <pre><code>Start with "-4x^0 + x^1 + 4x^3 - 3x^4" Split after ^number: "-4x^0", " + x^1", " + 4x^3", " - 3x^4" Now everything behind an ^ is an exponent, everything before the x is an coefficient </code></pre> <p>EDIT: Simple method to get the coefficient (including the sign):</p> <pre><code>Init coefficient with 0, sign with '+' Go through each character before the x from left to right If it's a number ('0'..'9'), coefficient = coefficient * 10 + number If it's '-', set sign to '-' </code></pre> http://stackoverflow.com/questions/1804416/how-to-correctly-free-finalize-an-activex-dll-in-delphi 0 How to correctly free/finalize an ActiveX DLL in Delphi? schnaader 2009-11-26T15:44:55Z 2009-11-26T19:33:42Z <p>We are using a class called ODNCServer here - at initialization, an <code>TAutoObjectFactory</code> object is created:</p> <pre><code>initialization pAutoObjectFactory := TAutoObjectFactory.Create(ComServer, TODNCServer, Class_ODNCServer, ciSingleInstance, tmApartment); </code></pre> <p>Now <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">FastMM</a> is complaining about a memory leak because this object isn't freed anywhere. If I add a finalization statement like this</p> <pre><code>finalization if assigned(pAutoObjectFactory) then TAutoObjectFactory(pAutoObjectFactory).Free; </code></pre> <p>then the object is freed, but <em>after</em> the FastMM dialog about the memory leak pops up, so actually, the OS seems to be unloading the DLL, not the program. Instances of <code>ODNCServer</code> are created like this</p> <pre><code>fODNCServer := TODNCServer.Create(nil); //register into ROT OleCheck( RegisterActiveObject( fODNCServer.DefaultInterface, // instance CLASS_ODNCServer, // class ID ACTIVEOBJECT_STRONG, //strong registration flag fODNCServerGlobalHandle //registration handle result )); </code></pre> <p>and freed like this:</p> <pre><code>if ((assigned(fODNCServer)) and (fODNCServerGlobalHandle &lt;&gt; -1)) then begin Reserved := nil; OleCheck(RevokeActiveObject(fODNCServerGlobalHandle,Reserved)); fDTRODNCServerGlobalHandle := -1; end; FreeAndNil(fODNCServer); </code></pre> <p>So, does anybody know what I have to change to get rid of that memory leak? By the way, I also tried using FastMM's <code>RegisterExpectedMemoryLeaks</code> to register and ignore the leak, but this doesn't seem to work. Additionally, even if, it would just be a workaround and I'd like to know the right way to do this.</p> http://stackoverflow.com/questions/1800278/saving-large-images-created-in-flex/1800322#1800322 1 Answer by schnaader for Saving large images created in Flex schnaader 2009-11-25T22:19:29Z 2009-11-25T22:19:29Z <p>Have you tried if <code>fileReference.save</code> works at all (e.g. with smaller images like 100 px height)? It seems that the image data will perhaps be transformed to string data, so there might be other limits you're not aware of at the moment (your uncompressed image data will be around 86 MB, so even a PNG file with good compression might be around 10 MB in size, at the moment you're trying to save a third of this, but 3 MB still is quite large).</p> http://stackoverflow.com/questions/1791578/how-do-i-convert-a-char-string-to-a-wchart-string/1791609#1791609 5 Answer by schnaader for How do I convert a char string to a wchar_t string? schnaader 2009-11-24T17:23:24Z 2009-11-24T17:23:24Z <p>Does this little function help?</p> <pre><code>#include &lt;cstdlib&gt; int mbstowcs(wchar_t *out, const char *in, size_t size); </code></pre> <p>Also see the <a href="http://www.cplusplus.com/reference/clibrary/cstdlib/mbstowcs/" rel="nofollow">C++ reference</a></p> http://stackoverflow.com/questions/1785811/programmatically-check-if-a-number-is-a-palindrome/1785839#1785839 7 Answer by schnaader for Programmatically check if a number is a palindrome schnaader 2009-11-23T20:48:26Z 2009-11-24T10:45:59Z <p>Main idea:</p> <pre><code>Input number: 12321 Splitting the digits of the number, put them into an array =&gt; array [1, 2, 3, 2, 1] Check if array[x] = array[arr_length - x] for all x = 0..arr_length / 2 If check passed =&gt; palindrome </code></pre> http://stackoverflow.com/questions/1788473/while-loop-in-batch/1788502#1788502 1 Answer by schnaader for while loop in batch schnaader 2009-11-24T07:48:00Z 2009-11-24T10:44:01Z <pre><code>set /a countfiles-=%countfiles% </code></pre> <p>This will set countfiles to 0. I think you want to decrease it by 1, so use this instead:</p> <pre><code>set /a countfiles=countfiles-1 </code></pre> <p>I'm not sure if the for loop will work, better try something like this:</p> <pre><code>:loop cscript /nologo c:\deletefile.vbs %BACKUPDIR% set /a countfiles-=1 if %countfiles% GTR 21 goto loop </code></pre> http://stackoverflow.com/questions/1785555/how-should-i-generate-an-initialization-vector/1785583#1785583 2 Answer by schnaader for How should I generate an initialization vector? schnaader 2009-11-23T20:03:44Z 2009-11-24T06:46:27Z <p>For some implementations, the <a href="http://java.sun.com/javase/6/docs/api/java/security/SecureRandom.html" rel="nofollow">SecureRandom</a> class will help you out by producing true random numbers:</p> <blockquote> <p>Many SecureRandom implementations are in the form of a pseudo-random number generator (PRNG), which means they use a deterministic algorithm to produce a pseudo-random sequence from a true random seed. Other implementations may produce true random numbers, and yet others may use a combination of both techniques.</p> </blockquote> <p>It has two methods, <code>getProvider()</code> and <code>getAlgorithm()</code> which should give you some information about which implementation is used. From <a href="http://java.sun.com/javase/6/docs/technotes/guides/security/StandardNames.html#SecureRandom" rel="nofollow">this page</a> it seems that the pseudo random generator SHA1PRNG (which is seeded with true random data) is one of them or even the only one currently available.</p> http://stackoverflow.com/questions/1782861/php-doesnt-handle-stack-overflow/1782897#1782897 0 Answer by schnaader for PHP doesn't handle stack overflow? schnaader 2009-11-23T12:34:01Z 2009-11-23T12:55:17Z <p>I think this is a known bug. See the list <a href="http://ilia.ws/archives/5-Top-10-ways-to-crash-PHP.html" rel="nofollow">Top 10 ways to crash PHP</a>.</p> http://stackoverflow.com/questions/1782709/pdf-file-compression/1782775#1782775 1 Answer by schnaader for PDF file compression schnaader 2009-11-23T12:10:26Z 2009-11-23T12:27:45Z <p>Combine my nifty tool <a href="http://schnaader.info/precomp.html" rel="nofollow">Precomp</a> with 7-Zip. It decompresses the zLib streams inside the PDF so 7-Zip (or any other compressor) can handle them better. You will get filesizes about 50% of the original size <em>lossless</em>. This tool works especially well for PDF files, but is also nice for other compressed (zLib/LZW) streams as ZIP/GZip/JAR/GIF/PNG...</p> <p>For result examples have a look <a href="http://schnaader.info/precomp%5Fresults.html" rel="nofollow">here</a> or <a href="http://www.squeezechart.com/special.html" rel="nofollow">here</a>. Speed can be slow for the precompression (PDF->PCF) part, but will be very fast for the recompression/reconstruction (PCF->PDF) part.</p> <p>For even better results than with Precomp + 7-Zip, you can try lprepaq and prepaq variants, but beware, especially prepaq is slooww :) - the bright side is that prepaq offers the best (PDF) compression currently available.</p> http://stackoverflow.com/questions/1697243/help-with-perceptron/1697457#1697457 1 Answer by schnaader for Help with Perceptron schnaader 2009-11-08T18:34:04Z 2009-11-08T18:34:04Z <p>Some small errors I spotted in your source code:</p> <pre><code>int patternCount = sizeof(x) / sizeof(int); </code></pre> <p>Better change this to </p> <pre><code>int patternCount = i; </code></pre> <p>so you doesn't have to rely on your x array to have the right size.</p> <p>You increase iterations inside the p loop, whereas the original C# code does this outside the p loop. Better move the printf and the iteration++ outside the p loop before the PAUSE statement - also I'd remove the PAUSE statement or change it to</p> <pre><code>if ((iteration % 25) == 0) system("PAUSE"); </code></pre> <p>Even doing all those changes, your program still doesn't terminate using your data set, but the output is more consistent, giving an error oscillating somewhere between 56 and 60.</p> <p>The last thing you could try is to test the original C# program on this dataset, if it also doesn't terminate, there's something wrong with the algorithm (because your dataset looks correct, see my visualization comment).</p> http://stackoverflow.com/questions/1696835/subsequent-weighted-algorithm-for-comparison/1696856#1696856 1 Answer by schnaader for Subsequent weighted algorithm for comparison schnaader 2009-11-08T15:27:00Z 2009-11-08T15:27:00Z <p>Originally, all values have the same weight, so your factors for n values are all 1/n, so your sum is:</p> <pre><code>S = 1 * v_1 + 1 * v_2 + ... + 1 * v_n </code></pre> <p>Your try to divide the value by its position would be:</p> <pre><code>S = 1/1 * v_1 + 1/2 * v_2 + ... + 1/n * v_n </code></pre> <p>Which is still a valid approach, but does the opposite of what you want (column 1 gets most weight). </p> <p>What you want is something like this:</p> <pre><code>S = 1/n * v_1 + 1/n-1 * v_2 + ... + 1/1 * v_n </code></pre> <p>You might also consider to start with 1/n+1 and end with 1/2 so the last value will be a bit less important.</p> http://stackoverflow.com/questions/1695090/easy-trig-move-an-object-in-a-position/1695098#1695098 2 Answer by schnaader for Easy Trig - Move an object in a position schnaader 2009-11-08T02:00:42Z 2009-11-08T02:00:42Z <p><em>Given an object at point XY, and a direction N, how do you move that object in that direction?</em></p> <p>If your point is (X,Y) and your direction is a vector (NX, NY), you simply add those two. Now your object is at the position (X + NX, Y + NY).</p> <p><em>Also, given am object at point XY, and a destination at point XY, how do you move an object towards the destination?</em></p> <p>If your source point is (SX, SY) and your destination point is (DX, DY), you usually move the object along (SX + t * (DX - SX), SY + t * (DY - SY)) with t = 0..1</p> http://stackoverflow.com/questions/1687077/converting-vector-contoured-regions-borders-to-a-raster-map-pixel-grid/1687108#1687108 1 Answer by schnaader for Converting vector-contoured regions (borders) to a raster map (pixel grid) schnaader 2009-11-06T11:49:55Z 2009-11-06T12:03:41Z <p>I'd recommend you to use a geometry algorithm library like <a href="http://www.cgal.org/" rel="nofollow">CGAL</a>. Especially <a href="http://www.cgal.org/Manual/last/doc%5Fhtml/cgal%5Fmanual/Polygon/Chapter%5Fmain.html" rel="nofollow">the second example</a> in the "2D Polygons" page of the reference manual should provide you what you need. You can define each "border" as a polygon and check if certain points are inside the polygons. So basically it would be something like</p> <pre><code>for every y in raster grid for every x in raster grid for each defined polygon p if point(x,y) is inside polygon p pixel[X][Y] = inside_color[p] </code></pre> <p>I'm not so sure about what to do with the outside_color because the outside regions will overlap, won't they? Anyway, looking at your example, every outside region could be water, so you just could do a final</p> <pre><code> if pixel[X][Y] still undefined then pixel[X][Y] = water_value </code></pre> <p>(or as an alternative, set pixel[X][Y] to water_value before iterating through the polygon list)</p> http://stackoverflow.com/questions/1684963/xslt-obtaining-or-matching-hashes-for-base64-encoded-data/1685008#1685008 1 Answer by schnaader for XSLT: Obtaining or matching hashes for base64 encoded data schnaader 2009-11-06T02:17:51Z 2009-11-06T02:17:51Z <ul> <li>Download some freeware Base64 decoder like <a href="http://www.4mhz.de/b64dec.html" rel="nofollow">this one</a> or use some source code from the web for this</li> <li>Output file is some_file.gif, 268 bytes, a folder icon</li> <li>Generate the MD5 checksum of that file using <a href="http://en.wikipedia.org/wiki/Md5sum" rel="nofollow">md5sum</a> or again some source code from the web</li> </ul> <p>Output for me: </p> <pre><code>4aaafc3e14314027bb1d89cf7d59a06c </code></pre> <p>That's what you wanted, isn't it? It will be tricky (if not impossible, and if you ask me, definitely not worth the effort) to do all this in XSLT, but at least you now have got the information that this hash was created using MD5 on the GIF file. </p> http://stackoverflow.com/questions/1683417/why-does-this-program-not-output-20/1683439#1683439 2 Answer by schnaader for Why does this program not output 20? schnaader 2009-11-05T20:40:56Z 2009-11-05T20:40:56Z <p>It doesn't output "b = 20" because b is set inside the switch statement and this instruction is never executed. What you want is this:</p> <pre><code>int b = 20; switch (a) { case 1: { printf("b is %d\n", b); break; } default: { printf("b is %d\n", b); break; } } </code></pre> http://stackoverflow.com/questions/1683328/accessing-binary-mp3-header-in-c-via-fopen/1683349#1683349 1 Answer by schnaader for Accessing binary MP3 Header in C via fopen schnaader 2009-11-05T20:25:05Z 2009-11-05T20:25:05Z <p>Try</p> <pre><code>fseek(mp3file,0,SEEK_SET) </code></pre> <p>instead of</p> <pre><code>fseek(mp3file,1,SEEK_SET). </code></pre> <p>Files start at byte position 0.</p> http://stackoverflow.com/questions/1683247/lzma-sdk-progress/1683331#1683331 1 Answer by schnaader for LZMA SDK Progress schnaader 2009-11-05T20:22:19Z 2009-11-05T20:22:19Z <p>Did you have a look at the examples provided with the SDK? For example, in the folder CPP\7zip\Compress\LZMA_Alone there's a quite complete reference implementation of LZMA. The file LzmaBench.cpp in this directory contains a whole CBenchProgressInfo class including a callback for progress information.</p> http://stackoverflow.com/questions/1616473/algorithm-to-decrypt-data-with-drawn-strokes/1616531#1616531 3 Answer by schnaader for Algorithm to decrypt data with drawn strokes schnaader 2009-10-24T00:06:03Z 2009-10-24T00:45:43Z <p>I would try a variation of the segmentation variant: Recognize simple patterns - I'll stick to straight and diagonal lines for this, but in theory you could also add circles, arcs and perhaps other things.</p> <p>You can be quite sure when one line ends and another one starts as there are 8 directions and you can detect a direction change (or for a simpler approach, just detect pen up and pen down and use them as line delimiters). The first line gives a scale factor, so the length of every other line can be represented as a factor (for example, in an usual L shape, the first vertical line would give the "base length" b and the other line would then have the length of roughly 0.5 * b). After the user is finished, you can use the smallest factor s to "round" the lengths, so that you'll have an array of integer lengths like [1 * s, 2 * s, 4 * s, 5 * s]. This will prevent the system from being too exact, and using the base length makes the system robust against scaling.</p> <p>Now somehow convert these informations (lengths and directions) to a string (or a hash value, whatever you like) and it will be the same for the same strokes, even if the symbol is translated or scaled.</p> <p>Additionally, you can store an 2D offset value (of course "rounded", too) for every line after the second line so that the lines will also have to be at the same position, if you don't do this, L and T will most likely get the same string (1 line up-down, 1 line left-right length 0.5). So storing positions strengthens the whole thing a bit but is optional.</p> <p>EDIT:</p> <p>If you take the angle of the first line as a base angle, you can even make this robust to rotation.</p> <p>Please note that this algorithm only gives 3 bits per stroke if all lines are of the same length and a maximum of perhaps up to 6-8 bits per stroke, some more if you store positions, too. This means you'd need a quite complex symbol of about 20-40 strokes to get 128 bits of security.</p> <p>An easy way to add more variation/security would be to let the user use different colors from a given palette.</p> <p>To reduce the risk of someone watching you, you could make each line disappear after it has been drawn or change the color to a color with a very low contrast to the background.</p> http://stackoverflow.com/questions/1602732/how-to-improve-natural-sort-program-for-decimals/1602748#1602748 1 Answer by schnaader for how to improve natural sort program for decimals ? schnaader 2009-10-21T18:39:13Z 2009-10-21T18:39:13Z <p>If it's just float strings, I'd rather suggest to create a table with two columns (first row contains the original string, second row is filled with the string converted to float), sort this by the float column and then output/use the sorted string column.</p> http://stackoverflow.com/questions/1602668/apache-ant-command-line-arguments-without-double-quotes-is-it-possible 0 Apache Ant command line arguments without double quotes - is it possible? schnaader 2009-10-21T18:25:51Z 2009-10-21T18:31:19Z <p>Today I had to add a task to an Apache Ant file. The command line should have been something like</p> <pre><code>myprogram --param1 --param2 path\somefile 2&gt; path\logfile </code></pre> <p>The problem with this was that if I used something like the following for this</p> <pre><code>&lt;exec executable="$(myprogram)" &lt;arg value="--param1"&gt; &lt;arg value="--param2"&gt; &lt;arg path="$(somefile)"&gt; &lt;arg value="2&gt;"&gt; &lt;arg path="$(logfile)"&gt; &lt;/exec&gt; </code></pre> <p>all arguments were quoted, so the command looked like this:</p> <pre><code>myprogram "--param1" "--param2" "path\somefile" "2&gt;" "path\logfile" </code></pre> <p>which is not bad and especially nice if you have spaces in your files/path, but destroys the pipe to the logfile (instead, the program thinks there are two additional file arguments "2>" and "path\logfile").</p> <p>I worked around this by calling a batch script instead that only wants the files as parameters, but I wondered: Is it possible to do this without such a workaround?</p> http://stackoverflow.com/questions/1594616/installshield-battery-level-warning/1594638#1594638 0 Answer by schnaader for InstallShield battery level warning schnaader 2009-10-20T13:34:23Z 2009-10-20T13:34:23Z <p>There are several .NET-related answers in <a href="http://stackoverflow.com/questions/681717/how-do-you-get-the-current-battery-level-in-net-cf-3-5">this SO question</a>. At least the <a href="http://msdn.microsoft.com/en-us/library/aa457088.aspx" rel="nofollow">GetSystemPowerStatusEx</a> function could be helpful for you.</p> http://stackoverflow.com/questions/1594543/how-to-write-a-downsampling-function-in-java/1594597#1594597 2 Answer by schnaader for How to write a downsampling function in Java schnaader 2009-10-20T13:25:20Z 2009-10-20T13:31:49Z <p>The easiest approach would be nearest-neighbor downsampling, like this:</p> <pre><code>for (int x = 0; x &lt; width; ++x) { for (int y = 0; y &lt; height; ++y) { output[x][y] = input[x*width/oldWidth][y*height/oldHeight]; } } </code></pre> <p>But this doesn't give nice results, so you might need other approaches that use several input pixels and average them to get a more exact color for the original region.</p> http://stackoverflow.com/questions/1586584/why-wont-this-code-output-to-a-file/1586637#1586637 2 Answer by schnaader for Why won't this code output to a file? schnaader 2009-10-19T01:46:19Z 2009-10-19T02:02:13Z <p>The code seems to be correct so far, I think your test data is wrong. If I test with this input file:</p> <pre><code>a 10 c d 2 f g 9 i j 4 l m 8 o p 6 r s 7 u v 8 x y 6 a b 10 d e 5 g h 12 j </code></pre> <p>The output file is like this, which is the expected behaviour:</p> <pre><code>d 2 f j 4 l e 5 g y 6 a p 6 r s 7 u m 8 o v 8 x g 9 i b 10 d a 10 c h 12 j </code></pre> <p>So either your test data is wrong or there is some additional error handling you have to do (file can't be opened etc.).</p> <p>By the way, this part of your code</p> <pre><code> else if (firstSpace != -1 &amp;&amp; secondSpace == -1){ </code></pre> <p>can be reduced to</p> <pre><code> else { </code></pre> <p>because you have a break statement in there and set secondSpace back to -1 right after it.</p> <p>EDIT: Your data also works fine - output is this:</p> <pre><code>Jone 75 jone@hotmail.com Alice 78 alice@myclass.com Nick 79 nick@bmail.com Sean 80 sean@csi.edu Mark 86 mark@gmail.com Thomas 88 tom@cix.csi.edu Zach 89 zach@yahoo.com Claire 89 claire@yahoo.com Amy 95 amy@hotmail.com Eve 97 eve@nytimes.com Issac 99 issac@mail.csi.edu James 100 james@yahoo.com </code></pre> http://stackoverflow.com/questions/1816200/chisq-test-doesnt-print-results-when-in-a-loop Comment by schnaader on chisq.test doesn't print results when in a loop schnaader 2009-11-29T17:58:06Z 2009-11-29T17:58:06Z Do you get an output at all - so do rownames and the dashes show up? http://stackoverflow.com/questions/1813055/java-util-random-peculiarity Comment by schnaader on java.util.Random peculiarity schnaader 2009-11-28T17:15:16Z 2009-11-28T17:15:16Z Just a minor notice: I'd change the line <code>int b = rng.nextInt(10)</code> to <code>int b;</code> and turn the <code>while(a==b) {}</code> into <code>do {} while (a!=b)</code> so you have to call <code>b = rng.nextInt(10)</code> just once - won't change anything, but is &quot;better&quot; code. http://stackoverflow.com/questions/1810984/number-of-days-in-any-month/1811003#1811003 Comment by schnaader on Number of days in any month schnaader 2009-11-27T23:39:51Z 2009-11-27T23:39:51Z Hehe - the poor one who has to check such homework for correctness ;) http://stackoverflow.com/questions/1809227/how-to-get-the-first-n-elements-of-a-stdmap/1809259#1809259 Comment by schnaader on How to get the first n elements of a std::map schnaader 2009-11-27T15:13:27Z 2009-11-27T15:13:27Z +1 - didn't know that - nice one. http://stackoverflow.com/questions/1809227/how-to-get-the-first-n-elements-of-a-stdmap Comment by schnaader on How to get the first n elements of a std::map schnaader 2009-11-27T15:04:07Z 2009-11-27T15:04:07Z Hmm.. I'd say using an iterator loop <i>is</i> the STL way to go, isn't it? http://stackoverflow.com/questions/1806390/does-a-boolean-condition-in-a-for-loop-that-is-always-false-get-optimized-away/1806413#1806413 Comment by schnaader on Does a boolean condition in a for loop that is always false get optimized away? schnaader 2009-11-27T05:02:50Z 2009-11-27T05:02:50Z Then the optimization could be useful, but I doubt this case is very common (and if it is, there's an error in your coding technique which is not a case of optimization, but of writing good code). http://stackoverflow.com/questions/1806513/probability-of-bit-streak-in-bit-list Comment by schnaader on Probability of bit streak in bit list? schnaader 2009-11-27T02:46:18Z 2009-11-27T02:46:18Z @Matthias: I think that's wrong. It's the same thing, except that you do it for 2560 bits in the one case and for 10 in the other (assuming that the 10-bit strings won't be correlated) http://stackoverflow.com/questions/1806390/does-a-boolean-condition-in-a-for-loop-that-is-always-false-get-optimized-away/1806413#1806413 Comment by schnaader on Does a boolean condition in a for loop that is always false get optimized away? schnaader 2009-11-27T02:20:16Z 2009-11-27T02:20:16Z For example, calling a function or evaluating that if is perhaps 1-3 CPU cycles and I'm sure the remaining code you do in the loop will waste thousands of CPU cycles, so speedup by such optimizations will be less than 1%. http://stackoverflow.com/questions/1806390/does-a-boolean-condition-in-a-for-loop-that-is-always-false-get-optimized-away/1806413#1806413 Comment by schnaader on Does a boolean condition in a for loop that is always false get optimized away? schnaader 2009-11-27T02:18:53Z 2009-11-27T02:18:53Z Well, in that case you can copy your code instead of using a function - but once again, all this will only make your code a bit faster and is not really worth it. http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806303#1806303 Comment by schnaader on Detect months with 31 days schnaader 2009-11-27T01:28:24Z 2009-11-27T01:28:24Z Perfect - waited for something like that - you made my day :) http://stackoverflow.com/questions/1806373/html-very-simple-question/1806377#1806377 Comment by schnaader on HTML >> Very simple question schnaader 2009-11-27T01:26:03Z 2009-11-27T01:26:03Z +1 for the Wikipedia article. http://stackoverflow.com/questions/1806373/html-very-simple-question/1806377#1806377 Comment by schnaader on HTML >> Very simple question schnaader 2009-11-27T01:25:10Z 2009-11-27T01:25:10Z By the way, alternatives are <code>&amp;laquo;</code> <code>&amp;raquo;</code> (left/right arrow quotes) which might be a bit more readable. http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806213#1806213 Comment by schnaader on Detect months with 31 days schnaader 2009-11-27T01:02:28Z 2009-11-27T01:02:28Z Hehe - Although real golf code would be <code>((abs(m-5)==1)||(abs(m-10)==1))?do&#95;something;</code> - and I'm pretty sure you could optimize that further by somehow combining the abs return values. http://stackoverflow.com/questions/1806297/making-a-wchar-null-terminated/1806304#1806304 Comment by schnaader on Making a WCHAR null terminated schnaader 2009-11-27T00:58:51Z 2009-11-27T00:58:51Z In this case it would help if you post more of your code, because what you posted could be used in any way. http://stackoverflow.com/questions/1806074/c-extract-polynomial-coefficients/1806090#1806090 Comment by schnaader on C++ extract polynomial coefficients schnaader 2009-11-26T23:39:14Z 2009-11-26T23:39:14Z See my edit. <i>__</i>