Jeff Johnson has accumulated 1080 points.
/dev/hdb5 / ext3 defaults,noatime 1 1 /dev/hdb2 swap swap sw,pri=1 0 0 none /proc proc defaults 0 0 none /proc/bus/usb usbfs defaults 0 0 none /dev/pts devpts mode=0622 0 0 /dev/hdb10 /home ext3 defaults,noatime 1 2 /dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0 /dev/cdrom1 /mnt/cdrom1 udf,iso9660 noauto,owner,kudzu,ro 0 0 /dev/floppy /mnt/floppy auto noauto,owner,kudzu 0 0 # Dynamic entries /dev/hda1 /mnt/hda1 vfat noauto,users,exec,umask=000 0 0 /dev/hda5 /mnt/hda5 ext3 noauto,users,exec 0 0 /dev/hda6 swap swap sw,pri=1 0 0 /dev/hda7 /mnt/hda7 ext3 noauto,users,exec 0 0 /dev/hdb6 /mnt/hdb6 ext3 noauto,users,exec 0 0 /dev/hdb7 /mnt/hdb7 ext3 noauto,users,exec 0 0 /dev/hdb8 /mnt/hdb8 ext3 noauto,users,exec 0 0 /dev/hdb9 /mnt/hdb9 ext3 noauto,users,exec 0 0 /dev/zip /mnt/zip auto users,exec,sync 0 0

(click on picture for a clearer picture 737k)
Points on this battle were won as follows:
For a line by line: /dev/hdb5 / ext3 defaults,noatime 1 1 This has a hard disk mounted to the root directory with a Linux filesystem. It has default options (rw,suid,dev,exec,auto,nouser,async) with "no-update of file access timestamps" (noatime). Next to last is the backup flag (here is indicates 1/day), and last is the file system check utility flag (here a "yes"). /dev/hdb2 swap swap sw,pri=1 0 0 This is a swap disk, with a priority of 1., Not backed up or checked. User/group ID set and write permission (sw) none /proc proc defaults 0 0 Linux pseudo-process filesystem (kernel uses it to provide system status), given all default values. Not checked/backed up. none /proc/bus/usb usbfs defaults 0 0 USB filesystem, given all defaults. Not checked/backed up. none /dev/pts devpts mode=0622 0 0 This is where pseudo-terminals (PTYs) are implemented. Mode indicates mesg permissions (rw-w-w). Not checked/backed up. /dev/hdb10 /home ext3 defaults,noatime 1 2 Linux filesystem, generally the "home" directory/space for users. As above, gets all default options, has no access timestamp updates, is backed up however, and is fsck'ed on the second pass. /dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0 /dev/cdrom1 /mnt/cdrom1 udf,iso9660 noauto,owner,kudzu,ro 0 0 2 CD Rom drives, with Univeral Data Format (udf) and ISO 9660 filesystems, both owned by user kudzu, and read-only. Not checked/backed up. /dev/floppy /mnt/floppy auto noauto,owner,kudzu 0 0 Floppy drive, owned by kudzu, will no automatically mount, but can be if directed via "mount". Not checked/backed up. # Dynamic entries /dev/hda1 /mnt/hda1 vfat noauto,users,exec,umask=000 0 0 /dev/hda5 /mnt/hda5 ext3 noauto,users,exec 0 0 /dev/hda6 swap swap sw,pri=1 0 0 /dev/hda7 /mnt/hda7 ext3 noauto,users,exec 0 0 /dev/hdb6 /mnt/hdb6 ext3 noauto,users,exec 0 0 /dev/hdb7 /mnt/hdb7 ext3 noauto,users,exec 0 0 /dev/hdb8 /mnt/hdb8 ext3 noauto,users,exec 0 0 /dev/hdb9 /mnt/hdb9 ext3 noauto,users,exec 0 0 /dev/zip /mnt/zip auto users,exec,sync 0 0Here, the noauto on the following specifies that they are not automatically mounted. The list includes several Linux filesystems (ext3) and MS longfilename FAT (vfat), along with a swap. Excepting the swap, all users can access them (users), and can run binaries (exec) For the vfat, the file creation mask (umask) allows full rwx access for all users when files are created (000). For the zip drive the I/O is synchronous (sync) and automatically mounted (auto). None are checked/backed up.
The fstab [File System TABle] tells the OS about the file systems available, and their location. In this case, I see - a floppy, whise file system isn't specified, since data was often stored in software-specific file systems rahter than accessed via the OS [Remember C/PM?] - two "CD-ROM" drives, possibly a CD-writer and a DVD, using UDF and ISO9660 - two physical IDE (or ATA) HDDs (hda and hdb) divided into several partitions, - support for removable drives [Zip and USB) and devpts (pseudoterminals or PTYs). - mounting proc allows the system to use pseudofiles to convey system information. Most of the HDD partitions are formatted in ext3, a journaling file system that allows for faster, reliable recovery and integrity checking after improper system shutdowns (power outages, crashes, etc.). I note that only hdb 5 and 10 are set for backup and fsck (file checking) The first primary partition on physical hard drive A (hda1) is in VFAT, compatible with Microsoft FATxx file systems with 'long filename support', suggesting that this system is a multiboot system, with at least one MS operating system (Win95 or later). There are no NTFS or DOS partitions. The "missing partitions" (gaps in the numbering sequence; e.g. 3 and 4) may be partitions with other OSs installed on them - or not: different "distros" or "flavors" of Linux use different default conventions to number partitions. Traditionally, each physical drive was numbered separately, so you'd number up from hda1, and then start over with hdb1, but this system seems to use one number sequence across all its IDE drives: /hda1 through /hdb10, with no number being repeated, regardless of host drive.) There are as many possible reasons for a gap in the numbering as the system architects imagination allows. The noauto option on most of these partitions requires "manual" mounting anyway (though this may be done by programs or batch files, after the OS is booted). The owner and user options specify which accounts can mount these drives. "user" also implies several other options by default (noexec, nosuid, nodev). Nouser (not seen here) sometimes confuses people: it only allows a file system to be mounted by the root (superuser) account. OS partitions are often made mutually unavailable by default. Data can be shared between multiple OSs via a mutually compatible partition, but allowing OSs free access to each other's "guts" can be an invitation for disaster. You can mount such partitions manually or boot from a recovery floppy or CD, if you ever want to (e.g.) use one OS to repair another, The CDROMs use UDF and ISO9660. The file system of the floppy drive isn't specified, beause data disks sometimes use software specific formats. Remote filesystems (on other machines) can also be mounted (attached 'virtually') via NFS [Network File System] in the /fstab, but I don't see that here.

