User schnaader - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T03:39:30Zhttp://stackoverflow.com/feeds/user/34065http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810533#18105331Answer by schnaader for Memorable 32-bit value as a constantschnaader2009-11-27T20:28:01Z2009-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#18065000Answer by schnaader for Memory Leak in Cschnaader2009-11-27T02:30:20Z2009-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#18064135Answer by schnaader for Does a boolean condition in a for loop that is always false get optimized away?schnaader2009-11-27T01:35:03Z2009-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#180628110Answer by schnaader for Can I use a logical "or" in a PHP switch statement case?schnaader2009-11-27T00:37:09Z2009-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#18063040Answer by schnaader for Making a WCHAR null terminatedschnaader2009-11-27T00:47:32Z2009-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#18062881Answer by schnaader for Convert fraction to float?schnaader2009-11-27T00:39:43Z2009-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#18062139Answer by schnaader for Detect months with 31 daysschnaader2009-11-27T00:05:20Z2009-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#18060901Answer by schnaader for C++ extract polynomial coefficientsschnaader2009-11-26T23:18:16Z2009-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-delphi0How to correctly free/finalize an ActiveX DLL in Delphi?schnaader2009-11-26T15:44:55Z2009-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 <> -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#18003221Answer by schnaader for Saving large images created in Flexschnaader2009-11-25T22:19:29Z2009-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#17916095Answer by schnaader for How do I convert a char string to a wchar_t string?schnaader2009-11-24T17:23:24Z2009-11-24T17:23:24Z<p>Does this little function help?</p>
<pre><code>#include <cstdlib>
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#17858397Answer by schnaader for Programmatically check if a number is a palindromeschnaader2009-11-23T20:48:26Z2009-11-24T10:45:59Z<p>Main idea:</p>
<pre><code>Input number: 12321
Splitting the digits of the number, put them into an array
=> array [1, 2, 3, 2, 1]
Check if array[x] = array[arr_length - x] for all x = 0..arr_length / 2
If check passed => palindrome
</code></pre>
http://stackoverflow.com/questions/1788473/while-loop-in-batch/1788502#17885021Answer by schnaader for while loop in batchschnaader2009-11-24T07:48:00Z2009-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#17855832Answer by schnaader for How should I generate an initialization vector?schnaader2009-11-23T20:03:44Z2009-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#17828970Answer by schnaader for PHP doesn't handle stack overflow?schnaader2009-11-23T12:34:01Z2009-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#17827751Answer by schnaader for PDF file compressionschnaader2009-11-23T12:10:26Z2009-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#16974571Answer by schnaader for Help with Perceptronschnaader2009-11-08T18:34:04Z2009-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#16968561Answer by schnaader for Subsequent weighted algorithm for comparisonschnaader2009-11-08T15:27:00Z2009-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#16950982Answer by schnaader for Easy Trig - Move an object in a positionschnaader2009-11-08T02:00:42Z2009-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#16871081Answer by schnaader for Converting vector-contoured regions (borders) to a raster map (pixel grid)schnaader2009-11-06T11:49:55Z2009-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#16850081Answer by schnaader for XSLT: Obtaining or matching hashes for base64 encoded dataschnaader2009-11-06T02:17:51Z2009-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#16834392Answer by schnaader for Why does this program not output 20?schnaader2009-11-05T20:40:56Z2009-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#16833491Answer by schnaader for Accessing binary MP3 Header in C via fopenschnaader2009-11-05T20:25:05Z2009-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#16833311Answer by schnaader for LZMA SDK Progressschnaader2009-11-05T20:22:19Z2009-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#16165313Answer by schnaader for Algorithm to decrypt data with drawn strokesschnaader2009-10-24T00:06:03Z2009-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#16027481Answer by schnaader for how to improve natural sort program for decimals ?schnaader2009-10-21T18:39:13Z2009-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-possible0Apache Ant command line arguments without double quotes - is it possible?schnaader2009-10-21T18:25:51Z2009-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> path\logfile
</code></pre>
<p>The problem with this was that if I used something like the following for this</p>
<pre><code><exec executable="$(myprogram)"
<arg value="--param1">
<arg value="--param2">
<arg path="$(somefile)">
<arg value="2>">
<arg path="$(logfile)">
</exec>
</code></pre>
<p>all arguments were quoted, so the command looked like this:</p>
<pre><code>myprogram "--param1" "--param2" "path\somefile" "2>" "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#15946380Answer by schnaader for InstallShield battery level warningschnaader2009-10-20T13:34:23Z2009-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#15945972Answer by schnaader for How to write a downsampling function in Javaschnaader2009-10-20T13:25:20Z2009-10-20T13:31:49Z<p>The easiest approach would be nearest-neighbor downsampling, like this:</p>
<pre><code>for (int x = 0; x < width; ++x) {
for (int y = 0; y < 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#15866372Answer by schnaader for Why won't this code output to a file?schnaader2009-10-19T01:46:19Z2009-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 && 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-loopComment by schnaader on chisq.test doesn't print results when in a loopschnaader2009-11-29T17:58:06Z2009-11-29T17:58:06ZDo you get an output at all - so do rownames and the dashes show up?http://stackoverflow.com/questions/1813055/java-util-random-peculiarityComment by schnaader on java.util.Random peculiarityschnaader2009-11-28T17:15:16Z2009-11-28T17:15:16ZJust 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 "better" code.http://stackoverflow.com/questions/1810984/number-of-days-in-any-month/1811003#1811003Comment by schnaader on Number of days in any monthschnaader2009-11-27T23:39:51Z2009-11-27T23:39:51ZHehe - 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#1809259Comment by schnaader on How to get the first n elements of a std::mapschnaader2009-11-27T15:13:27Z2009-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-stdmapComment by schnaader on How to get the first n elements of a std::mapschnaader2009-11-27T15:04:07Z2009-11-27T15:04:07ZHmm.. 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#1806413Comment by schnaader on Does a boolean condition in a for loop that is always false get optimized away?schnaader2009-11-27T05:02:50Z2009-11-27T05:02:50ZThen 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-listComment by schnaader on Probability of bit streak in bit list?schnaader2009-11-27T02:46:18Z2009-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#1806413Comment by schnaader on Does a boolean condition in a for loop that is always false get optimized away?schnaader2009-11-27T02:20:16Z2009-11-27T02:20:16ZFor 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#1806413Comment by schnaader on Does a boolean condition in a for loop that is always false get optimized away?schnaader2009-11-27T02:18:53Z2009-11-27T02:18:53ZWell, 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#1806303Comment by schnaader on Detect months with 31 daysschnaader2009-11-27T01:28:24Z2009-11-27T01:28:24ZPerfect - waited for something like that - you made my day :)http://stackoverflow.com/questions/1806373/html-very-simple-question/1806377#1806377Comment by schnaader on HTML >> Very simple questionschnaader2009-11-27T01:26:03Z2009-11-27T01:26:03Z+1 for the Wikipedia article.http://stackoverflow.com/questions/1806373/html-very-simple-question/1806377#1806377Comment by schnaader on HTML >> Very simple questionschnaader2009-11-27T01:25:10Z2009-11-27T01:25:10ZBy the way, alternatives are <code>&laquo;</code> <code>&raquo;</code> (left/right arrow quotes) which might be a bit more readable.http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806213#1806213Comment by schnaader on Detect months with 31 daysschnaader2009-11-27T01:02:28Z2009-11-27T01:02:28ZHehe - Although real golf code would be <code>((abs(m-5)==1)||(abs(m-10)==1))?do_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#1806304Comment by schnaader on Making a WCHAR null terminatedschnaader2009-11-27T00:58:51Z2009-11-27T00:58:51ZIn 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#1806090Comment by schnaader on C++ extract polynomial coefficientsschnaader2009-11-26T23:39:14Z2009-11-26T23:39:14ZSee my edit. <i>__</i>