home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-12-08 | 25.1 KB | 737 lines | [TEXT/R*ch] |
- alt.sources.mac digest #3-94 2/26/94
-
- Today's Contents:
-
- [!] administrivia
-
- [*] a2hex.cpt.hqx
- [*] append.cpt.hqx
- [*] asciichartda.cpt.hqx
- [*] cellusoft.cpt.hqx
- [*] circlewdef.cpt.hqx
- [*] dimtextitems.cpt.hqx
- [*] dropftp.cpt.hqx
- [*] graphlib.cpt.hqx
- [*] morpion.cpt.hqx
- [*] ovalsdoodadd.cpt.hqx
- [*] readcd.cpt.hqx
- [*] spritemgr.cpt.hqx
- [*] ultraprng.cpt.hqx
- [*] waste.cpt.hqx
-
- [#] 12daysoxmas-1
- [#] 12daysoxmas-2
- [#] afpmount
- [#] bigscroll
- [#] countlines.lex
- [#] cstrtotype
- [#] defs.h
- [#] dialogfontsize
- [#] drawditlitem
- [#] encode-c
- [#] encode-p
- [#] filesystems
- [#] float2fract
- [#] float2price
- [#] float2tex
- [#] fsspecsnippets
- [#] getallvols
- [#] getqdglobals
- [#] hash-1
- [#] hash-2
- [#] hash-3
- [#] hash-4
- [#] hash-5
- [#] heapinit
- [#] isfileordir
- [#] jonsinitmac
- [#] launchcoderes
- [#] openwinds
- [#] packstr
- [#] pascalprintf
- [#] patchtrapselect
- [#] pbgetsetcatinfo
- [#] printerchange
- [#] pstrcpy1
- [#] pstrcpy2
- [#] pstrcpy3
- [#] pstrcpy4
- [#] randnums
- [#] restart
- [#] rotatestring
- [#] scratchditl
- [#] stackadj
- [#] strings
- [#] structpad
- [#] text-style-res
- [#] timemgr2
- [#] wdefstuff
- [#] whackhandle
-
- [!] Who's Who List
-
- The alt.sources.mac archive is at ftpbio.bgsu.edu
- (129.1.252.66) in the /ftp/pub/alt.sources.mac directory.
- Files listed with an [*] before them are in the main
- directory. Files listed with an [#] in front of them
- are in the /ftp/pub/alt.sources.mac/00snippet directory.
- Scripts are stored in the /ftp/pub/alt.sources.mac/scripts
- directory.
-
- Also stored at the archive site are the FAQs for the
- Mac newsgroups in the /ftp/pub directory. Postings to
- comp.sources.mac are archived in the /ftp/pub/comp.sources.mac
- directory. The alt.sources.mac digests are archived in the
- /ftp/pub/digests directory.
-
- The alt.sources.mac newsgroup is for the distribution of
- sources only.
-
- ************************************************************
-
- From: dnebing@andy.bgsu.edu (Dave Nebinger)
- Subject: Administrivia
-
- Welcome to the alt.sources.mac digest. Currently, I am
- the moderator of the archive. I thought I would post this
- message to show everyone what has been accumulating at the
- archive site.
-
- Your contributions are highly recommended and accepted.
- If you don't have access to the alt.sources.mac newsgroup,
- you can email your contribution to me (dnebing@andy.bgsu.edu)
- and I will add it to the archive, or you can upload it to
- the /ftp/pub/incoming directory at the archive site.
-
- I would also recommend to those programmers posting
- snippets to the comp.sys.mac.* heirarchy to also crosspost
- them to the alt.sources.mac group so that I can make sure
- that it gets added to the archive.
-
- A couple of notes that you might want to be aware of:
- 1. Been doing alot of moving with the archive lately, currently
- the root for all files is /Bio Mail Server/ftp/..., but this
- is only temporary.
- 2. The archive has lots of Frequently Asked Questions in the
- /ftp/pub/mac-faqs directory, including the round of sillyness
- which encompased the FAQs-as-application phase (these files
- are located in the /ftp/pub/mac-faqs/sillyness directory ;-)
- 3. The debate still rages on concerning the Layer Manager
- (fortunately I have been avoiding the flames ;-) but I have
- not received any complaints about keeping the Layer Manager
- header file in the archive, so it still remains there.
- 4. The alt.sources.mac archive is going to be mirrored at
- mac.archive.umich.edu (or am I mirroring them? ;-) Actually
- I am one of the new archivists at mac.archive, and one of
- the main reasons I wanted to come aboard was to get the
- alt.sources.mac archive to a site that's alittle more
- dependable than mine (can you say "System Error..." ;-)
- so hopefully everything can get taken care of soon (I
- have to do some modifications to my index files first), but
- I am still planning on keeping ftpbio up and running, at
- least for the short term.
-
- Thanks for your support, and if you have any questions,
- problems, or maladjustments, feel free to email me. Also, let
- me know if you have any problems accessing the archive. The only
- way I can fix things is if I am told... ;-)
-
- Dave Nebinger (dnebing@andy.bgsu.edu)
-
- ************************************************************
-
- From: absurd@apple.apple.com (Tim Dierks, software saboteur)
- Subject: Re: MPW asm->C script?
-
- In article <1992Dec9.064929.17257@reed.edu>, bowman@reed.edu (BoBoRamDos)
- wrote:
- > Sorry, in my haste, I wasn't too clear. I seem to recall a script to automate
- > the making of "inlined assembly" in MPW C, like:
- >
- > write a bit of assembler to do something small, specific, and inlineable,
- > like get A0, or push all the registers onto the stack, etc.
- >
- > run it through this script, which would assemble it, then dumpobj the resulting
- > object code, and extract the actual hex, yielding something like:
- >
- > void MyInlinedAsm() = {0x24,0x45,etc.etc.};
- >
- > Did I hallucinate this?
-
- I think what you're talking about is called "A2Hex"; it's part of the
- MPW Script Tips package on the Developer CD (and on ETO, I think).
- Here's a copy of it; because it's relatively long for an MPW Script,
- I BinHexed it rather than convert all the high-bit characters to
- 7-bit equivalents.
-
- It doesn't output in a "prototype" format, but it's easy to convert
- the output or the script to give you what you want.
-
- Enjoy;
- Tim Dierks
-
- [archived as: /ftp/pub/alt.sources.mac/a2hex.cpt.hqx]
- ============================================================
-
- From: kenlong@netcom.com (Ken Long)
- Subject: Append-c
-
- This is a .c file I got off Oakland's ftp, which I've gotten to run on
- Think C 5.0.4.
-
- It puts up SFGetFile, propting for 'TEXT', and you select one. Then it
- repeats this cycle until you select Cancel. Each time after the first
- time, it copies and pastes the contents at the end of the first files.
- Doesn't make a new file, doesn't ask if you want to do this - it just
- does it.
-
- -Ken-
-
- [archived as: /ftp/pub/alt.sources.mac/append.cpt.hqx]
- ============================================================
-
- From: kenlong@netcom.com (Ken Long)
- Subject: ascii_chartDA/app.-c
-
- This is an old Mac ascii chart DA, whict I got running in Think C 5.0.42
- then made a slightly altered application version of it. It puts the data
- in the chart by string tables - nothing fancy.
-
- Enjoy!
-
- -Ken-
-
- [archived as: /ftp/pub/alt.sources.mac/asciichartda.cpt.hqx]
- ============================================================
-
- From: ingemar@lysator.liu.se (Ingemar Ragnemalm)
- Subject: Re: Cellusoft Graf.pas
-
- Ken Long wrote:
-
- >Tony Small's Cellusoft Graphics Routines in Pascal. Puts up a
- >window, adds a color 'PICT' for background, then animates his
- >"walking eyes" over it, horizontally.
-
- Here's a repost of the package. The previous upload included objects,
- which made it unnecessary large, and when I tried compiling it, its
- memory settings were messed up. No major problems, but it's better this
- way. It now requires Think Pascal 4, though it's easy to re-create a
- v3 project if you need it.
-
- /Ingemar Ragnemalm
-
- [archived as: /ftp/pub/alt.sources.mac/cellusoft.cpt.hqx]
- ============================================================
-
- From: kenlong@netcom.com (Ken Long)
- Subject: CircularWDEF-c
-
- That's right, folks! A round window WDEF. Has goAway and growBox! It's
- B/W, but a little creative hacking, using Infinity as a guide, coult make
- it into a jewel.
-
- Probably the best use for a round window would be a splash screen, in
- which case a plain one, or a "dialog-looking" one would be optimum.
-
- It would not take too much effort to modify it into the notorious
- "diamondWDEF" I've heard of (but not seen).
-
- I didn't write this, nor do I recall where I got it. but all I had was
- the .c file, so I neatened up the code appearencewise, build a WDEF with
- it, tossed in "WDEFTester" so you could easily check it out, then
- packaged it up for "shipping."
-
- Enjoy!
-
- -Ken-
-
- [archived as: /ftp/pub/alt.sources.mac/circlewdef.cpt.hqx]
- ============================================================
-
- From: egurney@vcd.hp.com (Eddy J. Gurney)
- Subject: Dimmable Dialog Text Items Source
-
- Here is some pretty useful code that I'm posting with the author's
- (Jim Walker <walkerj@math.scarolina.edu>) permission. It allows you
- to dim statText and editText items in a dialog without any extra
- dialog items, etc. A demo application is included. The code is free;
- author requests any updates and enhancements. To use the "Dim_text()"
- function, your dialog can't be using the refCon field or QuickDraw
- bottleneck. (Not a big deal, IMHO). Real "gray" is used if it's
- available.
-
- There is a funny bug that I reported to Jim that turned out to be in
- the Dialog Manager. If a dialog contains two or more editText items
- that contain more text than fits in the rect, and you force the
- dialog to update (by temporarily covering it with another dialog,
- for example) then only the item containing the insertion point will
- update correctly; the others will have text missing.
-
- To see this behavior in the enclosed demo application, enter
- "Hello world!" in one of the editText items, dim it, and only "Hello"
- will be displayed (but will be dimmed!) Un-dimming it returns it
- back to displaying "Hello world" (with the exclamation point being
- the part not fitting). Anyone have any ideas on how to fix this?
-
- [archived as: /ftp/pub/alt.sources.mac/dimtextitems.cpt.hqx]
- ============================================================
-
- From: mxmora@unix.sri.com (Matt Mora)
- Subject: DropFTP
-
- Enclosed is DropFTP and source. A drag and drop ftp program based on
- dropshell. FTP code was taken from Newswatcher and merged with drop shell.
-
- Currently it sends the files as if it they are text files. If anyone has
- some c code for macbinary encoding I would like to see it.
-
- Default strings are stored in STR#1000. User string are stored in the
- pref file with the password scrambled as in NW. Password in the
- dialog box is not hidden. If any strings are left empty it will
- bring up the dialog box before the files are sent.
-
- Error reporting is not fully done. It might bring up an empty dialog box
- on some errors.
-
- I forgot to include a way to specify a directory but that pretty
- trivial and will be in the next version. So will password hidding.
- If all goes well so will MacBinary encoding.
-
- I forgot to change the BNDL to include folder dropping. I think dropshell
- supports folder dropping.
-
- Have fun Hacking.
-
- Xavier
-
- P.S. if you make any changes I would like to see them too.
-
-
- ___________________________________________________________
- Matthew Xavier Mora Matt_Mora@qm.sri.com
- SRI International mxmora@unix.sri.com
- 333 Ravenswood Ave Menlo Park, CA. 94025
-
- [archived as: /ftp/pub/alt.sources.mac/dropftp.cpt.hqx]
- ============================================================
-
- From: kenlong@netcom.com (Ken Long)
- Subject: GraphicLib.C
-
- This was an occasionally requested file, in c.s.m.p, which demo's pie
- chart, bar chart, graph chart, etc. in Think C. has a built library (as
- I recall) but also has ALL the demo .c files added to the project. For a
- quick-start, you'll need to remove all but one of the files with "demo"
- in its name. The lib., too, if you get multipy defined link errors.
- Don't know why it was shipped this way. All I did to it was change it
- from compactor to Stuff It. There's plenty of docs with it.
-
- -Ken-
-
- [archived as: /ftp/pub/alt.sources.mac/graphlib.cpt.hqx]
- ============================================================
-
- From: pottier@trimaran.ens.fr (Francois Pottier)
- Subject: Re: Dark Side Programming Q
-
- In article <2kdo80$i4p@controversy.math.lsa.umich.edu>,
- Geza Bohus <bohus@math.lsa.umich.edu> wrote:
-
- >The sample fader that comes with DS 4.*
- >doesn't want to compile under Think C, and I can't fix it for some reason.
- >(I can provide details about this.) So my question is: did anyone make
- >a Think C compatible version of the fadershell? If so, is it possible to
- >have it?
-
- Yep, I have written a sample DarkSide module for use with Think C
- (I used DarkSide 4.2 and Think C 5).
- I have rewritten FaderShell for use with Think C. The main changes
- were the A4/A5 stuff, and also some routines which used MPW C syntax
- had to be modified.
- The fader is called Morpion, it shows the computer playing against itself
- the game of Morpion (the first player which manages to align five markers
- on the grid wins).
- You can use the source code freely.
-
- Francois Pottier.
- pottier@dmi.ens.fr
-
- [archived as: /ftp/pub/alt.sources.mac/morpion.cpt.hqx]
- ============================================================
-
- From: kenlong@netcom.com (Ken Long)
- Subject: OvalsDooDadd 1.1 dscr.
-
- This is a Think C 5 project for the new guys. There are actually two,
- here. They are derivatives of an old 1985 MegaMax C source file called
- "Display" - available on Oakland's FTP.
-
- OvalsDoodadd 1.1 put's up a splash screen in a Rect in the main window,
- using centered strings and various text faces and sizes for 4 seconds.
- Then it erases and 4 scroll bars and a button are drawn. Menu has Apple
- (with about) and File with quit.
-
- The scroll bars all start at min. and control the vertical and horizontal
- quanities of ovals drawn down to center, with another set for the amount
- of offset.
-
- So, at max quantity and offset of one, it's solid. It's in B/W.
-
- The control procs are from EartPlot.
-
- It's heavily, and entertainingly, commented.
-
- I cleaned up the original "Display" file and put a TC 5 project to it,
- and it runs. Beyond that I did little else.
-
- You'll easily spot where the oval thing came out of it.
- -Ken-
-
- [archived as: /ftp/pub/alt.sources.mac/ovalsdoodadd.cpt.hqx]
- ============================================================
-
- From: isis@netcom.com (Mike Cohen)
- Subject: ReadCD
-
- Here's a library of C functions for accessing ISO9660 CD ROMs. The included
- functions illustrate how to read raw CD data under Mac OS & A/UX and interpret
- the directory. Includes support for Young Minds' filename translation.
-
-
- --
- Mike Cohen - isis@netcom.com
- NewtonMail: MikeC49506 / ALink: D6734 / AOL: MikeC20
-
- [archived as: ftp/pub/alt.sources.mac/readcd.cpt.hqx]
- ============================================================
-
- From: kenlong@netcom.com (Ken Long)
- Subject: SpriteManager-c
-
- This is the SpriteManager I got off AOL a couple years ago. I added the
- Think C 5 project, did enough updating to get it to compile and run, but
- it still needs a little debugging. It was probably a TC 4 project,
- originally.
-
- Puts up two windows, side by side. Animates an 'ICN#' in one, inverting
- trails as it goes. The other one is supposed to have a drag-able sprite
- in it, like the demo, but doesn't work. But HEY! I can't do everything!
- Gotta save something for the downloader!
-
- Tony Miles credited SpriteManager in his SpriteWorld documentation.
-
- -Ken-
-
- [archived as: ftp/pub/alt.sources.mac/spritemgr.cpt.hqx]
- ============================================================
-
- From: M_P_McLaughlin%CAASD1@MWMGATE1.mitre.org
- Subject: Re[2]: A REALLY GOOD Random Number Generator
-
- I worked for quite a while to write a good, fast implementation of
- Marsaglia's Ultra RNG. This is a compound generator comprised of a
- Fibonacci generator and a feedback-shift generator and is *reportedly* the
- best general-purpose RNG currently available.
-
- My library is written in Think C/Assembly for a 68020/68881 (or better).
- [The algorithm is very cumbersome in pure C.]
-
- The library contains 16 functions to return random numbers of various
- kinds, including exponential and Gaussian variates, as well as functions to
- save and restore the RNG context (for repeating a sequence). On a Mac II
- ci, a random Boolean takes 1.6 microseconds and a random Gaussian 50.5
- microseconds.
-
- [archived as: /ftp/pub/alt.sources.mac/ultraprng.cpt.hqx]
- ============================================================
-
- From: piovanel@hp4.sm.dsi.unimi.it
- Subject: WASTE 1.0a1.sit.hqx
-
- This file contains version 1.0a1 of a text engine for the
- Macintosh, code-named WASTE, in BinHex/StuffIt form.
-
- WASTE is a WorldScript-savvy styled TextEdit replacement
- which can handle text bigger than 32K.
- It's currently in the form of a THINK Pascal library,
- compatible with the MPW environment.
- See the docs for additional information.
- For comments, suggestions and bug reports, please contact:
-
- Marco Piovanelli (piovanel@dsi.unimi.it)
-
- [archived as: /ftp/pub/alt.sources.mac/waste.cpt.hqx]
-
- ************************************************************
-
- 12daysoxmas-1 12 days of xmas program
- Jim Haynes (haynes@cats.ucsc.edu)
- 12 days of xmas program.
-
- 12daysoxmas-2 12 days of xmas program
- Matthew E. Cross (profesor@bigwpi.wpi.edu)
- Obfuscated C 12 days of xmas program.
-
- afpmount Mounting an AppleShare File Server
- Chris Roberts (ctr@pyrite.som.cwru.edu)
- C code for mounting an appleshare file server using afp
- commands.
-
- bigscroll Algorithm for scroll bars >32k
- Jon Pugh (jpugh@apple.com)
- Algorithm for working with scroll bars which represent
- more than 32k.
-
- countlines.lex Lex code for counting lines
- Scott M. Silver (scott.m.silver@dartmouth.edu)
- Lex code for counting lines of Think C source files.
-
- cstrtotype Converting a C string to an OSType
- Edwin H. Watkeys III (watkeyeh@dunx1.ocs.drexel.edu)
- C code to convert a C string to an OSType.
-
- defs.h Common definitions
- Bill Hatch (bill@bts.uucp)
- Bill's common header definitions.
-
- dialogfontsize Changing font & size of DITL resources
- Leonard Rosenthol (leonardr@netcom.com)
- C code demonstrating how to change the font and size for
- DITL resource items, including static text items.
-
- drawditlitem Draw a single DITL item
- John Cavallino (jcav@midway.uchicago.edu)
- Pascal function for drawing a single dialog item.
-
- encode-c Encode a string
- Gordon Couger (gcouger@olesun.okstate.edu)
- C function to encode a string.
-
- encode-p Encode a string
- Charles F. Lane (clane@csws2.ic.sunysb.edu)
- Pascal routines to encrypt a string.
-
- filesystems FSpExchangeFiles and other file systems
- Jon Wätte (d88-jwa@mumrik.nada.kth.se)
- Solution for using FSpExchangeFiles and other file systems.
-
- float2fract Converting from floating pt to fraction
- Colin Hogben (chah@jet.uk)
- C function to convert a floating point number to a
- fraction.
-
- float2price Converting from floating pt to fraction
- Alex Matulich (alex@bilver.oau.org)
- C function to convert a floating point number to a
- fraction.
-
- float2tex Convert a floating number to TeX format
- Ajay Shah (ajayshah@almaak.usc.edu)
- C function to convert a double to TeX format.
-
- fsspecsnippets Get app's FSSpec and folder's dirID from FSSpec
- Grobbins (grobbins@apple.com)
- C functions for getting the application's FSSpec, and also
- getting the dirID of a folder from it's FSSpec.
-
- getallvols Getting a list of all mounted volumes
- Andrew E Page (aep@world.std.com)
- C function which determines the names of all mounted volumes.
-
- getqdglobals Getting to the QuickDraw globals from a code resource
- Ivan M CaveroBelaunde (ivanski@world.std.com)
- C function to get the pointer to the application's QuickDraw
- globals.
-
- hash-1 Hashing function
- Schramp (jan@huet.si.hhs.nl)
- C hashing function.
-
- hash-2 Hashing function
- Rene Dekker (dekker@dutiag.tudelft.nl)
- C hashing function.
-
- hash-3 Hashing function
- Chris Torek (torek@horse.ee.lbl.gov)
- C hashing function.
-
- hash-4 Hashing function
- Alan Braggins (alanb@sdl.mdcbbs.com)
- C hashing functions.
-
- hash-5 Hashing function
- Jim Van Zandt (jrv@truth.mitre.org)
- A simple C hashing macro.
-
- heapinit Changing the app's heap size
- Ari I Haberstadt (ari@world.std.com)
- C function demonstrating how to change an app's heap
- partition size.
-
- isfileordir Is FSSpec pointing to file or dir
- Ross Brown (ross@bnr.ca)
- C code to determine if an FSSpec (received via Apple
- Events) points to a file or a directory/volume.
-
- jonsinitmac Jon Wtte's InitMac routine
- Matt Mora (mxmora@unix.sri.com)
- C function to call of the toolbox init routines as well
- as some other initialization stuff.
-
- launchcoderes Launching a code resource
- Roger L. Cauvin (rcauvin@aatdev.uucp)
- C function for launching a code resource.
-
- openwinds Finding the number of screens
- Greg Robbins (grobbins@apple.com)
- C function for determining the number of monitors
- connected to a mac.
-
- packstr Pack strings into a 'STR#' resource
- Sean J. Christ (kurisuto@chopin.udel.edu)
- Pascal routines to pack strings into an 'STR#'
- resource.
-
- pascalprintf A printf function for pascal users
- Peter N. Lewis (peter@ncrpda.curtin.edu.au)
- A set of pascal functions which simulate the C printf
- routine.
-
- patchtrapselect Patching a trap/selector combination
- Keith Rollin (keith@taligent.com)
- C/inline asm function demonstrating how to handle the patching
- of a trap and selector combination.
-
- pbgetsetcatinfo Back to back PBGetCatInfo and PBSetCatInfo calling
- Cameron Esfahani (dirty@guest.apple.com)
- C code demonstrating how to call PBSetCatInfo directly after
- PBGetCatInfo.
-
- printerchange Changing between printers
- Mike Russell (mgr@aggroup.aggroup.com)
- C code demonstrating how to programmatically change between
- printer drivers.
-
- pstrcpy1 C pstrcpy routine
- Michael Gleason (mgleason@cse.unl.edu)
- C routine to copy Pascal strings.
-
- pstrcpy2 C pstrcpy routine
- Joseph A. Brownlee (jbr0@cbnews.cb.att.com)
- C routine to copy Pascal strings.
-
- pstrcpy3 C pstrcpy routine
- Robert S. Mah (rmah@panix.com)
- C routine to copy Pascal strings.
-
- pstrcpy4 C pstrcpy routine
- Mike Russell (mgr@aggroup.aggroup.com)
- C routine to copy Pascal strings.
-
- randnums Random number routines
- Mayan Moudgill (moudgill@cs.cornell.edu)
- C functions for random numbers, including random floats,
- etc.
-
- restart Restarting the Mac via AppleEvents
- Peter N Lewis (peter@ncrpda.curtin.edu.au)
- Pascal code for restarting the Mac by sending the Finder
- AppleEvents.
-
- rotatestring Rotating a Str255
- anonymous submission
- C routine to rotate a Str255.
-
- scratchditl Building a DITL list from scratch
- anonymous submission
- C routines for building a dialog's DITL list from scratch.
-
- stackadj Adjusting an application's stack size
- Robin J. Lunge (rjl1@cornell.edu)
- C code demonstrating how to adjust the size of the
- application's stack.
-
- strings Reading and writing strings
- Ron Hunsinger (Ron_Hunsinger@bmug.org)
- Reading and writing Str255's to/from a file.
-
- structpad Turning off Think-C's structure padding
- Matt Slot (fprefect@engin.umich.edu)
- Think-C 5.0.4 pragma for disabling structure padding.
-
- text-style-res Working with TEXT and styl resources
- R.B. Schmunk (pcrxs@nasagiss.giss.nasa.gov)
- C code demonstrating how to use TEXT and styl resources
- in conjuction with a styled TE record.
-
- timemgr2 Time Manager clock
- Ari I Halberstadt (ari@world.std.com)
- C functions showing how to use the time manager to
- increment a counter (for timing purposes).
-
- wdefstuff WDEF information
- Troy Gaul (t-gaul@i-link.com)
- Information and code in C for WDEF creation and manipulation.
-
- whackhandle Handle state manipulation
- Pete Gontier (gurgle@netcom.com)
- C and C++ routines for working with handles; avoids HUnlock.
-
-
- ************************************************************
-
- Who's Who in Digest #3...
-
- The contributors to this digest are:
-
- Alan Braggins (alanb@sdl.mdcbbs.com)
- Ross Brown (ross@bnr.ca)
- Joseph A. Brownlee (jbr0@cbnews.cb.att.com)
- Roger L. Cauvin (rcauvin@aatdev.uucp)
- John Cavallino (jcav@midway.uchicago.edu)
- Ivan M. CaveroBelaunde (ivanski@world.std.com)
- Sean J. Christ (kurisuto@chopin.udel.edu)
- Mike Cohen (isis@netcom.com)
- Gordon Couger (gcouger@olesun.okstate.edu)
- Mike Crawford (crawford@scipp.ucsc.edu)
- Matthew E. Cross (profesor@bigwpi.wpi.edu)
- Rene Dekker (dekker@dutiag.tudelft.nl)
- Benjamin Denckla (bdenckla@husc7.harvard.edu)
- Tim Dierks (absurd@apple.apple.com)
- Cameron Esfahani (dirty@guest.apple.com)
- Troy Gaul (t-gaul@i-link.com)
- Michael Gleason (mgleason@cse.unl.edu)
- Pete Gontier (gurgle@netcom.com)
- Eddy J. Gurney (egurney@vcd.hp.com)
- Jamal Hannah (jamal@bronze.lcs.mit.edu)
- Bill Hatch (bill@bts.uucp)
- Jim Haynes (haynes@cats.ucsc.edu)
- Colin Hogben (chah@jet.uk)
- Charles F. Lane (clane@csws2.ic.sunysb.edu)
- Peter N. Lewis (peter@ncrpda.curtin.edu.au)
- Ken Long (kenlong@netcom.com)
- Robin J. Lunge (rjl1@cornell.edu)
- Robert S. Mah (rmah@panix.com)
- Alex Matulich (alex@bilver.oau.org)
- Mike McLaughlin (mpmcl@mitre.org)
- Matt Mora (mxmora@unix.sri.com)
- Mayan Moudgill (moudgill@cs.cornell.edu)
- Andrew E. Page (aep@world.std.com)
- Mark Pilgrim (f8dy@netaxs.com)
- Marco Piovanelli (piovanel@dsi.unimi.it)
- Francois Pottier (pottier@trimaran.ens.fr)
- Jon Pugh (jpugh@apple.com)
- Greg Robbins (grobbins@apple.com)
- Chris Roberts (ctr@pyrite.som.cwru.edu)
- Mike Russell (mgr@aggroup.aggroup.com)
- R. B. Schmunk (pcrxs@nasagiss.giss.nasa.gov)
- Schramp (jan@huet.si.hhs.nl)
- Ajay Shah (ajayshah@almaak.usc.edu)
- Scott M. Silver (scott.m.silver@dartmouth.edu)
- Matt Slot (fprefect@engin.umich.edu)
- Chris Torek (torek@horse.ee.lbl.gov)
- Jim Van Zandt (jrv@truth.mitre.org)
- Edwin H. Watkeys III (watkeyeh@dunx1.ocs.drexel.edu)
- Jon Wätte (d88-jwa@mumrik.nada.kth.se)
-