(click on picture for a clearer picture 227k)
Points on this battle were won as follows:
Points on this battle were won as follows:
Points on this battle were won as follows:
Points on this battle were won as follows:
Points on this battle were won as follows:
* The identifier must start with a letter, dollar sign ($) or underscore (_)
* It must consist entirely of letters, dollar signs, underscores, or digits.
* It is case sensitive: AB, aB, Ab and ab are different identifiers.
* It can't be a Java "keyword" or "reserved word"
Reserved words are basic values that cannot be changed: "true", "false",
"null". ls -l temp.txt -rw-rw-r-- 1 duane duane 70 Feb 1 10:55 temp.txt chmod o+w temp.txt ls -l temp.txt ?????????? 1 duane duane 70 Feb 1 10:55 temp.txt
Points on this battle were won as follows:
Tsuga heterophylla -western hemlock Pseudotsuga menziesii -Douglas fir Pinus longaeva - bristlecone pine Picea pungens - blue spruce Cedrus atlantica - Atlas Cedar Abies procera - noble fir Larix occidentalis - western larch Keteleeria davidiana - a rare pine found mostly in China and TaiwanThese are all members of the family Pinaceae.
Points on this battle were won as follows:
TREE SCALE - 1 16-FOOT LOG HIGH TREES DBH BOARD FT. DOYLE SCRIBNER INTERNATIONAL 1/4 INCH KERF 10 14 29 36 12 29 47 56 14 49 69 80 16 74 95 107 18 104 125 139 20 139 158 174 22 178 195 214 24 223 236 257 26 272 281 304 28 327 330 356 30 386 383 411 32 451 439 470 34 520 499 534 36 594 563 601 38 673 631 672 40 757 702 747 42 846 778 826 44 940 857 909 46 1039 940 996 48 1143 1027 1087 50 1252 1117 1182 TREE SCALE - 2 16-FOOT LOG HIGH TREES DBH BOARD FT. DOYLE SCRIBNER INTERNATIONAL 1/4 INCH KERF 10 22 46 60 12 44 75 91 14 74 112 130 16 114 156 177 18 163 208 231 20 221 268 292 22 288 334 361 24 365 408 437 26 451 490 521 28 546 579 612 30 651 675 711 32 765 779 816 34 888 891 930 36 1021 1009 1050 38 1162 1136 1178 40 1313 1269 1314 42 1474 1411 1457 44 1643 1559 1607 46 1822 1715 1765 48 2010 1879 1930 50 2207 2050 2103 TREE SCALE - 3 16-FOOT LOG HIGH TREES DBH BOARD FT. DOYLE SCRIBNER INTERNATIONAL 1/4 INCH KERF 10 28 57 78 12 53 96 120 14 92 145 173 16 145 206 236 18 211 277 310 20 290 359 395 22 382 451 490 24 488 554 597 26 607 669 713 28 740 793 841 30 886 929 979 32 1045 1075 1128 34 1218 1232 1288 36 1404 1400 1458 38 1603 1579 1640 40 1816 1768 1831 42 2042 1968 2034 44 2282 2179 2247 46 2535 2401 2471 48 2801 2634 2706 50 3080 2877 2951What does the term, "1/4 INCH KERF", in the above table mean?
DEF FNDV!(D!,H!)=(.55743*H!^2+41.51275*H!-29.37337)+(2.78043-.04516*H!^2-8.772721*H!)*D!+(.04177-.01578*H!^2+.59042*H!)*D!^2
DEF FNIV!(D!,H!)=(1.52968*H!^2+9.58615*H!-13.35212)+(1.79620-.27465*H!^2-2.59995*H!)*D!+(.04482-.00961*H!^2+.45997*H!)*D!^2
DEF FNSV!(D!,H!)=(17.53508*H!-.59242*H!^2-22.50365)+(3.02988-.02302*H!^2-4.34381*H!)*D!+(.51593*H!-.02035*H!^2-.01969)*D!^2
FOR H!=1 TO 3
CLS
PRINT "TREE SCALE -"+STR$(H!)+" 16-FOOT LOG HIGH TREES"
PRINT "DBH BOARD FT. DOYLE SCRIBNER INTERNATIONAL 1/4 INCH KERF"
FOR D!=10 TO 50 STEP 2
PRINT D!,USING "##########";FNDV!(D!,H!),FNSV!(D!,H!),FNIV!(D!,H!)
NEXT
INPUT A$
NEXT
END
Why in line 10 does the string, "##########", have so many #s even though the
largest number in the output is 3080? Why is the line, "INPUT A$" in the program?
Points on this battle were won as follows:
* Hilda - Mrs Smith - 4 - 8 * Gladys - Mrs Brown - 6 - 12 * Nora - Mrs White - 9 - 18 * Mary - Mrs Jones - 10 - 20
import javax.swing.*; //import classes
public class Demo{
public static void main(String[] args){
while (!(choice.equalsIgnoreCase("x"))){ // begin while loop
String inputString = JOptionPane.showInputDialog(
"Enter order total: ");
double orderTotal = Double.parseDouble(inputString);
double discountAmount = 0;
if (orderTotal >= 100)
discountAmount = orderTotal * .2;
else
discountAmount = orderTotal * .1;
double invoiceTotal = orderTotal - discountAmount;
String message = "Order total: " + orderTotal + "\n"
+ "Discount amount: " + discountAmount + "\n"
+ "Invoice total: " + invoiceTotal + "\n\n"
+ "To continue, press Enter.\n"
+ "To exit, enter 'x': ";
choice = JOptionPane.showInputDialog(message);
} // end while loop
System.exit(0);
}
}
Points on this battle were won as follows:
Katie Casey was baseball mad, Had the fever and had it bad: Just to root for the hometown crew, Every song Katie blew. On a Saturday, her young beau Called to see if she'd like to go To see a show but Miss Kate said, "No, I'll tell you what you can do."What can he do? Who wrote these words when?
Points on this battle were won as follows:
"Take me out to the ball game, Take me out with the crowd. Buy me some peanuts and cracker jack, I don't care if I never get back. Let me root, root, root for the home team, If they don't win it's a shame. For it's one, two, three strikes, you're out, At the old ball game."This was penned by Jack Norworth, a 30 year old vaudeville song and dance man in 1908 on a Manhattan subway.
Last revised May 9, 2004.
URL: http://www.webcom.com/duane/warmindf.html
Go to Top Menu..
..of Duane & Eva's Old Kentucky Home Page
Please send comments.
All contents copyright (C) 2004, Duane Bristow. All rights reserved.