From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6aa6d133611419f5 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-08-27 09:12:40 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!arclight.uoregon.edu!news.tufts.edu!uunet!dca.uu.net!ash.uu.net!spool0901.news.uu.net!spool0900.news.uu.net!reader0901.news.uu.net!not-for-mail Date: Tue, 27 Aug 2002 12:13:49 -0400 From: Hyman Rosen User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.1b) Gecko/20020804 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Thought this was interesting References: <3D6688E1.3A1797CC@san.rr.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Organization: KBC Financial Products Message-ID: <1030464758.505647@master.nyc.kbcfp.com> Cache-Post-Path: master.nyc.kbcfp.com!unknown@mosquito.nyc.kbcfp.com X-Cache: nntpcache 3.0.1 (see http://www.nntpcache.org/) NNTP-Posting-Host: 204.253.250.10 X-Trace: 1030464759 reader1.ash.ops.us.uu.net 11881 204.253.250.10 Xref: archiver1.google.com comp.lang.ada:28446 Date: 2002-08-27T12:13:49-04:00 List-Id: Marin D. Condic wrote: > Most software is driven by time to market and low-cost provider issues. > It operates against the "Good/Fast/Cheap - pick two!" problem and "Good" > is the loser. There is also the problem of having to develop against unstable underpinnings. Many programs run in cooperation with system software which is itself underspecified, unstable, and buggy. In such a world, even when you do the best you can, it may still not be enough to produce "good" software. Apropos of this, if you have access to a Windows system, try running the following simple program there. Make sure to save all important work first! It just prints out a string over and over again. It couldn't do anything bad, could it? Especially not on WinNT or WIn2K, right? Especially if you have no special privileges, right? :-) with text_io; use text_io; with ada.characters.latin_1; use ada.characters.latin_1; procedure crash is begin loop put("Hung up!" & HT & BS & BS & BS & BS & BS & BS); end loop; end;