User Lars D - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:50:35Z http://stackoverflow.com/feeds/user/53297 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1894983/why-use-exception-handling-in-apparently-safe-code/1895970#1895970 4 Answer by Lars D for Why use exception handling in apparently "safe" code? Lars D 2009-12-13T09:08:45Z 2009-12-13T09:08:45Z <p>I would write the code that way, for several reasons:</p> <p>1) By standardizing how memory allocations look, it is easy to inspect the source code to see if something is missing, without having to read all lines. Here, you just see the .Create, and notice that exception handling is good, so you don't have to read the part between try...except.</p> <p>2) By standardizing how you code memory allocations, you never forget to do it, even when necessary.</p> <p>3) If you would later change the source code, insert some code, change how .Add works, replace TStringList with something else, etc., then it would not break this code.</p> <p>4) It means that you don't have to think about whether TStringList.Add() will throw exceptions, or not, relieving your brain for other work that provides more value.</p> http://stackoverflow.com/questions/1876696/when-is-the-mvc-pattern-appropriate/1883712#1883712 0 Answer by Lars D for When is the MVC Pattern appropriate? Lars D 2009-12-10T20:16:53Z 2009-12-10T20:16:53Z <p>MVC pattern is useful if your application model fits the MVC model... it's that simple. However, if your user interface is built using the usability models of Søren Lauesen or similar, you would usually have multiple controllers for a single GUI etc. Also, if your user interface is seriously simple, MVC may be overkill. Performance requirements or programmer productivity may in some cases also make MVC less useful.</p> <p>There are some apps, for which MVC is a very good model, throughout. And there are some apps, where MVC doesn't make sense at all.</p> http://stackoverflow.com/questions/1879315/subversion-to-edit-or-not-to-edit-commit-comments/1879481#1879481 0 Answer by Lars D for Subversion: To edit or not to edit commit-comments Lars D 2009-12-10T08:29:52Z 2009-12-10T08:29:52Z <p>It all depends on how your comments are used. If your comments are essential documentation, you can consider to create a changelog og comments. When committing a new comment to the webserver, trigger that it makes a diff and appends that to a log. Then you have all the documentation that you need, in case somebody destroys vital comments, to restore them.</p> <p>You can also simply make all editing of comments trigger e-mails, so that everybody knows when a comment has been edited. If somebody does something that is not ok, just change it back.</p> http://stackoverflow.com/questions/1879427/are-there-any-way-to-use-delphi-inputbox-with-multiple-values/1879466#1879466 3 Answer by Lars D for Are there any way to use delphi inputbox with multiple values? Lars D 2009-12-10T08:27:20Z 2009-12-10T08:27:20Z <p>What exactly do you mean by "inputbox" - a TEdit? There are many different kinds of components for input, which can do many different things. For a name, TEdit is very good - but for time, you may want a calendar control, and for pressure you may want to use a control that looks great for numbers.</p> http://stackoverflow.com/questions/1876879/records-in-delphi/1879092#1879092 4 Answer by Lars D for Records in Delphi Lars D 2009-12-10T06:45:55Z 2009-12-10T06:45:55Z <p>One of the main benefits of records is, when you have a large "array of record". This is created in memory by allocating space for all records in one contiguous RAM space, which is extremely fast. If you had used "array of TClass" instead, each object in the array would have to be allocated by itself, which is slow.</p> <p>There has been a lot of work to improve the speed of allocating memory, in order to improve the speed of strings and objects, but it will never be as fast as replacing 100,000 memory allocations with 1 memory allocation.</p> <p>However, if you use array of record, don't copy the record around in local variables. That may easily kill the speed benefit.</p> http://stackoverflow.com/questions/1802492/100-billion-records-per-day-in-oracle-is-this-a-problem 2 100 billion records per day in Oracle - is this a problem? Lars D 2009-11-26T09:13:16Z 2009-11-26T09:35:52Z <p>A customer wants me to copy 100 billion records into an empty Oracle database. Almost all records have about 6 fields, only one of them is a varchar-field, and 99.99% of these varchar fields contain null values. He wants this to be done every day. What kind of Oracle server is needed for that, and are there any special things that I need to remember?</p> http://stackoverflow.com/questions/1779977/normalize-rotation-to-be-within-360/1780018#1780018 1 Answer by Lars D for normalize rotation to be within 360° Lars D 2009-11-22T21:11:57Z 2009-11-22T21:11:57Z <p>This will work for floating point angles:</p> <blockquote> <p>angle=angle-360*(Floor(angle) div 360)</p> </blockquote> <p>Floor finds the largest integer &lt;= the parameter, and div is an integer division, that returns an integer quotient, so that (-50 div 360)=-1</p> http://stackoverflow.com/questions/1746977/diff-between-application-transacation-scope-and-sql-server-transaction/1747013#1747013 0 Answer by Lars D for diff between application transacation scope and sql server transaction Lars D 2009-11-17T06:42:38Z 2009-11-17T06:42:38Z <p>A transaction is a combination of actions, that are either all done, or not done. This applies to both cases.</p> <p>For instance, an SQL Server transaction can be multiple SQL statemnets, which are either all executed, or none are executed.</p> <p>An application transaction may be multiple actions like: remove a button from the user interface, and add another button. Putting those two actions into an application transaction would ensure, that there is always one button present.</p> <p>Application transaction may include the execution of database transactions.</p> http://stackoverflow.com/questions/1746990/what-is-illegal-byte-code/1746998#1746998 0 Answer by Lars D for What is ILLegal Byte code ? Lars D 2009-11-17T06:36:59Z 2009-11-17T06:36:59Z <p>Source code is compiled to bytecode, which is distributed to users. If the bytecode has been damaged, or was not made by a java compiler, then it may be illegal, meaning that the bytes don't make sense.</p> http://stackoverflow.com/questions/1730926/determining-the-character-set-to-use/1731026#1731026 1 Answer by Lars D for determining the character set to use Lars D 2009-11-13T18:30:50Z 2009-11-13T18:30:50Z <p>Actually, I'm not sure about Delphi 2009, but MSDN says:</p> <blockquote> <p>Note that DEFAULT_CHARSET is not a real charset; rather, it is a constant akin to NULL that means "show characters in whatever charsets are available."</p> </blockquote> <p>So my guess is that you just need to remove all the code that you mentioned, and it should work.</p> http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi/1727514#1727514 2 Answer by Lars D for How to use argument in a cast with Delphi Lars D 2009-11-13T06:34:55Z 2009-11-13T06:34:55Z <p>It does not make sense to cast ComponentClass(Components[i]).Visible, because .Visible needs to be of a specific class, in order to be compiled properly. Therefore, you need to specify the exact class that should be cast to. For instance, if TControl has a .Visible property, but a derived class creates a new kind of .Visible property, the compiler would not know, which of these two properties it should compile for.</p> <p>So the question is, do you want to invert the TControl.Visible, then you should write (Components[i] as TControl).Visible. I guess that's what you want.</p> <p>If you want to invert the .Visible of any TControl descendent, no matter if it relates to the control being Visible or not, and no matter if it is related to TControl.Visible or not, then you should go for the RTTI solution described elsewhere.</p> http://stackoverflow.com/questions/1725319/explorer-is-locking-my-ie-plugin/1725385#1725385 0 Answer by Lars D for Explorer is locking my IE plugin Lars D 2009-11-12T21:03:33Z 2009-11-12T21:03:33Z <p>Rename the old file and write the new file.</p> http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1725262#1725262 0 Answer by Lars D for what happens to older software engineers? Lars D 2009-11-12T20:47:14Z 2009-11-12T20:47:14Z <p>Young programmers can be bad programmers, because their wage is low. When programmers get older, they usually try to get a better wage, and they can do that by:</p> <ul> <li>Becoming better at what they do</li> <li>Keep learning new stuff, becoming an allround expert</li> <li>Moving into other non-programming areas, combining their programming knowledge with other knowledge.</li> <li>Becoming irreplaceable for your boss</li> </ul> <p>The last solution is bad, really bad. One day you become replaceable, and if you didn't follow one of the first paths, your value is low. The first solution is a bit risky, but in some industries, it pays off really well.</p> <p>I have met many people who just improved on what they do. Some of them got fired, for instance, as a programmer of telephone exchanges, at the age of 55. They're really not good at much else, and often end up unemployed for a long time, eventually switching to something else with low pay. I also met those that continued until their late 60s doing such things, earning a shitload of money because it would take a group of people to do what their experience can do.</p> <p>The best insurance is to keep learning new stuff, either in programming, or outside programming. This way, you always have a choice on how to proceed.</p> http://stackoverflow.com/questions/1720601/deploying-webservice/1720657#1720657 0 Answer by Lars D for deploying webservice Lars D 2009-11-12T08:05:58Z 2009-11-12T08:05:58Z <p>Basically, any computer that runs TCP/IP can run a webservice, but your question should probably be rephrased to something like "I use COBOL for OS2200, how do I implement a webservice in that programming language?" As far as I see, COBOL, Fortrans, C and assembler are popular programming languages on OS2200.</p> http://stackoverflow.com/questions/1635273/postgres-vs-firebird/1720545#1720545 -1 Answer by Lars D for Postgres vs Firebird Lars D 2009-11-12T07:34:53Z 2009-11-12T07:34:53Z <p>One important thing is deployment:</p> <ul> <li>Firebird doesn't perform well with ext3 on Linux, you should use XFS or something similar.</li> <li>As far as I know, PostgreSQL still doesn't run on Windows servers.</li> </ul> http://stackoverflow.com/questions/1720287/how-do-i-redirect-values-from-a-php-page-to-another/1720313#1720313 1 Answer by Lars D for How do I redirect values from a PHP page to another? Lars D 2009-11-12T06:32:35Z 2009-11-12T06:37:43Z <p>If client A starts script B, and you want script B to make a POST request to script C, then you need to make script B communicate to script C. This cannot be done using Header(), because it communicates from B to A.</p> <p>Instead, you need to open a TCP connection to the webserver of script C, and then send the HTTP POST header in that direction. You can use fsockopen to create the connection, and then just send the headers using fwrite().</p> http://stackoverflow.com/questions/1720222/what-is-the-simplest-license-key-generator-i-can-develop-myself-in-1-day/1720291#1720291 1 Answer by Lars D for What is the simplest license key generator I can develop myself in 1 day? Lars D 2009-11-12T06:26:28Z 2009-11-12T06:26:28Z <p>Simplest license generator: An ini file with a seeded checksum, which contains customer name and info about which modules are enabled. It will be quite easy to break for a hacker, but for non-hacker, it's safe. The name must be visible in output from the app that is shown in public, so that other potential customers cannot use the license file.</p> http://stackoverflow.com/questions/1715348/google-chat-web-client/1717943#1717943 1 Answer by Lars D for google chat web client Lars D 2009-11-11T20:45:47Z 2009-11-11T20:45:47Z <p>It seems that you are looking for the Google Talkback badge:</p> <p><a href="http://www.google.com/talk/service/badge/New" rel="nofollow">http://www.google.com/talk/service/badge/New</a></p> <p>Note, that in order to use it with Google Apps for Domains, you need to disable the SSL option for your domain while creating the badge, you can reenable it afterwards.</p> http://stackoverflow.com/questions/1699748/what-is-the-difference-between-mov-and-lea-8086-microprocessor/1699771#1699771 3 Answer by Lars D for What is the difference between MOV and LEA [8086 Microprocessor] Lars D 2009-11-09T08:38:24Z 2009-11-09T08:38:24Z <p>If you only specify a literal, there is no difference. LEA has more abilities, though, and you can read about them here:</p> <p><a href="http://www.arl.wustl.edu/~lockwood/class/cs306/books/artofasm/Chapter%5F6/CH06-1.html#HEADING1-136" rel="nofollow">http://www.arl.wustl.edu/~lockwood/class/cs306/books/artofasm/Chapter%5F6/CH06-1.html#HEADING1-136</a></p> http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking/1699747#1699747 0 Answer by Lars D for How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks? Lars D 2009-11-09T08:31:33Z 2009-11-09T08:31:33Z <p>Use the Windows API to allocate the memory that the PChar pointer points into. Then, the VB app can deallocate the memory after use, using the Windows API, too.</p> http://stackoverflow.com/questions/1699426/how-to-progmatically-transfer-files-when-there-is-ftp-over-ssh/1699469#1699469 1 Answer by Lars D for How to progmatically transfer files when there is "FTP Over ssh" Lars D 2009-11-09T06:57:34Z 2009-11-09T06:57:34Z <p>There is a lot of documentation on Wikipedia, about the (non-)standard etc.:</p> <p><a href="http://en.wikipedia.org/wiki/SSH%5Ffile%5Ftransfer%5Fprotocol" rel="nofollow">http://en.wikipedia.org/wiki/SSH%5Ffile%5Ftransfer%5Fprotocol</a></p> <p>However, note that there are alternatives: You can remotely execute "ls" using ssh and you can use scp to copy files.</p> <p>If you really want to use sftp, my best guess for C# is to remote-control psftp.exe</p> http://stackoverflow.com/questions/1699442/how-to-fix-svn-path-to-dir-is-not-a-working-copy-directory/1699449#1699449 0 Answer by Lars D for how to fix svn: 'path/to/dir' is not a working copy directory Lars D 2009-11-09T06:53:30Z 2009-11-09T06:53:30Z <p>My best guess is that you need to step a level up in the directory hierarchy and then add the directory and the files from there, and commit from there.</p> http://stackoverflow.com/questions/1665613/how-to-create-a-system-with-1500-servers-that-deliver-results-instantaneously 4 How to create a system with 1500 servers that deliver results instantaneously? Lars D 2009-11-03T06:39:02Z 2009-11-08T21:38:45Z <p>I want to create a system that delivers user interface response within 100ms, but which requires minutes of computation. Fortunately, I can divide it up into very small pieces, so that I could distribute this to a lot of servers, let's say 1500 servers. The query would be delivered to one of them, which then redistributes to 10-100 other servers, which then redistribute etc., and after doing the math, results propagate back again and are returned by a single server. In other words, something similar to Google Search.</p> <p>The problem is, what technology should I use? Cloud computing sounds obvious, but the 1500 servers need to be prepared for their task by having task-specific data available. Can this be done using any of the existing cloud computing platforms? Or should I create 1500 different cloud computing applications and upload them all?</p> <p>Edit: Dedicated physical servers does not make sense, because the average load will be very, very small. Therefore, it also does not make sense, that we run the servers ourselves - it needs to be some kind of shared servers at an external provider.</p> <p>Edit2: I basically want to buy 30 CPU minutes in total, and I'm willing to spend up to $3000 on it, equivalent to $144,000 per CPU-day. The only criteria is, that those 30 CPU minutes are spread across 1500 responsive servers.</p> <p>Edit3: I expect the solution to be something like "Use Google Apps, create 1500 apps and deploy them" or "Contact XYZ and write an asp.net script which their service can deploy, and you pay them based on the amount of CPU time you use" or something like that.</p> <p>Edit4: A low-end webservice provider, offering asp.net at $1/month would actually solve the problem (!) - I could create 1500 accounts, and the latency is ok (I checked), and everything would be ok - except that I need the 1500 accounts to be on different servers, and I don't know any provider that has enough servers that is able to distribute my accounts on different servers. I am fully aware that the latency will differ from server to server, and that some may be unreliable - but that can be solved in software by retrying on different servers.</p> <p>Edit5: I just tried it and benchmarked a low-end webservice provider at $1/month. They can do the node calculations and deliver results to my laptop in 15ms, if preloaded. Preloading can be done by making a request shortly before the actual performance is needed. If a node does not respond within 15ms, that node's part of the task can be distributed to a number of other servers, of which one will most likely respond within 15ms. Unfortunately, they don't have 1500 servers, and that's why I'm asking here.</p> http://stackoverflow.com/questions/1665613/how-to-create-a-system-with-1500-servers-that-deliver-results-instantaneously/1697999#1697999 0 Answer by Lars D for How to create a system with 1500 servers that deliver results instantaneously? Lars D 2009-11-08T21:38:45Z 2009-11-08T21:38:45Z <p>I moved the question to serverfault.com.</p> http://stackoverflow.com/questions/1695971/does-wordnet-have-levels-nlp/1696133#1696133 1 Answer by Lars D for Does WordNet have "levels"? (NLP) Lars D 2009-11-08T11:46:47Z 2009-11-08T11:46:47Z <p>In order to get levels, you need to predefine the content of each level. An ontology often defines these as the immediate IS_A children of a specific concept, but if that is absent, you need to develop a method of that yourself.</p> <p>The next step is to put a priority on each concept, in case you want to present only one category for each word. The priority can be done in multiple ways, for instance as the count of IS_A relations between the category and the word, or manually selected priorities for each category. For each word, you can then pick the category with the highest priority. For instance, you may want meat to be "food" rather than chemical substance.</p> <p>You may also want to pick some words, that change priority if they are in the path. For instance, if you want some chemicals which are also food, to be announced as chemicals, but others should still be food.</p> http://stackoverflow.com/questions/1695922/representing-integers-as-a-byte/1695929#1695929 1 Answer by Lars D for Representing integers as a byte... Lars D 2009-11-08T10:02:47Z 2009-11-08T10:02:47Z <p>The message buffer is an array of char. Index 0 contains one char, so you cannot put 2 chars into one char. That would violate the rule that one bit contains one binary digit :-)</p> <p>The correct solution is to do this:</p> <blockquote> <p>messageBuffer[0]='0';</p> <p>messageBuffer[1]='1';</p> </blockquote> <p>or:</p> <blockquote> <p>messageBuffer[1]='0';</p> <p>messageBuffer[0]='1';</p> </blockquote> <p>or</p> <blockquote> <p>messageBuffer[0]=10;</p> </blockquote> http://stackoverflow.com/questions/1694545/floating-point-again/1694576#1694576 0 Answer by Lars D for Floating point again Lars D 2009-11-07T21:59:26Z 2009-11-08T09:57:11Z <p>Floating point is straightforward. Just always remember that there is an uncertainty component to all floating point operations and functions. It is usually modelled as being random, even though it usually isn't, but if you treat it as random, you'll succeed in understanding your own code. For instance:</p> <p>a=a/3*3;</p> <p>This should be treated as if it was:</p> <p>a=(a/3+error1)*3+error2;</p> <p>If you want an estimate of the size of the errors, you need to dig into each operation/function to find out. Different compilers, parameter choice etc. will yield different values. For instance, 0.09-0.089999 on a system with 5 digits precision will yield an error somewhere between -0.000001 and 0.000001. this error is comparable in size with the actual result.</p> <p>If you want to learn how to do floating point as precise as posible, then it's a study by it's own.</p> http://stackoverflow.com/questions/1694545/floating-point-again/1694567#1694567 -1 Answer by Lars D for Floating point again Lars D 2009-11-07T21:57:06Z 2009-11-07T21:57:06Z <p>Floating point is straightforward. Just always remember that there is a random uncertainty component to all floating point operations and functions. It may actually not be random, but if you treat it as random, you'll succeed. For instance:</p> <p>a=a/3*3;</p> <p>This should be treated as if it was:</p> <p>a=(a/3+randomvalue)*3+randomvalue;</p> <p>If you want to know the amount of randomness that is applied, you need to dig into each operation/function to find out. Different compilers, parameters etc. will yield different values.</p> <p>If you want to learn how to do floating point as precise as posible, then it's a study by it's own.</p> http://stackoverflow.com/questions/1694101/how-to-implement-connected-rooms/1694112#1694112 1 Answer by Lars D for How to implement connected rooms? Lars D 2009-11-07T19:20:30Z 2009-11-07T19:20:30Z <p>An array of rooms, and for each room a list of exits, with reference to the room that it leads to.</p> http://stackoverflow.com/questions/1693961/what-are-the-main-differences-between-all-the-mysql-engines/1693976#1693976 3 Answer by Lars D for what are the main differences between all the mysql engines? Lars D 2009-11-07T18:33:59Z 2009-11-07T18:33:59Z <p>They are very well described here:</p> <p><a href="http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html</a></p> <p>Use InnoDB, if you're in doubt. It is general-purpose and performs well.</p> http://stackoverflow.com/questions/54972/how-to-prevent-the-please-tell-microsoft-about-this-problem-dialog-boxes/54987#54987 Comment by Lars D on How to Prevent the "Please tell Microsoft about this problem" Dialog Boxes Lars D 2009-12-14T19:00:01Z 2009-12-14T19:00:01Z +1 because the link explains how to disable it for a single app http://stackoverflow.com/questions/1828654/programmer-friendly-search-engine/1886804#1886804 Comment by Lars D on Programmer-friendly search engine? Lars D 2009-12-11T09:33:45Z 2009-12-11T09:33:45Z Clusty just searches others, and your link does not find those special symbols. http://stackoverflow.com/questions/283281/how-long-has-estackoverflow-been-deprecated-and-what-replaces-it Comment by Lars D on How long has EStackOverflow been deprecated and what replaces it? Lars D 2009-12-10T11:39:54Z 2009-12-10T11:39:54Z I tried to google for stack overflow problems, and I got loads of links into stackoverflow.com... :-) but I did manage to find this one. http://stackoverflow.com/questions/1811654/delphi-2010-inlining-useless/1812011#1812011 Comment by Lars D on Delphi 2010 inlining useless?! Lars D 2009-11-28T11:14:47Z 2009-11-28T11:14:47Z Increasing the number of bytes required to run a certain algorithm, will also use up more the CPU cache. In rare cases this could also have an effect. http://stackoverflow.com/questions/1802492/100-billion-records-per-day-in-oracle-is-this-a-problem/1802522#1802522 Comment by Lars D on 100 billion records per day in Oracle - is this a problem? Lars D 2009-11-27T06:07:35Z 2009-11-27T06:07:35Z After a short discussion, this idea was abandoned and replaced with something much simpler. http://stackoverflow.com/questions/1802492/100-billion-records-per-day-in-oracle-is-this-a-problem/1802603#1802603 Comment by Lars D on 100 billion records per day in Oracle - is this a problem? Lars D 2009-11-26T11:54:19Z 2009-11-26T11:54:19Z I'm not sure that the customer knows the amount of data that is involved, but they are willing to spend money on it, so the question is more like: How expensive would it be. http://stackoverflow.com/questions/1802492/100-billion-records-per-day-in-oracle-is-this-a-problem Comment by Lars D on 100 billion records per day in Oracle - is this a problem? Lars D 2009-11-26T11:52:47Z 2009-11-26T11:52:47Z Just for clarification: the 100 billion records would be copied to an EMPTY database. I'm not planning to have more than 100 billion records in the database in total. The main reason for this, is that replication (only copying the changed records) is not an option. http://stackoverflow.com/questions/1802492/100-billion-records-per-day-in-oracle-is-this-a-problem/1802549#1802549 Comment by Lars D on 100 billion records per day in Oracle - is this a problem? Lars D 2009-11-26T10:10:23Z 2009-11-26T10:10:23Z The business requirement is simple: make the data in another database available on Oracle, each day. Optimization using replication is not an option, for other reasons. http://stackoverflow.com/questions/1776073/bash-for-filename-do/1776096#1776096 Comment by Lars D on Bash: For Filename do...... Lars D 2009-11-22T21:16:46Z 2009-11-22T21:16:46Z Reiler, remember to click the check-mark to this response, so that the system knows that it is the accepted answer. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/974209#974209 Comment by Lars D on What is your best programmer joke? Lars D 2009-11-15T08:11:54Z 2009-11-15T08:11:54Z I'd say that if the GC in Java worked correctly, most Java programs would disappear. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/244775#244775 Comment by Lars D on What is your best programmer joke? Lars D 2009-11-15T07:47:31Z 2009-11-15T07:47:31Z How does a frozen person expect something? http://stackoverflow.com/questions/1725319/explorer-is-locking-my-ie-plugin/1725385#1725385 Comment by Lars D on Explorer is locking my IE plugin Lars D 2009-11-13T14:19:48Z 2009-11-13T14:19:48Z In that case, you may need to use some kind of technique, which makes Windows do it on a reboot. But I cannot remember how to do that. http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1700676#1700676 Comment by Lars D on what happens to older software engineers? Lars D 2009-11-12T20:24:03Z 2009-11-12T20:24:03Z I hear that Microsoft as an organization generally focuses on short-term measurable results, so I am not surprised. http://stackoverflow.com/questions/1720458/gedcom-file-import-export-from-web-application Comment by Lars D on GEDCOM File import export from web application Lars D 2009-11-12T07:29:38Z 2009-11-12T07:29:38Z Are you programming language agnostic? I mean, is it ok for the code samples to be in assembler? ;-) http://stackoverflow.com/questions/1694545/floating-point-again/1694576#1694576 Comment by Lars D on Floating point again Lars D 2009-11-10T06:18:59Z 2009-11-10T06:18:59Z @Stephen and David: If I calculate 2.0/2.1 on a system with 15 digits precision, what is the error in the calculation? I would say some kind of unspecified value between 1e-15 and -1e-15. Maybe it is zero, maybe it is negative, and maybe it is 1e-15. I don't know. To me, it's just a small random number. I could make some investigations and find out, but usually I don't do that. I just assume that there is an error between -1e-15 and 1e15.