User Loren Pechtel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:59:02Z http://stackoverflow.com/feeds/user/10659 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903664/what-bookkeeping-data-does-a-delphi-dynamic-array-contain/1904689#1904689 0 Answer by Loren Pechtel for What bookkeeping data does a Delphi dynamic array contain? Loren Pechtel 2009-12-15T01:25:52Z 2009-12-15T01:25:52Z <p>Memory allocations have granularity to ensure all allocations are aligned. This is just the slop caused by this.</p> http://stackoverflow.com/questions/1903723/problem-adding-lots-of-strings-to-a-tstringlist/1904682#1904682 0 Answer by Loren Pechtel for Problem adding lots of strings to a TStringList Loren Pechtel 2009-12-15T01:23:23Z 2009-12-15T01:23:23Z <p>I would also worry about compiler integrity with a 14,000 line procedure. People have found other cases where going beyond anything reasonable breaks the compiler in various ways.</p> http://stackoverflow.com/questions/1664794/how-do-i-position-lines-exactly-in-c 1 How do I position lines exactly in C# Loren Pechtel 2009-11-03T02:03:56Z 2009-12-13T17:19:23Z <p>I do <em>NOT</em> want the system trying to scale my drawing, I want to do it entirely on my own as any attempt to squeeze/stretch the graphics will produce ugly results. The problem is that as the image gets bigger I want to add more detail rather than have it simply scale up.</p> <p>Right now I'm looking at two sets of stripes. One is black/white, the other is black/white/white. The pen width is set to 1.</p> <p>When the line is drawn horizontally it's correct. The same logic drawing vertical lines appears to be doing some antialiasing, bleeding the black onto the nearby white. The black/white/white doesn't look as good as the horizontal, the black/white looks more like medium++ gray/medium-- gray.</p> <p>The same code is generating the coordinates in all cases, the transform logic is simply selecting what offset to apply where as I am only supporting orientations on the cardinals. Since there's no floating point involved I can't be looking at precision issues.</p> <p>How do I get the system to leave my graphics alone???</p> <p>(Yeah, I realize this won't work at very high resolution and eventually I'll have to scale up the lines. Over any reasonable on-screen zoom factor this won't matter, for printer use I'll have to play with it and see where I need to scale. The basic problem is that I'm trying to shoehorn things into too few pixels without just making blobs.)</p> <p>Edit: There is no scaling going on. I'm generating a bitmap the exact size of the target window. All lines are drawn at integer coordinates. The recommendation of setting SmoothingMode to None changes the situation: Now the black/white/white draws as a very clear gray/gray/white and the black/white draws as a solid gray box. Now that this is cleaned up I can see some individual vertical lines that were supposed to be black are actually doing the same thing of drawing as 2-pixel gray bars. It's like all my vertical lines are off by 1/2 pixel--yet every drawing command gets only integers.</p> <p>Edit again: I've learned more about the problem. The image is being drawn correctly but trashed when displayed to the screen. (Saving it to disk and viewing it on the very same monitor shows it drawn correctly.)</p> http://stackoverflow.com/questions/1863531/n-queens-problem-how-far-can-we-go/1863661#1863661 1 Answer by Loren Pechtel for N-Queens Problem..How far can we go? Loren Pechtel 2009-12-07T23:38:10Z 2009-12-07T23:38:10Z <p>I dragged out an old Delphi program that counted the number of solutions for any given board size, did a quick modification to make it stop after one hit and I'm seeing an odd pattern in the data:</p> <p>The first board that took over 1 second to solve was n = 20. 21 solved in 62 milliseconds, though. (Note: This is based off Now, not any high precision system.) 22 took 10 seconds, not to be repeated until 28.</p> <p>I don't know how good the optimization is as this was originally a highly optimized routine from back when the rules of optimization were very different. I did do one thing very different than most implementations, though--it has no board. Rather, I'm tracking which columns and diagonals are attacked and adding one queen per row. This means 3 array lookups per cell tested and no multiplication at all. (As I said, from when the rules were very different.)</p> <p>Now for some real insanity: 29 took 9 seconds. 30 took almost 6 minutes!</p> http://stackoverflow.com/questions/1849259/c-highest-string 1 C# highest string Loren Pechtel 2009-12-04T19:50:55Z 2009-12-04T22:59:26Z <p>This seems so trivial but I'm not finding an answer with Google.</p> <p>I'm after a high value for a string for a semaphore at the end of a sorted list of strings.</p> <p>It seems to me that char.highest.ToString() should do it--but this compares low, not high.</p> <p>Obviously it's not truly possible to create a highest possible string because it would always be lower than the same thing + more data but the strings I'm sorting are all valid pathnames and thus the symbols used are constrained.</p> <p>In response to the comments:</p> <p>In the pre-unicode days in Delphi I would simply have used #255. I simply want a string that will compare higher than any possible pathname. This should be trivial--why isn't it??</p> <p>Response #2:</p> <p>It's not the sorting that requires the sentinel, it's the processing afterwards. I have multiple lists that I am sort-of merging (a simplistic merge won't do the job.) and either I duplicate code or I have dummy values that always compare high.</p> http://stackoverflow.com/questions/434010/what-are-the-worst-problems-in-game-design/1844534#1844534 1 Answer by Loren Pechtel for What are the worst problems in game design? Loren Pechtel 2009-12-04T02:43:25Z 2009-12-04T02:43:25Z <p>Pathfinding. These days in general the computer does fine when ordered to move a unit to point X. However, when a group of units is ordered somewhere the behavior is very often atrocious. If I grab a group of units and order them somewhere I expect them to get there. If they had to go through a bottleneck I'll accept them ending up in a line but that's about it.</p> <p>I don't want to find that half the units got left behind along the way because they had to skirt some impassible terrain and units kept getting stuck between the terrain and the moving mass of units and deciding they had no way to reach the target and stopping. A simple fix: When a unit gets hemmed in like that tag the blockers with a notation that they are blocking it. If a blocker moves then the unit should re-evaluate the situation. It's even worse when they were automated units that are normally left to the AI and you aren't expecting them to show up somewhere.</p> <p>Related to this is threat zones. I have yet to encounter an AI that could evaluate the concept of dangerous places. It doesn't seem to me to be that hard a concept--no unit should enter the known weapons range of a detected enemy unit unless specifically ordered into danger. Simply treat such threat zones as impassible terrain and go around.</p> http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1837787#1837787 1 Answer by Loren Pechtel for Programmer Puzzle: Encoding a chess board state throughout a game. Loren Pechtel 2009-12-03T05:09:15Z 2009-12-03T05:09:15Z <p>Thomas has the right approach for encoding the board. However this should be combined with ralu's approach for storing moves. Make a list of all possible moves, write out the number of bits needed to express this number. Since the decoder is doing the same calculation it knows how many are possible and can know how many bits to read, no length codes are needed.</p> <p>Thus we get 164 bits for the pieces, 4 bits for castling info (assuming we are storing a fragment of a game, otherwise it can be reconstructed), 3 bits for en passant eligibility info--simply store the column where the move occurred (If en passant isn't possible store a column where it's not possible--such columns must exist) and 1 for who is to move.</p> <p>Moves will typically take 5 or 6 bits but can vary from 1 to 8.</p> <p>One additional shortcut--if the encode starts with 12 1 bits (an invalid situation--not even a fragment will have two kings on one side) you abort the decode, wipe the board and set up a new game. The next bit will be a move bit.</p> http://stackoverflow.com/questions/1829533/compiling-twice-with-delphi-6-and-getting-the-same-checksum-on-the-binary/1829697#1829697 0 Answer by Loren Pechtel for Compiling Twice with Delphi 6 and getting the same checksum on the binary Loren Pechtel 2009-12-01T23:33:47Z 2009-12-01T23:33:47Z <p>Unfortunately I haven't heard of any answer to this problem.</p> <p>It's not just timestamps but there are places where a few bytes of random garbage out of memory ends up in the result.</p> http://stackoverflow.com/questions/1813501/recursive-file-search-thread/1814317#1814317 2 Answer by Loren Pechtel for recursive file search thread Loren Pechtel 2009-11-29T01:05:04Z 2009-11-29T01:05:04Z <p>I see two cases of the thread accessing VCL components--a big no-no. Build up your list of files in a list that's not part of a visual component and is not touched by anything else while the thread is running.</p> <p>Also, post back a message giving the number of files found, don't update it directly.</p> <p>Finally, don't update the files found count for every file. I've seen a program become completely nonresponsive to user input because of such excessive updating. I'd do something like updating after every directory and every 100 files in a directory or something like that.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1813103#1813103 0 Answer by Loren Pechtel for What "already invented" algorithm did you invent? Loren Pechtel 2009-11-28T17:15:27Z 2009-11-28T17:15:27Z <p>XOR drawing of a cursor so as to avoid a need to redraw the screen.</p> <p>Elsewhere in the same program I also developed the other technique for avoiding a redraw--copying off the block containing the cursor.</p> <p>How were patents ever granted for such things??</p> http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806322#1806322 1 Answer by Loren Pechtel for Detect months with 31 days Loren Pechtel 2009-11-27T00:55:02Z 2009-11-27T04:23:20Z <p>C# as I don't know Java:</p> <p>int[] DaysInMonth = new int[] {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}</p> <p>if (DaysInMonth[month] == 31) ...</p> <p>Forget the fancy logic that many people are advocating--this way is much clearer and easier to debug.</p> <p>However, to answer the question you actually asked in your message:</p> <p>if (false) ...</p> <p>as there are no months with <em>MORE</em> than 31 days!</p> <p>Edit: Yes, I didn't address the leap year. That has to be handled separately. The question was whether the month had 31 days, though--something mine <em>DOES</em> answer. I could have done it with an array of bools but since the array needs to be there anyway why not put the lengths in?</p> http://stackoverflow.com/questions/1793678/c-an-impossible-behavior/1793846#1793846 0 Answer by Loren Pechtel for C++, an "impossible" behavior Loren Pechtel 2009-11-25T00:05:47Z 2009-11-25T00:05:47Z <p>Another possibility--you might be looking at a memory overwrite due to a wild pointer somewhere.</p> <p>Assuming your debugger supports it when you hit the first line set a memory-write breakpoint on AuthDb.</p> http://stackoverflow.com/questions/1779600/how-do-i-wait-for-a-ttimer-to-finish/1780224#1780224 0 Answer by Loren Pechtel for How do I wait for a TTimer to finish? Loren Pechtel 2009-11-22T22:23:50Z 2009-11-22T22:23:50Z <p>Make AnimateResults take a parameter of the method to be called when it's done.</p> http://stackoverflow.com/questions/1772911/where-should-i-begin-when-building-a-component/1773937#1773937 1 Answer by Loren Pechtel for Where should I begin when building a component? Loren Pechtel 2009-11-20T23:53:39Z 2009-11-20T23:53:39Z <p>Don't worry about your books being old.</p> <p>Just about everything from the old days still works fine and what little doesn't is generally due to name conflicts or the addition of Unicode in the 2009 version.</p> <p>They aren't Microsoft, they don't go breaking old code without good reason. In fact, take some code from the old DOS days--assuming it doesn't try to manipulate the screen it's likely to run with minimal fixup.</p> http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problems/1730884#1730884 3 Answer by Loren Pechtel for Help with strange Delphi 5 IDE problems Loren Pechtel 2009-11-13T17:54:51Z 2009-11-13T17:54:51Z <p>I've never heard of behavior like this from Delphi before. A couple of things to look at:</p> <p>Are you sure the memory on your machine is good? Have you run Memtest on it?? The last couple of times I've encountered crazy behavior from a machine the culprit turned out to be the memory.</p> <p>Beyond that, remember that anything you install into Delphi runs in the context of the IDE and if it's buggy it can mess up the IDE. Even a component that writes to a wild pointer could do this to you.</p> http://stackoverflow.com/questions/1678157/why-is-visual-c-complaining-about-a-variable-i-think-ive-defined/1678208#1678208 0 Answer by Loren Pechtel for Why is Visual C++ complaining about a variable I think I've defined? Loren Pechtel 2009-11-05T03:43:26Z 2009-11-05T03:43:26Z <p>Since the compiler rejected your Widget* declaration it then went on to the p and has no such identifier it declared an error about it.</p> <p>My C is too rusty to figure out why it doesn't like the Widget* but the rest of it makes sense.</p> http://stackoverflow.com/questions/46586/goto-still-considered-harmful/1616884#1616884 0 Answer by Loren Pechtel for GOTO still considered harmful? Loren Pechtel 2009-10-24T03:46:26Z 2009-10-24T03:46:26Z <p>In a perfect world we would never need a GOTO. However, we live in an imperfect world. We don't have compilers with every control structure we can dream of. On occasion I feel it's better to use a GOTO than kludge a control structure that doesn't really exist.</p> <p>The most common (not that it's common) is the loop and a half construct. You always execute the first part, maybe you execute the rest of it and then go back and do the first part again. Sure, you can implement it with a boolean flag inside a while loop but I don't like this answer because it's less clear in my opinion. When you see something like:</p> <pre><code>loop: GetSomeData; if GotData then Begin ProcessTheData; StoreTheResult; Goto Loop; End; </code></pre> <p>to me it's clearer than</p> <pre><code>Repeat GetSomeData; Flag := GotData; if Flag then Begin ProcessTheData; StoreTheResult; End; Until Not Flag; </code></pre> <p>and there are times where</p> <pre><code>Function GotTheData; Begin GetSomeData; Result := GotData; End; While GotTheData do Begin ProcessTheData; StoreTheResult; End; </code></pre> <p>isn't a workable answer, and I'm a firm believer that code should be clear. If I have to make a comment explaining what the code is doing I consider whether I could make the code clearer and get rid of the comment.</p> http://stackoverflow.com/questions/1586519/is-reading-a-technical-book-chargable-training-time/1586570#1586570 1 Answer by Loren Pechtel for Is reading a technical book chargable training time? Loren Pechtel 2009-10-19T01:22:10Z 2009-10-19T01:22:10Z <p>It never would have occurred to me to even ask for that.</p> http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1575145#1575145 0 Answer by Loren Pechtel for How to hunt a Heisenbug Loren Pechtel 2009-10-15T21:19:13Z 2009-10-15T21:19:13Z <p>Given your description of the problem I think you had uninitialized data that you got away with without the optimizer but which blew up with the optimization on.</p> http://stackoverflow.com/questions/1560878/how-to-add-code-inside-a-program-in-runtime-delphi-windows/1564229#1564229 0 Answer by Loren Pechtel for How to add code inside a program in runtime (Delphi/Windows)? Loren Pechtel 2009-10-14T04:24:12Z 2009-10-14T04:24:12Z <p>Some time ago I was looking at a situation sort of like what you're describing.</p> <p>My answer was .DLLs. I put the variable code in a .DLL that was dynamically loaded, the name specified in a configuration file. I passed in a record containing everything I knew about the situation.</p> <p>In my case there was only a success/fail return and no screen output, this worked quite well. (It was commanding a piece of machinery.)</p> http://stackoverflow.com/questions/1535004/how-to-divide-two-doubles-accurately/1535286#1535286 1 Answer by Loren Pechtel for How to divide two doubles accurately Loren Pechtel 2009-10-08T02:19:54Z 2009-10-08T02:19:54Z <p>It's very unlikely you're actually triggering data loss due to underflow. While it is possible doubles have an incredible range and you're not likely to hit it.</p> <p>I would think the problem lies somewhere before this. You've either got a logic bug or you are simply eating up the available precision with a bunch of operations. Be especially wary of additions and subtractions. 1E20 + 1 = 1E20.</p> <p>If it's due to eating up the precision then you'll have to redesign your routine or resort to an arbitrary-precision library for your math. (Beware--<em>SLOW</em>)</p> http://stackoverflow.com/questions/1449205/realistic-2d-terrain-map-generation/1451563#1451563 0 Answer by Loren Pechtel for Realistic 2D terrain map generation. Loren Pechtel 2009-09-20T17:48:55Z 2009-09-20T21:00:27Z <p>I've played with terrain generation before. Assuming the objective is a bitmap I found a way to make things like rivers and in general make it look better: Erosion.</p> <p>Once you have terrain generated by other means erode it a bit: You need the world expressed as heights of pixels. Take a spot on the map and move one unit of height to the lowest neighbor. Move the cursor to this neighbor and repeat until it doesn't move. Repeat for other pixels.</p> <p>To make rivers count the number of times you pass through a location moving bits down. Spots that get hit the most are rivers.</p> <p>Followup: I wasn't eroding each pixel so much as simply a large number of random pixels until it weathered enough. The reason for actually eroding them is that this carries bits down and fills in holes. Without that there can be no rivers as there will be dead that trap the flow--the flowing pixels fill in any small holes and make working waterways.</p> <p>Sorry I can't give any samples, this was many years ago and while the old code is probably around somewhere I don't know where to look.</p> http://stackoverflow.com/questions/1424719/detecting-file-compression/1429954#1429954 0 Answer by Loren Pechtel for Detecting File Compression Loren Pechtel 2009-09-15T22:28:19Z 2009-09-15T22:28:19Z <p>I'm not sure how to test it but Pkware at least used to market (presumably they still do but I haven't looked in ages) a compressor meant for incorporation into a program. It is designed to work on a raw stream of data in memory and thus it won't leave any obvious signature on the data it compresses.</p> <p>I would try feeding your data stream to their decompressors (I'm aware of two very different versions) and see if they spit out something that looks more reasonable.</p> <p>Their SDK's are here: <a href="http://www.pkware.com/software-developer-tools-margin/software-developer-kits" rel="nofollow">http://www.pkware.com/software-developer-tools-margin/software-developer-kits</a></p> <p>I used the old dos-era one, the Windows version was too expensive and I never dealt with it.</p> http://stackoverflow.com/questions/1415173/what-is-the-fastest-possible-way-to-sort-an-array-of-7-integers/1415509#1415509 0 Answer by Loren Pechtel for What is the fastest possible way to sort an array of 7 integers? Loren Pechtel 2009-09-12T16:32:01Z 2009-09-12T16:32:01Z <p>There are a lot of loops in the answers. Given his speed requirement and the tiny size of the data set I would not do <em>ANY</em> loops.</p> <p>I have not tried it but I suspect the best answer is a fully unrolled bubble sort. It would also probably gain a fair amount of advantage from being done in assembly.</p> <p>I wonder if this is the right approach, though. How are you going to analyze a 7 card hand?? I think you're going to end up converting it to some other representation for analysis anyway. Would not a 4x13 array be a more useful representation? (And it would render the sorting issue moot, anyway.)</p> http://stackoverflow.com/questions/1415445/what-was-your-longest-time-to-fix-a-bug/1415489#1415489 0 Answer by Loren Pechtel for What was your longest time to fix a bug? Loren Pechtel 2009-09-12T16:21:06Z 2009-09-12T16:21:06Z <p>I've got one unkilled for something like a decade.</p> <p>The thing is I'm not totally sure it even exists. It's always only been seen in hindsight based on someone's memory. Some weeks back I thought I had a reproducible case--but when I was sent the relevant files I could not reproduce it and I found one of them was corrupt anyway.</p> <p>I have also killed one of about that age that was <em>NEVER</em> reported, I ran into it looking into something else.</p> http://stackoverflow.com/questions/993671/accidentally-created-a-virus/1397220#1397220 1 Answer by Loren Pechtel for Accidentally created a virus? Loren Pechtel 2009-09-09T02:01:36Z 2009-09-09T02:01:36Z <p>I remember another weird one:</p> <p>A file was being flagged as suspect. The only thing is the file was an .OBJ! An .EXE that contained the code the .OBJ contained wasn't considered a problem.</p> http://stackoverflow.com/questions/1382024/do-warnings-matter/1382111#1382111 2 Answer by Loren Pechtel for Do warnings matter? Loren Pechtel 2009-09-05T00:56:56Z 2009-09-05T00:56:56Z <p>Many of those warnings look like extraneous stuff in your program that's harmless. However, when you have 100 warnings you know don't matter (I'm not saying all of those don't matter, I'm just illustrating) and warning 101 that's very real shows up--the odds are you aren't going to see it.</p> <p>I do not tolerate any warnings whatsoever. Occasionally this means adding a useless line or two of code because the compiler can't see that a conditional must execute or the like. (A case in front of me as I write this: 4 paths in a switch on a random number. 1 of the 4 must execute and each assigns a value to a variable. The compiler doesn't know it must have a value at that point so I added an extraneous assignment to shut it up.)</p> http://stackoverflow.com/questions/1376572/c-how-to-handle-constant-tables 1 C#, how to handle constant tables Loren Pechtel 2009-09-03T23:55:38Z 2009-09-04T16:18:42Z <p>It seems strange that the language apparently includes no suitable functionality.</p> <p>I find myself with data that would best be expressed as a multi-dimensional array but it's utterly constant, there is no way anyone could want to change it without also changing the associated code. Faced with such stuff in Delphi the answer is obvious--a constant whose value is the table. However, C# doesn't seem to support anything like this.</p> <p>Google shows many people griping about this, no good answers.</p> <p>How do people handle this sort of situation?</p> <p>(And don't say that constants don't belong in code--the last one I bumped into was all possible permutations of 4 items. Unless the very nature of spacetime changes this is set in stone.)</p> <p>What happened?? There was an answer that came pretty close, I was asking about a detail and it vanished! Simply declaring an array sort of does the job--the only problem is that the array allocation is going to run every time. The one in front of me contains 96 values--how do I get it to initialize only once? Do I just have to accept scoping it far wider than it should be? (As it stands it's in one 3-line routine that's inside what amounts to an O(n^3) routine.)</p> http://stackoverflow.com/questions/1376507/calculating-the-percentage-difference-between-two-values/1376587#1376587 0 Answer by Loren Pechtel for Calculating the percentage difference between two values Loren Pechtel 2009-09-03T23:58:08Z 2009-09-03T23:58:08Z <p>While technically the answer is either undefined (in the $0/$0 case) or infinity/-infinity (all other cases) the human isn't going to like either answer. I would display something like an or the like if I couldn't find out from the users what would be the best thing to do here.</p> http://stackoverflow.com/questions/1371244/c-arrays-properties 1 C# Arrays & Properties Loren Pechtel 2009-09-03T03:04:31Z 2009-09-03T04:05:22Z <p>I'm pretty darn new to C# and I can't figure out how to express something pretty simple.</p> <p>I have a 3D array that is private.</p> <p>I have no problem with the function that exposes the contents to read:</p> <pre><code>public Terrain Tile(int x, int y, int z) { return .... </code></pre> <p>but I also want an internal function that provides read/write access with a coordinate transformation.</p> <p>There seems to be no way to specify a setter.</p> <p>Looking at Microsoft's site it appears that it wants <code>[]</code>'s instead of <code>()</code>'s but that results in the compiler thinking it's an array definition and of course it barfs all over the place. Googling elsewhere I find plenty of people trying to modify a field of something returning a reference type which of course fails but this array is full of enums, not reference types.</p> <p>Of course I can write a <code>SetTile(x, y, z, terrain)</code> function but being able to access it as an array is so much more clear &amp; elegant, yet it appears to be impossible.</p> http://stackoverflow.com/questions/1664794/how-do-i-position-lines-exactly-in-c/1897088#1897088 Comment by Loren Pechtel on How do I position lines exactly in C# Loren Pechtel 2009-12-13T20:06:57Z 2009-12-13T20:06:57Z That imports user32.dll and thus is non-portable. Not exactly a good solution. http://stackoverflow.com/questions/471962/how-do-determine-if-a-polygon-is-complex-convex-nonconvex/472001#472001 Comment by Loren Pechtel on How do determine if a polygon is complex/convex/nonconvex? Loren Pechtel 2009-12-10T19:57:01Z 2009-12-10T19:57:01Z Not all polygons--look at the image that Pete Kirkham linked to. That's why I added the angle test. http://stackoverflow.com/questions/1396527/any-reason-to-do-a-xor-eax-eax/1396643#1396643 Comment by Loren Pechtel on Any reason to do a "xor eax, eax"? Loren Pechtel 2009-12-07T00:23:03Z 2009-12-07T00:23:03Z This brings back memories from the TRS-80. Some of us would embed assembly routines inside BASIC strings. There were a few characters that absolutely could not appear in the source code without breaking it and so any such routine had to be carefully optimized to avoid using those characters. http://stackoverflow.com/questions/1396527/any-reason-to-do-a-xor-eax-eax/1396552#1396552 Comment by Loren Pechtel on Any reason to do a "xor eax, eax"? Loren Pechtel 2009-12-07T00:21:07Z 2009-12-07T00:21:07Z Actually, in the big picture it's faster. There are fewer bytes that have to be fetched from RAM. http://stackoverflow.com/questions/1849259/c-highest-string/1849295#1849295 Comment by Loren Pechtel on C# highest string Loren Pechtel 2009-12-04T21:35:39Z 2009-12-04T21:35:39Z Yours could fail. Input: &quot;zz&quot;. Yours outputs &quot;z&quot; which sorts lower. http://stackoverflow.com/questions/434010/what-are-the-worst-problems-in-game-design/434317#434317 Comment by Loren Pechtel on What are the worst problems in game design? Loren Pechtel 2009-12-04T02:33:02Z 2009-12-04T02:33:02Z And related to this is the ugly designs sometimes used as the underlying character when they aren't wearing anything--an RPG when something happens to your armor etc. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831494#1831494 Comment by Loren Pechtel on Programmer Puzzle: Encoding a chess board state throughout a game. Loren Pechtel 2009-12-03T04:57:56Z 2009-12-03T04:57:56Z I was thinking along these lines but it doesn't help. Look at Thomas' answer and modify his huffman encoding to remove the notion of empty spaces. You use 64 bits to store the matrix of which squares are occupied and you remove 1 bit from each encode--thus exactly recovering the same 64 bits. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831512#1831512 Comment by Loren Pechtel on Programmer Puzzle: Encoding a chess board state throughout a game. Loren Pechtel 2009-12-03T04:48:42Z 2009-12-03T04:48:42Z 3 bits to select a piece??? How do you do that??? http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831818#1831818 Comment by Loren Pechtel on Programmer Puzzle: Encoding a chess board state throughout a game. Loren Pechtel 2009-12-03T04:43:39Z 2009-12-03T04:43:39Z No pawns on the bank ranks does save a bit--you can chop bit #3 out of all the other patterns. Thus you will save one bit per piece actually on a bank rank. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831424#1831424 Comment by Loren Pechtel on Programmer Puzzle: Encoding a chess board state throughout a game. Loren Pechtel 2009-12-03T04:41:13Z 2009-12-03T04:41:13Z You're missing non-queen promotions. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831408#1831408 Comment by Loren Pechtel on Programmer Puzzle: Encoding a chess board state throughout a game. Loren Pechtel 2009-12-03T04:40:05Z 2009-12-03T04:40:05Z As for promoting to a knight, I've done that once. Really wild situation--he was one move from mating me, I couldn't stop it. He had ignored my pawn because while it would promote it would be one move late. I wish I had my camera when I promoted to a knight instead and mated him! http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831408#1831408 Comment by Loren Pechtel on Programmer Puzzle: Encoding a chess board state throughout a game. Loren Pechtel 2009-12-03T04:38:32Z 2009-12-03T04:38:32Z There's no need to store the movement states or two-space move for en passant. The stated problem is to record all movement--thus you can reconstruct this information, no need to store it. http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code Comment by Loren Pechtel on What language will protect my source code? Loren Pechtel 2009-11-25T23:59:52Z 2009-11-25T23:59:52Z The supposed death of Delphi has been seriously overreported. It's still good and still being developed. http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problems/1730884#1730884 Comment by Loren Pechtel on Help with strange Delphi 5 IDE problems Loren Pechtel 2009-11-18T05:02:08Z 2009-11-18T05:02:08Z Then it's almost certain you have a bad component. Any design-time editors run in the IDEs context and are quite capable of trashing it. http://stackoverflow.com/questions/1740266/getstacktrace-in-delphi-7/1740376#1740376 Comment by Loren Pechtel on GetStackTrace in Delphi 7? Loren Pechtel 2009-11-16T06:22:43Z 2009-11-16T06:22:43Z It's not all that expensive. How many hours of work should you spend working around this??