User Gamecat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:17:37Zhttp://stackoverflow.com/feeds/user/18061http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1781570/is-delphi-dead/1781622#17816226Answer by Gamecat for Is Delphi dead?Gamecat2009-11-23T07:35:40Z2009-11-23T07:35:40Z<p>No it is not.</p>
<p>Borland let it go, but it found a new house. </p>
<p>Versions 2009 and 2010 are very promissing. We now wait for 64-bit support. But that is high on the prioritylist.</p>
http://stackoverflow.com/questions/1762904/what-will-happen-if-a-application-is-large-enough-to-be-loaded-into-the-available/1762962#17629621Answer by Gamecat for What will happen if a application is large enough to be loaded into the available RAM memory?Gamecat2009-11-19T12:30:00Z2009-11-19T12:30:00Z<p>There is often the use of virtual memory. Virtual memory pages are mapped to physical memory if they are used. If a physical page is needed and no page is available, another is written to disk. This is called swapping and that explains why crowded systems get slow and memory upgrades have positive effects on performance.</p>
http://stackoverflow.com/questions/1761487/delphi-generics-and-is-operator-problem/1761713#17617133Answer by Gamecat for Delphi: generics and 'is'-operator problemGamecat2009-11-19T08:15:55Z2009-11-19T08:15:55Z<p>The problem is not with the generics. You add a TDataType to a list that expects TInt or TStr:</p>
<pre><code>procedure TSomeClass.AddToList<T>(Element: T);
begin
if TObject(Element) is TInt then
FIntList.Add(TInt(Element))
else if TObject(Element) is TStr then
FStrList.Add(TStr(Element));
end;
</code></pre>
<p>Solves the problem.</p>
<p>But why not use:</p>
<pre><code>procedure TSomeClass.AddToList(Element: TDataType);
begin
if Element is TInt then
FIntList.Add(TInt(Element))
else if Element is TStr then
FStrList.Add(TStr(Element));
end;
</code></pre>
http://stackoverflow.com/questions/1727819/conversion-of-unicode16bit-data-to-7bit-ascii/1727858#17278584Answer by Gamecat for conversion of unicode(16bit) data to 7bit ascii Gamecat2009-11-13T08:18:53Z2009-11-13T08:18:53Z<p>You can map unicode chars 0..127 to the ASCII set. For the other chars there is no 7 bit ASCII equivalent. What do you want to do with those?</p>
http://stackoverflow.com/questions/1726210/working-with-delphi-and-access/1726256#17262561Answer by Gamecat for working with Delphi and AccessGamecat2009-11-12T23:56:26Z2009-11-12T23:56:26Z<p>You can either add each record to a TListView. Just looping through the records and put the contents of the fields into the required control.</p>
<p>But Delphi provides data aware controls. That take care of the database connection. For most applications this is enough.</p>
http://stackoverflow.com/questions/1708253/well-established-scientific-truths-about-software-engineering/1708284#17082842Answer by Gamecat for Well-established scientific truths about software engineeringGamecat2009-11-10T14:15:46Z2009-11-10T14:15:46Z<p>A variant of Murphys law: All software contains bugs.</p>
http://stackoverflow.com/questions/1707977/bnf-grammar-derivation/1707998#17079983Answer by Gamecat for BNF Grammar DerivationGamecat2009-11-10T13:33:52Z2009-11-10T13:33:52Z<p>Your question is a bit vague. But below is a BNF (ish) grammar for an integer number.</p>
<pre><code>nz_digit = '1' | ... | '9';
digit = '0' | nz_digit;
digitseq = digit | digitseq, digit;
num = '0' | nz_digit, digitseq;
</code></pre>
http://stackoverflow.com/questions/1707151/finding-angles-0-360/1707190#17071900Answer by Gamecat for finding angles 0-360Gamecat2009-11-10T11:09:58Z2009-11-10T11:09:58Z<p>This should do the trick:</p>
<ol>
<li>If y2
<li>If < 0, add 360. </li>
</ol>
<p>Examples:</p>
<p>(x1,y1) = 0</p>
<pre><code>(x2,y2) = (-1,1), atan() = -45, [add 360], 270
(x2,y2) = (1,1), atan() = 45
(x2,y2) = (1,-1), atan() = -45, [add 180], 135
(x2 ,y2) = (-1,-1), atan() = 45, [add 180], 225
</code></pre>
http://stackoverflow.com/questions/1707071/delphi-2009-upgrade-question/1707146#17071465Answer by Gamecat for Delphi 2009 Upgrade Question...Gamecat2009-11-10T11:01:11Z2009-11-10T11:01:11Z<p>You can try to contact <a href="http://www.embarcadero.com/" rel="nofollow">Embarcadero</a>. If you have a registered version they must have records of that. It will be helpful if you know the email address that was used to register the account.</p>
http://stackoverflow.com/questions/1661685/visual-studio-express-free-class-diagram-tool/1661716#16617160Answer by Gamecat for visual studio express : free class diagram toolGamecat2009-11-02T14:46:55Z2009-11-02T14:46:55Z<p>I use <a href="http://www.yworks.com/en/products%5Fyed%5Fabout.html" rel="nofollow">yEd</a>. Its simple but has just enough functionality. It does not generate code.</p>
http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not/268461#2684617Answer by Gamecat for When writing code do you wrap text or not?Gamecat2008-11-06T12:16:07Z2009-11-02T10:51:19Z<p>Everything is said, but to make the point more graphically:</p>
<pre><code>I really hate long lines that require you to scroll to the right to get a full understanding of the meaning of the code.
</code></pre>
<p>Scrollbar away.</p>
<pre><code>Therefore I use linebreaks to break each line into managable pieces, such
that the user has an excellent overview which leads to quick understanding.
</code></pre>
http://stackoverflow.com/questions/1656119/currying-and-compiler-design/1656210#16562100Answer by Gamecat for Currying and compiler designGamecat2009-11-01T02:21:52Z2009-11-01T02:21:52Z<p>Currying is the conversion of n argument functions into n unary functions:</p>
<p>Example, if you have a ternary function f :: t1 x t2 x t3 -> t you can represent this function as </p>
<pre><code>f1 :: t1 -> (t2 -> (t3 -> t))
</code></pre>
<p>In other words, f1 is a function which takes an argument of type t1 and returns a function of type f2.</p>
<pre><code>f2 :: t2 -> (t3 -> t)
</code></pre>
<p>f2 is a function which takes an argument of type t2 and returns a function of type f3.</p>
<pre><code>f3 :: t3 -> t
</code></pre>
<p>f3 is a function which takes an argument of type t3 and returns type t.</p>
<p>Example, if f(a,b,c) = a+b*c then:</p>
<pre><code>f3(C) == c1+c2*C where c1 and c2 are constant.
f2(B) == f3(C) where c1 is constant and c2 is replaced with B.
f1(A) == f2(B) where c1 is replaced with A.
</code></pre>
<p>In functional languages, functions are first class citizens so its common to have them as return type.</p>
http://stackoverflow.com/questions/1642350/delphi-setlength-on-argument-of-type-array-of-tobject/1642373#16423738Answer by Gamecat for Delphi: SetLength() on argument of type "array of TObject"Gamecat2009-10-29T08:53:04Z2009-10-29T09:02:20Z<p>You didn't defined the type explicitly. So the compiler has problems matching them. If you define the type like:</p>
<pre><code>type
TObjectArray = array of TObject;
</code></pre>
<p>There is no doubt about it and (thanks to Mghie) you should be using a var parameter because resising likely cause a change in the pointer.</p>
<pre><code>procedure Resize(var MyArray: TObjectArray);
begin
SetLength(MyArray, 100);
end;
</code></pre>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/143453#14345328Answer by Gamecat for What's the least useful comment you've ever seen?Gamecat2008-09-27T11:32:28Z2009-10-28T02:34:21Z<p>I once worked on a project with a strange C compiler. It gave an error on a valid piece of code unless a comment was inserted between two statements. So I changed the comment to:</p>
<pre><code>// Do not remove this comment else compilation will fail.
</code></pre>
<p>And it worked great.</p>
http://stackoverflow.com/questions/1623375/write-your-own-square-root-function/1623456#16234562Answer by Gamecat for Write your own square root function.Gamecat2009-10-26T07:09:15Z2009-10-26T07:09:15Z<p>A simple (but not very fast) method to calculate the square root of X:</p>
<pre><code>squareroot(x)
if x<0 then Error
a = 1
b = x
while (abs(a-b)>ErrorMargin)
a = (a+b)/2
b = x/a
endwhile
return a;
</code></pre>
<p>Example: squareroot(70000)</p>
<pre><code> a b
1 70000
35001 2
17502 4
8753 8
4381 16
2199 32
1116 63
590 119
355 197
276 254
265 264
</code></pre>
<p>As you can see it defines an upper and a lower boundary for the square root and narrows the boundary until its size is acceptable.</p>
<p>There are more efficient methods but this one illustrates the process and is easy to understand.</p>
<p>Just beware to set the Errormargin to 1 if using integers else you have an endless loop.</p>
http://stackoverflow.com/questions/1593919/internal-error-on-delphi-2010-compiler-2010-urw1111-where-is-the-problem/1593933#15939331Answer by Gamecat for Internal Error on delphi 2010 Compiler 2010 URW1111. Where is the problem?Gamecat2009-10-20T11:24:59Z2009-10-20T11:24:59Z<p>Maybe <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=77575" rel="nofollow">http://qc.embarcadero.com/wc/qcmain.aspx?d=77575</a> is helpful. But a code sample would be nice.</p>
<p>When encountering internal errors, it is almost always a good idea to search the QC database. And if it is not listed yet, find the smalest possible sample that gives the error and file a bug report at QC.</p>
http://stackoverflow.com/questions/1593535/passing-static-arrays-as-parameters-for-dynamic-arrays-in-delphi/1593719#15937191Answer by Gamecat for Passing Static arrays as parameters for Dynamic arrays in DelphiGamecat2009-10-20T10:28:45Z2009-10-20T10:28:45Z<p>Dynamic arrays differ from normal arrays.</p>
<p>Dynamic arrays are pointers, while normal arrays are blocks of memory. With one dimensional arrays, you can use the address of the array. But with multi dimensional arrays this trick won't work.</p>
<p>In your case, I would use a file to initialize the array. So you can use dynamic arrays 100% of the time. Else you have to write your own conversion which kind of defeats the purpose of dymanic arrays.</p>
http://stackoverflow.com/questions/1587254/what-is-this-error-code-for/1587273#15872730Answer by Gamecat for What is this error code for?Gamecat2009-10-19T06:47:37Z2009-10-19T06:47:37Z<p>The error message is given because a source file is not found during compilation/linking. You nee to check the spelling of the names and the search paths.
And of course, check if the file is at the requested location.</p>
http://stackoverflow.com/questions/601544/how-translate-commercial-software-in-multi-languages/601561#6015610Answer by Gamecat for How translate commercial software in multi languages?Gamecat2009-03-02T07:49:40Z2009-10-18T04:36:34Z<p>There are professional technical translators. So that shouldn't be the problem. </p>
<p>We (the developers) provide for the English and the Dutch translation. The other languages are provided by professionals.</p>
http://stackoverflow.com/questions/1574308/hidden-features-of-x86-assembly-language/1574328#15743283Answer by Gamecat for Hidden features of x86 assembly language?Gamecat2009-10-15T18:56:46Z2009-10-15T18:56:46Z<p>Almost each processor has undocumented instructions and or registers. But they are often undocumented for a reason so its often not wise to use them.</p>
http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursion/1565006#156500614Answer by Gamecat for C: Looping without using looping statements or recursionGamecat2009-10-14T08:31:04Z2009-10-14T08:31:04Z<p>N is not fixed, so you can't unrole the loop. And C has no iterators as far as I know.</p>
<p>You should find something that mimics the loop. </p>
<p>Or thinking outside the box: </p>
<p>(for example N is limited to 1000, but it is easy to adapt)</p>
<pre><code>int f(int N) {
if (N >= 900) f100(100);
if (N >= 800) f100(100);
if (N >= 700) f100(100);
...
f100(n % 100);
}
int f100(int N) {
if (N >= 90) f10(10);
if (N >= 80) f10(10);
if (N >= 70) f10(10);
...
f(n % 10);
}
int f10(int N) {
if (N >= 9) func();
if (N >= 8) func();
if (N >= 7) func();
...
}
</code></pre>
http://stackoverflow.com/questions/1558319/rolling-a-10-sided-dice-versus-a-20-sided-dice-to-get-a-4-or-better/1558350#15583502Answer by Gamecat for Rolling a 10 sided dice versus a 20 sided dice to get a 4 or betterGamecat2009-10-13T05:33:45Z2009-10-13T05:39:58Z<p>In order to win, the first person has to roll 4 or higher. Or 70% win chance. The second person has to roll 8 or higher or 65% win chance. So the person with the ten sided dice had an advantage.</p>
<pre><code> Person B 1-7 8-20
Person A 35% 65%
-------------------------------------
1-3 30% | Both lose | B wins
| 10.5% | 19.5%
-------------------------------------
4-10 70% | A wins | Both win
| 24.5% | 45.5%
-------------------------------------
</code></pre>
http://stackoverflow.com/questions/1553332/form-action-doesnt-submit-hard-coded-variable/1553338#15533384Answer by Gamecat for Form action doesn't submit hard-coded variableGamecat2009-10-12T08:12:31Z2009-10-12T08:12:31Z<p>You should use an hidden input control to pass variables with a form.</p>
<pre><code><input type="hidden" name="myname" value="myvalue" />
</code></pre>
http://stackoverflow.com/questions/1524508/what-is-the-use-of-ftp-client/1524552#15245520Answer by Gamecat for What is the use of FTP client?Gamecat2009-10-06T09:32:30Z2009-10-06T09:32:30Z<p>We use an FTP client to up or download files to a FTP server.</p>
<p>I have used the command line FTP a lot in the past. Common errors where mistakes in binary/text transfer. But it worked.</p>
<p>I use a "modern" client now and it saves a lot of time.</p>
http://stackoverflow.com/questions/1519437/delphi-scope-of-custom-definitions/1519452#15194522Answer by Gamecat for Delphi - Scope of custom definitionsGamecat2009-10-05T11:11:05Z2009-10-05T11:11:05Z<p>The defines are local to the file. If you want them to be global, add them to the project options.</p>
http://stackoverflow.com/questions/1513751/automatically-add-character-into-php-scripts/1518984#15189844Answer by Gamecat for Automatically add "$" character into PHP scriptsGamecat2009-10-05T09:13:37Z2009-10-05T09:13:37Z<p>There is no way you can fix:</p>
<pre><code>$blah = "hello";
"blah blah blah $blah blah";
</code></pre>
<p>Without using an escape character. So you have to rewrite as:</p>
<pre><code>$blah = "hello";
"blah blah blah " . $blah . " blah";
</code></pre>
<p>But that goes against the feeling of php. And that reminds me of the pascal programmer who has problem using C and found the following solution:</p>
<pre><code>#define BEGIN {
#define END }
</code></pre>
<p>The morale of the story is to accept a language as it is. There are enough to chose from.</p>
http://stackoverflow.com/questions/1515940/learning-how-programming-languages-work/1515966#15159667Answer by Gamecat for Learning how programming languages workGamecat2009-10-04T08:55:20Z2009-10-04T08:55:20Z<p><strong>Code to execution in a nutshell</strong></p>
<p>A program (code) is fed into the compiler (or interpretor).</p>
<p>Characters are used to form tokens (+ , identifiers, numbers) and their value is stored in some thing called a symbol table.</p>
<p>These tokens are put together to form statements: (int a = 6 + b * c;). Mostly in the form of a syntax tree:</p>
<pre><code> =
/ \
/ \
a +
/ \
/ \
6 *
/ \
b c
</code></pre>
<p>Within an interpretor the tree is executed directly. </p>
<p>With a compiler, the tree is finally translated into either intermediate code or assembler code.</p>
<p>You now have one or more "object files". These contain the assembler code without the precise jumps (because these values are not known yet especially if the targets are in other object files).
The object files are linked together with a linker which fills in the blanks for the jumps (ans references). The output of the linker is a library (which can be linked too) or an executable file.</p>
<p>If you start the executable, the program data is copied into memory and there is some other link jugling to match the pointers with the correct memory locations. And then control is given to the first instruction.</p>
http://stackoverflow.com/questions/1513373/what-are-the-advantages-of-using-prolog-over-other-languages/1513395#15133952Answer by Gamecat for What are the advantages of using Prolog over other languages?Gamecat2009-10-03T10:09:25Z2009-10-03T10:09:25Z<p>Any other language is illogical captain.</p>
http://stackoverflow.com/questions/1508647/how-can-i-execute-certain-commands-on-a-separate-thread/1508682#15086824Answer by Gamecat for How can I execute certain commands on a separate thread?Gamecat2009-10-02T10:00:02Z2009-10-02T10:00:02Z<p>A relative safe way to communicate with threads is using command queues.</p>
<ul>
<li>The object post a request in the queue (using semaphores).</li>
<li>The tread checks the queue (using semaphores) and if it is filled executes the oldest request (you can
introduce priorities if you want).</li>
<li>If the task is finished, the object is signalled (for example with a callback function).</li>
</ul>
<p>The thread normally sleeps, and only awakes to check the queue. If there is nothing to do, it "presses the snooze button" and sleeps again.</p>
<p>Be sure to guard the access to the queue with semaphores. Else there is a chance of data corruption and you have a hard bug to find.</p>
http://stackoverflow.com/questions/1508204/how-can-i-share-a-linked-list-between-two-classes/1508227#15082272Answer by Gamecat for how can i share a linked list between two classesGamecat2009-10-02T07:57:33Z2009-10-02T07:57:33Z<p>If the linked list is maintained by class A. You should create an interface that can be used by class B.</p>
<p>I can think of:</p>
<ul>
<li>Add, to add to the linked list</li>
<li>Delete, to delete from the linked list</li>
<li>Replace, to replace an item</li>
<li>Lookup, to get an item from the list.</li>
<li>Length, to get the length of the list.</li>
</ul>
<p>And there are possibly more (like an iterator) but it should suit your needs.</p>
<p>An other option is to create it outside class A and B and pass it to the classes at construction.</p>
http://stackoverflow.com/questions/1781570/is-delphi-dead/1781622#1781622Comment by Gamecat on Is Delphi dead?Gamecat2009-11-24T09:54:20Z2009-11-24T09:54:20ZYes and no. They are releases 12 and 13, but they are also releases 1 and 2 of the post Borland period which is a huge difference.http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779477#1779477Comment by Gamecat on multiplication program using recursion(in C)Gamecat2009-11-23T08:27:19Z2009-11-23T08:27:19Zhm what about b <= 0 ;-)http://stackoverflow.com/questions/1761487/delphi-generics-and-is-operator-problem/1761699#1761699Comment by Gamecat on Delphi: generics and 'is'-operator problemGamecat2009-11-19T08:18:55Z2009-11-19T08:18:55ZIts no compiler bug. Its missing a typecast ;-). But I agree with the wrong tool comment.http://stackoverflow.com/questions/1751427/do-you-let-other-people-use-your-pcComment by Gamecat on Do you let other people use your PC?Gamecat2009-11-17T20:13:55Z2009-11-17T20:13:55ZWork: yes Home: No.http://stackoverflow.com/questions/1730913/gnuplot-cumulative-column-questionComment by Gamecat on Gnuplot Cumulative Column QuestionGamecat2009-11-13T18:13:24Z2009-11-13T18:13:24Z@Xofo, just add 4 spaces before each line and the characters are even spaced. There are more solutions, but this works ;-). And welcome to SO.http://stackoverflow.com/questions/1726210/working-with-delphi-and-access/1726218#1726218Comment by Gamecat on working with Delphi and AccessGamecat2009-11-12T23:54:06Z2009-11-12T23:54:06ZYes you can do that. But Delphi has data aware controls that access to any database table or query you like.http://stackoverflow.com/questions/1708253/well-established-scientific-truths-about-software-engineering/1708293#1708293Comment by Gamecat on Well-established scientific truths about software engineeringGamecat2009-11-10T14:18:53Z2009-11-10T14:18:53ZEven worse, if you have looked for an error for an hour or more, even a casual observer has higher probability to point to the mistake. Luckily you can turn the odds to take a break.http://stackoverflow.com/questions/1708253/well-established-scientific-truths-about-software-engineeringComment by Gamecat on Well-established scientific truths about software engineeringGamecat2009-11-10T14:17:30Z2009-11-10T14:17:30ZAny poll question should be community wiki ;-).http://stackoverflow.com/questions/1707977/bnf-grammar-derivation/1707998#1707998Comment by Gamecat on BNF Grammar DerivationGamecat2009-11-10T13:42:02Z2009-11-10T13:42:02ZAgreed, but he can add that himself, I just gave some basic example.http://stackoverflow.com/questions/1694565/is-there-any-way-to-create-a-interpreted-language/1694592#1694592Comment by Gamecat on Is There Any Way To Create a Interpreted Language?Gamecat2009-11-07T22:07:37Z2009-11-07T22:07:37ZJust one flaw, the initial value is not specified so big chance several compilers/interpretors give different results.http://stackoverflow.com/questions/1645615/what-is-the-use-of-brainfuck/1645625#1645625Comment by Gamecat on What Is The Use Of BrainfuckGamecat2009-10-29T18:28:47Z2009-10-29T18:28:47ZBriliant, a recursive existence, just like the universe. It is there so we can question why its's there ;-).http://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz/1638682#1638682Comment by Gamecat on Should entry level programmers be able to answer FizzBuzz?Gamecat2009-10-29T09:47:00Z2009-10-29T09:47:00ZThrowing staplers is not often a smart move during job interviews. But thanks for the warning, the next time I have to interview someone, I will wear a helmet.http://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz/1637998#1637998Comment by Gamecat on Should entry level programmers be able to answer FizzBuzz?Gamecat2009-10-29T09:44:56Z2009-10-29T09:44:56ZYou can always change the problem to A BlahBlip problem with 4 and 7 as interval times. That will fool those remembering known problems.http://stackoverflow.com/questions/1642350/delphi-setlength-on-argument-of-type-array-of-tobject/1642373#1642373Comment by Gamecat on Delphi: SetLength() on argument of type "array of TObject"Gamecat2009-10-29T08:57:25Z2009-10-29T08:57:25ZGood point. Corrected it.http://stackoverflow.com/questions/1642330/c-is-an-ancient-languageComment by Gamecat on C++ is an ancient language?Gamecat2009-10-29T08:51:45Z2009-10-29T08:51:45ZSome are more ancient then others.