Slashdot Mirror


Dan Bricklin on Software That Lasts 200 Years

Lansdowne writes "Dan Bricklin, author of VisiCalc, has written a great new essay identifying a need for software that needs to last for decades or even centuries without replacement. Neither prepackaged nor custom-written software is fully able to meet the need, and he identifies how attributes of open source might help to produce long-lasting 'Societal Infrastructure Software'."

104 of 359 comments (clear)

  1. Work on the hardware first. by dosun88888 · · Score: 4, Insightful

    I think the subject line says it all. You can't worry about your software working for that long until your hardware can last that long.

    ~D

    1. Re:Work on the hardware first. by Keruo · · Score: 4, Funny

      we have the hardware, paper and pen only problem is that the software, human generally dies of old age around 70-100 years I haven't yet seen custom-written software from this field, but some re-packaged with silicone enhancemets did catch my eye

      --
      There are no atheists when recovering from tape backup.
    2. Re:Work on the hardware first. by Deag · · Score: 5, Informative

      Well Dan Bricklin does point out that software of today can run on different hardware and having software tied to specific hardware is a bad idea.

      He says that the system should stay fundamentaly the same and components can be replaced and upgraded, not having everything replaced completely every five years.

      He is not just talking about one specific program that doesn't change, but rather open standards and techniques that mean data that is stored today, will be accessible in 200 years time.

    3. Re:Work on the hardware first. by julesh · · Score: 3, Insightful

      Well Dan Bricklin does point out that software of today can run on different hardware and having software tied to specific hardware is a bad idea

      Software of today can run on a variety of different hardware, but there is a degree of similarity between the different types of hardware that probably won't exist between todays computers and those available a hundred years from today, much less two.

      He is not just talking about one specific program that doesn't change, but rather open standards and techniques that mean data that is stored today, will be accessible in 200 years time.

      That, on the other hand, I can agree with. Anyone storing information in a format that isn't publically documented really ought to consider whether they'll still need it in 30 years time, and start migrating it to an open format now if they will. However, there are very few formats that are completely undocumented. I believe the most commonly used might be Microsoft Access databases. I'm not sure what documentation exists on the formats of various other commercial database systems; I believe Oracle's formats are well documented (?). What about MSSQL? Informix?

      Most accounts packages have documentation available on their database formats I believe. Certainly Sage and Pegasus provide such documentation. What about Great Plains, etc.?

    4. Re:Work on the hardware first. by 2Bits · · Score: 2, Interesting

      Well, hardware can be worn out, but you can replace it, component by component, as he has suggested.

      The problem with software is, as long as there is proprietory formats (or if you don't have the source codes), you can forget about what he calls "societal infrastructure software". If the government is thinking about being able to retrieve its data 50 years from now, better enforce that an open data format be used in your application, right now, and with clean and precise documentation. That means, no MS Word format, or something.

      To extend that, the database files would be troublesome too. Anyone knows the internal structure of the Oracle database files?

      My first job, out of school, and the first day on site, was to crack some database files of a system of a dead vendor. And there's no API (was in the early 90s), coz it's some PC software. The company has its customer info and accouting info in that DB, and must migrate it to another system which was still alive. There were about 300K records of all kinds, and no way to retrieve the data, except display them one by one, then copy it to another system. The alternative is to print out the whole thing, and re-enter in the new system. The system was critical to the company, but it has some serious bugs, but no one is going to fix.

      What are you going to do with that? Well, good thing I was fresh out of school, and learned my data structures well, and the files are not encrypted. After one day of cracking, I figured it was some weirdo B+tree plus some kind of trie, and some more acrobatic tree structures and pointers pointing to all directions (probably for indexing or fast access). Another day to figure out enough of info, and by looking at the relationship in the application, to retrieve the data from that dead system.

      That was easy enough. But if I were to brute-force retrieve from Oracle, that would be another thing.

      Governments can enforce that vendors must provide proper documentation of their software data formats before a deal is struck, especially if the system is going to run national infrastructures, such as IRS, etc. Especially when the system costs in the hundred of millions (if not billions), why don't they enforce that? I would be multibillionaire if I knew the answer.

    5. Re:Work on the hardware first. by Anonymous Coward · · Score: 2, Insightful

      Whole point? Umm.. no.

      Side benefit? Yes.

    6. Re:Work on the hardware first. by warrax_666 · · Score: 2, Interesting
      [...] mean data that is stored today, will be accessible in 200 years time.

      and a huge part of this is hardware support and, interestingly enough, storage bandwidth. You see, you have to migrate data from obsolete hardware/media to newer hardware/media, but in the near future the amount of data stored on obsolete hardware/media may become too large to transfer to newer hardware/media before it dies/decays/whatever, simply because the throughput of the transfer mechanism is too low.
      --
      HAND.
    7. Re:Work on the hardware first. by Simon+Brooke · · Score: 4, Interesting
      Software of today can run on a variety of different hardware, but there is a degree of similarity between the different types of hardware that probably won't exist between todays computers and those available a hundred years from today, much less two.

      When I was a young programmer, I was shown a water quality analysis program used by an English water authority that some colleagues of mine at ICL were particularly proud of. Not that they'd written it. It was running on an ICL 2900 series mainframe running VME. But the software wasn't written for a 2900 series, so it actually ran on ICL 1900 emulator, running MOPS. But the software didn't run on a 1900 series, so the emulated 1900 was running an emulator of an older English Electric computer whose designation I've forgotten. But the software wasn't written for the English Electric computer, so the English Electric emulator running on the the 1900 emulator running on the 2900 was running an emulator of the world's first commercial computer, LEO, for which the software was actually written.

      When I saw this program in 1985 it was already thirty years old; it was still being used because it was still useful. If it is still in use it will be fifty years old, and (as 2900s are now very rare) is probably running under a further layer of emulation on an x86.

      Any Turing equivalent machine can, in principle, emulate any other Turing equivalent machine. Of course, true Turing equivalence requires unlimited memory, so in practical terms it's only possible to emulate machines which have less memory than the machine that's doing the emulating. But it's reasonable to suppose that the machines of 100 years in the future will have at least as much horsepower and at least as much memory as the machines of today. So they will be able to emulate the machines of today.

      A program written today may not be able to fully exploit the user interface features of a machine of two hundred years hence, any more than a BBC emulator can exploit the full graphics resolution of a modern workstation. But what a modern workstation can do is a superset of what the BBC Micro could do, so it can be emulated without compromise.

      In other words, hardware compatibility is a non-issue in making software which will last and which will remain useful.

      --
      I'm old enough to remember when discussions on Slashdot were well informed.
    8. Re:Work on the hardware first. by WillWare · · Score: 3, Insightful
      Lots of software includes or utilizes standardized hardware abstraction layers. Think about the POSIX standard, or the virtual machines for Java or Python or Common Lisp. These abstraction layers mean that large amounts of code are portable (sometimes with some effort, sometimes with none) across any hardware platform that supports the abstraction layer.

      Hardware manufacturers will always have a powerful incentive to support the abstraction layer, because by doing so, they'll instantly pick up a huge set of killer apps for their new CPUs. Standardized abstraction layers therefore provide an economically efficient way to divide the labor of porting software to new platforms.

      Are you thinking that in order to have software that's useful in the long term, it must run continuously on exactly the same piece of hardware? Think about Google (a very useful thing in our society). They must be bringing newer, faster computers on-line all the time. But if they're not total boneheads, they don't need to rewrite all their code to do this.

      --
      WWJD for a Klondike Bar?
    9. Re:Work on the hardware first. by 1u3hr · · Score: 2, Insightful
      You can't worry about your software working for that long until your hardware can last that long.

      I'm using software that orignally ran on an 8086, then a 286, the a 486, then two or three generations of Pentiums. The whole point is that hardware dies, software doesn't. Not to mention the bunch of Unix-derived software that I run as DOS or Linux apps, essentially unchanged for almost 30 years, though the hardware on my desk is more powerful than the whole server room at the university I learnt it on, and I doubt has a single commmon piece of hardware.

      If you'd RTFA: "Today, hardware is capable enough that software can be written that will continue to run unmodified as hardware is changed." Consider, perhaps, all the games people play in emulators like MAME.

    10. Re:Work on the hardware first. by Travis+Fisher · · Score: 2, Insightful
      As has been pointed out elsewhere in this thread, one way around this problem is to use hardware which can be emulated in other hardware. The problem with this approach is that if you want to assume that a perfect emulator of your hardware will always be available you need to use highly standardized hardware. With the commoditized hardware of today its a stretch to imagine perfect emulation for any given component besides maybe the CPU. In the personal computing world, the closest to perfect emulation of an old machine is for something like the commodore 64, where modern emulators are close to bug-for-bug support of every chip in the machine, including video and i/o. In the x86 world emulators aren't close to that level of approximation.

      So the next thing you might consider is a program which doesn't depend that much on the hardware details, but uses a well-defined interface between its execution and the hardware. This "well-defined interface" is precisely what a modern operating system provides. This next level of abstraction means that you don't have to anticipate exact emulation of hardware, just emulation of hardware sufficient to run the OS and also provision of drivers for the OS to interface with either emulated or physical hardware (like video cards, disk drives, etc.) This potentially requires a lot of things to be updated in a nontrivial way for even small changes in the host platform, not very good.

      I would suggest the best way to get software that could be run for 200+ years is for it to be written for a particular virtual machine. The code for both the software and the virtual machine should be open source (so long-term portable and fixable), and the virtual machine should be very well-defined and not subject to version changing. The virtual machine software should also be cross-platform today so it is easier to port to tomorrows platforms. Java is close to the right idea, but it doesn't have a single virtual machine well-enough defined across various implementations and versions, nor is it open source.

      So why is it better to have a virtual machine written in say C which has to be ported to each new hardware/OS combination rather than having the base application written in C and ported to each new hardware/OS combination? The economy of scale. The virtual machine should have many users who will participate in the port and check for bugs. Then each coroporation/municipality/whoever who wants to run long-term stable code doesn't have to do this porting for themselves. For software which uses minimal I/O (no graphics whatsoever, only stdin/stdout) it probably would make more sense to keep the software in C and port it. But otherwise I/O isn't standard enough without a virtual machine...

    11. Re:Work on the hardware first. by rjstanford · · Score: 2, Insightful

      Governments can enforce that vendors must provide proper documentation of their software data formats before a deal is struck, especially if the system is going to run national infrastructures, such as IRS, etc. Especially when the system costs in the hundred of millions (if not billions), why don't they enforce that? I would be multibillionaire if I knew the answer.

      Well, for large scale data apps, it is available. Heck, I've taken courses in both Informix and Oracle internal structures - in memory and on disk. The information is certainly useful to have in rare but uncomfortable-when-they-happen situations. So not only are the structures (semi)-public, but there is a pool of people who can help you if you need the help. Also, a lot of major companies use source-code escrow in case they ever fold, with automatic release clauses in their larger contracts. This is not an unknown problem these days.

      --
      You're special forces then? That's great! I just love your olympics!
    12. Re:Work on the hardware first. by jc42 · · Score: 2, Interesting

      You can't worry about your software working for that long until your hardware can last that long.

      Oh, nonsense. Consider the well-known "Hello, world." program in the K&R C "bible". It's been around 30 years or so, and the hardware they were working on now only exists in a few museums. But that program is still in routine use on millions off computers.

      Note also that K&R included not only the code for the program, but the commands to compile and execute it. They correctly pointed out that this information covered the initial implementation details in most software, and once you had it working on a new system, you had soved the major problems in getting any software running on the new system.

      And note that, after more than a quarter century, their sample code to compile and execute this valuable little program still work on millions of computers, without changing a single character.

      Funny thing is, you can't say this about the equivalent programs in most other languages. I've seen attempts to do the same (code + compile if needed + invocation) for any number of other languages and OSs, but I've seen very few successes. Usually code that's only 10 years old will need tweaks. But if you have a standard-compliant (ANSI) compiler and a standard-compliant (POSIC) OS, you can type in this standard program using any editor, type in the compile command to any shell, and type in the invocation to that shell, and see the expected greeting appear on whatever "terminal" hardware you are using.

      I'll bet that this little program will still be around and will still work 200 years from now. Even that bizarre "a.out" name, though I expect that using "-o hello" in the cc command will also work as it did in 1975. (And the program will still have the same subtle bug as the original did. ;-) I wish I could be around then to be proved right or wrong.

      But so far, the signs are that this won't be true for many programming languages or OSs. The idea that code should be reliable in the long run seems to be something that's beyond the comprehension of few language or OS implementers.

      --
      Those who do study history are doomed to stand helplessly by while everyone else repeats it.
    13. Re:Work on the hardware first. by mcrbids · · Score: 2, Insightful

      You can't worry about your software working for that long until your hardware can last that long.

      Bzzzzzzt! I call Bullshit...

      The C programming language has been with us 30 years. Most of the non machine-specific coding from 30 years ago would work today with almost no modification on today's Ghz PCs.

      I develop large, powerful applications in PHP that will work well on a Linux, Solaris, Irix, Windows, or AIX system, with virtually no porting whatsoever. Furthermore, the software itself is the executable - it's human readable in its production form!

      And aren't Java applications run in a sandbox Virtual Machine?

      As I've developed increasinly powerful and complex Internet applications, I've discovered that the key to reliability is to develop applications where the individual computer really doesn't matter - "It's the software, stupid!"

      Utilizing standards based, open languages and protocols (PHP, PostgreSQL, Linux, TCP, HTTP, etc) means that my applications will work today, tomorrow, and for many years to come on whatever hardware.

      Linux/OSS software is poised to take the seat of this critical software infrastructure, away from Microsoft who, having this position, have abused the power it brought them.

      So, I use open source software, open protocols and strategies where it makes sense, and relax knowing that the stuff I write the *nix/POSIX standards will be quite accessable and usable in the future.

      -Ben

      --
      I have no problem with your religion until you decide it's reason to deprive others of the truth.
    14. Re:Work on the hardware first. by SEE · · Score: 2, Interesting

      In the United States, the copyright lasts life+70 years for copyrights in the name of an individual for works published in 1978 or later, 95 years in the case of a corporate-held or anonymous copyright for a work published in 1978 or later, and 95 years for any work published from 1923 to 1977 inclusive (with some caveats about renewal rules allowing some to expire earlier).

      So, for original 1977 Apple II ROMs, copyright currently expires in 2072 in the U.S.

  2. 200 years??? by danormsby · · Score: 2, Funny
    Any presidents set for this to show 200 years is a good target to aim for?

    Must have had one hell of a beta test phase.

    --
    Omnis amans amens
    1. Re:200 years??? by pjt33 · · Score: 3, Insightful

      I've stared at your post for a long time trying to work out what you mean. Please put me out of my misery by telling me whether the second word should read "precedents".

    2. Re:200 years??? by nomadic · · Score: 5, Funny

      I think 200 years isn't long enough. They just don't make software like they used to. For example, last time I visited Atlantis, and used the Amulet of Chr'Thalis to activate the ancient computers laying dormant beneath the Temple of the Dawn, they just started working perfectly. True, they only speak Ancient Atlantean, but the software's just fine. And we're talking about systems that haven't been maintained since the Temple Wardens vanished sometime during the Fourth Age; that's several hundred years at least since their last debugging. Of course, some of the hardware's a bit run-down (in the case of some the Temple traps that's a good thing), and the Orb of Kings is still inactive, but the Temple software works perfectly.

    3. Re:200 years??? by Ours · · Score: 3, Funny

      Wait untill the secret service starts asking you questions about shooting presidents ;-).

      --
      "You superiour intellect is no match for our puny weapons" - The Simpsons
  3. Open Source by Anonymous Coward · · Score: 5, Funny

    It seems like most open source has been less than 1.0 for at least 200 years. But all for a quality product right? Oh you found a bug? Well thats because its pre-1.0!

  4. Maybe it's needed, but who will develop it? by Biotech9 · · Score: 4, Insightful

    No company in the world will ever try and develop software that never needs (costly) upgrades and add-ons. Take a look at Micrsofts behaviour with MS Office, it's a complete cash cow because they can update it when they want and force people into upgrading with changed document types. Even the open source community will be too interested in improving and adding on to thier pet projects to consider leaving it alone.

    this article seems pretty flawed.

    We need to start thinking about software in a way more like how we think about building bridges, dams, and sewers.

    The fundamental difference being bridges cost more to alter than software does. And the capabilities of hardware allows more freedom in software, to which there is no correlation in bridges.

    hmmm, just my 2 euro-cents.

    1. Re:Maybe it's needed, but who will develop it? by tessonec · · Score: 5, Insightful

      I think you do not understand completely the point of the article...

      The point is that, given the fact that there is a vast amount of information in computer files, you must be aware that if you can't retreive that information in the future, it will be lost.

      You are right, most of the software gets updated. But it is the interface that understands the format the thing that must last for much more time than a couple of software-updates-cycles

      This is exactly another reason to consider OS standards instead of closed-source formats, as MS in 100 years (if it does still exist) will have forgotten how .doc in windows 2000 looked like

    2. Re:Maybe it's needed, but who will develop it? by Mr_Silver · · Score: 2, Insightful
      Take a look at Micrsofts behaviour with MS Office, it's a complete cash cow because they can update it when they want and force people into upgrading with changed document types.

      Maybe before, but the document format hasn't changed since Office 2000.

      You can send me a document written in Word 2003 and I can happily open it in Word 2000.

      --
      Avantslash - View Slashdot cleanly on your mobile phone.
    3. Re:Maybe it's needed, but who will develop it? by pheede · · Score: 3, Informative

      In fact, the Word document format hasn't changed since Word 97. So any Word version from 1997 or onwards will do the job.

      And changing the settings to saving in RTF format by default (enabling Word versions from Word 6.0 through 2003, as well as basically all other word processors, to read the documents) isn't all that hard. Not even in a corporate setting.

      Microsofts encourages upgrading of Office installations through a lot of questionable means, but the Word document format isn't one of them.

    4. Re:Maybe it's needed, but who will develop it? by term8or · · Score: 2, Interesting

      I think that the fundamental reason that construction industry generally succeeds in producing bridges that don't fall down is the existence of building and planning regulations that require product to be of a good standard before they are sold. For example, in the UK if a bridge falls down and someone's killed it's corporate manslaughter and the MD is going to jail. Perhaps what we need is more regulation for the software industry ;-) For example instead of customers paying for software support maybe it should be a legal requirement that VENDORS pay software support and insure via a third party to guarantee support even if they go bust.

      --



      "As a writer / novelist you might want to spellcheck your sig. :) " - AC
    5. Re:Maybe it's needed, but who will develop it? by peragrin · · Score: 4, Informative

      Let's try it, Let's take an Office XP doc saved in the Office XP format and open it up in Office 97,

      What it doesn't open properly? Geez that's A shocker.

      Now you can save an office XP doc in office 97 format, and office 97 doc's can be opened in office XP but office XP doesn't open in Office 97.

      MS does this because when one business upgrades, it forces the partners to upgrade as well. Why because most people have a hard time understanding what the different formats are.

      --
      i thought once I was found, but it was only a dream.
    6. Re:Maybe it's needed, but who will develop it? by Oligonicella · · Score: 2

      Informative, my ass. Morelike Troll. I've personally had great problems salvaging a bunch of manuscripts when I got an XP to replace a dead '85. I had to port all the docs to another computer, save as RTF and then read. At least that's what I planned. Then I simply read them all into Lotus.

      Screw Word and their plethora of docs.

    7. Re:Maybe it's needed, but who will develop it? by jsebrech · · Score: 2, Insightful

      In fact, the Word document format hasn't changed since Word 97. So any Word version from 1997 or onwards will do the job.

      And changing the settings to saving in RTF format by default (enabling Word versions from Word 6.0 through 2003, as well as basically all other word processors, to read the documents) isn't all that hard. Not even in a corporate setting.


      The word format is heavily platform dependent. If you embed objects into word documents, or use scripting, it's pretty much a guarantee it will not work correctly across office and windows versions. Not having the right fonts available will ruin your layout too. Word is not pdf or postscript, it is not a stable or cross-platform format.

      And suggesting rtf is a stable or widely supported format is silly given how many dialects of rtf there are. Every new office version comes with a new rtf dialect.

    8. Re:Maybe it's needed, but who will develop it? by AKnightCowboy · · Score: 3, Informative
      Take a look at Micrsofts behaviour with MS Office, it's a complete cash cow because they can update it when they want and force people into upgrading with changed document types.

      Hmm? I still install Office97 on any brand new computer I get and it works just fine. Why would I need to upgrade it? All the functionality I need to do reports is there and it's 7 year old software.

    9. Re:Maybe it's needed, but who will develop it? by CommieLib · · Score: 2, Interesting

      You've observed the environment and drawn the wrong conclusions. Yes, software companies release add-ons. My software company is just releasing version 1.4 right now. Is that because we all sat around in a boardroom, smoking cigars and laughing about how we were going to screw our customers out of money?

      Actually, it comes from two reasons. First of all, we never have enough time to deliver all of the features we would like. Software release schedules are driven by sales cycles, so when the cycle rolls around, it's time to ship, so that means we need to cut off development for QA some reasonable amount of time before that.

      Second of all, we have features in our 6th release (the point releases aren't as simple as they look) that, quite literally, I didn't even know existed when I was writing 1.0. We have other technologies and ideas I did know about then, but didn't know that customers would want them.

      And as far as document types, I can open Word 97 docs in Word ver_whateverversionIhave. Microsoft gets zero bastard points for backwards compatibility.

      I see a lot of crap here on Slashdot about how software companies screw people like this and that, and I just wonder how people think we have the fricking time.

      I think this whole 200 year software stuff is wildly naive for the above reasons. A great quote I heard once said something along the lines of: When you place a 500 pound weight on a bridge, you can be reasonably sure that it will also support a 50 pound weight. The same is not true of software. I think what Bricklin has failed to grasp in his analysis is that what we're going through right now is it's own industrial revolution. First OO, then widespread use of patterns, relational databases...we're figuring out vastly better ways of doing things in software. At some point, we'll have as concrete (natch) an understanding of how to build software as we do of bridgebuilding, and then we'll settle into stability.

      Slashdot, circa 3500 BC: Uzan of Ur bemoans having to rebuild the stone bridges every 10 years.

      --
      If your bitterest enemies are people who hack the heads off civilians, then I would say you're doing something right.
  5. Start using simpler hardware by MavEtJu · · Score: 4, Interesting

    I think the trick is to use simpler hardware, which is easy to replace.

    Take todays computer: motherboard with one big black chip, CPU on it, network card also one chip on it, videocard is too impossible to figure out how it works. Due to the integrated design, you can't fix it if it is broken. And in five years you won't be able to replace it one-on-one.

    On older hardware (8 bitters), you were able to repair it yourself because you knew how it worked and you know you were capable of replacing a failing chip. Even if you didn't have exactly the same chip, you can use one of a newer family which did the same but would be capable of switching much much faster.

    --
    bash$ :(){ :|:&};:
  6. No by Mr_Silver · · Score: 5, Insightful
    Neither prepackaged nor custom-written software is fully able to meet the need

    I disagree. It's got nothing to do with the software but the data.

    If the data format is clearly documentented, then it doesn't matter whether the application that generated it is open or closed.

    True, you could argue that since the code is open the data format is also documented, but personally I'd find it easier if it was written in a properly structured document.

    Otherwise you'd have to resort to learning and then plouging through an application written in some 200 year old programming language (by someone who possibly hacked it up with a hangover at the time) to try and understand what they were doing and why.

    --
    Avantslash - View Slashdot cleanly on your mobile phone.
  7. Hypothetical question... by BladeMelbourne · · Score: 4, Funny

    I wonder if there will still be holes/bugs in Microsoft Internet Explorer 6 SP1 in 2204?

    Now excuse me while I get back to writing my "Hello World" application that will last two centuries :-)

    1. Re:Hypothetical question... by OldManAndTheC++ · · Score: 2, Funny
      Now excuse me while I get back to writing my "Hello World" application that will last two centuries :-)

      Unfortunately, in 200 years the language will have evolved, and the words and phrases we use today will have completely different meanings. People of the future will understand "Hello World" to mean "All Your Base Are Belong To Us", and believing your program to be a dire threat, they will fire up their time machine and send back Arnold Schwarzenegger's great-great-great-great-great-great-grandson to eliminate you before you can even write it...

      --
      Soylent Green is peoplicious!
    2. Re:Hypothetical question... by Ashtead · · Score: 2, Insightful
      The computer might have become different, but the knowledge of how it used to work will not be lost. Just look at Charles Babbage's mechanical computer (difference engine) from the 1830s; no theoretical difficulties in re-implementing that in the 1980s, some 150 years later.

      Similarly, unless some catastrophic loss of historical information should occur, someone 200 years from now would still be able to fathom the concept of a command-line or even a desktop-metaphor GUI. They will of course think it is clunky and old-fashioned, but hey, it is a couple centuries past the state of the art....

      --
      SIGBUS @ NO-07.308
  8. 2 letters by News+for+nerds · · Score: 4, Funny

    vi

    1. Re:2 letters by sisukapalli1 · · Score: 2, Insightful

      I think tex/latex has the capability. We have the some documents (20 years old), and they compile fine and look prefect. If anything, improvements made it easier to "enhance" the document without messing with anything.

      S

  9. It's a tool... by tgv · · Score: 2, Insightful

    For Christ's sake, computers are mostly used as tools. And who keeps their old tools around for so long? Only neanderthals:...

    1. Re:It's a tool... by kfg · · Score: 4, Insightful

      The violin dates from the 1600s. While it has undergone a certain amount of "support" since then it is essentially the same tool as designed by Amati. Some consider it one of the finest tools ever devised by man. Many of the older ones are considered superior to the newer ones.

      I have an automotive body hammer that is nearly identical to a 1500s war hammer, although the upgrade to a fiberglass handle is a nice touch for reducing shock. The basic design goes back some thousands of years with little more than some minor updates in materials.

      My 100 year old desk holds up my computer just fine. It is as technologically advanced as what I can get new at Office Max, except I expect it can last another few hundered years due to the quality of its construction.

      I'm wearing woven fabric clothing, a technology that reaches back at least 10,000 years. There have been a number of attempts to replace this technology over the past 40 years or so. They've all proven inferior except for certain special applications. Hell, even indigo dye for work clothes has proven to be a durable technology for thousands of years that you can still purchase in nearly any clothing store and the "jeans" that are the most common example of the type are about 400 years old (Jacob Davis added rivets to the existing design. He didn't invent the jeans themselves).

      I've been watching a new office building go up in town. It's post and beam, about as old a house building technology as you can get, although the building is considered "modern."

      I also have a couple of fires that burn continuously in my home. It proves rather useful, although the technology is a bit long in the tooth.

      I fully expect that ASCII will be just as viable a way to represent the Latinate alphabet 200 years from now as it was a few decades ago, and the Latinate alphabet is another example of a multithousand year old technology.

      Innovation for innovation's sake often "progresses" to the rear.

      Build it right and build it good. Don't be afraid to change it when there's damned fine reason to on solid theoretical and practical grounds, but otherwise leave it the hell alone if it works.

      That isn't being a Luddite. That's being an engineer.

      KFG

  10. Already there? by rudy_wayne · · Score: 2, Interesting

    Remember Y2K? Did anyone notice that the world didn't come crashing down on Jan. 1, 2000?

    It seems that all those old mainframes running programs from the 60's weren't in such bad shape after all.

    This is an over-simplification of course -- people did have to do some work to make sure there weren't any "Y2K" problems.

    1. Re:Already there? by njcoder · · Score: 3, Funny
      " Remember Y2K? Did anyone notice that the world didn't come crashing down on Jan. 1, 2000?"

      You mean it's safe to come out of my bunker? Thank God! I'm sick of sustaining myself on spam, twinkies and tang.

    2. Re:Already there? by eraserewind · · Score: 2, Informative

      Some work? Hundreds of Billions of dollars were wasted on it. There is no way that having to make that kind maintenance cost can be considered not "in such bad shape after all".

  11. Not Possible by deutschemonte · · Score: 5, Insightful

    Constant standards are what is needed to make software last that long.

    Language standards don't even last 200 years, how do we expect something as new as software standards to be more uniform than language standards? Language has been around for thousands of years and we still can't agree on that.

    --
    The preceding message was based on actual events. Only the names, locations and events have been changed.
    1. Re:Not Possible by _|()|\| · · Score: 2, Insightful
      Language standards don't even last 200 years, how do we expect something as new as software standards to be more uniform than language standards?

      How do you know? Lisp has been around for a while, and it's not dead, yet. Some Lispers are working on a language called Arc, which they hope will last a hundred years. On another front, perhaps Parrot or .NET will provide a stable base that will allow languages to evolve, while remaining compatible.

      That said, I don't think it's necessary for a long-lived software project to use one language, exclusively. Standard interfaces can commoditize the language, to some extent.

  12. think back 200 years by Keruo · · Score: 3, Interesting

    We've had software and computers for ~30 years now
    Going back 200 years, we only began the proper industrialization and everything was pretty much running on steam.
    I think it's flawed to try to design software that lasts for decades or centuries.
    The technology is constantly evolving, and as the hardware changes, so does the software.
    If the hardware developement continues as it does, in 2200 we, or the people then, might be working with hardware running at terahertz speeds with 4096 bit architechtures.
    Probably that's an underestimatement, since the evolving curves tend to be exponential.
    I don't really think they would still need the software someone wrote for windows 95 200 years ago.

    --
    There are no atheists when recovering from tape backup.
  13. Standards, not Software by amitofu · · Score: 5, Insightful

    Standards are what must be designed to last for decades, not the software that conforms to the standards. Things like XML, RDF and POSIX will be supported for decades, if not centuries. Who cares if it is Linux running your POSIX apps, or FreeBSD, or HURD? I don't think it matters if software uses libxml2 to parse your XML data, or some yet-unconceived API--as long as it understands XML!

    If it is stability and reliable infrastructure that is desired, it is standards that must remain constant and software that must evolve to make the standards work with new technology.

    1. Re:Standards, not Software by B2382F29 · · Score: 5, Funny

      Aren't you a little bit optimistic about HURD being available in just 200 Years?

      --
      Move Sig. For great justice.
  14. now history depending on electricity by clsc · · Score: 2, Insightful
    The world is different now than it was even just a decade or two ago. In more and more cases, there are no paper records.

    The point that the author makes here is really that without electricity we will lose great parts of recent history.

    1. Re:now history depending on electricity by I+confirm+I'm+not+a · · Score: 5, Interesting

      The point that the author makes here is really that without electricity we will lose great parts of recent history.

      When I was at secondary school, in Britain during the 1980s, we participated in a UK-wide project to create a modern version of the "Domesday Book", the 11th-century record of people and property.

      The project we worked on was recorded onto a (state-of-the-art) laserdisc so it would "last through the generations".

      Last year I read an article saying that dedicated enthusiasts were desperately trying to assemble a working laserdisc system, in order to archive all the data collected just 20 years earlier.

      Moral: it's not just electricity we need to worry about - media and the equipment necessary to access specific media is vital, too.

      --
      This is where the serious fun begins.
    2. Re:now history depending on electricity by dabigpaybackski · · Score: 2, Funny

      **The project we worked on was recorded onto a (state-of-the-art) laserdisc so it would "last through the generations". Last year I read an article saying that dedicated enthusiasts were desperately trying to assemble a working laserdisc system, in order to archive all the data collected just 20 years earlier.** So what's the problem? As long as they included instructions on the laserdisk as to how to build a laserdisk player then they could just...oh. Maybe I should sleep.

      --
      "OH SHIT, THERE'S A HORSE IN THE HOSPITAL!"
  15. Software != Civil Engineering by Jotham · · Score: 2, Insightful

    I disagree with the common comparison of Software to Civil Engineering and Standards Bodies.

    Data Structures would be a better analogy, which Standards Bodies have done a really good job declaring. So in 200 years time you'll still be able to read the DVD data format (assuming the media is still good), even though the software that plays it will likely be different.

    Software is more like mechanical engineering, where things do break and improvements keep being found. You wouldn't for example use a 1960's car engine in a car today, even though the basic principle is the same. No ones asks why they didn't get it right 40 years ago and aren't still using the same design.

    Unfortunately, what would often be considered an early prototype in engineering, is often released as v1.0 -- the cause of which is a long post all unto itself.

  16. Lasting 200 years by banana+fiend · · Score: 2, Interesting

    Societal infrastructure is the key part here.

    How many democracies are older than 200 years? How many governmental structures have survived 200 years? Bridges may last that long, but 200 years ago, Ireland was a very different place. America was a very different place, England was a very different place (see Ireland and America for why ;) ) as a matter of fact, EVERYWHERE was very very different

    200 years ago, the Americans loved the french for helping them in the civil war, the english hated the americans as barbarians, the Irish as "Paddies" and the Irish hated the english. The English hated the French ..... Come to think of it - only some things change.

    Back to the point - Software, or those parts of it that do qualify as societal infrastructure will have to change, simply to keep up with the rate of societal change and anything that lasts for 200 years is a very fundamental tool indeed.

    --
    Johns: Well, how does it look now? Riddick: Looks clear.
  17. See also by CGP314 · · Score: 3, Informative

    See also The Long Now Foundation.

    I read their book in college and, though it is a bit pie-in-the-sky, I thought it raised some interesting ideas. One of their projects was to build a clock that could last a thousand years. When I moved to London one of the first things I did was go to see the thousand-year clock in the National Science Museum. There it was, it all it's broken-non-time-telling glory. About a month ago I checked up on it again. Status: still not fixed : \

    1. Re:See also by tootlemonde · · Score: 2, Interesting

      One of their projects was to build a clock that could last a thousand years.

      Their current project is to build a clock that would last 10,000 years. It would tick once per year and the cuckoo would come out on the millenium.

      More successful clocks are the ones in Salisbury and Wells Calthedral. They've been in more-or-less continuous operation since the 1380s and are working now.

      The Wells clock looks like it was more ambitious than the Long Now project. "As well as telling the time on a 24-hour dial, it shows the motion of the Sun and Moon in the sky, the phase of the Moon and the number of days since the last new Moon."

      The lesson for the Long Now folks is that if you want to build something that runs forever, build it out of cast iron and replace the parts every few hundred years.

  18. Paul Graham said it best. by fatcow · · Score: 2, Informative
  19. long-term.. short-term by Janek+Kozicki · · Score: 2, Funny

    hey, all this babbling about long-term and short-term reminds me of xterm. Soon xterm will be 200 years old. Or at least sooner than almost anything else. (except for getty ;)

    --
    #
    #\ @ ? Colonize Mars
    #
  20. Too young by frankthechicken · · Score: 2, Insightful

    The problem with comparing computer practices with civil engineering practices, is the age of the two industries.

    Software is such a young industry that best practices, standards etc. have yet to be settled upon and thus will be hard to implement. Most engineering practices have come about after centuries of development, I somehow feel software development will have to mature for a while before we can see similar licences and standards bodies.

  21. Legacy COBOL by FJ · · Score: 2, Interesting

    There are already legacy COBOL programs that are key pieces of many businesses. Some of those are almost 30 years old. Not really exciting code, but still important to many businesses.

  22. Ask the programmers at Duke Nukem Forever by davejenkins · · Score: 4, Funny

    Those Duke Nukem guys should have this problem pegged by now...

  23. Not possible by kcbrown · · Score: 2, Interesting
    Software is technology as much as it is art, and as such is subject to the same dependencies that other technologies are subject to.

    The nature of technology is to evolve over time. Only the most basic tools we have haven't changed significantly over time: things like the knife, the hammer, etc. Even the screwdriver has seen significant development in the 20th century (Torx screws, for instance).

    Only those things for which the underlying rules don't change can remain constant over time. Software is especially vulnerable to change over time because the platforms it depends on, both other pieces of software (like operating systems) and hardware, change significantly over time. 200 years ago, computers weren't even a glimmer in Charles Babbage's eye.

    And as much as technology has changed over that period of time, so have the needs of society. And since software is written to fulfull those needs, it's absurd to even ask it to live much longer than a lifetime. About the only kind of software that could possibly live that long would be games, and even then only a select few have that kind of timelessness.

    --
    Use 'slashdot stuff' in the subject line in any email you send me if you want to get past the spam filter.
  24. tools vs. infrastructure by karzan · · Score: 2, Interesting

    there is an important difference between tools and infrastructure. true, much software is used as tools--for accomplishing discrete tasks that evolve as societies and technology evolves. but much software--databases, routers, control devices for physical infrastructure, etc--is used more as infrastructure; that is, as a resource expected to be reliable and predictable by many users and necessary for accomplishing other tasks that ride on top of it, including employing new tools.

    infrastructure, because of its multi-user character and the fact that other things are designed to work on top of it, has to have lasting standards--if road lanes suddenly start to become half or double the width, then cars, trucks, traffic flows, etc will all be affected. even if some small technical reason might make it be reasonable to change them, their character as infrastructure means that the long term reliability of how they work is more important than short term technical considerations.

    in other words, it would probably be silly at this point to try to design user interfaces, web browsers, etc. that last 200 years, because they are still rapidly evolving. however it makes a great deal of sense to start designing standards for data storage and interface, as well as actual 'infrastructure' software to last a long time because more users (including developers of more 'tool-like' software) benefit from its stability than from its instability.

  25. Trust me, it's not a problem! by Dr.+q00p · · Score: 2, Insightful

    Just find me a customer that wants to pay for "robustness, testing, maintainability, ease of replacement, security, and verifiability" and I'll deliver.

  26. The problem is more social then tecnical. by jellomizer · · Score: 4, Insightful

    Sure it is possible to write a program that is platform independent and could possible run for 200 years. But the problem is this. How many organizations can last for 200 years without changing their policies or without society changing. Lets compare us Now and 200 years ago 1804. How many companies have lasted sense 1804 not to many. And all of them have changed the way that they did business since then. How many companies 200 years ago would have enough foresight to allow policies for IT workers. Maybe 1 who was swiftly locked away for his crazy talk. Also a lot of todays terminology will go away in 200 year. I predict the term "Race" would be an out dated word confined to the old literature and newspapers, this is because with the steady decline in racial prejudice and inter racial marriages. It would be like 200 years ago a business man will ask you for your religion in order for them to decide to do business with or not, and now there would be some problems even if they asked as just a personal question. Or say we get visited by space aliens, Sex: M F X A I C. Who know what new and unheard of categories will be added or perhaps a method of doing things is drastically changed who even what the company does changes, heck the company I worked for started repairing mainframes, now we do mostly IT Consulting, and that is in 10 years imagine 200 year.
    So to make a program this customizable you need to make it a programming language with everything to you need to add and delete change and alter over time. Now even programming languages think Fortran 30 years ago it was the most popular language out there. And now it is tossed aside for the newer languages, even with fortran compilers for linux, most people will rewrite their fortran code to a more modern language then just port it. To take advantage of new features such as GUI, Internet Connectivity, Color Printing, Web Access. More thing that seemed useless or impossible 30 years ago, are now becoming important. Sure it is possible to make a program run for 200 years. But is is possible to make it useful for 200 year. And beside all this extra design time to make a program that can run for 200 years will cost a lot of money and time to do. Are the users of the applications are willing to pay $1,000,000 for a java program that number crunches their numbers. Or will they pay $50,000 for a program that will last them 10 years, and will be a lot less bloated and simpler to use.

    --
    If something is so important that you feel the need to post it on the internet... It probably isn't that important.
  27. Paper is a bad analogy by Grab · · Score: 3, Interesting

    I love the way that everyone presents written records as a good example of a "perpetual" medium which surpasses digital.

    You may note that the author says "you can read 100-year-old newspapers *on* *microfiche*". This point practically jumps up and down to be noticed - even in the world of printing, paper copies are not seen as suitable for long-term storage, due to difficulties of preservation and physical bulk. So these paper copies are transferred to some other medium for long-term storage. This medium relies on readers existing - if all companies making microfiche readers went out of business (which probably won't be too many years ahead) then the microfiches will be unreadable. And the microfiches themselves are fragile - a scratch in the wrong place will make it difficult to read, and it's on plastic which will degrade over time.

    Why should digital be any different? If you want ultra-long-term storage of digital data, use punch holes in gold sheets. Otherwise you use a storage medium which gives you a reasonable storage size and reasonable data security.

    On reading the data back, suppose microfiche readers went obsolete and you couldn't buy them. The method of reading the data is still known and recorded, and can be reconstructed by someone needing to get the data back. Similarly, the most common bulk storage methods today are the CD-R and the DVD+/-R (tape backups are practically obsolete). Now the standard for data storage on CD and DVD is, well, *standard*. So if in 200 years time someone wants to read one back, they could build a CD player from first principles.

    Grab.

    1. Re:Paper is a bad analogy by djmurdoch · · Score: 2, Informative

      Similarly, the most common bulk storage methods today are the CD-R and the DVD+/-R (tape backups are practically obsolete). Now the standard for data storage on CD and DVD is, well, *standard*. So if in 200 years time someone wants to read one back, they could build a CD player from first principles.

      Neither tape nor the organic dyes on CD-Rs are nearly as long lasting as acid-free paper. I've read 200 year old books, but reading a 200 year old tape or a 200 year old CD-R would require *much* more effort than constructing a reader like the ones we use today, if it was even possible.

  28. Where is the cost of change ? by Alain+Williams · · Score: 2, Interesting
    The cost of changing software can be looked at 2 ways:
    1. Move the software to a new box (but similar) since the old one is worn out or not fast enough or ... In practice this is not too difficult since you can either just copy the binaries or buy new ones or
      ./configure && make
      This I would not call a real change and is not too expensive.
    2. Move the software to a new (or much changed [the current] version of the same one) operating system. This is expensive as there is a lot of recoding that must be done and then work configuring it on the new platform.
    Note that the above is only valid if the software being copied does not really change it's functionality as the customer has not changed the requirement spec.

    One of the nice things about Unix (Linux/...) is that you can still run very old software on new boxes with at most minimal changes - I still use code that I first wrote some 20 years ago.

    There has been much assumption in this discussion that the whole system (hardware, OS, software) has to live unchanged for many years; I think that is missing the point as the true cost of software change is only big in case (2) above.

    Note that some software does need to be regularily changed, eg payroll - because the governments change the rules every year or two.

  29. Ink and Paper by Quirk · · Score: 3, Insightful

    What's needed is ink and paper. It's our proven technology for archiving. Micro fiche and magnetic storage devices are now more prevalent than any time before but the book industry and published journals and daily newspapers show no sign of diminishing. And as the article points out newspapers dating back 200 years are still available in the public libraries. Electronic voting protocol is just now hashing out whether a paper trail is prudent. Granted the article rightly points out the need to develop an archiving industry that is able to meet the needs for computers to replace paper, based archiving but as long as hardware development thrives in an open competitive economy the market will dictate the timing of implementing the necessary hardware. Unless some body like the library of congress undertakes financing the necessary hardware and software.

    --
    "Academicians are more likely to share each other's toothbrush than each other's nomenclature."
    Cohen
  30. Survival? by Dr.+q00p · · Score: 2, Funny

    I think there was a /. post some time ago (that I cannot seem to locate right now) that talked about the freeware paradox: The better freeware becomes the less you make on support.

    So, in order to survive I guess you have to make shitty sw and do lots of marketing to sell your products anyway.

    Hmm, sounds familiar in some way...

  31. paper books by spectrokid · · Score: 2, Informative

    In Belgium, notary's still pay law students to copy by hand important documents on thick books, made from acid-free paper and solidly bound together. Stacked in a basement, you can throw a jerrycan of gasoline over them and set fire to it. You will lose (almost) nothing. Instead of relying on laser discs (see other post), print everything out and count on OCR.

    --

    10 ?"Hello World" life was simple then

  32. User defined requirements??? by cardpuncher · · Score: 2, Insightful
    requirements for the project must be set by the users

    I've yet to meet a client commissioning a project who knew well how his own business operated, still less was able to understand how any knowledge he did have might be usefully turned into a specification. One of the reasons some software projects have a short life is that the intended users fundamentally misunderstood how their business worked, or that its way of working was likely to change.

  33. 200 years? I'll raise you 2,200 ... by Bazzargh · · Score: 3, Interesting

    The idea of software that lasts 200 years reminded me of a discussion on the radio the other day about the origin of a joke: "I've had this broom 50 years, its had 5 new heads and 3 new handles". The identity issue played with here dates back at least to Plutarch's Ship of Theseus - if you keep replacing parts of a thing, until no original parts remain, is it still the same thing?

    The relevance to software is captured with an example: Is Linux still Linux? How much remains of the kernel originally published by Linus? Would would you say that Linux has been around for X years (pick X to suit)?

    Most people would agree that it's still Linux. What Linux, the broom, and Theseus' ship have in common is that they could be modified to meet the demands of time, while retaining their identity.

    I've always thought that maintainability is the highest virtue software can strive for, above other quality-oriented goals like being bug-free, or performant. If its buggy, but maintainable, it can be fixed; if its slow, but maintainable, we can make it faster. I think it could also be argued that software, like Theseus' ship, needs to be maintainable to last 200 years; but the version 200 years from now may not resemble the original in the slightest.

    Just my 2c

    Baz

  34. What is the reason Donald E. Knuth wrote TeX? by mvw · · Score: 4, Insightful
    Prof. Knuth was unhappy with the degrading typographical quality of the printings of his The arts of Computer Programming series. So he took 10 years of his research time to develop the TeX computer type setting system. (A stunt hard to pull off, if you are not a professor or rich :-). Now look at how he published the TeX System. There is a set of 5 books containting
    • TeX user manual
    • TeX commented source code
    • Metafont user manual
    • Metafont commented source code
    • The Metafont programms to generate the computer modern fonts
    What is that good for?

    If you, say in 500 years, get a copy of these 5 volumes (and if they are printed on good paper, there is good chance that these survive). You just need some kind of computing device and the skillset to implement some easy pascal like programming language. Then you type in the programms and fonts from this book and voila, you have working a TeX system!

    Of course you need to write a .dvi driver for whatever output device you want to need and have at that time.

    If you now find some .tex source of one of Knuth's books, be it in print or some crude hyperflux memory cube, you are then able to reproduce that book in the quality Knuth intended it to have!

    Thus TeX is explicitly developed to transfer the typographic quality of Knuth's books into the future, without depending that lots of software vendors establish lots of data format (e.g. Word 2325 to Wort 2326) converters!

    Regards,
    Marc

  35. Document Format by os2fan · · Score: 3, Interesting
    The main problem is not so much with "applications" but data format. We talk of the aging db2 formats used of data bases. The reason that these hang around for so long, is that much of the corporate history hangs out in it.

    When i design projects, i tend to think more about keeping the data clean, simple and robust over time, rather than the ease which certian applications can reproduce it.

    For example, when i designed KML, the idea was that it was meant to be a robust format that could be defined outside the context of any word-processor, and ultimately aimed at HTML, TeX, etc. At the moment, it is Regina REXX's job to render my markup. Nothing stops this from becoming Perl's or CEnvi's job! It's just a matter of writing a new parsing engine.

    Because it is not something like HTML or TeX or RTF, i have considerable control over the format, and i can map several internal styles onto the same output, eg like {emphasis} vs {bold} in html. But the thing can be to the structure of the document.

    It is more data standard, rather than program standard that is important. The latter is also important, since we don't want to either run dusty decks or old programs.

    But what can you expect from an upgrades-driven market?

    --
    OS/2 - because choice is a terrible thing to waste.
  36. Long Now Foundation by handy_vandal · · Score: 2, Informative

    The Long Now Foundation: 10,000 Year Clock and Library
    "The Long Now Foundation was established in 01996* to develop the Clock and Library projects, as well as to become the seed of a very long term cultural institution. The Long Now Foundation hopes to provide counterpoint to todays 'faster/cheaper' mind set and promote 'slower/better' thinking. We hope to creatively foster responsibility in the framework of the next 10,000 years."

    * The Long Now Foundation uses five digit dates, the extra zero is to solve the deca-millennium bug which will come into effect in about 8,000 years.
    Long Now is the brainchild of Stewart Brand.

    -kgj
    --
    -kgj
    1. Re:Long Now Foundation by Jesus_666 · · Score: 2, Funny

      I wouldn't trust a long Now that can't be cast into an int Now.

      --
      USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
  37. Re:5 letters by the+real+darkskye · · Score: 2, Funny

    No vi is correct, the article is about software, not operating systems! :D

    --
    Music is everybody's possession.
    It's only publishers who think that people own it.
    Fuck Beta
    ~John Lenno
  38. Once again, Vernor Vinge is the visionary by squarooticus · · Score: 2, Interesting

    In A Deepness in the Sky, Vinge posits a collection of software of ancient origins that handles all of the Qeng Ho's automation. This software is never replaced, but simply evolves as better ideas appear. While not technically open source (the Qeng Ho considered this software to be one of their proprietary advantages), it is open to every member of the group. By the time of Pham Nuwen, it had existed in some form or another for literally thousands of years, and over that time had been inspected by thousands of people.

    --
    [ home ]
  39. Re:200 years of speech recognition software??? by Arminator · · Score: 3, Funny

    See, this happens when you use 200 year old speech recognition software...

  40. This is a Great Idea, and... by Trolling4Dollars · · Score: 3, Interesting

    ...I agree heartily, but were the United States is concerned, this will probably never happen. The brand of capitalism that currently drives the U.S. is not friendly to goods and services that are expected to last a long time. In the past, you could buy a TV and the company would guarantee it's picture tube for up to ten years. These days you're lucky to find a TV with a five year guarantee on the picture tube and in most cases you are forced into buying an extended warranty that you have to renew.

    The way that homes were built in the early part of the 20th century, those homes could be expected to still last up to 100+ years. These days, the cheap 'lick em and stick em' jobs that people pay hundreds of thousands of dollars for are certain to start falling apart in 10-25 years. I know this because I used to work on some of them. The materials are not meant to last. Many of the homes develop probles with the plumbing, roof, even the electrical in some cases. A lot of these homes can't stand up to tornadoes as well as the old houses could. There was a neighborhood in a city south of me where all the bran new houses were torn apart by a tornado. These houses were built in the late 1980s and 1990s. Within a few blocks, there were a few old farm houses that were unscathed. My point is that houses these days are made of crap, more expensive and are not built to last. They are essentially disposable after one generation grows up in them (while having to fix problems).

    This is all evidence of the disposable, recurring payment culture of the U.S. today. I exclude other countries even though many of them have the same problem, but to a lesser extent. Those other countries are fr more likely to try and build a long-lasting, open source infrastructure. When I was a kid in the 70s, recurring fees were rare other than utilities and mortgage or car payments. Today, you can get nearly anything for a recurring fee. Although all the fees themselves are small, they total to whopping bills if a person needs or wants all those goods and services. Whatever happened to the day when you could buy something and it was yours. 100%. No strings attached. No recurring fees. Just yours. Sure there are a few things, but keep in mind that recurring fee or not, they are not built to last. Durability is anathema to profit in the new American way. The idea of having long-lasting, open source/free software is going to have a lot of opponents in the American software business soley because there is money to be made.

    1. Re:This is a Great Idea, and... by Anonymous Coward · · Score: 2, Insightful
      The brand of capitalism that currently drives the U.S. is not friendly to goods and services that are expected to last a long time.

      Absolute fucking bullshit. There's simply different stratas of goods. People can buy something cheap or something midrange or something expensive. The expensive stuff will, in generall, last longer and be of much higher quality- Harmon Kardon versus Kraco, for example.

      It's called choice. And you know what? Even the cheap stuff lasts a decent amount of time. A lot of this "stuff was build so much better in the OLD DAYS" is myth and rose colored rememberances.

      And stop blaming "capitalism" for everything and see it for the boon that it has been. It's a highly imperfect boon, but, shit, it gets blamed for things that are stupid. Capitalism didn't create a class based society. Capitalism BROKE THE BACK of the serf/aristocracy bullshit that plagued humanity for millenia. There's still classes, but what capitalism gave us is:

      1. A continuum of classes. There's more than rich and poor. Incomes range from zero to the millions in a smooth gradient.

      2. Class mobility. Hard work DOES pay off in this society far more than many others. My parents grew up in abject poverty. I grew up fairly poor. I now make $160K a year. Every single "class warfare" jackass I meet is invariably a lazy dumbass who refuses to pull his or her own weight.

      Yeah, some people get what could be called far too rich, and I know it's a bitter pill for some, but that doesn't stop you or me from succeeding. Wealth can be created anew in our system by creating a value, or perceived value, where none previously existed. There isn't a fixed amount of money floating around.

      And those farm houses a few blocks away survived because the destructive path of a typical torando is very narrow. If the twister had come closer to the farms, they would have been nuked just as thoroughly. This is a force that toses around cars and can *pick* *up* a typical house. The house doesn't exist that can survice a direct hit or even a near miss from a tornado.

      Today, you can get nearly anything for a recurring fee. Although all the fees themselves are small, they total to whopping bills if a person needs or wants all those goods and services.

      The key word being "wants". And most of the new fees are for what amounts to new utilities: cable/satellite service, cell phones, internet access, etc. People buy them voluntarily, and most seem somewhat satisfied. Mosdt of the problems arise from these things being new servies, and the bugs remain to be worked out.

      Why not just leave people alone? You don't like paying fees? Fine. Don't pay them. My mom is writing her autobiography on a Mas IIsi running Mac OS 8. If you don't need to upgrade, don't. Stop whining and let others make the choices that are best for them.

    2. Re:This is a Great Idea, and... by DoctorHibbert · · Score: 2, Insightful

      It's a mistake to compare quality of old houses with new houses. Why? Because all the old poorly built houses are already gone. There are well constructed houses built today that will last centuries (provided sufficient maintainence of course). Most of the poorly built houses today won't be around in a hundred years, just like the ones houses built 100 years ago aren't around today.

      And really, so much of that depends on the amount of maintainance over the years. Old construction techniques and materials are generally inferior to modern ones, yet if maintained properly they can last a long time. I've just completely renovated a 100+ yo Victorian, I know what I'm talking about. Example, our house has a fieldstone foundation that every decade or so needs new mortar in many of the joints, while a modern reinforced concrete foundation generally needs no maintanence. If we don't do that work, the foundation starts to fail and portions of the house sink. Its already happened to some degree, not single room is level. Yes, that can happen in new construction, but not nearly as much and its usually because of problems in the plots geology not the foundation construction.

      Anyway, to reiterate, you don't see many crappy old houses because they are already gone.

      --
      Arbitrary sig
    3. Re:This is a Great Idea, and... by HeyLaughingBoy · · Score: 2, Interesting
      The brand of capitalism that currently drives the U.S. is not friendly to goods and services that are expected to last a long time

      Sure it is. The problem is that you're just looking at consumer goods that are expected to be cheap, so there's no incentive to make them long-lasting. Quality costs, and most people don't need the added expense if it's equivalent to the cost of a replacement unit in a few years. (and just how can anyone be *forced* into buying a warranty?)

      We have bridges that have been up for over 100 years, factory equipment is generally designed to work for decades -- back in 1994 or so a small businessman showed me around his machine shop that was mostly WWII surplus lathes, etc that were still churning out parts in production quantities daily. I recently sold an 18 year-old pickup truck that was in great running condition, and I expect it to be still around 10 years from now if maintained properly.
      I can build you control hardware and software that I will guarantee for a 15+ year lifetime if you're willing to pay for it.

      Don't assume that just 'cause your CD player dies after 2 years that all manufactured goods are like that.
  41. Vinge leaves a clue in that passage... by argent · · Score: 2, Interesting

    In A Deepness in the Sky, Vinge posits a collection of software of ancient origins that handles all of the Qeng Ho's automation.

    If you calculate the offset between the starting date of their oldest calendar and the epoch date of their software, it seems that their software is based on something written in the '70s, or at least that's when its calendar started.

    Things that make you go hmmm...

  42. Understanding the problem? by oneiros27 · · Score: 2, Funny
    During that same project I was complaining about, we finally found out why the director of our department wanted to make the change -- and it was because of a misconception about the front end, which wasn't directly tied to the back end, and could've been changed out without doing nearly as much work.

    That's not to say that the change wasn't needed, as it was, because of other problems, which we started discovering during the course of the project, but then again, they never should've gone to the software they were running in the first place, as it didn't have a benefit/cost ratio better than the software they were on originally.

    Of course, we also went through 4 different PMs on the project, had 'co-project managers' at one point, and I'd get bitched at for bringing up flaws in the project plan, even though I had been told in the first meeting that I was the technical oversight, and if something went wrong, it'd be my fault.

    From my experience, a good project comes when the programmers know what the goals and objectives of the organization are, and are then told what their constraints are (budget, time, etc), to make it happen. It rarely comes when the higher level mangers decide on the solution, and then tell you how you have to build it. For some reason, I got yelled at after putting up the following sign in my cubicle:
    "We're the technical experts. We were hired so that management
    could ignore our recommendations and tell us how to do our jobs."
    -- Mike Andrews in alt.sysadmin.recovery 10 October 2000
    <eUJE5.880$ln6.119642@news.flash.net>
    --
    Build it, and they will come^Hplain.
  43. I Know of Code That Will Last 200 Years by ausoleil · · Score: 2, Funny
    In C:
    #include <stdio.h>

    main()
    {
    for(;;)
    {
    printf ("Hello World!\n");
    }
    }
  44. COBOL, FORTRAN and SQL by Detritus · · Score: 3, Interesting
    There are standards that have been around for decades and have preserved upward compatibility. Well-written FORTRAN programs (no jokes from the peanut gallery) from the 1960s can be compiled and run on modern machines. At one time, there was a strong movement to standardize high-level languages so that an application could be compiled and run on any computer. The idea was that an applications programmer should be able to write usable programs without knowing or caring about the operating system and other machine dependent trivia. That idea seems to have been lost with the advent of microcomputers and the rise of operating system monocultures such as MS Windows and UNIX.

    Another problem is the advent of the GUI. Give a user, or even a programmer, a text-oriented application today and be prepared for much wailing and gnashing of teeth. As someone who started writing programs on mainframes, it doesn't bother me, but I've seen users look at me like I'm some kind of Martian when I give them a command-line program to solve a problem, even though it is supplied with step-by-step documentation on how to use it.

    Where are we today? I don't believe that there has been much progress made in recent years. You can write portable programs in COBOL, FORTRAN and Ada. ISO Pascal and ANSI BASIC seem to be near extinction. Portable programs are theoretically possible in C, but the pitfalls and temptations are many. I'm not a database programmer, but I would hope that there is a portable subset of SQL that would support the portable use of RDBMS. Why should I know or care that the system is using Oracle or SQL Server?

    --
    Mea navis aericumbens anguillis abundat
    1. Re:COBOL, FORTRAN and SQL by iggymanz · · Score: 2, Informative

      There actually are some compatibility issues before the ANSI standardization of COBOL and FORTRAN, and both languages let one use non-portable extensions. A program has to be written with portability in mind, just like most other compiled languages. No commercial database application uses pure ANSI standard SQL to get real world work done....try to substitute one db for another behind the scenes and things will break. Many applications can use multiple dbms on the back end only because they have configuration settings that tell which database you are using, often to the version (Oracle 4 doesn't speak quite the same SQL as Oracle 8, especially for database creation and modification, though MOST things are backwards compatible). I speak as one who's earned many $10K's because stuff doesn't quite act in a backwards compatible or portable manner , whether language, dbms, OS flavor

  45. Wire and cableless. by WrongWay · · Score: 2, Interesting

    I used to work for a rather large telco-datacenter. They were using software built in 1970, to provision internet connectivity.

    Telnet in (pick a username and try PASSWORD for the password) 75% of users were set up with default passwords. 50% of the active users were employees who left the company several years prior.

    My team coded a new system from the ground up. Taking into account all the changes in the past 30 or so years. It was large roboust and elegant. Anyone who used the old system was completely blow away by the new system... Except the lead consultant from Accenturd. After 5 mins of our hour presentation, he cut us short and went on to be little us.... "anyone can code", " its just a website", ya know your company hired US to do that FOR you.

    In the end accenturd decided that our 30 year old system would be just fine with a few modifiactions.. Sure the old system needs a team of 60, vs the team of 6 our NEW system required. But thats of little consequence.

    $1 million - accenturd charge for simple modifications to a 30 year old system.

    ..VS..

    Free ground up system built by internal employees, who worked with the old system on a daily basis.

    The final descision was made by the person who originally spent the $1 million to accenturd. Seems he didnt want to admit he wasted $1 million for something we coulda gotten internally, for free.

    There is no reason code should be running 30 years. I can assure you the original developer never intended 30 year life cycle on his code.

    Old code still WORKED, that coder impresses me.
    Old code was way obsolete, managment depresses me.

    WrongWay

  46. We already have that by aristus · · Score: 2, Funny

    217 years and counting.... of course, it's had 27 patches applied to it.

    --
    Sometimes seventeen/Syllables aren't enough to/Express a complete
  47. A call for true "Software Engineering" by ErichTheRed · · Score: 2, Interesting

    The author describes a lot of what's wrong with software development right now. Being on the admin side of things, I've often had to deal with very buggy stuff custom-written by an internal IT department. Lots of key systems at large companies are still running on either the original hardware or upgraded versions of the platform. (There was an article a while back about VAX finally being killed by HP...that should tell you something.) Any improvements are hindered by the original framework (think screen-scraping apps, multiple file format translations, etc.)

    Civil engineers also run into this problem. For instance, take any large city whose highway system was built more than 50 years ago (NYC and Boston come to mind immediately.) No one ever dreamed that everyone would have their own car and stop using the trains/buses/ferries to commute to work. Therefore, overcapacity was never seen as a problem, and the rush hours just get longer every year as everyone tries to stagger their commutes. And since the roads are right next to buildings, in-place upgrades are very rare.

    I think that once the whole IT labor market shakes itself out, software engineering will become another branch of traditional engineering. Just like power plants, dams, airports, etc., we're now dependent on computers, and it's time to put some standards into place. Software needs to be built such that it's portable, easily understood by a similarly-trained engineer, and conducive to improvements. In other words, it needs to be able to outlive the coder.

  48. Name that long-lived system. by dswartz · · Score: 2, Interesting

    There is a software and hardware system that my company is designing to be maintainable until 2048. It has a long and well funded development cycle. We are developing version 6.0. Its funny though, the product has only ever been tested since we developed it over thirty years ago. And the design goal is to make it so well and in such quantity that it is never used. What is it?

  49. Language standards by gr8_phk · · Score: 2, Informative
    "Language standards don't even last 200 years"

    Lisp is about 50.

  50. Data Standards is the key. by Diabolical · · Score: 2, Insightful

    If the data formats are standardized it should not matter what kind of hardware or media is used, the data just migrates from one technical platform to another.

    I firmly believe that without this we will lose a significant part of our history. Current history is known because of durable "storage" like paper and fossiles, stone tablets or murals. The materials are all degrading but last longer then something digital.

    If we keep on trusting on technology we use right now we would be very lucky if anyone in the near future would be capable of finding anything significant which would be representable of our time. All our information is being recorded in digital format. This includes important things like presidential speeches, signed documents etc.

    This society is more and more dependent on electronic information. Alot of information isn't available in printing anymore let alone in a true durable format. If for some reason there will be some major catastrophy any survivors' offspring in the future will know nothing about this age and it's mistakes and would not learn a thing about it.

    We had the opportunity to study history because of the durability of it's information. Our information, however, doesn't even last a lifetime.

  51. Bricklin Is Clueless by Master+of+Transhuman · · Score: 2, Funny

    if he thinks ANY software could last a century or more. Or even SHOULD so last.

    HUMANS won't last through this century! How does he expect software to do so?

    --
    Richard Steven Hack - This sig is TOO GODDAMN SHORT TO DO ANYTHING USEFUL WITH! MORONS!
  52. Market influence by pjmidnight · · Score: 2, Interesting

    Software however written is capable of running for as long as it is viable to the market. It's not an issue of hardware or interdependency between software sources. It's that our market and general theory of technology is destructive/creative in nature. We rebuild software not because it isn't capable of running for centuries but because the users of that software have been emboldened to think creatively about new applications. Our clients could run the software they have for a long period of time. We build platforms that support 5-10 years of enhancement. But the market whether external or internal requires us to innovate rapidly. To create software that last centuries you would need to kill the creative process that is technology. The social process that defines us as humans.

  53. 200 Years without a change? by Zardog · · Score: 2, Insightful

    Seems silly to me when you consider even human language has changed so much in the past 100-200 years. Just think what it will look like in 100+ years. If you take any novel or movie today, aren't they just rewritten rehashes of plots that have existed for the past 1000+ years? Important software, like important ideas will be maintained, migrated, changed, morphed and improved upon. The really bad ideas will hopefully decay out of existence. Really, who the &$^% cares what was in our Oracle DB 100 years from now?

  54. From a programmer. by Gordon+Bennett · · Score: 3, Insightful

    I take a bow to the report and the author.
    Being a computer programmer, I wouldn't call myself a 'Software Engineer' due to the appalling state of writing software in its current state. There has been for quite some time this in-bred mentality of Versions, that nothing is ever finished, mostly driven by commercial greed - despite the huge advances in computer power, our OS'es and their applications are still struggling to keep up with an Amiga, for chrissake.
    Moreover, it can have lethal consequences; for example, radiation treatment, or airplane control. Deaths ensued. "Sorry that your college outing ended in all their deaths, we were running 1.1.3 of the aileron system."
    Sure, even mechanical engineers get it wrong, but their main onus is to make something that will work, not, as in the software case, 'get it out now, fix it later'.
    So, if someone says they are a 'Software Engineer', ask them, what is it they do that merits the 'Engineer' tag - would they build a bridge that lasts? Nope.

  55. Right idea, wrong time. by AnotherBlackHat · · Score: 4, Insightful

    We build disposable software, because computers are still disposable.
    Not because they can't be built to last, but because they quickly become obsolete.

    If Moore's law continues to hold for 40 years, computers will be over a million times more powerful than they are now, the cheapest drive you could buy would hold more than a petabyte, and we'll be saying things like "I remember when a thousand bucks for a terabyte of ram seemed like a good deal, and now I can't even buy a ram stick that small".

    Once the breakneck pace of expansion stops (or at least slows to a reasonable rate) then we should look at making software that lasts.

    Video compression technology is big business today, but it's probably going to seem like a silly idea in the future.

    We don't need buggy whips that last 200 years.

    -- less is better.

  56. All about the standards. by Spaceman40 · · Score: 2, Insightful

    You know why we can drive the latest vehicle over an old bridge, or fill a new high-tech water bottle from an old well's pump? It's because the way water works has stayed the same - it's a liquid with certain wonderful properties - and the way bridges "interface" with land vehicles has stayed the same.

    When we have constantly changing standards, often incompatible with earlier ones, software that works wonderfully with the earlier one will die. This isn't the software's fault any more than it would be the pump manufacturers fault if H2O's density suddenly rose (or viscosity or something).

    It's all about the standards.

    --
    I [may] disapprove of what you say, but I will defend to the death your right to say it.
  57. OT - recurring costs? by anomaly · · Score: 2

    I used to subscribe to this way of thinking - after all "I'll always have a car payment" and
    "As long as I can make the minimum payment, it doesn't matter what my credit card balance is."

    This was foolish youth talking, and 'buy now, pay later' immediate gratification marketing that led me for years.

    I had a wise aunt and uncle who advised me that I could spend 10% more than I earned, or 10% less. The first way I'd sweat payments for the rest of my life, the second way I'd always have money in my pocket. They were right!

    Another great piece of advice from them was "buy a car you can pay off in 3 years. Keep it 6. After the loan is paid off, pay a savings account the same car payment. Then go pay cash for your replacement car. Keep paying yourself, and you'll never need to borrow money for a car loan again." If the next car costs more than the first, keep the first until the savings account has enough to cover the next car.

    This REALLY works! I paid cash for my last two cars. I no longer buy what I don't have cash for, and I'm approaching paying off my house, too. Not in the next year or two, but long before 30 years have passed.

    A side benefit is that I think much more about whether I really want to spend that extra money on options or gadgets when I'm taking greenbacks out of my wallet!

    It is possible to live without debt, even in the US.

    --
    But Herr Heisenberg, how does the electron know when I'm looking?
  58. The Clock of the Long Now by garyebickford · · Score: 3, Informative

    The Clock of the Long Now is a clock designed Danny Hillis to last 10,000 years with maintenance using only Bronze Age technology. Ticking will be avoided. The century hand will advance every 100 years, and the cuckoo will come out on the millennium. The first 9 foot tall prototype was built in time for "New Year's Eve 01999" (note extra digit, and the second is under construction now.

    One might argue that the clock incorporates firmware, in the sense that there will be relatively complex algorithms to maintain accuracy by comparing different timing signals, and simpler algorithms to decide when to move the century hand, or cuckoo the millennium. It's not a stored-program system though, so it doesn't meet the criteria that the Babbage engines meet. Nevertheless, this is a good example of hardware designed realistically to operate continuously for 10 millennia. For this project Hillis invented a mechanical serial-bit-adder, a mechanical digital logic element, which evidently lacks the "wearing problem" of a standard clock mechanism. The clock knows about leap years and such.

    The website has images of the prototypes and the design, but I'm on dialup so I didn't look at them. The Principles Page discusses some of the problems to be overcome. For example, power source - right now Hillis is tending toward a temperature-based power source - and maintaining accuracy, which may be based on a phase locked loop using a mechanical oscillator and solar alignment. There are ways to support the foundation, such as buying Brand's Book, or Eno's tunes

    IMHO he might want to use three or four other checks as well. An extension of phase locking can work well with multiple nodes in a network, e.g., the multiple nodes in the human heart rhythm controller. Such networks rapidly converge to a common cycle, and this would provide additional reliability. The NTP network time algorithm is based on multiple sources of the same type, but analogous in concept. Just for fun, it'd be great if the clock also included a display of the 64-bit Unix time, in binary!

    This Wired article was written by Danny Hillis about his original idea. The Long Now Website has other interesting links about long term stuff. Hillis has some interesting friends, like Brian Eno who named "The Clock of the Long Now", and Stewart Brand. Other links: Intro to Brand talk, The actual talk. Buy the book, or the Eno CD "January 07003" to support the foundation.

    --
    It's easier to be a result of the past, but more fun to be a cause of the future! http://www.spacefinancegroup.com/
  59. What lasts two centuries? by Spazmania · · Score: 4, Insightful

    Many things in society are long-term

    Not really true.

    Those historical buildings? They've been gutted and rebuilt from the inside out at least once during the past 50 years for the installation central air conditioning and elevators for the handicapped. And they're the exception to the rule. Few commercial buildings go more than 15 years without major renovation and few residential buildings make it more than 30.

    Roads? Sure, US Route 1 does still travel approximately the same route but its repaved frequently, expanded and changed frequently, and its been supplanted in its original purpose as the major east-coast north-south route by Interstate 95. And even Route 1 has existed for less than a century. Before automobiles at the begining of the 20th century, there was no need for anything like it. Before automobiles, who could conceive of a multilane asphalt highway that needed to sustain speeds over 500 miles per day? How could yesteryear's engineers possibly plan for it?

    The US constitution, the foundation of our law, has seen two major overhauls in the past two centuries: first due to the civil war and again because of the great depression. Even where parts of the text remain the same, their meanings have been drastically altered by the courts. Free speech has become freedom of expression. The right to bear arms somehow doesn't exist at all inside Washington DC except for police. The states have gone from being the primary seats of governance to being almost entirely subsidiary to the federal government. We're living under an almost totally different government than what saw the dawn of the 19th century.

    Even the Catholic Church publishes a new catechism each year, a book which defines the religion. You'd think during two millennia they'd figure it out once and for all, yet it continues to evolve and change.

    Few things last, either in their original purpose or their original design. They're continuously rebuilt, redesigned and reinvented... Even things like roads, buildings and governments for which our design experience goes back thousands of years.

    Our software experience goes back 40 years, if you can call what we did 40 years ago software by any current definition. Why should we build it to last longer than than the roads and buildings, and indeed longer than software in any form has existed?

    I'm sorry, but I'm not smart enough to successfully plan ahead two centuries and neither are you.

    --
    Moderating "-1, Disagree" is simple censorship. Have the guts to post your opinion.
  60. Self-modifying? by generationxyu · · Score: 2, Interesting

    ...not necessarily self-modifying, but at least self-upgrading. For instance, imagine a system that is part of the "societal infrastructure." This system is running a database... we'll assume for the moment that it's MySQL. MySQL releases a new version. The database (either automatically or at the DBA's request) patches the running binary. There is a short delay of lag while the caches are repopulated, and then the new version is running. Perhaps a "checkChangelog()" function is called, reading a machine-readable changelog to determine if there's any changes to input/output/config files that it needs to know about... no downtime, no kill -HUP, nothing.

    --
    I mod down pyramid schemes in sigs.
  61. Fix the data problem first by wcrowe · · Score: 3, Insightful

    Right now, somewhere, there is a government agency putting important data into long term storage, which was created in Microsoft Word. In a few years that data may be unreadable, not because the medium has deteriorated, but because the software that created it will have evolved or no longer exist.

    This is just one example of how proprietary formats are bad for storing important data, long term. This problem was noted years ago when it was discovered that VA tapes, tucked away in underground facilities back in the 60's, could no longer be read because the software that created them is gone.

    An ideal data scheme would include information which describes the data being stored along with the data itself. An example is XML. This concept needs to be pushed.

    It is more likely that we can solve the problem of proprietary data storage schemes long before we can implement 200 year software.

    --
    Proverbs 21:19