Loren Pechtel
|
Registered User
|
|
6h |
answered | Image Classification - Detecting Floor Plans |
|
Dec 17 |
answered | Deadlock in WinForms that can be solved by right click on the taskbar |
|
Dec 16 |
comment |
Mandatory use of braces Yes. I loathe braces that don't match the indenting. |
|
Dec 16 |
comment |
Mandatory use of braces I hate the braces on the same line with other code--they're hard to follow. If you put them on their own line that means less code on the screen. Thus I never use them in this sort of situation, I always use indenting to indicate control levels. |
|
Dec 15 |
answered | What bookkeeping data does a Delphi dynamic array contain? |
|
Dec 15 |
answered | Problem adding lots of strings to a TStringList |
|
Dec 13 |
comment |
How do I position lines exactly in C# That imports user32.dll and thus is non-portable. Not exactly a good solution. |
|
Dec 10 |
comment |
How do determine if a polygon is complex/convex/nonconvex? Not all polygons--look at the image that Pete Kirkham linked to. That's why I added the angle test. |
|
Dec 7 |
answered | N-Queens Problem..How far can we go? |
|
Dec 7 |
accepted | “Cannot load package A, it contains unit X, which is also contained in package B” |
|
Dec 7 |
comment |
Any reason to do a “xor eax, eax”? 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. |
|
Dec 7 |
comment |
Any reason to do a “xor eax, eax”? Actually, in the big picture it's faster. There are fewer bytes that have to be fetched from RAM. |
|
Dec 4 |
revised |
C# highest string added 265 characters in body |
|
Dec 4 |
comment |
C# highest string Yours could fail. Input: "zz". Yours outputs "z" which sorts lower. |
|
Dec 4 |
revised |
C# highest string added 219 characters in body |
|
Dec 4 |
asked | C# highest string |
|
Dec 4 |
answered | What are the worst problems in game design? |
|
Dec 4 |
comment |
What are the worst problems in game design? 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. |
|
Dec 3 |
answered | Programmer Puzzle: Encoding a chess board state throughout a game. |
|
Dec 3 |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. 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. |
|
Dec 3 |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. 3 bits to select a piece??? How do you do that??? |
|
Dec 3 |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. 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. |
|
Dec 3 |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. You're missing non-queen promotions. |
|
Dec 3 |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. 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! |
|
Dec 3 |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. 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. |
|
Dec 1 |
answered | Compiling Twice with Delphi 6 and getting the same checksum on the binary |
|
Nov 29 |
answered | recursive file search thread |
|
Nov 28 |
answered | What “already invented” algorithm did you invent? |
|
Nov 27 |
revised |
Detect months with 31 days added 288 characters in body |
|
Nov 27 |
answered | Detect months with 31 days |
|
Nov 25 |
comment |
What language will protect my source code? The supposed death of Delphi has been seriously overreported. It's still good and still being developed. |
|
Nov 25 |
answered | C++, an “impossible” behavior |
|
Nov 23 |
revised |
How do I position lines exactly in C# added 218 characters in body |
|
Nov 22 |
answered | How do I wait for a TTimer to finish? |
|
Nov 20 |
answered | Where should I begin when building a component? |
|
Nov 18 |
comment |
Help with strange Delphi 5 IDE problems 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. |
|
Nov 16 |
comment |
GetStackTrace in Delphi 7? It's not all that expensive. How many hours of work should you spend working around this?? |
|
Nov 13 |
answered | Help with strange Delphi 5 IDE problems |
|
Nov 5 |
answered | Why is Visual C++ complaining about a variable I think I’ve defined? |
|
Nov 4 |
comment |
How do I position lines exactly in C# What do you mean by letting the system handle it for me? I see no way it can--I'm trying to add more detail as the image gets bigger. When the tiles are small the drawings are awfully crude but trying to do anything more detailed would just make a blob. |
|
Nov 3 |
revised |
How do I position lines exactly in C# added 457 characters in body |
|
Nov 3 |
revised |
How do I position lines exactly in C# added 149 characters in body |
|
Nov 3 |
asked | How do I position lines exactly in C# |
|
Nov 1 |
comment |
Algorithm for generating huge wordlist By FAR the slowest aspect of this is going to be to display the info. Also don't generate them all beforehand--RAM is far smaller than your HD--anything that would fill the HD will have long ago filled the RAM. |
|
Oct 30 |
comment |
Get drive information (free space, etc.) for drives on Windows and populate a memo box Do we really need that 1048576 in there?? That should be a constant! |
|
Oct 24 |
answered | GOTO still considered harmful? |
|
Oct 24 |
comment |
GOTO still considered harmful? Replacing it with a return only works if you are using a language that supports returns. |
|
Oct 22 |
comment |
C#: How to make this method non-recursive Why would you want to? The very nature of this is recursive. |
|
Oct 19 |
comment |
What’s wrong with my random wandering algorithm? You are attempting to exclude the current point but your two != tests are actually being ORed not ANDed and thus exclude crosshairs aimed at the current point. |
|
Oct 19 |
answered | Is reading a technical book chargable training time? |
