User Marco van de Voort - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:46:13Z http://stackoverflow.com/feeds/user/99354 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811654/delphi-2010-inlining-useless/1813754#1813754 0 Answer by Marco van de Voort for Delphi 2010 inlining useless?! Marco van de Voort 2009-11-28T20:51:54Z 2009-11-28T20:51:54Z <p>If I understood one of the FPC compiler devels (which has the same issue) correctly, inlining can only happen when the routine to be inline was already compiled.</p> <p>IOW if you make the unit with the inlined-to-be functions a "leaf" unit, and put it as first in the uses clause of your project (.dpr), it should be ok. Note that with "leaf" unit, I mean a unit that has no dependancy on other units in the project, iow only on already compiled units.</p> <p>I wouldn't be surprised it was the same in Delphi, since it shares an unit system based on the same principles.</p> <p>It is also pretty unfixable without violating separate compilation principles.</p> http://stackoverflow.com/questions/1813477/gui-only-by-using-fpc/1813726#1813726 1 Answer by Marco van de Voort for GUI Only By Using FPC Marco van de Voort 2009-11-28T20:37:17Z 2009-11-28T20:37:17Z <p>Use a widget set directly. Look at e.g. the examples in packages/gtk2 for unix, or the windows win32api usage demo. (demo\win32 in the FPC win32 installation)</p> <p>But not using lazarus makes you lose platform independance, and a lot of ease.</p> <p>Looking how lazarus does it, is still a possibility.</p> <p>A second option is <a href="http://www.msegui.org/" rel="nofollow">http://www.msegui.org/</a></p> http://stackoverflow.com/questions/1813262/is-apptype-a-best-pratice-comment/1813724#1813724 1 Answer by Marco van de Voort for Is $apptype a Best Pratice Comment? Marco van de Voort 2009-11-28T20:35:45Z 2009-11-28T20:35:45Z <p>Yes, but contrary to Delphi, in FPC console is default. Delphi has GUI default (*)</p> <p>Because the defaults vary between Delphi and FPC, it is a reasonable practice to add it, if there is a chance the code must run under Delphi.</p> <p>(*) strictly speaking not, since the console app flag can also be set using the cmdline. But while thus not 100% mandatory, it is smart to add it in 99.9% of the cases in Delphi.</p> http://stackoverflow.com/questions/1087983/definition-of-fix-up/1805997#1805997 0 Answer by Marco van de Voort for Definition of fix-up? Marco van de Voort 2009-11-26T22:43:59Z 2009-11-26T22:43:59Z <p>Linker and Loaders is an interesting inker resource that explains a lot of jargon, and includes non x86 cpus here and there too:</p> <p><a href="http://www.iecc.com/linker/" rel="nofollow">http://www.iecc.com/linker/</a></p> <p>from the comp.compilers moderator.</p> http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800129#1800129 1 Answer by Marco van de Voort for How Should I Implement a Huge but Simple Indexed StringList in Delphi? Marco van de Voort 2009-11-25T21:36:58Z 2009-11-26T11:07:13Z <p>If you more often need large datasets, and have some money to spare, simply stuff 16GB ( 500-750 Eur) in a machine, and make a separate process with some 64-bit compiler (*) of it that you query over e.g. shared mem or other IPC method.</p> <p>In that case you can use the in-memory approach till Delphi 64-bit finally comes out. Since your data seems to be simple ( a map from array of char to array of char) it is easily to export over IPC.</p> <p>This is of course if this approach has any merit for your case (like it is a cache or so), which I can't determine from your question.</p> <p>(*) I recommend FPC of course :-)</p> <p>I did this once, till about 5 million objects, 5 GB of data. </p> <p>I got permission to open source the container types I made for it, they are at:</p> <p><a href="http://www.stack.nl/~marcov/lightcontainers.zip" rel="nofollow">http://www.stack.nl/~marcov/lightcontainers.zip</a> (warning: very dirty code)</p> <p>mghie: to answer in another cliche: There is no silver bullet</p> <p>Databases have a lot of other assumptions too</p> <ul> <li>their generalized approach make relative inefficient use of memory. Most notably your dataset using normal memory storage techniques falls inside the affordable memory ranges, which are of course typically bigger for a server (my bad assumption here, apparantly) than for a client.</li> <li>databases assume that their resultsets can reduced to small sets within the database-server with a relative straight kind of processing, and assisted by indexing. </li> <li>they have a relatively high latency.</li> <li>they are relatively bad in some kinds of processing (like multidimensional analysis/ OLAP, which is why databases need to be extended for that)</li> </ul> <p>This makes databases relatively bad for use in e.g. caches, loadbalancers etc. Of course that is all provided that you need the speed. But the initial question felt a bit speed-sensitive to me.</p> <p>In a past job my function in an database oriented firm was to do everything but that, IOW fix the problems when the standard approach couldn't hack it (or required 4 socket Oracle servers for jobs where the budget didn't warrant such expenses). The solution/hack written above was a bit of OLAPpy, and connected to hardware (a rfid chipprogramming device), requiring some guaranteed response time. Two months of programming time, still runs, and couldn't even buy a windows server + oracle license for the cost.</p> http://stackoverflow.com/questions/1791831/moving-data-between-assembler-registers/1793397#1793397 2 Answer by Marco van de Voort for moving data between Assembler Registers Marco van de Voort 2009-11-24T22:33:30Z 2009-11-26T00:14:06Z <pre><code>mov ecx,319E40h // probably a value uniquely identifiying the classtype? call FF9A0AD4 // call a routine on it? puts result in eax probably mov dword ptr [ebp-44h],eax // save result(eax) to a localvariable mov ecx,dword ptr [ebp-44h] // reload the local parameter to ecx, probably // the reference to the new class instance. call FF9BB058 // some function on the instantiated class. mov eax,dword ptr [ebp-44h] // reload the reference mov dword ptr [ebp-40h],eax // store to another local variable. </code></pre> <p>So my guess is that the first routine called is the instantiation, and the ebp-40 is the worker variable. And that the second routine is something related to memory management, the constructor or something that needs to be done when assigning a reference. Mostly probably constructor. </p> <p>But as said this is just an educated guess. </p> http://stackoverflow.com/questions/1768929/which-embedded-microcontroller-platform-to-move-to/1800274#1800274 0 Answer by Marco van de Voort for Which embedded (microcontroller) platform to move to Marco van de Voort 2009-11-25T22:08:53Z 2009-11-25T22:14:17Z <p>I moved to 16-bit microchip dspic (I use dpic 33Fja64mc510 and mc804 as well as pic18F67j60 for a few smaller ethernet enabled devices)</p> <p>advantage:</p> <ul> <li>many ranges available from the same vendor, usable with same toolchain. (mplab/c30). combinable development boards and support offerings, all under the same roof. Since uc programming is only a sidebusiness for me (5-10% of the time), this is important to me.</li> <li>lots of periphery (2 uarts, 2 spi/i2c PMP, 6/8 timers etc).</li> <li>I had a need for quadrature encoder hardware.</li> <li>one chip solution for the most. No ram/flash etc needed. Crystal, uart + power and go. good for BOM.</li> <li>relatively high pincount devices available.</li> </ul> <p>disadvantage</p> <ul> <li>despite being on the roadmap for last summer originally, still no 16-bit chip with embedded ethernet.</li> <li>the high pincount MC Parts are not updated with some of the other recent goodies (RTC, peripheral pinselect). Which afaik also was originally on the roadmap.</li> </ul> <p>Somehow either crisis or PIC32 led to delays on the 16-bit lines.</p> http://stackoverflow.com/questions/1786846/building-a-gui-form-using-pascal/1789463#1789463 1 Answer by Marco van de Voort for Building a GUI Form Using Pascal Marco van de Voort 2009-11-24T11:24:43Z 2009-11-24T15:07:51Z <p>Ow. That's old. I did the same thing but slightly different tools.</p> <p>In years of yore, I managed to startup lazarus using FPC 1.0.10 on a IIci with NetBSD installed. FPC 1.0.x supported m68k.</p> <p>(while thinking about it, to be precise I ported FPC on the IIci with a 68030 50 MHz accelerator + FPU, and started/built lazarus only on a 840AV (68040/40)).</p> http://stackoverflow.com/questions/1784322/untyped-pointer-in-pascal/1785890#1785890 3 Answer by Marco van de Voort for Untyped Pointer in Pascal Marco van de Voort 2009-11-23T20:55:24Z 2009-11-24T11:23:07Z <p>In Borland family Pascal's, you can pass a typed pointer to a parameter of the untyped pointer type. IOW</p> <p>procedure test (x:pointer);</p> <p>will also accept pchar etc. This is particularly useful for lowlevel routines like e.g. a routine that moves data ( move() or searches a memory range for a certain value etc, compress a certain memory range etc).</p> <p>Some people also name pointer arithmetic as a reason, but e.g. Delphi allows that on pchar too.</p> <p>FPC and Delphi 2009+ even allow it on other types.</p> http://stackoverflow.com/questions/1749945/tutorial-for-pascal-delphi-for-c-coders/1786386#1786386 0 Answer by Marco van de Voort for Tutorial for Pascal/Delphi for C++-Coders Marco van de Voort 2009-11-23T22:07:27Z 2009-11-23T22:07:27Z <p>The Free Pascal documentation is another great resource:</p> <p><a href="http://www.freepascal.org/docs.var" rel="nofollow">http://www.freepascal.org/docs.var</a></p> http://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build/1745066#1745066 0 Answer by Marco van de Voort for Why does Delphi 2009 sometimes (more often that not) insist I build? Marco van de Voort 2009-11-16T21:46:29Z 2009-11-16T21:46:29Z <p>Did you install all updates?</p> http://stackoverflow.com/questions/1742900/tidhttp-in-indy-10/1743008#1743008 0 Answer by Marco van de Voort for TIdHTTP in Indy 10 Marco van de Voort 2009-11-16T15:45:23Z 2009-11-16T15:45:23Z <p>Iirc if the website redirects, you also need to override some handler (onredirect or so). But this was also the case in indy9 iirc.</p> http://stackoverflow.com/questions/1741938/problem-with-converting-delphi-form-to-lazarus/1742141#1742141 4 Answer by Marco van de Voort for Problem with converting Delphi form to Lazarus Marco van de Voort 2009-11-16T13:16:04Z 2009-11-16T14:29:28Z <p>Remove any stray {$R *.res} or {$R *.lrs} directives.</p> <p>2.2.x fpc/lazarus versions transform *.res files to .lrs files that are then included as structured constants. Adding *.res independantly produces this fail if included just below the implementation point, like in Delphi. The proper *.lrs inclusion point is in the initialization section. </p> <p>Only 2.4.x (RC1 is out) will have "real" resource support base on {$R *.res}. but that will probably take a few months to trickle through (0.9.30)</p> http://stackoverflow.com/questions/1721545/how-can-i-display-unicode-strings-while-debugging-on-linux/1721563#1721563 0 Answer by Marco van de Voort for How can I display Unicode strings while debugging on linux? Marco van de Voort 2009-11-12T11:25:54Z 2009-11-12T11:25:54Z <p>I assume you are under X ? Are the proper fonts installed?</p> <p>If on the console, are you using a framebuffer as terminal device? A VGA textmode mode can only show 256/512 chars max. (the 512 case iirc eating up a bit of the colorspace)</p> http://stackoverflow.com/questions/1720455/how-to-automate-perl-script-in-delphi/1720630#1720630 0 Answer by Marco van de Voort for How to automate perl script in Delphi? Marco van de Voort 2009-11-12T08:00:05Z 2009-11-12T08:00:05Z <p>Start rsh or whatever your unix windows is with the relevant arguments (perl interpreter + script location+name) using shellexecute?</p> http://stackoverflow.com/questions/1699860/what-is-the-best-way-to-convert-bytes-to-cardinal-and-vice-versa/1699926#1699926 1 Answer by Marco van de Voort for What is the best way to convert Bytes to Cardinal and vice versa Marco van de Voort 2009-11-09T09:18:39Z 2009-11-09T14:35:18Z <p>resp.</p> <p>result:=TByte4(Data);</p> <p>and result:=cardinal(data)</p> <p>This is not the same endianwise though (you are more or less implementing a host to little endian function and back above).</p> <p>Alternately, there is the union trick:</p> <pre><code> type TSomeRecord = packed record case boolean of true : (data4:TByte4); false :(dateabyte:cardinal); end; </code></pre> <p>But I assume .NET will barf on that too.</p> http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi/1700846#1700846 1 Answer by Marco van de Voort for Is There A Fast GetToken Routine For Delphi? Marco van de Voort 2009-11-09T13:00:00Z 2009-11-09T13:00:00Z <p>I'm not the person always blaming the algorithm, but if I look at the first piece of source, the problem is that for string N, you do the POS/posexes for string 1..n-1 again too.</p> <p>This means for N items, you do sum (n, n-1,n-2...1) POSes (=+/- 0.5*N^2) , while only N are needed.</p> <p>If you simply cache the position of the last found result, e.g. in a record that is passed by VAR parameter, you can gain a lot.</p> <p>type<br> TLastPosition = record elementnr : integer; // last tokennumber elementpos: integer; // character index of last match end; </p> <p>and then something</p> <p>if tokennum=(lastposition.elementnr+1) then begin newpos:=posex(delim,line,lastposition.elementpos); end;</p> <p>Unfortunately, I don't have the time now to write it out, but I hope you get the idea</p> http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking/1699943#1699943 1 Answer by Marco van de Voort for How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks? Marco van de Voort 2009-11-09T09:22:13Z 2009-11-09T09:22:13Z <p>Combining Sharptooth and Lars D's answer; aren't widestrings already allocated via windows and BSTR?</p> http://stackoverflow.com/questions/1651874/what-is-the-best-way-to-go-about-writing-a-simple-x86-assembler/1684155#1684155 0 Answer by Marco van de Voort for What is the best way to go about writing a simple x86 assembler? Marco van de Voort 2009-11-05T22:38:52Z 2009-11-05T22:38:52Z <p>Take NASM's tables, and try to implement the more basic instructions, using the tables for decoding</p> http://stackoverflow.com/questions/1668645/rtti-can-i-get-a-type-by-name/1668680#1668680 5 Answer by Marco van de Voort for RTTI: Can I Get a Type by Name? Marco van de Voort 2009-11-03T16:57:03Z 2009-11-03T16:57:03Z <p>No, generics are entirely compiletime.</p> http://stackoverflow.com/questions/1650934/cannot-get-the-remote-debugger-for-delphi-2007-to-work-correctly/1651025#1651025 1 Answer by Marco van de Voort for Cannot get the remote debugger for Delphi 2007 to work correctly? Marco van de Voort 2009-10-30T16:49:55Z 2009-10-30T16:49:55Z <p>What are the correct files? I assume both the .exe and .rsm file?</p> <p>(disclaimer: I only know remote debugging in D2009)</p> http://stackoverflow.com/questions/791533/why-do-you-program-in-assembly/838778#838778 2 Answer by Marco van de Voort for Why do you program in assembly? Marco van de Voort 2009-05-08T08:23:59Z 2009-10-25T21:27:19Z <p>I've three or four assembler routines (in about 20 MB source) in my sources at work. All of them are <a href="http://en.wikipedia.org/wiki/SSE2" rel="nofollow">SSE(2)</a>, and are related to operations on (fairly large - think 2400x2048 and bigger) images.</p> <p>For hobby, I work on a compiler, and there you have more assembler. Runtime libraries are quite often full of them, most of them have to do with stuff that defies the normal procedural regime (like helpers for exceptions etc.)</p> <p>I don't have any assembler for my microcontroller. Most modern microcontrollers have so much peripheral hardware (interrupt controled counters, even entire <a href="http://en.wikipedia.org/wiki/Rotary%5Fencoder" rel="nofollow">quadrature encoder</a>s and serial building blocks) that using assembler to optimize the loops is often not needed anymore. With current flash prices, the same goes for code memory. Also there are often ranges of pin-compatible devices, so upscaling if you systematically run out of cpu power or flash space is often not a problem</p> <p>Unless you really ship 100000 devices and programming assembler makes it possible to really make major savings by just fitting in a flash chip a category smaller. But I'm not in that category.</p> <p>A lot of people think embedded is an excuse for assembler, but their controllers have more CPU power than the machines <a href="http://en.wikipedia.org/wiki/Unix" rel="nofollow">Unix</a> was developed on. (Microchip coming with 40 and 60 <a href="http://en.wikipedia.org/wiki/Instructions%5Fper%5Fsecond#Million%5Finstructions%5Fper%5Fsecond" rel="nofollow">MIPS</a> microcontrollers for under <a href="http://en.wikipedia.org/wiki/United%5FStates%5Fdollar" rel="nofollow">USD</a> 10). </p> <p>However a lot people are stuck with legacy, since changing microchip architecture is not easy. Also the HLL code is very architecture dependent (because it uses the hardware periphery, registers to control I/O, etc). So there are sometimes good reasons to keep maintaining a project in assembler (I was lucky to be able to setup affairs on a new architecture from scratch). But often people kid themselves that they really need the assembler.</p> http://stackoverflow.com/questions/1579909/memory-profiling-tool-for-delphi/1580616#1580616 0 Answer by Marco van de Voort for Memory profiling tool for Delphi? Marco van de Voort 2009-10-16T21:47:54Z 2009-10-16T21:47:54Z <p>In addition to the others: Before I switched to D2006+ (and started using fastmm) I used AQTime's free memproof. It has some issues but it is workable.</p> http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1574972#1574972 2 Answer by Marco van de Voort for How to hunt a Heisenbug Marco van de Voort 2009-10-15T20:49:19Z 2009-10-15T20:56:01Z <p>If it Delphi businesscode, with dataaware components etc, the follow might not apply.</p> <p>I'm however writing machine vision code which is a bit computational. Most of the unittests are console based. I also am involved with FPC, and over the years have tested a lot with FPC. Partially out of hobby, partially in desperate situations where I wanted any hunch.</p> <p>Some standard tricks that I tried (decreasing usefulness)</p> <ol> <li>use -gv and valgrind the code (practically this means applications are required to run on Linux/FreeBSD. But for computational code and unittests that can be doable)</li> <li>compile using fpc param -gt (=trash local vars, randomize local vars on procedure init)</li> <li>modify heapmanager to randomize data of blocks it puts out (also applyable to Delphi code)</li> <li>Try FPC's range/overflow checking and compiler hints.</li> <li>run on a Mac Mini (powerpc) or win64. Due to totally different rules and memory layouts it can catch pretty funky things.</li> </ol> <p>The 2 and 3 together nearly allow you to find most, if not all initialization problems.</p> <p>Try to find any clues, and then go back to Delphi and search more focussed, debug etc.</p> <p>I do realize this is not easy. I have a lot of FPC experience, and didn't have to find everything out from scratch for these cases. Still it might be worth a try, and might be a motivation to start setting up non-visual systems and unittests FPC compatible and platform independant. Most of this work will be needed anyway, seeing the Delphi roadmap. </p> http://stackoverflow.com/questions/1542571/how-to-open-a-chm-help-file-from-another-chm-help-file/1574804#1574804 0 Answer by Marco van de Voort for How to open a CHM help file from another CHM help file Marco van de Voort 2009-10-15T20:22:22Z 2009-10-15T20:22:22Z <p>Besides the link Aaron mentioned, there is also something like master/slave chms, which is a deeper integration of CHMs:</p> <ul> <li><a href="http://www.helpware.net/htmlhelp/how%5Fto%5Fmerge%5Fctx2.htm" rel="nofollow">http://www.helpware.net/htmlhelp/how%5Fto%5Fmerge%5Fctx2.htm</a></li> <li><a href="http://www.helpware.net/htmlhelp/how%5Fto%5Fmerge.htm" rel="nofollow">http://www.helpware.net/htmlhelp/how%5Fto%5Fmerge.htm</a></li> </ul> http://stackoverflow.com/questions/1557613/what-can-cause-svn-update-to-merge-incorrectly/1560920#1560920 0 Answer by Marco van de Voort for What can cause SVN Update to merge incorrectly? Marco van de Voort 2009-10-13T15:20:20Z 2009-10-13T15:20:20Z <p>Are you working on multiple platforms? Are you using editors that assume Unix lineendings (like some cygwin tools?)</p> <p>If so, check if you configured the eol-style property properly.</p> http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1551204#1551204 3 Answer by Marco van de Voort for Delphi - most successful applications developed Marco van de Voort 2009-10-11T17:23:34Z 2009-10-11T18:59:27Z <p>While not in Delphi itself, of course Free Pascal and Lazarus (and all the little stuff in their projects) prove the Delphi concepts and their portability</p> <p>This because they are written in themselves, which is roughly based on Delphi principles</p> http://stackoverflow.com/questions/1548100/any-build-in-delphi-function-like-posex-that-finds-a-sub-string-starting-from-the/1551215#1551215 1 Answer by Marco van de Voort for Any build-in Delphi function like PosEx that finds a sub-string starting from the back of the string? Marco van de Voort 2009-10-11T17:28:44Z 2009-10-11T17:28:44Z <p>I use the RPOS variants from Free Pascal's strutils function:</p> <p><a href="http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/rtl/objpas/strutils.pp?view=markup" rel="nofollow">http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/rtl/objpas/strutils.pp?view=markup</a></p> <p>the string,string version is nearly the same as Deltics', but there are variants:</p> <p><code></p> <p>Function RPosEX(C:char;const S : AnsiString;offs:cardinal):Integer; overload;<br> Function RPosex (Const Substr : AnsiString; Const Source : AnsiString;offs:cardinal) : Integer; overload;<br> Function RPos(c:char;const S : AnsiString):Integer; overload;<br> Function RPos (Const Substr : AnsiString; Const Source : AnsiString) : Integer; overload; </code></p> <p>They are licensed unde FPC's LGPL+linking exception license, but since I wrote them, I hereby release them under BSD license.</p> http://stackoverflow.com/questions/1459775/does-any-dialect-of-pascal-allow-a-variable-number-of-arguments/1520741#1520741 0 Answer by Marco van de Voort for Does any dialect of Pascal allow a variable number of arguments? Marco van de Voort 2009-10-05T15:22:00Z 2009-10-05T15:22:00Z <p>GNU-Pascal (gcc based) afaik maps 1:1 to C support. using function something(arg:pchar;...) like syntax</p> <p>Delphi/Free Pascal has "array of const" support, which is a typesafe version, and a varargs directive for the C interfacing (D6 or D7+) </p> http://stackoverflow.com/questions/1519437/delphi-scope-of-custom-definitions/1519661#1519661 1 Answer by Marco van de Voort for Delphi - Scope of custom definitions Marco van de Voort 2009-10-05T12:00:47Z 2009-10-05T12:00:47Z <p>Another solution is to have an includefile and include it in all units and the .dpr.</p> <p>This solution is more delphi version independant.</p> <p>If your defines are related to Delphi versioning, check out <a href="http://www.stack.nl/~marcov/porting.pdf" rel="nofollow">http://www.stack.nl/~marcov/porting.pdf</a> for some tips how to setup a systematic structure in your defines.</p> http://stackoverflow.com/questions/1819180/delphi-call-dll-with-function-pointer-parameter/1819419#1819419 Comment by Marco van de Voort on (Delphi) Call DLL with function pointer parameter Marco van de Voort 2009-11-30T13:14:09Z 2009-11-30T13:14:09Z +1 original diagnosis is correct I think, the second code dragment is still wrong I think, it still uses dyn arrays while communicating with C http://stackoverflow.com/questions/1176138/assembly-vs-assembler Comment by Marco van de Voort on "Assembly" vs. "Assembler" Marco van de Voort 2009-11-26T22:48:57Z 2009-11-26T22:48:57Z Personally I think it went wrong when the term &quot;National Assembly&quot; was introduced during the French revolution :-) http://stackoverflow.com/questions/1651874/what-is-the-best-way-to-go-about-writing-a-simple-x86-assembler/1651920#1651920 Comment by Marco van de Voort on What is the best way to go about writing a simple x86 assembler? Marco van de Voort 2009-11-26T22:47:03Z 2009-11-26T22:47:03Z Not even compilers. It's more parsers. The other parts get one chapter max. http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800129#1800129 Comment by Marco van de Voort on How Should I Implement a Huge but Simple Indexed StringList in Delphi? Marco van de Voort 2009-11-26T22:10:41Z 2009-11-26T22:10:41Z In this case not I guess (though I'd have to rewind the original question to which I originally replied). I was hacking synedit late at night when I replied it, and I was frustrated. I assume you know the feeling :-) http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1799673#1799673 Comment by Marco van de Voort on How Should I Implement a Huge but Simple Indexed StringList in Delphi? Marco van de Voort 2009-11-26T22:02:45Z 2009-11-26T22:02:45Z Here are my FPC bindings btw <a href="http://www.stack.nl/~marcov/bdb.zip" rel="nofollow">stack.nl/~marcov/bdb.zip</a> http://stackoverflow.com/questions/1763954/c-pascals-triangle Comment by Marco van de Voort on C++ Pascal's triangle Marco van de Voort 2009-11-26T14:38:02Z 2009-11-26T14:38:02Z Removed Pascal tag. Not Pascal language related. http://stackoverflow.com/questions/1791831/moving-data-between-assembler-registers/1791874#1791874 Comment by Marco van de Voort on moving data between Assembler Registers Marco van de Voort 2009-11-26T11:09:27Z 2009-11-26T11:09:27Z That's not the problem. The whole need for ebp-44 is the question. Why doesn't it use ebp-40 throughout the block and save the instructions? It is more likely related to what happens if the constructor yields an exception. http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800129#1800129 Comment by Marco van de Voort on How Should I Implement a Huge but Simple Indexed StringList in Delphi? Marco van de Voort 2009-11-26T10:53:20Z 2009-11-26T10:53:20Z lkessler: If it is for an user app, forget it. mghie: I need to have more room to comment on you, I'll do that in the post. http://stackoverflow.com/questions/1768929/which-embedded-microcontroller-platform-to-move-to/1772128#1772128 Comment by Marco van de Voort on Which embedded (microcontroller) platform to move to Marco van de Voort 2009-11-25T22:13:04Z 2009-11-25T22:13:04Z compiler is different. 8-bit PIC is not gcc based afaik, 16 and 32-bit lines are. Though it doesn't matter much in practice. Recycling programmer and debugger HW is a minor benefit too. But of course that only makes sense if you like the device. http://stackoverflow.com/questions/1343918/code-that-causes-physical-effects-in-hardware/1511358#1511358 Comment by Marco van de Voort on Code that causes physical effects in hardware? Marco van de Voort 2009-11-25T22:01:03Z 2009-11-25T22:01:03Z Strictly speaking wiping flash is still software. http://stackoverflow.com/questions/1789741/delphi-64-bit-preview-compiler-available/1790992#1790992 Comment by Marco van de Voort on Delphi 64-bit Preview Compiler available? Marco van de Voort 2009-11-24T20:30:53Z 2009-11-24T20:30:53Z While COM has improved significantly in the last months, it is probably not up to snuff enough for Office integration. http://stackoverflow.com/questions/1666048/how-to-do-oop-with-pascal/1666069#1666069 Comment by Marco van de Voort on How to do OOP with Pascal? Marco van de Voort 2009-11-23T22:05:50Z 2009-11-23T22:05:50Z -1 Pretty pathetic. Despite all the cloud, Python jobs are not exacty easy to find either. Delphi is way easier. http://stackoverflow.com/questions/1666048/how-to-do-oop-with-pascal/1666119#1666119 Comment by Marco van de Voort on How to do OOP with Pascal? Marco van de Voort 2009-11-23T22:03:32Z 2009-11-23T22:03:32Z All Object Pascal is a non-standard extension. The object Pascal draft was never ratified. http://stackoverflow.com/questions/1784023/large-dynamic-array-slow-writing/1784062#1784062 Comment by Marco van de Voort on Large dynamic array - slow writing Marco van de Voort 2009-11-23T16:45:16Z 2009-11-23T16:45:16Z fastmm will hide it a bit, maybe 100% faster, but if you go another magnitude 2, that will be gone already. Better rethink your structure http://stackoverflow.com/questions/848025/rotating-bitmaps-in-code/849111#849111 Comment by Marco van de Voort on rotating bitmaps. In code. Marco van de Voort 2009-11-15T16:44:44Z 2009-11-15T16:44:44Z The problem with such libraries is that the transformation of the format you have to the format the library uses, is usually already in the magnitude of the possible gain.